﻿  .ai-answer-block { background: var(--teal-light); border-left: 4px solid var(--teal); padding: 18px 0; }
  .ai-answer-text { font-size: 14px; color: var(--text); line-height: 1.7; margin: 0; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  :root {
    --teal: #0B7B8A;
    --teal-dark: #085E6A;
    --teal-light: #E6F5F7;
    --gold: #C09A2F;
    --gold-light: #FBF5E6;
    --navy: #0A1628;
    --text: #2C3E50;
    --muted: #5A6A7A;
    --border: #D5E5E8;
    --white: #FFFFFF;
    --offwhite: #F7FAFA;
    --font-heading: 'Georgia', serif;
    --font-body: 'Arial', sans-serif;
    --radius: 8px;
    --shadow: 0 2px 16px rgba(11,123,138,0.10);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
  img { max-width: 100%; display: block; }
  a { color: var(--teal); text-decoration: none; }
  a:hover { color: var(--teal-dark); }

  /* LAYOUT */
  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .section-title { font-family: var(--font-heading); font-size: clamp(26px, 4vw, 38px); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
  .section-subtitle { font-size: 16px; color: var(--muted); max-width: 640px; }
  .text-center { text-align: center; }
  .text-center .section-subtitle { margin: 0 auto; }

  /* HERO */
  .hero {
    position: relative;
    min-height: 520px;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('/images/dental-implants/img1.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.35;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.75) 55%, rgba(10,22,40,0.2) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 80px 0;
    max-width: 600px;
  }
  .hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .hero h1 span { color: #7DD4DC; }
  .hero-sub {
    font-size: 17px;
    color: #B8D0D8;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: #A8841E; border-color: #A8841E; color: var(--white); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.1); }

  /* TRUST BAR */
  .trust-bar { background: var(--teal-dark); padding: 16px 0; }
  .trust-items { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
  .trust-item { color: rgba(255,255,255,0.9); font-size: 13px; display: flex; align-items: center; gap: 8px; }
  .trust-check { color: #7DD4DC; font-size: 16px; font-weight: 700; }

  /* INTRO */
  .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .intro-img { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: var(--teal-light); min-height: 360px; display: flex; align-items: center; justify-content: center; }
  .intro-img img { width: 100%; height: 380px; object-fit: cover; max-height: 380px; }
  .intro-text .section-subtitle { margin-bottom: 24px; }
  .intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
  .stat-card { background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
  .stat-num { font-family: var(--font-heading); font-size: 28px; color: var(--teal); font-weight: 700; }
  .stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

  /* BENEFITS */
  .benefits-bg { background: var(--offwhite); }
  .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
  .benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; border-top: 3px solid var(--teal); transition: box-shadow 0.2s; }
  .benefit-card:hover { box-shadow: var(--shadow); }
  .benefit-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
  .benefit-img { width: 100%; height: 200px; overflow: hidden; border-radius: 8px; margin-bottom: 16px; background: var(--offwhite); display: flex; align-items: center; justify-content: center; }
  .benefit-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
  .benefit-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .benefit-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
  .service-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; display: flex; gap: 16px; }
  .service-num { width: 36px; height: 36px; background: var(--teal); color: var(--white); border-radius: 50%; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .service-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .service-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* PROCESS */
  .process-bg { background: var(--navy); }
  .process-bg .section-title { color: var(--white); }
  .process-bg .section-label { color: #7DD4DC; }
  .process-bg .section-subtitle { color: rgba(255,255,255,0.65); }
  .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; margin-top: 48px; }
  .step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 32px 24px; text-align: center; border-radius: 10px; }
  .step-num { width: 52px; height: 52px; background: var(--gold); color: var(--navy); border-radius: 50%; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-heading); }
  .step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .step-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

  /* GEO / SEO SECTION */
  .geo-bg { background: var(--teal-light); }
  .cities-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
  .city-tag { background: var(--white); border: 1px solid var(--teal); color: var(--teal-dark); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 20px; }
  .geo-text { font-size: 15px; color: var(--text); line-height: 1.8; max-width: 780px; }
  .geo-text strong { color: var(--navy); }

  /* TESTIMONIALS */
  .testi-carousel { position: relative; overflow: hidden; margin-top: 48px; }
  .testi-track-wrap { overflow: hidden; }
  .testi-track { display: flex; gap: 24px; transition: transform 0.5s ease; will-change: transform; }
  .testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background 0.2s; padding: 0; }
  .testi-dot.active { background: var(--teal); }
  .testi-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
  .testi-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); color: var(--teal); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
  .testi-arrow:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
  .testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; box-shadow: var(--shadow); min-width: 320px; max-width: 340px; flex-shrink: 0; }
  .stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text { font-size: 14px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
  .testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
  .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-light); color: var(--teal); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
  .testi-city { font-size: 12px; color: var(--muted); }

  /* WHY CHOOSE US */
  .why-bg { background: var(--offwhite); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; align-items: start; }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .why-item { display: flex; gap: 14px; align-items: flex-start; }
  .why-check { width: 28px; height: 28px; background: var(--teal); border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
  .why-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .why-text { font-size: 14px; color: var(--muted); }
  .dr-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
  .dr-img { width: 100%; height: auto; max-height: 500px; object-fit: contain; background: #f0f4f4; display: block; }
  .dr-info { padding: 24px; }
  .dr-name { font-family: var(--font-heading); font-size: 22px; color: var(--navy); margin-bottom: 4px; }
  .dr-title { font-size: 13px; color: var(--teal); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
  .dr-bio { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* FAQ */
  .faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 16px; }
  .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-size: 15px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq-q:hover { background: var(--teal-light); }
  .faq-icon { color: var(--teal); font-size: 20px; flex-shrink: 0; transition: transform 0.2s; }
  .faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 16px; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* FORM */
  .form-bg { background: var(--navy); }
  .form-bg .section-title { color: var(--white); }
  .form-bg .section-label { color: #7DD4DC; }
  .form-bg .section-subtitle { color: rgba(255,255,255,0.65); }
  .form-wrap { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 40px; max-width: 720px; margin: 40px auto 0; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
  .form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 11px 16px;
    font-size: 14px;
    border-radius: var(--radius);
    outline: none;
    font-family: var(--font-body);
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #7DD4DC; }
  .form-select option { background: var(--navy); color: var(--white); }
  .form-textarea { resize: vertical; min-height: 90px; }
  .form-submit { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 15px; font-size: 15px; font-weight: 700; letter-spacing: 1px; border-radius: var(--radius); cursor: pointer; margin-top: 8px; transition: background 0.2s; }
  .form-submit:hover { background: #A8841E; color: var(--white); }
  .form-disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 12px; text-align: center; line-height: 1.6; }

  /* CTA STRIP */
  .cta-strip { background: var(--teal); padding: 48px 0; text-align: center; }
  .cta-strip h2 { font-family: var(--font-heading); font-size: 28px; color: var(--white); margin-bottom: 8px; }
  .cta-strip p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 24px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* BEFORE & AFTER */
  .ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .ba-full { margin-top: 40px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); max-width: 70%; margin-left: auto; margin-right: auto; }
  .ba-full-img { width: 100%; height: auto; display: block; object-fit: contain; }
  .ba-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
  .ba-images { display: flex; align-items: center; gap: 0; }
  .ba-slot { flex: 1; position: relative; }
  .ba-placeholder { background: #e8e8e8; height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #999; font-size: 28px; gap: 6px; }
  .ba-placeholder p { font-size: 11px; color: #aaa; margin: 0; }
  .after-ph { background: #d4ede9; }
  .ba-label { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; z-index: 2; }
  .before-label { background: rgba(0,0,0,0.55); color: #fff; }
  .after-label { background: var(--teal); color: #fff; }
  .ba-divider { font-size: 20px; color: var(--teal); flex-shrink: 0; padding: 0 6px; font-weight: 700; }
  .ba-caption { padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--navy); border-top: 1px solid var(--border); text-align: center; }

  /* CAN I AFFORD IT */
  .afford-section { background: var(--navy); }
  .afford-section .section-label { color: #7DD4DC; }
  .afford-title { color: var(--white) !important; }
  .afford-lead { font-size: 20px; font-weight: 600; color: var(--gold); margin-bottom: 16px; line-height: 1.4; }
  .afford-body { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 14px; }
  .afford-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .afford-img-col { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
  .afford-img { width: 100%; height: auto; display: block; object-fit: cover; }
  .afford-features { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
  .afford-feat { font-size: 14px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 10px; }
  .af-check { color: #7DD4DC; font-weight: 700; font-size: 16px; flex-shrink: 0; }

  /* CANDIDACY */
  .candidate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .candidate-list { display: flex; flex-direction: column; gap: 16px; }
  .candidate-item { display: flex; gap: 16px; background: var(--offwhite); border-radius: 10px; padding: 20px; border-left: 3px solid var(--teal); }
  .candidate-item.note { border-left-color: var(--gold); }
  .candidate-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }
  .candidate-item.note .candidate-icon { color: var(--gold); }
  .candidate-stat-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .c-stat { background: var(--navy); border-radius: 12px; padding: 28px 20px; text-align: center; }
  .c-num { font-family: var(--font-heading); font-size: 32px; color: #7DD4DC; font-weight: 700; margin-bottom: 8px; }
  .c-label { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; }

  /* STICKY BAR */
  .sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 2px solid var(--teal); z-index: 1000; padding: 10px 24px; transform: translateY(100%); transition: transform 0.3s ease; }
  .sticky-bar.visible { transform: translateY(0); }
  .sticky-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .sticky-text { color: rgba(255,255,255,0.75); font-size: 13px; }
  .sticky-sep { margin: 0 8px; color: var(--teal); }
  .sticky-actions { display: flex; gap: 12px; align-items: center; }
  .sticky-phone { color: #7DD4DC; font-size: 14px; font-weight: 600; text-decoration: none; }
  .sticky-cta { background: var(--gold); color: var(--navy); padding: 8px 20px; font-size: 13px; font-weight: 700; border-radius: 4px; text-decoration: none; white-space: nowrap; }

  /* FINANCING */
  .financing-section { background: linear-gradient(135deg, #f0f8fa 0%, #e6f5f7 50%, #f0f8fa 100%); border-top: 3px solid var(--teal); border-bottom: 3px solid var(--teal); }
  .financing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; margin-bottom: 32px; }
  .financing-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; text-align: center; transition: box-shadow 0.2s; }
  .financing-card:hover { box-shadow: var(--shadow); }
  .financing-icon { font-size: 28px; margin-bottom: 10px; }
  .financing-logo { font-size: 16px; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; font-family: var(--font-heading); border-bottom: 2px solid var(--teal-light); padding-bottom: 10px; }
  .financing-text { font-size: 13px; color: var(--muted); line-height: 1.7; }
  .financing-card-highlight { border: 2px solid var(--teal); position: relative; overflow: hidden; }
  .financing-card-img { width: 100%; height: 180px; overflow: hidden; border-radius: 8px; margin-bottom: 0; }
  .financing-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .financing-banner { background: var(--navy); border-radius: 16px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 32px; }
  .financing-banner-text h3 { font-family: var(--font-heading); font-size: 22px; color: var(--white); margin-bottom: 12px; }
  .financing-banner-text p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }
  .financing-banner-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .financing-feature { font-size: 13px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 8px; }
  .f-check { color: #7DD4DC; font-weight: 700; font-size: 15px; flex-shrink: 0; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; }
    .afford-grid { grid-template-columns: 1fr; }
    .candidate-grid { grid-template-columns: 1fr; }
    .candidate-stat-stack { grid-template-columns: 1fr 1fr; }
    .financing-banner { grid-template-columns: 1fr; gap: 24px; }
    .financing-banner-items { grid-template-columns: 1fr; }
    .intro-grid, .why-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .trust-items { gap: 16px; }
    .form-wrap { padding: 24px 16px; }
  }
  @media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
  }