*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink: #1f4c63;
    --ink2: #1c2e3f;
    --red: #bf8d44;
    --red2: #e74c3c;
    --white: #ffffff;
    --off: #f5f4f0;
    --light: #fafaf8;
    --slate: #8a96a8;
    --text: #2c3340;
    --muted: #6b7280;
    --border: #e2e0da;
}



html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo {
  display: flex; flex-direction: column; gap: 1px; text-decoration: none;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: #1D3947; letter-spacing: -0.01em;
}
.nav-logo-main span { color: var(--red); }
.nav-logo-sub {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate); font-weight: 400;
}
nav ul {
  list-style: none; display: flex; gap: 0; align-items: center;
}
nav ul li a {
  text-decoration: none; color: var(--ink);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em;
  padding: 0 18px; height: 72px;
  display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav ul li a:hover { color: var(--red); border-bottom-color: var(--red); }
.nav-contact {
  color: var(--white) !important;
  background:#BF8D44; padding: 10px 22px !important;
  height: auto !important; border: none !important;
  margin-left: 16px; border-radius: 1px;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-contact:hover { background: var(--red) !important; color: var(--white) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none; outline: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 998; overflow-y: auto;
  padding: 32px 24px;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 500;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .m-contact {
  margin-top: 24px; background: var(--ink); color: var(--white) !important;
  padding: 16px 24px !important; text-align: center;
  border: none !important;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero{
    background-image: url('https://tbgp.stoptouch.in/wp-content/uploads/2026/07/hero-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.hero {
/*   min-height: 100vh; */
	padding-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #EDF5F4;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 101px 60px 101px 60px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero-sub {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  max-width: 480px; font-weight: 300; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-dark {
  background: var(--ink); color: var(--white);
  padding: 14px 32px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--red); }
.btn-ghost {
  border: 1px solid var(--ink); color: var(--ink);
  padding: 14px 32px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(245,244,240,0.3) 0%, transparent 40%);
}
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--ink); padding: 0;
  display: flex; overflow: hidden; z-index: 3;
  grid-column: 1 / -1;
}
.hero-ticker-track {
  display: flex; animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 14px 40px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 20px;
  white-space: nowrap;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── STATS ───────────────────────────────────────────── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 64px 60px;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 100%;
}
.stat-item {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
  margin-right: 40px;
}
.stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700; color: var(--ink);
  line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em;
}
.stat-num sup { font-size: 24px; color: var(--red); }
.stat-label {
  font-size: 13px; font-weight: 600; color: var(--ink);
  margin-bottom: 4px; letter-spacing: 0.01em;
}
.stat-desc { font-size: 12px; color: var(--muted); }

/* ─── SECTION SHARED ──────────────────────────────────── */
.section { padding: 96px 60px; }
.eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 16px;
}
.section-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 44px); font-weight: 700;
  line-height: 1.15; color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-h em { font-style: italic; color: #bf8d44; }
.section-p {
  font-size: 15px; line-height: 1.8; color: var(--muted);
  font-weight: 300;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: 3px; transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--red); border-color: var(--red); }

/* ─── ABOUT ───────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute; bottom: -1px; right: -32px;
  background: var(--ink); padding: 28px 32px;
  max-width: 220px;
}
.about-badge p {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.6;
}
.about-text { max-width: 520px; }
.about-text .section-p { max-width: none; margin-bottom: 16px; }
.values {
  display: flex; gap: 0; margin: 36px 0; flex-wrap: wrap;
 
}
.value {
  padding: 20px 32px 20px 0; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--border); margin-right: 8px;
}
span.biz-.value {
    font-size: 14px;
}
.value:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.value-name {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink);
}
.value-desc { font-size: 11px; color: var(--muted); }

/* ─── BUSINESSES (Avendus-style tab row) ─────────────── */
.businesses { background: #edf5f4; }
.biz-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.biz-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  margin-bottom: 48px; overflow-x: auto;
  scrollbar-width: none;
}
.biz-tabs::-webkit-scrollbar { display: none; }
.biz-tab {
  padding: 14px 24px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  color: var(--muted); transition: color 0.2s, border-color 0.2s;
  background: none; border-left: none; border-right: none; border-top: none;
  outline: none; font-family: 'Inter', sans-serif;
}
.biz-tab.active { color: var(--ink); border-bottom-color: var(--red); }
.biz-tab:hover { color: var(--ink); }
.biz-panels {}
.biz-panel { display: none; }
.biz-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.biz-panel-img { aspect-ratio: 16/10; overflow: hidden; }
.biz-panel-img img { width: 100%; height: 100%; object-fit: cover; }
.biz-panel-label {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 16px;
}
.biz-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--ink);
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em;
}
.biz-panel-desc { font-size: 14px; line-height: 1.75; color: var(--muted); margin-bottom: 24px; }
.biz-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.biz-tag {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 5px 12px;
    background: #000;
}

