  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --coral: #E8714A;
    --coral-light: #F0855F;
    --coral-pale: #FFF0EB;
    --teal: #4BB8C4;
    --teal-light: #E8F7F9;
    --teal-dark: #3AA3AF;
    --green: #5BBF8A;
    --green-light: #EAF7F0;
    --text-dark: #2C3E50;
    --text-mid: #5A6A7A;
    --text-light: #8A9BAB;
    --bg-light: #F7F9FB;
    --bg-white: #FFFFFF;
    --border: #E8ECF0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --font: 'Nunito', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 15px;
    line-height: 1.6;
  }

  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ===== HEADER ===== */
  header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 12px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-icon svg { width: 16px; height: 16px; }

  .logo-text { line-height: 1.2; }
  .logo-text strong { font-size: 11px; font-weight: 800; color: var(--text-dark); display: block; letter-spacing: 0.01em; }
  .logo-text span { font-size: 9px; color: var(--text-light); }

  nav { display: flex; align-items: center; gap: 0; }

  nav a {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    padding: 5px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }

  nav a:hover { color: var(--coral); background: var(--coral-pale); }

  .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .header-phone { font-size: 12px; text-align: right; }
  .header-phone strong { display: block; font-size: 13px; font-weight: 800; color: var(--text-dark); white-space: nowrap; }
  .header-phone span { font-size: 10px; color: var(--text-light); white-space: nowrap; }

  .header-right .btn { font-size: 12px; padding: 9px 14px; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .max-btn img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

  .btn-coral { background: var(--coral); color: #fff; }
  .btn-coral:hover { background: var(--coral-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,113,74,0.35); }

  .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
  }
  .btn-outline:hover { border-color: var(--coral); color: var(--coral); }

  .btn-teal { background: var(--teal); color: #fff; }
  .btn-teal:hover { background: var(--teal-dark); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, #FFF8F6 0%, #F0F8FA 100%);
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 480px;
  }

  .hero-content { padding-bottom: 60px; }

  .hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .hero-checks { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }

  .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .check-icon {
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon svg { width: 11px; height: 11px; }

  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
  .hero-btns .btn { padding: 13px 24px; font-size: 14px; }

  .hero-stats {
    display: flex;
    gap: 24px;
  }

  .hero-stat { }
  .hero-stat strong { font-size: 16px; font-weight: 800; color: var(--text-dark); display: block; }
  .hero-stat span { font-size: 11px; color: var(--text-light); }

  .hero-right {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
  }

  .hero-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

.hero-photo {
    width: 100%;
    height: 480px;
    background-image: url("../img/hero-bg.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

  .hero-form-card {
    position: absolute;
    top: 200px;
    right: -20px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 260px;
    box-shadow: var(--shadow);
  }

  .hero-form-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
  .hero-form-card p { font-size: 12px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.4; }

  .form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 10px;
    background: #fff;
  }

  .form-input:focus { border-color: var(--coral); }
  .form-input::placeholder { color: var(--text-light); }

  .form-disclaimer {
    font-size: 10px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
  }

  /* ===== QUICK NAV ===== */
  .quick-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }

  .quick-nav-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .quick-nav-inner::-webkit-scrollbar { display: none; }

  .quick-nav-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.3;
    padding-right: 16px;
    border-right: 2px solid var(--border);
  }

  .quick-nav-items {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .quick-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    background: var(--bg-light);
    border: 1.5px solid transparent;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .quick-nav-item:hover {
    background: var(--coral-pale);
    border-color: var(--coral);
    color: var(--coral);
  }

  .quick-nav-item:hover .qn-icon { background: rgba(232,113,74,0.12); }
  .quick-nav-item:hover .qn-icon svg path,
  .quick-nav-item:hover .qn-icon svg circle,
  .quick-nav-item:hover .qn-icon svg ellipse { stroke: var(--coral); }

  .qn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .qn-icon svg { width: 14px; height: 14px; }

  /* ===== SECTION COMMON ===== */
  section { padding: 64px 0; }

  .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .section-sub {
    text-align: center;
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 40px;
  }

  /* ===== ABOUT ASD ===== */
  .about-asd {
    background: #fff;
    padding: 60px 0;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
  }

  .about-text h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
  }

  .about-text p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 12px;
    line-height: 1.7;
  }

  .about-img-wrap {
    width: 240px;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
  }

  .about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #fde8de 0%, #d4eef1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }

  .about-symptoms h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
  }

  .symptom-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

  .symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
  }

  .symptom-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    margin-top: 5px;
    flex-shrink: 0;
  }

  .link-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
  }

  .link-more:hover { gap: 8px; }

  /* ===== METHODS ===== */
  .methods { background: var(--bg-light); }

  .methods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .method-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }

  .method-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

  .method-card.highlight {
    background: var(--teal-light);
    border: 1.5px solid var(--teal);
  }

  .method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--coral-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .method-card.highlight .method-icon { background: rgba(75,184,196,0.15); }
  .method-icon svg { width: 22px; height: 22px; }

  .method-card h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
  }

  .method-card p {
    font-size: 12px;
    color: var(--text-mid);
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .methods-more { text-align: center; margin-top: 32px; }

  /* ===== TRUST ===== */
  .trust {
    background: var(--teal-light);
    border-radius: 0;
    padding: 48px 0;
  }

  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .trust-checks { display: flex; flex-direction: column; gap: 10px; }

  .trust-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-stat { }
  .trust-stat strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    display: block;
    line-height: 1.1;
  }

  .trust-stat span { font-size: 13px; color: var(--text-mid); }

  /* ===== PROCESS ===== */
  .process { background: #fff; }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 100%);
    z-index: 0;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    padding: 0 10px;
  }

  .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
  }

  .step-icon svg { width: 24px; height: 24px; }

  .process-step h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
  }

  .process-step p {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
  }

  /* ===== REVIEWS ===== */
  .reviews { background: var(--bg-light); }

  .reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-card);
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fde8de, #d4eef1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .review-name strong { font-size: 13px; font-weight: 800; display: block; }
  .review-name span { font-size: 12px; color: var(--text-light); }

  .review-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
  }

  .dot.active { background: var(--coral); width: 20px; border-radius: 4px; }

  /* ===== SPECIALISTS ===== */
  .specialists { background: #fff; }

  .spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }

  .spec-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s;
    background: #fff;
  }

  .spec-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

  .spec-photo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .spec-info { padding: 16px; }
  .spec-info h3 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
  .spec-info .spec-role { font-size: 12px; color: var(--teal); font-weight: 700; margin-bottom: 4px; }
  .spec-info .spec-exp { font-size: 12px; color: var(--text-light); }

  .spec-more { text-align: center; }

  /* ===== FAQ ===== */
  .faq-section { background: var(--bg-light); }

  .faq-cta-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
  }

  .faq-list { display: flex; flex-direction: column; gap: 0; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.2s;
    gap: 16px;
    line-height: 1.4;
  }

  .faq-question:hover { color: var(--coral); }

  .faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s, border-color 0.2s;
  }

  .faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--coral);
    border-color: var(--coral);
  }

  .faq-item.open .faq-arrow svg path { stroke: #fff; }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-answer-inner {
    padding: 0 0 18px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .faq-link { margin-top: 20px; }

  /* ===== CTA CARD ===== */
  .cta-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    overflow: hidden;
    position: sticky;
    top: 80px;
  }

  .cta-card-body {
    padding: 32px 28px 28px;
  }

  .cta-card h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
    color: var(--text-dark);
  }

  .cta-card p {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .cta-form-group { margin-bottom: 12px; }

  .cta-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .cta-card .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 15px;
    border-radius: 10px;
    margin-top: 4px;
  }

  .cta-photo-strip {
    height: 180px;
    background: linear-gradient(160deg, #fde8de 0%, #d4eef1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
  }

  /* ===== TRUST BADGES ===== */
  .trust-badges {
    background: #fff;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .badge-icon svg { width: 20px; height: 20px; }
  .badge-item span { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--teal);
    color: #fff;
    padding: 18px 0;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-cta { font-size: 16px; font-weight: 800; }

  .footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .footer-phone strong { font-size: 18px; font-weight: 800; display: block; }
  .footer-phone span { font-size: 12px; opacity: 0.8; }

  .footer-socials { display: flex; gap: 10px; }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
  }

  .social-btn:hover { background: rgba(255,255,255,0.35); }

  .footer-btn {
    background: var(--coral);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
  }

  .footer-btn:hover { background: var(--coral-light); }

  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 99;
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    display: block;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu a:hover { color: var(--coral); background: var(--coral-pale); }

  .mobile-menu-phone {
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-align: center;
  }

  .mobile-menu-phone strong { font-size: 20px; font-weight: 800; display: block; margin-bottom: 4px; }
  .mobile-menu-phone span { font-size: 12px; color: var(--text-light); }

  /* ===== STICKY MOBILE CTA ===== */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 90;
  }

  .sticky-cta .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .methods-grid { grid-template-columns: repeat(3, 1fr); }
    nav { display: none; }
  }

  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .header-phone { display: none; }
    .header-right .btn { display: none; }

    .hero { padding: 30px 0 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: auto; }
    .hero-content { padding-bottom: 0; }
    .hero h1 { font-size: 28px; }
    .hero-form-card { display: none; }
    .hero-right { margin: 20px -20px 0; }
    .hero-photo, .hero-photo-placeholder { height: 280px; border-radius: 0; }

    .hero-stats { flex-wrap: wrap; gap: 16px; }

    .quick-nav-label { font-size: 11px; padding-right: 12px; }
    .quick-nav-items { gap: 6px; }
    .quick-nav-item { padding: 7px 12px; font-size: 12px; }
    .qn-icon { width: 22px; height: 22px; }
    .qn-icon svg { width: 12px; height: 12px; }

    section { padding: 40px 0; }
    .section-title { font-size: 22px; }

    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-img-wrap { width: 100%; height: 200px; }

    .methods-grid { grid-template-columns: 1fr; gap: 12px; }

    .trust-inner { grid-template-columns: 1fr; gap: 24px; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .trust-stat strong { font-size: 28px; }

    .process-steps {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .process-steps::before { display: none; }
    .process-step {
      flex-direction: row;
      text-align: left;
      gap: 16px;
    }
    .process-step .step-content { flex: 1; }

    .reviews-slider { grid-template-columns: 1fr; }

    .spec-grid { grid-template-columns: 1fr 1fr; }

    .faq-cta-grid { grid-template-columns: 1fr; }
    .cta-card { position: static; order: -1; }

    .badges-grid { grid-template-columns: 1fr 1fr; }

    .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
    .footer-right { flex-direction: column; gap: 12px; }

    .sticky-cta { display: block; }
    body { padding-bottom: 70px; }
  }

  @media (max-width: 480px) {
    .spec-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto 32px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
  }

  