/* Homepage */

  :root {
    --navy: #1a2b4a;
    --navy-deep: #0f172a;
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --blue-light: #dbeafe;
    --amber: #f59e0b;
    --amber-light: #fef3c7;
    --green: #16a34a;
    --bg-light: #f8fafc;
    --slate: #64748b;
    --slate-light: #94a3b8;
    --white: #ffffff;
    --border: #e2e8f0;
    --dark: #0f172a;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ===== HEADER ===== */
  .header {
    background: var(--navy);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .header-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .header-logo-icon svg { width: 20px; height: 20px; }

  .header-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .header-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-light);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }

  .header-nav a:hover { color: var(--white); }

  .header-nav .nav-cta {
    background: rgba(37,99,235,0.15);
    color: #93bbfd;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
  }

  .header-nav .nav-cta:hover {
    background: var(--blue);
    color: var(--white);
  }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* ===== HERO ===== */
  .hero {
    background: var(--navy);
    padding: 80px 40px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(245,158,11,0.04) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
    animation: fadeDown 0.6s ease-out;
  }

  .hero-badge span {
    font-size: 13px;
    font-weight: 500;
    color: #93bbfd;
    letter-spacing: 0.02em;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    animation: fadeDown 0.6s ease-out 0.1s both;
  }

  .hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--slate-light);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeDown 0.6s ease-out 0.2s both;
  }

  .search-wrap {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    animation: fadeUp 0.7s ease-out 0.35s both;
  }

  .search-wrap input {
    width: 100%;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    padding: 0 140px 0 52px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--white);
    outline: none;
    transition: all 0.25s;
  }

  .search-wrap input::placeholder { color: var(--slate-light); }

  .search-wrap input:focus {
    border-color: var(--blue);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
  }

  .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--slate-light);
  }

  .search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    padding: 0 24px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: -0.01em;
  }

  .search-btn:hover {
    background: var(--blue-hover);
    transform: translateY(-50%) scale(1.02);
  }

  .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    animation: fadeUp 0.6s ease-out 0.5s both;
  }

  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--slate-light);
  }

  .hero-trust-item svg { flex-shrink: 0; }

  /* ===== STATES ===== */
  .states {
    background: var(--bg-light);
    padding: 80px 40px;
  }

  .states-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
  }

  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--slate);
    margin-bottom: 40px;
    max-width: 500px;
  }

  .state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .state-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .state-card::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    opacity: 0;
    transition: all 0.2s;
    width: 0;
    height: 0;
    border-left: 5px solid var(--blue);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }

  .state-card:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.08);
    color: var(--blue);
  }

  .state-card:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .state-abbr {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-light);
    background: var(--bg-light);
    padding: 3px 7px;
    border-radius: 5px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    transition: all 0.2s;
  }

  .state-card:hover .state-abbr {
    background: rgba(37,99,235,0.1);
    color: var(--blue);
  }

  /* ===== HOW WE CHOOSE ===== */
  .how {
    background: var(--white);
    padding: 80px 40px;
  }

  .how-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .how .section-label { justify-content: center; }
  .how .section-sub { margin-left: auto; margin-right: auto; }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .how-card {
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: left;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .how-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(26,43,74,0.08), 0 2px 8px rgba(26,43,74,0.04);
    transform: translateY(-2px);
  }

  .how-card:hover::before { transform: scaleX(1); }

  .how-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .how-icon.reviews { background: linear-gradient(135deg, var(--amber-light), #fde68a); }
  .how-icon.expertise { background: linear-gradient(135deg, var(--blue-light), #bfdbfe); }
  .how-icon.transparency { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

  .how-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .how-card p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.65;
  }

  /* ===== STATS ===== */
  .stats {
    background: var(--navy);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
  }

  .stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 200px,
      rgba(255,255,255,0.02) 200px,
      rgba(255,255,255,0.02) 201px
    );
    pointer-events: none;
  }

  .stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .stat-item {
    position: relative;
  }

  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.1);
  }

  .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-number .accent { color: var(--amber); }

  .stat-label {
    font-size: 15px;
    color: var(--slate-light);
    font-weight: 400;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--navy-deep);
    padding: 56px 40px 32px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .footer-brand-icon {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-brand-icon svg { width: 18px; height: 18px; }

  .footer-brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
  }

  .footer-tagline {
    font-size: 14px;
    color: var(--slate);
    max-width: 280px;
    line-height: 1.5;
  }

  .footer-links {
    display: flex;
    gap: 48px;
  }

  .footer-col h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }

  .footer-col a {
    display: block;
    font-size: 14px;
    color: var(--slate);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 13px;
    color: var(--slate);
  }

  .footer-email a {
    font-size: 13px;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-email a:hover { color: var(--blue); }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .state-grid { grid-template-columns: repeat(3, 1fr); }
    .how-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .how-card { padding: 28px 24px; }
  }

  @media (max-width: 768px) {
    .header { padding: 0 20px; }
    .header-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 48px 20px 64px; }
    .search-wrap input { height: 56px; padding-right: 60px; padding-left: 44px; font-size: 15px; }
    .search-btn { padding: 0 16px; font-size: 0; width: 44px; }
    .search-btn svg { display: block; }
    .search-btn span { display: none; }
    .hero-trust { flex-wrap: wrap; gap: 16px; }
    .states { padding: 48px 20px; }
    .state-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .state-card { padding: 12px 14px; font-size: 14px; }
    .how { padding: 48px 20px; }
    .how-grid { grid-template-columns: 1fr; gap: 16px; }
    .stats { padding: 40px 20px; }
    .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .stat-item:not(:last-child)::after { display: none; }
    .footer { padding: 40px 20px 24px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-links { gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  @media (max-width: 480px) {
    .stat-number { font-size: 28px; }
    .stats-inner { gap: 12px; }
  }


/* How We Rank */

:root{--navy:#1a2b4a;--navy-deep:#0f172a;--blue:#2563eb;--blue-hover:#1d4ed8;--blue-light:#dbeafe;--blue-soft:rgba(37,99,235,.08);--amber:#f59e0b;--green:#16a34a;--green-light:#dcfce7;--bg-light:#f8fafc;--slate:#64748b;--slate-light:#94a3b8;--white:#fff;--border:#e2e8f0;--dark:#0f172a;--font-heading:'Plus Jakarta Sans',sans-serif;--font-body:'DM Sans',sans-serif}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--dark);line-height:1.6;background:var(--white);-webkit-font-smoothing:antialiased}

.header{background:var(--navy);padding:0 40px;height:72px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100}
.header-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.header-logo-icon{width:36px;height:36px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center}
.header-logo-icon svg{width:20px;height:20px}
.header-logo-text{font-family:var(--font-heading);font-weight:700;font-size:18px;color:var(--white);letter-spacing:-.02em}
.header-nav{display:flex;align-items:center;gap:32px;list-style:none}
.header-nav a{font-size:14px;font-weight:500;color:var(--slate-light);text-decoration:none;transition:color .2s}
.header-nav a:hover{color:var(--white)}
.header-nav .nav-cta{background:rgba(37,99,235,.15);color:#93bbfd;padding:8px 18px;border-radius:8px;font-weight:600;transition:all .2s}
.header-nav .nav-cta:hover{background:var(--blue);color:var(--white)}

/* HERO */
.hero{background:linear-gradient(135deg,var(--navy),#243b5e);padding:48px 40px 56px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-40%;right:-10%;width:60%;height:180%;background:radial-gradient(ellipse,rgba(37,99,235,.07),transparent 65%);pointer-events:none}
.hero-inner{max-width:800px;margin:0 auto;position:relative;z-index:1}
.breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:20px;font-size:13px}
.breadcrumb a{color:var(--slate-light);text-decoration:none;transition:color .2s}
.breadcrumb a:hover{color:var(--white)}
.breadcrumb .sep{color:#475569}
.breadcrumb .current{color:#cbd5e1}
.hero h1{font-family:var(--font-heading);font-size:clamp(30px,4vw,44px);font-weight:800;color:var(--white);letter-spacing:-.03em;line-height:1.15;margin-bottom:12px}
.hero-sub{font-size:17px;color:var(--slate-light);max-width:600px;line-height:1.6}

/* PROCESS */
.process-section{background:var(--white);padding:72px 40px}
.process-inner{max-width:900px;margin:0 auto}
.section-label{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--blue);text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px}
.section-label::before{content:'';width:20px;height:2px;background:var(--blue);border-radius:2px}
.section-title{font-family:var(--font-heading);font-size:clamp(24px,3vw,34px);font-weight:800;color:var(--navy);letter-spacing:-.03em;line-height:1.15;margin-bottom:48px}

.timeline{position:relative;padding-left:60px}
.timeline::before{content:'';position:absolute;left:23px;top:8px;bottom:8px;width:2px;background:var(--border)}
.timeline-step{position:relative;margin-bottom:48px}
.timeline-step:last-child{margin-bottom:0}
.step-number{position:absolute;left:-60px;top:0;width:48px;height:48px;border-radius:14px;background:var(--blue);color:var(--white);font-family:var(--font-heading);font-weight:800;font-size:18px;display:flex;align-items:center;justify-content:center;z-index:1;box-shadow:0 4px 12px rgba(37,99,235,.2)}
.step-title{font-family:var(--font-heading);font-size:22px;font-weight:800;color:var(--navy);letter-spacing:-.02em;margin-bottom:8px}
.step-desc{font-size:16px;color:var(--slate);line-height:1.65;max-width:600px}

/* CRITERIA */
.criteria-section{background:var(--bg-light);padding:72px 40px}
.criteria-inner{max-width:1100px;margin:0 auto}
.criteria-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.criteria-card{background:var(--white);border:1px solid var(--border);border-radius:16px;padding:32px;transition:all .25s;position:relative;overflow:hidden}
.criteria-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--blue);transform:scaleX(0);transform-origin:left;transition:transform .3s}
.criteria-card:hover{box-shadow:0 8px 32px rgba(26,43,74,.06);transform:translateY(-2px)}
.criteria-card:hover::before{transform:scaleX(1)}
.criteria-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.criteria-icon.rating{background:linear-gradient(135deg,#fef3c7,#fde68a)}
.criteria-icon.volume{background:linear-gradient(135deg,var(--blue-light),#bfdbfe)}
.criteria-icon.independence{background:linear-gradient(135deg,var(--green-light),#bbf7d0)}
.criteria-icon.years{background:linear-gradient(135deg,#f3e8ff,#e9d5ff)}
.criteria-icon.specialization{background:linear-gradient(135deg,#ffe4e6,#fecdd3)}
.criteria-icon.transparency{background:linear-gradient(135deg,#e0f2fe,#bae6fd)}
.criteria-icon svg{width:22px;height:22px}
.criteria-card h3{font-family:var(--font-heading);font-size:18px;font-weight:700;color:var(--navy);margin-bottom:8px;letter-spacing:-.01em}
.criteria-card p{font-size:14px;color:var(--slate);line-height:1.6}

/* DONT */
.dont-section{background:var(--navy);padding:72px 40px;position:relative;overflow:hidden}
.dont-section::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(90deg,transparent,transparent 200px,rgba(255,255,255,.02) 200px,rgba(255,255,255,.02) 201px);pointer-events:none}
.dont-inner{max-width:700px;margin:0 auto;position:relative;z-index:1}
.dont-inner .section-label{color:#93bbfd}
.dont-inner .section-label::before{background:#93bbfd}
.dont-title{font-family:var(--font-heading);font-size:clamp(24px,3vw,34px);font-weight:800;color:var(--white);letter-spacing:-.03em;margin-bottom:36px}
.dont-list{display:flex;flex-direction:column;gap:16px}
.dont-item{display:flex;align-items:center;gap:16px;font-size:17px;color:#cbd5e1;font-weight:500}
.dont-x{width:36px;height:36px;border-radius:10px;background:rgba(239,68,68,.12);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.dont-x svg{width:18px;height:18px;color:#ef4444}

/* FAQ */
.faq-section{background:var(--white);padding:72px 40px}
.faq-inner{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border);padding:24px 0}
.faq-item:first-child{border-top:1px solid var(--border)}
.faq-q{font-family:var(--font-heading);font-size:17px;font-weight:700;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;user-select:none}
.faq-q svg{width:20px;height:20px;color:var(--slate-light);flex-shrink:0;transition:transform .3s}
.faq-item.open .faq-q svg{transform:rotate(180deg)}
.faq-a{font-size:15px;color:var(--slate);line-height:1.65;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease;padding-top:0}
.faq-item.open .faq-a{max-height:200px;padding-top:12px}

/* CTA */
.cta-section{background:var(--bg-light);padding:64px 40px}
.cta-inner{max-width:680px;margin:0 auto;text-align:center}
.cta-inner h2{font-family:var(--font-heading);font-size:clamp(24px,3vw,32px);font-weight:800;color:var(--navy);letter-spacing:-.02em;margin-bottom:12px}
.cta-inner p{font-size:16px;color:var(--slate);margin-bottom:28px;max-width:480px;margin-left:auto;margin-right:auto}
.btn-submit{display:inline-flex;align-items:center;gap:8px;background:var(--blue);color:var(--white);padding:14px 28px;border-radius:12px;font-family:var(--font-heading);font-size:16px;font-weight:600;text-decoration:none;transition:all .2s;border:none;cursor:pointer}
.btn-submit:hover{background:var(--blue-hover);transform:translateY(-1px);box-shadow:0 4px 16px rgba(37,99,235,.25)}
.btn-submit svg{width:18px;height:18px}

/* FOOTER */
.footer{background:var(--navy-deep);padding:56px 40px 32px}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.06);margin-bottom:24px}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand-icon{width:32px;height:32px;background:var(--blue);border-radius:8px;display:flex;align-items:center;justify-content:center}
.footer-brand-icon svg{width:18px;height:18px}
.footer-brand-text{font-family:var(--font-heading);font-weight:700;font-size:16px;color:var(--white)}
.footer-tagline{font-size:14px;color:var(--slate);max-width:280px;line-height:1.5}
.footer-links{display:flex;gap:48px}
.footer-col h4{font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--slate-light);text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}
.footer-col a{display:block;font-size:14px;color:var(--slate);text-decoration:none;margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center}
.footer-copy{font-size:13px;color:var(--slate)}
.footer-email a{font-size:13px;color:var(--slate);text-decoration:none;transition:color .2s}
.footer-email a:hover{color:var(--blue)}

.reveal{opacity:0;transform:translateY(20px);transition:opacity .5s ease,transform .5s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

@media(max-width:900px){.criteria-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){
  .header{padding:0 20px}.header-nav{display:none}
  .hero{padding:32px 20px 40px}
  .process-section,.criteria-section,.dont-section,.faq-section{padding:48px 20px}
  .criteria-grid{grid-template-columns:1fr}
  .timeline{padding-left:52px}
  .step-number{left:-52px;width:40px;height:40px;font-size:16px;border-radius:12px}
  .footer{padding:40px 20px 24px}.footer-top{flex-direction:column;gap:32px}.footer-links{gap:32px}.footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .cta-section{padding:48px 20px}
}


/* About */

:root{--navy:#1a2b4a;--navy-deep:#0f172a;--blue:#2563eb;--blue-hover:#1d4ed8;--blue-light:#dbeafe;--amber:#f59e0b;--green:#16a34a;--green-light:#dcfce7;--bg-light:#f8fafc;--slate:#64748b;--slate-light:#94a3b8;--white:#fff;--border:#e2e8f0;--dark:#0f172a;--font-heading:'Plus Jakarta Sans',sans-serif;--font-body:'DM Sans',sans-serif}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
body{font-family:var(--font-body);color:var(--dark);line-height:1.6;background:var(--white);-webkit-font-smoothing:antialiased}

.header{background:var(--navy);padding:0 40px;height:72px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100}
.header-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.header-logo-icon{width:36px;height:36px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center}
.header-logo-icon svg{width:20px;height:20px}
.header-logo-text{font-family:var(--font-heading);font-weight:700;font-size:18px;color:var(--white);letter-spacing:-.02em}
.header-nav{display:flex;align-items:center;gap:32px;list-style:none}
.header-nav a{font-size:14px;font-weight:500;color:var(--slate-light);text-decoration:none;transition:color .2s}
.header-nav a:hover{color:var(--white)}
.header-nav .nav-cta{background:rgba(37,99,235,.15);color:#93bbfd;padding:8px 18px;border-radius:8px;font-weight:600;transition:all .2s}
.header-nav .nav-cta:hover{background:var(--blue);color:var(--white)}

.hero{background:linear-gradient(135deg,var(--navy),#243b5e);padding:48px 40px 56px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-40%;right:-10%;width:60%;height:180%;background:radial-gradient(ellipse,rgba(37,99,235,.07),transparent 65%);pointer-events:none}
.hero-inner{max-width:800px;margin:0 auto;position:relative;z-index:1}
.breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:20px;font-size:13px}
.breadcrumb a{color:var(--slate-light);text-decoration:none}.breadcrumb .sep{color:#475569}.breadcrumb .current{color:#cbd5e1}
.hero h1{font-family:var(--font-heading);font-size:clamp(30px,4vw,44px);font-weight:800;color:var(--white);letter-spacing:-.03em;line-height:1.15;margin-bottom:12px}
.hero-sub{font-size:17px;color:var(--slate-light);max-width:600px}

.content-section{padding:64px 40px}
.content-inner{max-width:760px;margin:0 auto}
.content-inner h2{font-family:var(--font-heading);font-size:26px;font-weight:800;color:var(--navy);letter-spacing:-.02em;margin-bottom:16px;margin-top:40px}
.content-inner h2:first-child{margin-top:0}
.content-inner p{font-size:16px;color:var(--slate);line-height:1.7;margin-bottom:16px}
.content-inner p strong{color:var(--dark)}

.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:32px 0}
.value-card{background:var(--bg-light);border-radius:14px;padding:28px;text-align:center}
.value-icon{width:48px;height:48px;border-radius:12px;background:var(--blue-light);display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.value-icon svg{width:22px;height:22px;color:var(--blue)}
.value-card h3{font-family:var(--font-heading);font-size:16px;font-weight:700;color:var(--navy);margin-bottom:6px}
.value-card p{font-size:14px;color:var(--slate);margin-bottom:0}

.stats-bar{background:var(--navy);border-radius:16px;padding:40px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center;margin:40px 0}
.stat-num{font-family:var(--font-heading);font-size:36px;font-weight:800;color:var(--white);letter-spacing:-.03em}
.stat-label{font-size:14px;color:var(--slate-light);margin-top:4px}

.footer{background:var(--navy-deep);padding:56px 40px 32px}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.06);margin-bottom:24px}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand-icon{width:32px;height:32px;background:var(--blue);border-radius:8px;display:flex;align-items:center;justify-content:center}
.footer-brand-icon svg{width:18px;height:18px}
.footer-brand-text{font-family:var(--font-heading);font-weight:700;font-size:16px;color:var(--white)}
.footer-tagline{font-size:14px;color:var(--slate);max-width:280px;line-height:1.5}
.footer-links{display:flex;gap:48px}
.footer-col h4{font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--slate-light);text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}
.footer-col a{display:block;font-size:14px;color:var(--slate);text-decoration:none;margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center}
.footer-copy{font-size:13px;color:var(--slate)}
.footer-email a{font-size:13px;color:var(--slate);text-decoration:none}

@media(max-width:768px){
  .header{padding:0 20px}.header-nav{display:none}
  .hero{padding:32px 20px 40px}.content-section{padding:40px 20px}
  .values-grid{grid-template-columns:1fr}
  .stats-bar{grid-template-columns:1fr;gap:16px;padding:28px}
  .footer{padding:40px 20px 24px}.footer-top{flex-direction:column;gap:32px}.footer-links{gap:32px}.footer-bottom{flex-direction:column;gap:8px;text-align:center}
}


/* Contact */

:root{--navy:#1a2b4a;--navy-deep:#0f172a;--blue:#2563eb;--blue-hover:#1d4ed8;--blue-light:#dbeafe;--bg-light:#f8fafc;--slate:#64748b;--slate-light:#94a3b8;--white:#fff;--border:#e2e8f0;--dark:#0f172a;--font-heading:'Plus Jakarta Sans',sans-serif;--font-body:'DM Sans',sans-serif}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
body{font-family:var(--font-body);color:var(--dark);line-height:1.6;background:var(--bg-light);-webkit-font-smoothing:antialiased}

.header{background:var(--navy);padding:0 40px;height:72px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100}
.header-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.header-logo-icon{width:36px;height:36px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center}
.header-logo-icon svg{width:20px;height:20px}
.header-logo-text{font-family:var(--font-heading);font-weight:700;font-size:18px;color:var(--white);letter-spacing:-.02em}
.header-nav{display:flex;align-items:center;gap:32px;list-style:none}
.header-nav a{font-size:14px;font-weight:500;color:var(--slate-light);text-decoration:none;transition:color .2s}
.header-nav a:hover{color:var(--white)}
.header-nav .nav-cta{background:rgba(37,99,235,.15);color:#93bbfd;padding:8px 18px;border-radius:8px;font-weight:600;transition:all .2s}
.header-nav .nav-cta:hover{background:var(--blue);color:var(--white)}

.hero{background:linear-gradient(135deg,var(--navy),#243b5e);padding:48px 40px 56px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-40%;right:-10%;width:60%;height:180%;background:radial-gradient(ellipse,rgba(37,99,235,.07),transparent 65%);pointer-events:none}
.hero-inner{max-width:800px;margin:0 auto;position:relative;z-index:1}
.breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:20px;font-size:13px}
.breadcrumb a{color:var(--slate-light);text-decoration:none}.breadcrumb .sep{color:#475569}.breadcrumb .current{color:#cbd5e1}
.hero h1{font-family:var(--font-heading);font-size:clamp(30px,4vw,44px);font-weight:800;color:var(--white);letter-spacing:-.03em;line-height:1.15;margin-bottom:12px}
.hero-sub{font-size:17px;color:var(--slate-light);max-width:540px}

.contact-section{padding:64px 40px}
.contact-inner{max-width:900px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:40px}

.contact-info{display:flex;flex-direction:column;gap:28px}
.contact-card{background:var(--white);border:1px solid var(--border);border-radius:16px;padding:28px}
.contact-card-icon{width:44px;height:44px;border-radius:12px;background:var(--blue-light);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.contact-card-icon svg{width:20px;height:20px;color:var(--blue)}
.contact-card h3{font-family:var(--font-heading);font-size:17px;font-weight:700;color:var(--navy);margin-bottom:6px}
.contact-card p{font-size:15px;color:var(--slate);margin-bottom:0}
.contact-card a{color:var(--blue);text-decoration:none;font-weight:500}
.contact-card a:hover{text-decoration:underline}

.contact-form-wrap{background:var(--white);border:1px solid var(--border);border-radius:16px;padding:36px}
.contact-form-wrap h2{font-family:var(--font-heading);font-size:22px;font-weight:800;color:var(--navy);letter-spacing:-.02em;margin-bottom:24px}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-size:14px;font-weight:500;color:var(--dark);margin-bottom:6px}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1.5px solid var(--border);border-radius:10px;font-family:var(--font-body);font-size:15px;color:var(--dark);background:var(--white);outline:none;transition:border-color .2s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(37,99,235,.1)}
.form-group textarea{resize:vertical;min-height:120px}
.btn-send{display:inline-flex;align-items:center;gap:8px;background:var(--blue);color:var(--white);padding:13px 28px;border-radius:10px;font-family:var(--font-heading);font-size:15px;font-weight:600;text-decoration:none;transition:all .2s;border:none;cursor:pointer;width:100%;justify-content:center}
.btn-send:hover{background:var(--blue-hover);transform:translateY(-1px)}
.btn-send svg{width:16px;height:16px}

.footer{background:var(--navy-deep);padding:56px 40px 32px}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.06);margin-bottom:24px}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand-icon{width:32px;height:32px;background:var(--blue);border-radius:8px;display:flex;align-items:center;justify-content:center}
.footer-brand-icon svg{width:18px;height:18px}
.footer-brand-text{font-family:var(--font-heading);font-weight:700;font-size:16px;color:var(--white)}
.footer-tagline{font-size:14px;color:var(--slate);max-width:280px;line-height:1.5}
.footer-links{display:flex;gap:48px}
.footer-col h4{font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--slate-light);text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}
.footer-col a{display:block;font-size:14px;color:var(--slate);text-decoration:none;margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center}
.footer-copy{font-size:13px;color:var(--slate)}
.footer-email a{font-size:13px;color:var(--slate);text-decoration:none}

@media(max-width:768px){
  .header{padding:0 20px}.header-nav{display:none}
  .hero{padding:32px 20px 40px}.contact-section{padding:40px 20px}
  .contact-inner{grid-template-columns:1fr}
  .footer{padding:40px 20px 24px}.footer-top{flex-direction:column;gap:32px}.footer-links{gap:32px}.footer-bottom{flex-direction:column;gap:8px;text-align:center}
}


/* Privacy */

:root{--navy:#1a2b4a;--navy-deep:#0f172a;--blue:#2563eb;--bg-light:#f8fafc;--slate:#64748b;--slate-light:#94a3b8;--white:#fff;--border:#e2e8f0;--dark:#0f172a;--font-heading:'Plus Jakarta Sans',sans-serif;--font-body:'DM Sans',sans-serif}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
body{font-family:var(--font-body);color:var(--dark);line-height:1.6;background:var(--white);-webkit-font-smoothing:antialiased}

.header{background:var(--navy);padding:0 40px;height:72px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100}
.header-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.header-logo-icon{width:36px;height:36px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center}
.header-logo-icon svg{width:20px;height:20px}
.header-logo-text{font-family:var(--font-heading);font-weight:700;font-size:18px;color:var(--white);letter-spacing:-.02em}
.header-nav{display:flex;align-items:center;gap:32px;list-style:none}
.header-nav a{font-size:14px;font-weight:500;color:var(--slate-light);text-decoration:none;transition:color .2s}
.header-nav a:hover{color:var(--white)}
.header-nav .nav-cta{background:rgba(37,99,235,.15);color:#93bbfd;padding:8px 18px;border-radius:8px;font-weight:600;transition:all .2s}
.header-nav .nav-cta:hover{background:var(--blue);color:var(--white)}

.hero{background:linear-gradient(135deg,var(--navy),#243b5e);padding:48px 40px 56px;position:relative;overflow:hidden}
.hero-inner{max-width:800px;margin:0 auto;position:relative;z-index:1}
.breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:20px;font-size:13px}
.breadcrumb a{color:var(--slate-light);text-decoration:none}.breadcrumb .sep{color:#475569}.breadcrumb .current{color:#cbd5e1}
.hero h1{font-family:var(--font-heading);font-size:clamp(30px,4vw,44px);font-weight:800;color:var(--white);letter-spacing:-.03em;line-height:1.15;margin-bottom:12px}
.hero-sub{font-size:17px;color:var(--slate-light)}

.legal-section{padding:64px 40px}
.legal-inner{max-width:760px;margin:0 auto}
.legal-inner .updated{font-size:14px;color:var(--slate);margin-bottom:32px;padding-bottom:20px;border-bottom:1px solid var(--border)}
.legal-inner h2{font-family:var(--font-heading);font-size:22px;font-weight:800;color:var(--navy);letter-spacing:-.02em;margin-bottom:12px;margin-top:36px}
.legal-inner h2:first-of-type{margin-top:0}
.legal-inner p{font-size:15px;color:var(--slate);line-height:1.7;margin-bottom:14px}
.legal-inner ul{margin:12px 0 14px 24px;font-size:15px;color:var(--slate);line-height:1.7}
.legal-inner ul li{margin-bottom:6px}
.legal-inner a{color:var(--blue);text-decoration:none;font-weight:500}
.legal-inner a:hover{text-decoration:underline}

.footer{background:var(--navy-deep);padding:56px 40px 32px}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.06);margin-bottom:24px}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand-icon{width:32px;height:32px;background:var(--blue);border-radius:8px;display:flex;align-items:center;justify-content:center}
.footer-brand-icon svg{width:18px;height:18px}
.footer-brand-text{font-family:var(--font-heading);font-weight:700;font-size:16px;color:var(--white)}
.footer-tagline{font-size:14px;color:var(--slate);max-width:280px;line-height:1.5}
.footer-links{display:flex;gap:48px}
.footer-col h4{font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--slate-light);text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}
.footer-col a{display:block;font-size:14px;color:var(--slate);text-decoration:none;margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center}
.footer-copy{font-size:13px;color:var(--slate)}
.footer-email a{font-size:13px;color:var(--slate);text-decoration:none}

@media(max-width:768px){
  .header{padding:0 20px}.header-nav{display:none}
  .hero{padding:32px 20px 40px}.legal-section{padding:40px 20px}
  .footer{padding:40px 20px 24px}.footer-top{flex-direction:column;gap:32px}.footer-links{gap:32px}.footer-bottom{flex-direction:column;gap:8px;text-align:center}
}

