@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --navy-light: #243B55;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --off-white: #F8F6F1;
  --white: #FFFFFF;
  --gray-100: #F0EEE9;
  --gray-200: #DDD9D0;
  --gray-400: #9E9B94;
  --gray-600: #5C5A55;
  --text-primary: #0D1B2A;
  --text-secondary: #4A4845;
  --text-muted: #7A7875;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-secondary); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--offwhite { background: var(--off-white); }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  height: 72px; display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); margin: 5px 0; transition: var(--transition);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all var(--transition); border: none; border-radius: 2px;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0;
}
.hero-content h1 { color: var(--white); margin: 1rem 0 1.5rem; }
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content p { font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.75rem 1.5rem; border-radius: 4px;
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; letter-spacing: 0.05em; }
.hero-stat:nth-child(2) { transform: translateY(1.5rem); }
.hero-stat:nth-child(4) { transform: translateY(1.5rem); }
.hero-markets { grid-column: 1 / -1; text-align: center; padding: 1.5rem; background: rgba(201,168,76,0.08); border-radius: 4px; border: 1px solid rgba(201,168,76,0.15); }
.hero-markets p { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-markets strong { color: var(--gold); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy); padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); margin: 1rem 0 1.25rem; }
.page-hero p { font-size: 1.05rem; max-width: 560px; }


/* ---- PROBLEM SECTION ---- */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem;
  margin-top: 3.5rem;
}
.problem-card {
  padding: 2rem; background: var(--off-white);
  border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
}
.problem-card h4 { margin-bottom: 0.75rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; }
.problem-card p { font-size: 0.9rem; }

/* ---- PILLARS ---- */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 3.5rem; background: rgba(255,255,255,0.08);
}
.pillar {
  padding: 3rem 2.5rem; background: var(--navy-mid);
  position: relative; overflow: hidden;
}
.pillar::before {
  content: attr(data-num);
  position: absolute; top: -1rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 700; color: rgba(201,168,76,0.07);
  line-height: 1; pointer-events: none;
}
.pillar h3 { color: var(--white); margin: 1rem 0 1.25rem; }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); font-weight: 600; }
.pillar ul { list-style: none; }
.pillar ul li { font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pillar ul li:last-child { border: none; }
.pillar ul li::before { content: '— '; color: var(--gold); }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  border: 1px solid var(--gray-200); border-radius: 4px;
  padding: 2.25rem 2rem; background: var(--white);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--gray-400); box-shadow: 0 8px 32px rgba(13,27,42,0.08); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; background: var(--navy); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold);
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  background: var(--off-white); color: var(--text-secondary);
  padding: 0.25rem 0.7rem; border-radius: 2px; text-transform: uppercase;
}