/* ─── SECTORS ─────────────────────────────────────────── */
.sectors { background: var(--white); }
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); margin-top: 52px;
}
.sector-card {
  background: var(--white); padding: 36px 28px;
  transition: background 0.2s;
  cursor: default;
}
.sector-card:hover { background: var(--off); }
.sector-icon { font-size: 24px; margin-bottom: 14px; }
.sector-name {
  font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.sector-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ─── MARQUEE STATEMENT ───────────────────────────────── */
.marquee-band {
  background: var(--ink);
  overflow: hidden; padding: 60px 0;
  position: relative;
}
.marquee-inner {
  display: flex; animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex; align-items: center; gap: 24px;
  padding: 0 40px;
}
.marquee-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; font-style: italic;
  color: rgba(255,255,255,0.85); white-space: nowrap;
}
.marquee-sep {
  width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PROCESS ─────────────────────────────────────────── */
.process { background: #edf5f4; }
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 60px;
  border: 1px solid var(--border);
}
.proc-item {
  padding: 44px 36px; border-right: 1px solid var(--border);
  position: relative; transition: background 0.2s;
}
.proc-item:last-child { border-right: none; }
.proc-item:hover { background: var(--white); }
.proc-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: 0.1em; margin-bottom: 24px; display: block;
}
.proc-title {
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.proc-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.proc-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: background 0.2s;
}
.proc-item:hover .proc-line { background: var(--red); }

/* ─── INSIGHTS (Avendus-style card row) ──────────────── */
.insights { background: var(--white); }
.insights-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; flex-wrap: wrap; gap: 16px;
}
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
}
.insight-card {
  background: var(--white); padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: background 0.2s;
  text-decoration: none; color: inherit;
}
.insight-card:hover { background: var(--off); }
.insight-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.insight-tag {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--white); background: var(--red);
  padding: 3px 8px;
}
.insight-date {
  font-size: 11px; color: var(--muted); letter-spacing: 0.05em;
}
.insight-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600; color: var(--ink);
  line-height: 1.4; margin-bottom: 12px; flex: 1;
}
.insight-excerpt { font-size: 12.5px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.insight-arrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 6px;
}

