:root {
    --navy: #0B3D5B;
    --navy-deep: #082B40;
    --blue: #1F6FAF;
    --blue-light: #4A90C7;
    --bg: #F6FAFD;
    --bg-card: #FFFFFF;
    --bg-soft: #EAF1F7;
    --text: #1A2A36;
    --text-muted: #5A6B78;
    --rule: #D6E2EB;
    --accent: #2E9D7E;
    --warn: #C8924B;
    --shadow: 0 1px 2px rgba(11,61,91,0.06), 0 4px 12px rgba(11,61,91,0.05);
    --shadow-lg: 0 4px 8px rgba(11,61,91,0.08), 0 16px 32px rgba(11,61,91,0.08);
    --radius: 10px;
    --radius-lg: 16px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--blue); text-decoration: none; }
  a:hover { text-decoration: underline; }
  img { max-width: 100%; display: block; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

  /* ===== Top bar ===== */
  .topbar {
    background: #fff;
    border-bottom: 1px solid var(--rule);
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: saturate(180%) blur(8px);
  }
  .topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
    max-width: 1180px; margin: 0 auto;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 20px; color: var(--navy);
    letter-spacing: -0.2px;
  }
  .logo-mark {
    width: 160px;  border-radius: 8px;
    display: grid; place-items: center;
    color: white; font-weight: 700;
  }
  .logo-mark svg { width: 18px; height: 18px; }
  nav.primary { display: flex; gap: 28px; align-items: center; }
  nav.primary a {
    color: var(--text); font-size: 15px; font-weight: 500;
    text-decoration: none;
  }
  nav.primary a:hover { color: var(--blue); }
  .nav-cta { display: flex; gap: 10px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 0; cursor: pointer;
    padding: 10px 18px; border-radius: 8px;
    font-size: 15px; font-weight: 600;
    transition: transform .05s ease, box-shadow .15s ease, background .15s ease;
    text-decoration: none;
  }
  .btn:hover { text-decoration: none; }
  .btn-primary {
    background: var(--navy); color: white;
  }
  .btn-primary:hover { background: var(--navy-deep); box-shadow: 0 6px 16px rgba(11,61,91,0.25); }
  .btn-secondary {
    background: white; color: var(--navy); border: 1px solid var(--rule);
  }
  .btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
  .btn-ghost {
    background: transparent; color: var(--navy); padding: 8px 12px;
  }
  .btn-ghost:hover { color: var(--blue); }
  .btn-lg { padding: 14px 24px; font-size: 16px; }

  @media (max-width: 820px) {
    nav.primary { display: none; }
  }

  /* ===== Hero ===== */
  .hero {
    background:
      radial-gradient(1200px 500px at 80% -10%, rgba(74,144,199,0.18) 0%, transparent 60%),
      radial-gradient(900px 400px at 0% 40%, rgba(46,157,126,0.10) 0%, transparent 60%),
      linear-gradient(180deg, #F0F6FB 0%, #FBFDFE 100%);
    padding: 72px 0 64px;
    border-bottom: 1px solid var(--rule);
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--blue);
    background: white; border: 1px solid var(--rule);
    padding: 6px 12px; border-radius: 999px;
    margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 0.6px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  h1.hero-title {
    font-size: 52px; line-height: 1.08; letter-spacing: -1.2px;
    margin: 0 0 20px; color: var(--navy);
    font-weight: 700;
  }
  @media (max-width: 600px) { h1.hero-title { font-size: 38px; } }
  .hero-sub {
    font-size: 19px; line-height: 1.55; color: var(--text-muted);
    margin: 0 0 28px; max-width: 580px;
  }

  /* Search box */
  .search-card {
    background: white; padding: 14px;
    border-radius: 14px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--rule);
    display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px;
    align-items: center;
  }
  @media (max-width: 700px) { .search-card { grid-template-columns: 1fr; } }
  .search-field {
    display: flex; flex-direction: column; padding: 8px 14px;
    border-radius: 10px;
    transition: background .15s ease;
  }
  .search-field:hover { background: var(--bg); }
  .search-field label {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.6px; color: var(--text-muted); margin-bottom: 2px;
  }
  .search-field input, .search-field select {
    border: 0; background: transparent; padding: 0; outline: none;
    font-size: 15px; color: var(--text); font-family: inherit;
  }
  .search-card .btn { padding: 14px 20px; }
  .trust-row {
    margin-top: 28px; display: flex; gap: 22px; flex-wrap: wrap; align-items: center;
    color: var(--text-muted); font-size: 14px;
  }
  .trust-item { display: inline-flex; align-items: center; gap: 8px; }
  .trust-item svg { width: 16px; height: 16px; color: var(--accent); }

  /* Hero illustration */
  .hero-visual {
    position: relative; min-height: 420px;
  }
  .visual-card {
    position: absolute; background: white;
    border-radius: 14px; box-shadow: var(--shadow-lg);
    padding: 18px; border: 1px solid var(--rule);
  }
  .visual-card.main {
    width: 280px; top: 20px; right: 20px;
  }
  .visual-card.sub {
    width: 240px; bottom: 0; left: 0;
  }
  .visual-card.notif {
    width: 220px; top: 200px; right: 0;
  }
  .vc-row { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #4A90C7 0%, #2E9D7E 100%);
    display: grid; place-items: center; color: white; font-weight: 700;
  }
  .vc-name { font-weight: 600; color: var(--navy); font-size: 15px; }
  .vc-spec { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
  .vc-stars { color: #E5A93C; font-size: 14px; margin-top: 6px; letter-spacing: 1px; }
  .vc-row.compact { gap: 8px; }
  .badge-verified {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(46,157,126,0.12); color: var(--accent);
    font-size: 11px; font-weight: 600;
    padding: 3px 8px; border-radius: 999px; margin-top: 8px;
  }
  .vc-times { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
  .vc-time { background: var(--bg-soft); color: var(--navy);
    padding: 6px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
  .vc-time.selected { background: var(--navy); color: white; }
  .notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
  .notif-text { font-size: 13px; color: var(--text); }
  .notif-text strong { color: var(--navy); }

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

  /* ===== Section helpers ===== */
  section { padding: 88px 0; }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .section-eyebrow {
    font-size: 13px; font-weight: 600; color: var(--blue);
    text-transform: uppercase; letter-spacing: 1.2px;
    margin: 0 0 12px;
  }
  h2 {
    font-size: 38px; line-height: 1.15; letter-spacing: -0.8px;
    margin: 0 0 16px; color: var(--navy); font-weight: 700;
  }
  @media (max-width: 600px) { h2 { font-size: 30px; } }
  .section-sub { font-size: 18px; color: var(--text-muted); margin: 0; }

  /* ===== Categories ===== */
  .cat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  @media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr; } }
  .cat-card {
    background: white; border: 1px solid var(--rule); border-radius: var(--radius);
    padding: 22px 20px; transition: all .15s ease; cursor: pointer;
    display: flex; flex-direction: column; gap: 10px;
    text-decoration: none; color: inherit;
  }
  .cat-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
  a.cat-card { color: inherit; }
  a.cat-card:hover { text-decoration: none; }
  .cat-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--bg-soft); color: var(--blue);
    display: grid; place-items: center;
  }
  .cat-icon svg { width: 22px; height: 22px; }
  .cat-name { font-weight: 600; color: var(--navy); font-size: 16px; }
  .cat-count { color: var(--text-muted); font-size: 13px; }

  /* ===== How it works ===== */
  .hiw-bg { background: var(--bg-soft); }
  .hiw-tabs { display: flex; justify-content: center; gap: 8px; margin: 0 0 40px; }
  .hiw-tab {
    background: white; border: 1px solid var(--rule); color: var(--text);
    padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
    cursor: pointer; transition: all .15s ease;
  }
  .hiw-tab.active { background: var(--navy); color: white; border-color: var(--navy); }
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  @media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
  .step {
    background: white; padding: 28px; border-radius: var(--radius);
    border: 1px solid var(--rule); position: relative;
  }
  .step-num {
    position: absolute; top: -16px; left: 24px;
    background: var(--navy); color: white; font-weight: 700; font-size: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    display: grid; place-items: center;
  }
  .step h3 { margin: 8px 0 8px; font-size: 18px; color: var(--navy); }
  .step p { margin: 0; color: var(--text-muted); font-size: 15px; }

  /* ===== Trust ===== */
  .trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  @media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }
  .trust-card {
    background: white; padding: 28px; border-radius: var(--radius);
    border: 1px solid var(--rule);
  }
  .trust-card .icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(46,157,126,0.12); color: var(--accent);
    display: grid; place-items: center; margin-bottom: 16px;
  }
  .trust-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
  .trust-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

  /* ===== Pricing ===== */
  .price-bg { background: var(--bg-soft); }
  .price-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  @media (max-width: 1000px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }
  .price-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--rule); padding: 28px 24px;
    display: flex; flex-direction: column;
    transition: all .15s ease;
  }
  .price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .price-card.featured {
    border: 2px solid var(--navy);
    position: relative;
  }
  .featured-tag {
    position: absolute; top: -12px; right: 20px;
    background: var(--navy); color: white;
    padding: 4px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  }
  .price-tier { font-size: 13px; font-weight: 600; color: var(--blue);
    text-transform: uppercase; letter-spacing: 1px; }
  .price-name { font-size: 22px; font-weight: 700; color: var(--navy); margin: 6px 0 14px; }
  .price-amount { display: flex; align-items: baseline; gap: 4px; margin: 0 0 4px; }
  .price-amount .num { font-size: 38px; font-weight: 700; color: var(--navy); letter-spacing: -1px; }
  .price-amount .per { color: var(--text-muted); font-size: 15px; }
  .price-note { color: var(--text-muted); font-size: 13px; margin: 0 0 22px; min-height: 18px; }
  .price-list { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
  .price-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0; font-size: 14px; color: var(--text);
  }
  .price-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

  .price-promise {
    text-align: center; max-width: 760px; margin: 40px auto 0;
    padding: 20px 24px; background: white; border-radius: var(--radius);
    border-left: 4px solid var(--navy); box-shadow: var(--shadow);
    color: var(--text); font-size: 15px;
  }
  .price-promise strong { color: var(--navy); }

  /* ===== Loyalty / Well Points ===== */
  .well {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  }
  @media (max-width: 900px) { .well { grid-template-columns: 1fr; gap: 32px; } }
  .well h2 { text-align: left; }
  .well-list { list-style: none; padding: 0; margin: 0; }
  .well-list li {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--rule);
  }
  .well-list li:last-child { border-bottom: 0; }
  .well-pts {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white; font-weight: 700; font-size: 14px;
    width: 64px; height: 64px; border-radius: 50%;
    display: grid; place-items: center; flex-shrink: 0;
  }
  .well-pts span { font-size: 11px; font-weight: 500; opacity: .8; }
  .well-pts strong { display: block; font-size: 18px; line-height: 1; }
  .well-action { font-weight: 600; color: var(--navy); margin-bottom: 2px; }
  .well-desc { color: var(--text-muted); font-size: 14px; }
  .well-illustration {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-lg); padding: 40px;
    color: white; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
  }
  .well-illustration::before {
    content: ""; position: absolute; right: -60px; top: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .well-illustration::after {
    content: ""; position: absolute; left: -40px; bottom: -40px;
    width: 140px; height: 140px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .well-illustration h3 {
    font-size: 24px; margin: 0 0 8px; position: relative;
  }
  .well-illustration p { margin: 0 0 28px; opacity: .85; position: relative; }
  .well-stat {
    background: rgba(255,255,255,0.12); padding: 16px 20px;
    border-radius: 10px; margin-bottom: 12px; position: relative;
    display: flex; justify-content: space-between; align-items: center;
  }
  .well-stat-label { font-size: 14px; opacity: .9; }
  .well-stat-value { font-weight: 700; font-size: 18px; }
  .well-disclaimer {
    font-size: 12px; opacity: .7; margin-top: 16px; position: relative;
  }

  /* ===== Provider CTA ===== */
  .provider-bg { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: white; }
  .provider-bg h2 { color: white; }
  .provider-bg .section-sub { color: rgba(255,255,255,0.8); }
  .provider-bg .section-eyebrow { color: var(--blue-light); }
  .provider-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 40px;
  }
  @media (max-width: 800px) { .provider-grid { grid-template-columns: 1fr; } }
  .provider-feat {
    background: rgba(255,255,255,0.06); padding: 24px;
    border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.10);
  }
  .provider-feat .icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(255,255,255,0.10);
    display: grid; place-items: center; margin-bottom: 14px;
    color: var(--blue-light);
  }
  .provider-feat h3 { margin: 0 0 6px; font-size: 17px; color: white; }
  .provider-feat p { margin: 0; color: rgba(255,255,255,0.75); font-size: 14px; }
  .provider-cta-row {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  }
  .btn-on-dark { background: white; color: var(--navy); }
  .btn-on-dark:hover { background: var(--bg-soft); }
  .btn-outline-dark { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
  .btn-outline-dark:hover { border-color: white; }

  /* ===== Testimonials ===== */
  .test-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  @media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
  .test-card {
    background: white; border: 1px solid var(--rule);
    border-radius: var(--radius); padding: 28px;
  }
  .test-stars { color: #E5A93C; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
  .test-quote { font-size: 16px; line-height: 1.6; color: var(--text); margin: 0 0 20px; }
  .test-author { display: flex; gap: 12px; align-items: center; }
  .test-author .avatar { width: 40px; height: 40px; font-size: 15px; }
  .test-name { font-weight: 600; color: var(--navy); font-size: 14px; }
  .test-role { color: var(--text-muted); font-size: 13px; }

  /* ===== FAQ ===== */
  .faq-bg { background: var(--bg-soft); }
  .faq { max-width: 820px; margin: 0 auto; }
  details.faq-item {
    background: white; border: 1px solid var(--rule);
    border-radius: var(--radius); margin-bottom: 12px;
    transition: box-shadow .15s ease;
  }
  details.faq-item[open] { box-shadow: var(--shadow); }
  details.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 18px 22px; font-weight: 600; color: var(--navy);
    display: flex; justify-content: space-between; align-items: center;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary::after {
    content: "+"; color: var(--blue); font-weight: 400; font-size: 24px;
    transition: transform .2s ease;
  }
  details.faq-item[open] summary::after { content: "−"; }
  details.faq-item .faq-body {
    padding: 0 22px 22px; color: var(--text-muted); line-height: 1.6;
  }

  /* ===== Final CTA ===== */
  .final-cta {
    text-align: center; padding: 88px 0;
    background:
      radial-gradient(800px 300px at 50% 0%, rgba(74,144,199,0.18) 0%, transparent 60%),
      var(--bg);
  }
  .final-cta h2 { margin-bottom: 16px; }
  .final-cta .section-sub { margin-bottom: 32px; }
  .final-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ===== Footer ===== */
  footer {
    background: var(--navy-deep); color: rgba(255,255,255,0.8);
    padding: 56px 0 28px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
  .footer-brand { display: flex; flex-direction: column; gap: 14px; }
  .footer-brand .logo { color: white; }
  .footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.55; max-width: 320px; margin: 0; }
  .footer-col h4 {
    margin: 0 0 14px; color: white; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.65); font-size: 14px;
  }
  .footer-col ul li a:hover { color: white; text-decoration: none; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; flex-wrap: wrap; gap: 16px;
    color: rgba(255,255,255,0.5); font-size: 13px;
  }
  .compliance-badges { display: flex; gap: 14px; flex-wrap: wrap; }
  .compliance-badges span {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 12px; border-radius: 6px; font-size: 12px;
  }

  /* small reset for SVG icons */
  svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  
  
  
/* 汉堡按钮 (仅手机显示) */
.menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
width: 28px;
height: 22px;
cursor: pointer;
background: transparent;
border: none;
padding: 0;
}
.menu-toggle span {
width: 100%;
height: 2px;
background: var(--navy);
border-radius: 2px;
transition: all 0.2s ease;
}
/* 移动端菜单容器 (滑出层) */
.mobile-nav {
position: fixed;
top: 0;
right: -100%;
width: 280px;
height: 100%;
background: white;
box-shadow: -4px 0 20px rgba(0,0,0,0.1);
z-index: 1001;
padding: 80px 24px 32px;
transition: right 0.3s ease;
display: flex;
flex-direction: column;
gap: 24px;
}
.mobile-nav.open {
right: 0;
}
.mobile-nav a {
font-size: 18px;
font-weight: 500;
color: var(--navy);
padding: 12px 0;
border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-child {
border-bottom: none;
}
.mobile-nav .mobile-cta {
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 12px;
}
/* 遮罩层 */
.nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.4);
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease;
}
.nav-overlay.active {
opacity: 1;
visibility: visible;
}