/* ---- SERVICE DETAIL ---- */
.service-detail { padding: 4rem 0; border-bottom: 1px solid var(--gray-100); }
.service-detail:last-child { border: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.service-label { position: sticky; top: 100px; }
.service-label h2 { font-size: 2rem; margin: 0.5rem 0 1rem; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.product-card {
  background: var(--off-white); border-radius: 4px; padding: 1.5rem;
  border-left: 3px solid transparent; transition: border-color var(--transition);
}
.product-card:hover { border-color: var(--gold); }
.product-code { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.product-limit { font-size: 0.75rem; color: var(--text-muted); margin: 0.25rem 0 0.5rem; }
.product-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.product-card p { font-size: 0.83rem; }

/* ---- MARKETS ---- */
.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.market-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 2rem 1.75rem; transition: all var(--transition);
}
.market-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.04); }
.market-flag { font-size: 2rem; margin-bottom: 1rem; }
.market-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.market-role { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.market-card p { font-size: 0.85rem; }
.market-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.market-tag { font-size: 0.68rem; background: rgba(201,168,76,0.12); color: var(--gold-light); padding: 0.2rem 0.6rem; border-radius: 2px; }

/* ---- PROCESS ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 2.5rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 1px; background: var(--gray-200);
}
.process-step { padding: 0 1.5rem; text-align: center; }
.step-num {
  width: 3.5rem; height: 3.5rem; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold);
  position: relative; z-index: 1; border: 3px solid var(--off-white);
}
.process-step h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; }

/* ---- WHY ACCELERA ---- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3.5rem; }
.why-card {
  padding: 2.5rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
}
.why-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }

/* ---- ABOUT CONTENT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.about-stat { text-align: center; padding: 1.5rem; background: var(--off-white); border-radius: 4px; }
.about-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.about-stat .label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; letter-spacing: 0.05em; }
.about-points { list-style: none; margin-top: 2rem; }
.about-points li { padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); font-size: 0.95rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.about-points li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 0.4rem; flex-shrink: 0; }

/* ---- TEAM ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.team-card { background: var(--off-white); border-radius: 4px; overflow: hidden; }
.team-photo { height: 220px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.team-initials { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--gold); }
.team-info { padding: 1.75rem; }
.team-info h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.team-info .role { font-size: 0.8rem; color: var(--gold); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.team-info p { font-size: 0.85rem; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-details { margin-top: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--gray-100); }
.contact-item:last-child { border: none; }
.contact-item-icon {
  width: 40px; height: 40px; background: var(--navy); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem;
}
.contact-item-text .label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-item-text a, .contact-item-text p { font-size: 0.95rem; color: var(--text-primary); text-decoration: none; font-weight: 500; }
.contact-item-text a:hover { color: var(--gold); }
.contact-form { background: var(--off-white); padding: 3rem; border-radius: 4px; }
.contact-form h3 { margin-bottom: 1.75rem; font-size: 1.6rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); display: block; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-primary);
  background: var(--white); transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--gold); padding: 4rem 0; text-align: center;
}
.cta-banner h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(13,27,42,0.7); margin-bottom: 2rem; }
.cta-banner .btn-primary { background: var(--navy); color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--navy-mid); }

/* ---- FOOTER ---- */
footer { background: var(--navy); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-markets { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.footer-market { font-size: 0.7rem; background: rgba(201,168,76,0.1); color: var(--gold); padding: 0.2rem 0.6rem; border-radius: 2px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ---- PAGE INDICATOR ---- */
.page { display: none; }
.page.active { display: block; }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy); padding: 1.25rem 1.5rem;
    flex-direction: column; gap: 0; list-style: none;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links li:last-child { border: none; padding-top: 0.75rem; }
  .nav-links a { display: block; padding: 0.85rem 0; font-size: 0.9rem; }
  .nav-cta { display: block; text-align: center; padding: 0.75rem 1rem !important; border-radius: 2px; }
  .nav-toggle { display: block; }
  .nav-logo { font-size: 1.1rem; }

  /* Layout */
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }

  /* Hero */
  .hero { padding-top: 0; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 0 3rem; }
  .hero-content p { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-visual { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-stat { padding: 1.25rem 1rem; }
  .hero-stat .num { font-size: 2rem; }
  .hero-markets { padding: 1rem; }

  /* Page hero */
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Ticker */
  .ticker-item { font-size: 0.65rem; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .pillar { padding: 2rem 1.5rem; }
  .pillar::before { font-size: 5rem; }

  /* Problem cards */
  .problem-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-detail { padding: 2.5rem 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-label { position: static; }
  .products-grid { grid-template-columns: 1fr; gap: 0.75rem; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .process-steps::before { display: none; }
  .process-step { padding: 0 0.5rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.75rem 1.5rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-stat .num { font-size: 2.2rem; }

  /* Markets */
  .markets-grid { grid-template-columns: 1fr; gap: 1rem; }
  .market-card { padding: 1.5rem; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 2rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { padding: 3rem 0; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* FAQ */
  .faq-group-title { font-size: 1.5rem; }
  .faq-q { font-size: 0.95rem; padding: 1rem 0; }
}

@media (max-width: 480px) {
  /* Nav */
  .nav-logo { font-size: 0.95rem; }

  /* Hero */
  .hero-visual { grid-template-columns: repeat(2, 1fr); }
  .hero-stat .num { font-size: 1.8rem; }
  .hero-stat .label { font-size: 0.7rem; }

  /* Process — stack to single column */
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-step { display: flex; align-items: flex-start; gap: 1rem; text-align: left; }
  .step-num { margin: 0; flex-shrink: 0; width: 3rem; height: 3rem; font-size: 1.2rem; }

  /* Footer — single column */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.25rem; }

  /* About stats */
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Buttons full width */
  .btn { padding: 0.85rem 1.5rem; font-size: 0.78rem; }

  /* Section padding tighter */
  .section { padding: 3rem 0; }
  .page-hero { padding: 6rem 0 2.5rem; }
}

/* ---- FAQ ---- */
.faq-layout { display: flex; flex-direction: column; gap: 4rem; }
.faq-group-title { font-size: 1.8rem; margin: 0.5rem 0 2rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; text-align: left; gap: 1.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
  color: var(--text-primary); transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q.open { color: var(--navy); }
.faq-icon {
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  flex-shrink: 0; transition: transform var(--transition); line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0;
}
.faq-a.open { max-height: 400px; padding-bottom: 1.25rem; }
.faq-a p { font-size: 0.95rem; line-height: 1.75; color: var(--text-secondary); }