/* ─── CAREERS BAND ────────────────────────────────────── */
.careers-band {
  background: var(--off);
  display: grid; grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
}
.careers-text {
  padding: 80px 60px; display: flex; flex-direction: column; justify-content: center;
}
.careers-text .section-h { margin-bottom: 16px; }
.careers-text .section-p { max-width: 420px; margin-bottom: 32px; }
.careers-img { position: relative; overflow: hidden; }
.careers-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── CTA ─────────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  padding: 96px 60px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.cta-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 700;
  color: var(--white); line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-h em { font-style: italic; color: var(--red); }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.cta-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.btn-red {
  background: var(--red); color: var(--white);
  padding: 16px 36px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-red:hover { background: var(--red2); }
.cta-email {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.cta-email:hover { color: rgba(255,255,255,0.8); }
.cta-social {
  display: flex; gap: 16px; margin-top: 8px;
}
.cta-social a {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-decoration: none;
  transition: color 0.2s; font-weight: 600;
}
.cta-social a:hover { color: var(--red); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: #0a1118;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 60px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.f-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.f-brand-name span { color: var(--red); }
.f-tagline {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.f-about { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.75; }
.f-col-title {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 20px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.f-links li a {
  text-decoration: none; color: rgba(255,255,255,0.4);
  font-size: 12.5px; transition: color 0.2s;
}
.f-links li a:hover { color: rgba(255,255,255,0.9); }
.f-address {
  font-size: 11.5px; color: rgba(255,255,255,0.3); line-height: 1.85;
}
.f-address a {
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
}
.f-address a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.f-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.f-social-row { display: flex; gap: 24px; }
.f-social-row a {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s;
}
.f-social-row a:hover { color: var(--red); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 32px; min-height: calc(100vh - 72px); }
  .section, .stats, .cta-section { padding-left: 32px; padding-right: 32px; }
  .about-grid, .biz-panel.active, .careers-band, .cta-section, .footer-top {
    grid-template-columns: 1fr;
  }
  .about-badge { right: 0; bottom: -24px; }
  .about-text { max-width: 100%; margin-top: 48px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-item:nth-child(2) { border-right: none; }
  .proc-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .proc-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .insights-grid { grid-template-columns: 1fr; }
  .careers-img { min-height: 280px; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 32px; margin-right: 0; padding-right: 0; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  footer { padding: 48px 32px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .proc-item { border-right: none !important; border-top: 1px solid var(--border); }
  .proc-item:first-child { border-top: none; }
  .footer-top { grid-template-columns: 1fr; }
  .stats { padding: 48px 24px; }
  .section { padding: 64px 24px; }
}
.nav-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.nav-logo .logo-img{
    max-height:60px;
    width:auto;
    display:block;
}

/* ===== Footer animation — left growth chart + right trust-bridge ===== */

footer {
  position: relative;
  overflow: hidden;
}

.footer-top {
  position: relative;
}

.footer-top > div {
  position: relative;
  z-index: 1;
}

/* ambient floating particles (unchanged) */
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,.3), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,.25), transparent);
  background-repeat: no-repeat;
  animation: tbgp-drift 18s linear infinite;
  opacity: .8;
  pointer-events: none;
  z-index: 0;
}

@keyframes tbgp-drift {
  0%   { transform: translateY(0px) translateX(0px); }
  50%  { transform: translateY(-12px) translateX(6px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* base positioning — sit in the outer gutter, clear of the 4-column content */
.f-art {
  position: absolute;
  top: 73%;
  transform: translateY(-50%);
  width: 205px;
  height: 155px;
  z-index: 0;
  pointer-events: none;
  opacity: .8;
}
.f-art-left  { left: -3%; }
.f-art-right { right: -2%; }

/* only show where there's real gutter space beside the 1200px content */
/* @media (max-width: 1400px) {
  .f-art { display: none; }
} */

/* ---- Left: growth bars + trend line ---- */
.f-bar {
  fill: none;
  stroke: #a9c3d8;
  stroke-width: 3;
  stroke-linecap: round;
}

/* each bar's dasharray/offset matches its actual path length, so growth is synced */
.f-bar-1 { stroke-dasharray: 23; animation: f-bar-grow-1 6s ease-in-out infinite; animation-delay: 0s; }
.f-bar-2 { stroke-dasharray: 43; animation: f-bar-grow-2 6s ease-in-out infinite; animation-delay: .15s; }
.f-bar-3 { stroke-dasharray: 67; animation: f-bar-grow-3 6s ease-in-out infinite; animation-delay: .3s; }
.f-bar-4 { stroke-dasharray: 35; animation: f-bar-grow-4 6s ease-in-out infinite; animation-delay: .45s; }
.f-bar-5 { stroke-dasharray: 85; animation: f-bar-grow-5 6s ease-in-out infinite; animation-delay: .6s; }

@keyframes f-bar-grow-1 { 0%{stroke-dashoffset:30;opacity:0;} 15%{opacity:1;} 50%{stroke-dashoffset:0;opacity:1;} 85%{stroke-dashoffset:0;opacity:1;} 100%{opacity:0;} }
@keyframes f-bar-grow-2 { 0%{stroke-dashoffset:50;opacity:0;} 15%{opacity:1;} 50%{stroke-dashoffset:0;opacity:1;} 85%{stroke-dashoffset:0;opacity:1;} 100%{opacity:0;} }
@keyframes f-bar-grow-3 { 0%{stroke-dashoffset:75;opacity:0;} 15%{opacity:1;} 50%{stroke-dashoffset:0;opacity:1;} 85%{stroke-dashoffset:0;opacity:1;} 100%{opacity:0;} }
@keyframes f-bar-grow-4 { 0%{stroke-dashoffset:40;opacity:0;} 15%{opacity:1;} 50%{stroke-dashoffset:0;opacity:1;} 85%{stroke-dashoffset:0;opacity:1;} 100%{opacity:0;} }
@keyframes f-bar-grow-5 { 0%{stroke-dashoffset:95;opacity:0;} 15%{opacity:1;} 50%{stroke-dashoffset:0;opacity:1;} 85%{stroke-dashoffset:0;opacity:1;} 100%{opacity:0;} }

.f-trend, .f-trend-arrow {
  fill: none;
  stroke: #bf8d44;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.f-trend {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: f-draw 6s ease-in-out infinite;
  animation-delay: .8s;
}
.f-trend-arrow {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: f-draw 6s ease-in-out infinite;
  animation-delay: 1.4s;
}

@keyframes f-draw {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  55%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { opacity: 0; }
}

/* ---- Right: trust-bridge arc ---- */
.f-node {
  fill: #bf8d44;
}
.f-bridge-arc {
  fill: none;
  stroke: #a9c3d8;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: f-draw2 6s ease-in-out infinite;
}
.f-bridge-support {
  fill: none;
  stroke: #a9c3d8;
  stroke-width: 1;
  opacity: .5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: f-draw2 6s ease-in-out infinite;
  animation-delay: .3s;
}
.f-bridge-dot {
  fill: #bf8d44;
}

@keyframes f-draw2 {
  0%   { stroke-dashoffset: 160; opacity: 0; }
  15%  { opacity: 1; }
  50%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -160; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  footer::after,
  .f-bar-1, .f-bar-2, .f-bar-3, .f-bar-4, .f-bar-5,
  .f-trend, .f-trend-arrow,
  .f-bridge-arc, .f-bridge-support {
    animation: none;
  }
  .f-bridge-dot animateMotion { display: none; }
}



/* ===== CTA section animation only ===== */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section > div,
.cta-right {
  position: relative;
  z-index: 1;
}

.cta-line-art {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 220px;
  height: 320px;
  z-index: 0;
  pointer-events: none;
}

/* pulsing background rings */
.cta-ring {
  fill: none;
  stroke: rgba(255,255,255,.25);
  stroke-width: 1;
  transform-origin: 140px 160px;
  animation: cta-pulse 4s ease-out infinite;
}
.cta-ring-delay { animation-delay: 2s; }

@keyframes cta-pulse {
  0%   { transform: scale(.3); opacity: .8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* growth trend line drawing in */
.cta-growth-line,
.cta-growth-arrow {
  fill: none;
  stroke: #bf8d44;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-growth-line {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: cta-draw 6s ease-in-out infinite;
}

.cta-growth-arrow {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: cta-draw-arrow 6s ease-in-out infinite;
}

@keyframes cta-draw {
  0%   { stroke-dashoffset: 320; opacity: 0; }
  10%  { opacity: 1; }
  50%  { stroke-dashoffset: 0; opacity: 1; }
  80%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -320; opacity: 0; }
}

@keyframes cta-draw-arrow {
  0%   { stroke-dashoffset: 60; opacity: 0; }
  40%  { opacity: 0; }
  50%  { stroke-dashoffset: 0; opacity: 1; }
  80%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -60; opacity: 0; }
}

@media (max-width: 900px) {
  .cta-line-art { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-ring, .cta-growth-line, .cta-growth-arrow { animation: none; }
}




/* ===== About section animation — self-contained globe, no text overlap ===== */

.section.about {
  position: relative;
}

.about-globe {
    position: absolute;
    top: 0;
    right: 6px;
    width: 225px;
    height: 233px;
    z-index: 0;
    pointer-events: none;
    opacity: .85;
}
.globe-line {
  fill: none;
  stroke: #1b3a52;
  stroke-width: 1;
  opacity: .55;
}

.globe-orbit {
  fill: none;
  stroke: #9aa8b5;
  stroke-width: .8;
  stroke-dasharray: 3 4;
  opacity: .5;
}

.globe-node {
  fill: #1b3a52;
}
.globe-node-gold {
  fill: #bf8d44;
}

.globe-dot {
  fill: #1b3a52;
  opacity: .5;
}
.globe-dot-gold {
  fill: #bf8d44;
  opacity: .9;
}

@media (max-width: 900px) {
  .about-globe { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .about-globe animateMotion { display: none; }
}