@media (max-width: 820px) {
nav.primary { display: none; }
.menu-toggle { display: flex; }
.nav-cta .btn-ghost { display: none; } /* 手机上只显示主要按钮，可自行调整 */
}





/* Section */
h1 { font-size: 2.8rem; color: var(--navy); margin-bottom: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.section { padding: 80px 0; }
.section-light { background: white; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; text-align: center; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 700px; margin: 0 auto 3rem; }

/* Service grid */
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
}
.service-card {
background: white;
border-radius: var(--radius-lg);
border: 1px solid var(--rule);
padding: 1.8rem;
transition: all 0.2s;
text-decoration: none;
color: inherit;
display: block;
}
.service-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: var(--blue-light);
}
.service-icon {
width: 54px;
height: 54px;
background: var(--bg-soft);
border-radius: 16px;
display: grid;
place-items: center;
margin-bottom: 1.2rem;
font-size: 1.8rem;
}
.service-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.service-tag {
display: inline-block;
background: var(--bg-soft);
padding: 4px 12px;
border-radius: 30px;
font-size: 0.7rem;
font-weight: 600;
color: var(--blue);
margin-top: 0.5rem;
}

/* Two-column value props */
.value-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
@media (max-width: 768px) { .value-grid { grid-template-columns: 1fr; } }
.value-list { list-style: none; padding: 0; }
.value-list li { display: flex; gap: 12px; margin-bottom: 1.2rem; align-items: flex-start; }
.check { color: var(--accent); font-size: 1.2rem; }

/* CTA */
.cta-banner {
background: linear-gradient(135deg, var(--navy), var(--navy-deep));
border-radius: var(--radius-lg);
padding: 3rem;
text-align: center;
color: white;
margin: 2rem 0;
}
.cta-banner h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.cta-banner .btn-primary { background: white; color: var(--navy); }











/* Search header */
.search-header {
background: white;
border-bottom: 1px solid var(--rule);
padding: 20px 0;
}
.search-box-large {
display: flex;
gap: 12px;
flex-wrap: wrap;
align-items: center;
background: white;
border: 1px solid var(--rule);
border-radius: 60px;
padding: 6px;
max-width: 700px;
}
.search-box-large input, .search-box-large select {
border: none;
padding: 12px 20px;
font-size: 16px;
background: transparent;
outline: none;
flex: 1;
}
.search-box-large button {
background: var(--navy);
color: white;
border: none;
padding: 10px 24px;
border-radius: 40px;
font-weight: 600;
cursor: pointer;
}

/* Layout */
.results-grid {
display: grid;
grid-template-columns: 280px 1fr;
gap: 32px;
margin: 32px 0 64px;
}
@media (max-width: 900px) {
.results-grid { grid-template-columns: 1fr; }
}

/* Filters sidebar */
.filters-sidebar {
background: white;
border: 1px solid var(--rule);
border-radius: var(--radius-lg);
padding: 24px;
position: sticky;
top: 90px;
height: fit-content;
}
.filter-section { margin-bottom: 24px; }
.filter-section h3 { font-size: 16px; color: var(--navy); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.filter-option input { width: 18px; height: 18px; accent-color: var(--navy); }
.filter-option label { font-size: 14px; }

/* Provider cards */
.provider-card {
background: white;
border: 1px solid var(--rule);
border-radius: var(--radius-lg);
padding: 20px;
margin-bottom: 20px;
display: flex;
gap: 20px;
transition: all 0.2s;
}
.provider-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.provider-avatar {
width: 100px;
height: 100px;
background: linear-gradient(135deg, var(--navy), var(--blue));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 32px;
font-weight: 600;
flex-shrink: 0;
}
.provider-info { flex: 1; }
.provider-name { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.provider-spec { color: var(--blue); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.provider-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.stars { color: #E5A93C; letter-spacing: 2px; }
.provider-location { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.provider-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { background: var(--bg-soft); padding: 4px 10px; border-radius: 30px; font-size: 12px; font-weight: 500; }
.book-btn { margin-top: 8px; padding:8px;}
@media (max-width: 640px) {
.provider-card { flex-direction: column; align-items: center; text-align: center; }
}
.btn-outline { background: transparent; border: 1px solid var(--rule); color: var(--navy); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-soft); }








/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); margin: 24px 0 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue); text-decoration: none; }
.breadcrumb .sep { color: var(--rule); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* ===== Provider Detail Layout ===== */
.detail-grid {
display: grid;
grid-template-columns: 1fr 360px;
gap: 40px;
margin: 32px 0 64px;
}
@media (max-width: 900px) {
.detail-grid { grid-template-columns: 1fr; }
}

/* Main content */
.provider-header {
display: flex;
gap: 24px;
flex-wrap: wrap;
margin-bottom: 32px;
border-bottom: 1px solid var(--rule);
padding-bottom: 24px;
}
.provider-avatar {
width: 140px;
height: 140px;
border-radius: 20px;
overflow: hidden;
background: var(--bg-soft);
flex-shrink: 0;
}
.provider-avatar img { width: 100%; height: 100%; object-fit: cover; }
.provider-title h1 { font-size: 32px; color: var(--navy); margin-bottom: 8px; }
.credentials { font-size: 15px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.rating-badge { display: flex; align-items: center; gap: 12px; margin: 12px 0; }
.stars { color: #E5A93C; letter-spacing: 2px; }
.verified-badge { background: rgba(46,157,126,0.12); color: var(--accent); padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.section-card {
background: white;
border: 1px solid var(--rule);
border-radius: var(--radius-lg);
padding: 28px;
margin-bottom: 32px;
}
.section-card h2 { font-size: 22px; color: var(--navy); margin-bottom: 20px; border-left: 4px solid var(--blue); padding-left: 16px; }
.section-card h3 { font-size: 18px; color: var(--navy); margin: 20px 0 12px; }
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.tag { background: var(--bg-soft); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--navy); }
.review-item { border-top: 1px solid var(--rule); padding: 20px 0; }
.review-item:first-child { border-top: none; padding-top: 0; }
.reviewer { font-weight: 600; color: var(--navy); }
.review-date { font-size: 12px; color: var(--text-muted); margin-left: 12px; }
.review-text { margin-top: 8px; color: var(--text-muted); }

/* Sidebar */
.sidebar-card {
background: white;
border: 1px solid var(--rule);
border-radius: var(--radius-lg);
padding: 24px;
margin-bottom: 24px;
position: sticky;
top: 100px;
}
.price { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.price small { font-size: 14px; font-weight: normal; color: var(--text-muted); }
.insurance-note { font-size: 13px; color: var(--accent); margin: 8px 0 16px; }
.location-item { display: flex; gap: 12px; margin: 16px 0; align-items: flex-start; }
.location-icon { color: var(--blue); width: 20px; height: 20px; margin-top: 2px; }
.location-addr { color: var(--text); }
.location-meta { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.language-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }







/* Pricing grid */
.pricing-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
margin: 3rem 0 2rem;
}
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
background: var(--bg-card);
border-radius: var(--radius-lg);
border: 1px solid var(--rule);
padding: 1.8rem;
transition: all 0.2s;
position: relative;
display: flex;
flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
border: 2px solid var(--navy);
box-shadow: var(--shadow-lg);
}
.featured-tag {
position: absolute;
top: -12px;
right: 20px;
background: var(--navy);
color: white;
padding: 4px 12px;
border-radius: 30px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
}
.price-tier { font-size: 0.75rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; }
.price-name { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 0.5rem 0 1rem; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.25rem; }
.price-amount .num { font-size: 2.5rem; font-weight: 800; color: var(--navy); }
.price-amount .per { color: var(--text-muted); font-size: 0.9rem; }
.price-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; min-height: 40px; }
.price-list { list-style: none; padding: 0; margin: 0 0 1.5rem; flex-grow: 1; }
.price-list li {
display: flex;
align-items: center;
gap: 10px;
padding: 0.5rem 0;
font-size: 0.85rem;
color: var(--text);
border-bottom: 1px solid var(--rule);
}
.price-list li:last-child { border-bottom: none; }
.price-list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* Promise banner */
.promise-banner {
background: white;
border-left: 4px solid var(--navy);
border-radius: var(--radius);
padding: 1.5rem;
margin: 2rem 0;
box-shadow: var(--shadow);
text-align: center;
}
.promise-banner strong { color: var(--navy); }

/* Feature highlights */
.features-section {
background: white;
padding: 4rem 0;
margin: 2rem 0;
border-top: 1px solid var(--rule);
border-bottom: 1px solid var(--rule);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature-item { text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-item h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.2rem; }
.feature-item p { color: var(--text-muted); font-size: 0.9rem; }

/* CTA */
.cta-section {
text-align: center;
padding: 4rem 0;
background: var(--bg-soft);
border-radius: var(--radius-lg);
margin: 2rem 0;
}







/* Two-column layout */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }
.two-col h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.two-col p { color: var(--text-muted); margin-bottom: 1rem; }

/* Values grid */
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.value-card {
background: white;
border-radius: var(--radius);
border: 1px solid var(--rule);
padding: 1.8rem;
text-align: center;
transition: all 0.2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-light); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Team member card */
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.team-card {
background: white;
border-radius: var(--radius-lg);
border: 1px solid var(--rule);
padding: 1.5rem;
text-align: center;
transition: all 0.2s;
}
.team-avatar {
width: 100px;
height: 100px;
background: linear-gradient(135deg, var(--navy), var(--blue));
border-radius: 50%;
margin: 0 auto 1rem;
display: grid;
place-items: center;
color: white;
font-size: 2rem;
font-weight: 600;
}
.team-card h3 { color: var(--navy); margin-bottom: 0.25rem; }
.team-title { color: var(--blue); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.team-bio { color: var(--text-muted); font-size: 0.85rem; }

/* Stats banner */
.stats-banner {
background: var(--navy);
color: white;
padding: 3rem;
border-radius: var(--radius-lg);
text-align: center;
margin: 2rem 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-number { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.9rem; opacity: 0.8; }













/* Contact grid */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin: 4rem 0;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-info {
background: white;
border-radius: var(--radius-lg);
border: 1px solid var(--rule);
padding: 2rem;
}
.contact-info h2 { color: var(--navy); margin-bottom: 1rem; font-size: 1.5rem; }
.info-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
}
.info-icon {
width: 44px;
height: 44px;
background: var(--bg-soft);
border-radius: 12px;
display: grid;
place-items: center;
font-size: 1.4rem;
}
.info-detail h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--navy); }
.info-detail p, .info-detail a { color: var(--text-muted); text-decoration: none; }
.info-detail a:hover { color: var(--blue); text-decoration: underline; }

.hours-list { list-style: none; padding: 0; margin-top: 0.5rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.3rem 0; color: var(--text-muted); }

/* Contact form */
.contact-form {
background: white;
border-radius: var(--radius-lg);
border: 1px solid var(--rule);
padding: 2rem;
}
.contact-form h2 { color: var(--navy); margin-bottom: 1rem; font-size: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
label { font-weight: 600; display: block; margin-bottom: 0.4rem; color: var(--navy); }
input, select, textarea {
width: 100%;
padding: 12px 14px;
border: 1px solid var(--rule);
border-radius: var(--radius);
font-size: 1rem;
background: white;
}
input:focus, textarea:focus {
outline: none;
border-color: var(--blue);
box-shadow: 0 0 0 3px rgba(31,111,175,0.15);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* Map */
.map-placeholder {
background: var(--bg-soft);
border-radius: var(--radius-lg);
height: 280px;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
border: 1px solid var(--rule);
margin: 2rem 0;
}

/* FAQ CTA */
.faq-cta {
background: var(--bg-soft);
border-radius: var(--radius-lg);
padding: 2rem;
text-align: center;
margin: 2rem 0 4rem;
}











.privacy.card {
background: var(--bg-card);
border-radius: var(--radius-lg);
border: 1px solid var(--rule);
padding: 2rem 2rem 2.5rem;
box-shadow: var(--shadow);
}
.privacy h1 { font-size: 2rem; color: var(--navy); margin-bottom: 1rem; font-weight: 700; }
.privacy .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; border-bottom: 1px solid var(--rule); padding-bottom: 0.75rem; }
.privacy h2 { font-size: 1.4rem; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.privacy p, .privacy li { margin-bottom: 0.75rem; color: var(--text-muted); }
.privacy ul, .privacy ol { margin-left: 1.5rem; margin-bottom: 1rem; }
.privacy a { color: var(--blue); text-decoration: none; }
.privacy a:hover { text-decoration: underline; }
.privacy .back-link { display: inline-block; margin-top: 2rem; padding: 0.5rem 1rem; border: 1px solid var(--rule); border-radius: 40px; font-size: 0.9rem; }
.privacy hr { margin: 1rem 0; border-color: var(--rule); }


.btn-block{width:100%;}