    :root {
      --racing-green: #1C3B34;
      --stone: #BDB28C;
      --sage: #A4B494;
      --white: #ffffff;
      --stone-tint: #EAE7DC;
      --black: #000000;
      --text-dark: #2a2a2a;
      --text-light: #666666;
    }

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

    html {
      scroll-behavior: smooth;
    }

    html {
      overflow-x: hidden;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
      max-width: 100vw;
    }

    body.modal-open {
      overflow: hidden;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
    }

    .headline {
      font-size: clamp(2.5rem, 4vw, 4.5rem);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-light);
      margin-bottom: 1.2rem;
    }

    .label {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.8rem;
      display: block;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 1rem 3rem;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--racing-green);
      color: var(--white);
      border: 2px solid var(--racing-green);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(28, 59, 52, 0.2);
    }

    .btn-secondary {
      background: transparent;
      color: var(--racing-green);
      border: 2px solid var(--racing-green);
    }

    .btn-secondary:hover {
      background: var(--racing-green);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--racing-green);
    }

    /* Section Styles */
    section {
      padding: 80px 40px;
    }

    @media (max-width: 1024px) {
      section {
        padding: 60px 40px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 40px 20px;
      }
    }

    /* Scroll Animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }

    /* ===== TOP BANNER ===== */
    .top-banner {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 32px;
      background: var(--racing-green);
      z-index: 1001;
      overflow: hidden;
    }

    .banner-marquee {
      display: flex;
      animation: bannerScroll 35s linear infinite;
      white-space: nowrap;
    }

    .banner-item {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--stone);
      padding: 8px 60px;
      display: inline-flex;
      align-items: center;
    }

    @keyframes bannerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== FLOATING PILL CTA ===== */
    .floating-pill {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      z-index: 999;
      opacity: 0;
      transition: all 0.4s ease;
      pointer-events: none;
    }

    .floating-pill.visible {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .pill-content {
      background: rgba(28, 59, 52, 0.92);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: 12px 24px;
      display: flex;
      gap: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .pill-content .btn {
      padding: 10px 22px;
      font-size: 0.85rem;
      border-radius: 50px;
      white-space: nowrap;
    }

    .pill-content .btn-primary {
      background: var(--white);
      color: var(--racing-green);
      border: 2px solid var(--white);
      font-weight: 500;
    }

    .pill-content .btn-primary:hover {
      background: var(--stone);
      border-color: var(--stone);
      color: var(--racing-green);
      transform: none;
      box-shadow: none;
    }

    .pill-content .btn-secondary {
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .pill-content .btn-secondary:hover {
      color: var(--white);
      border-color: var(--white);
      background: transparent;
      transform: none;
    }

    @media (max-width: 768px) {
      .floating-pill {
        bottom: 20px;
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(100px);
      }

      .floating-pill.visible {
        transform: translateX(0) translateY(0);
      }

      .pill-content {
        width: 100%;
        justify-content: space-between;
      }

      .pill-content .btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.8rem;
      }
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 32px;
      left: 0;
      right: 0;
      height: 70px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid var(--stone-tint);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
    }

    header.scrolled {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .logo {
      display: flex;
      align-items: center;
      height: 50px;
    }

    .logo img {
      height: 100%;
      width: auto;
    }

    header .btn-header {
      background: transparent;
      color: var(--racing-green);
      border: 2px solid var(--racing-green);
      padding: 0.6rem 1.8rem;
      font-size: 0.95rem;
    }

    header .btn-header:hover {
      background: var(--racing-green);
      color: var(--white);
    }

    @media (max-width: 768px) {
      header {
        height: 60px;
        padding: 0 20px;
      }

      .logo img {
        height: 40px;
      }

      header .btn-header {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
      }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      background: var(--racing-green);
      margin-top: 102px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(28, 59, 52, 0.75) 0%, rgba(15, 36, 32, 0.8) 100%);
      z-index: 1;
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 177.78vh;
      height: 100vh;
      object-fit: cover;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      max-width: 800px;
      padding: 0 40px;
    }

    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 2rem;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .stars {
      display: flex;
      gap: 3px;
    }

    .star {
      color: #FFB800;
      font-size: 1.1rem;
    }

    .hero h1 {
      color: var(--white);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .hero-subtext {
      font-size: 1rem;
      font-weight: 600;
      color: var(--stone);
      margin-bottom: 2.5rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .hero .btn-primary {
      border-color: var(--white);
    }

    .hero .btn-secondary {
      border-color: var(--white);
      color: var(--white);
    }

    .hero .btn-secondary:hover {
      background: var(--white);
      color: var(--racing-green);
    }

    .hero-footer {
      font-size: 0.9rem;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .separator {
      color: var(--stone);
      margin: 1.5rem 0;
    }

    .hero-quiz-link {
      font-size: 0.95rem;
      color: var(--white);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.8rem 2rem;
      border: 2px solid var(--white);
      border-radius: 8px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .hero-quiz-link:hover {
      background: var(--white);
      color: var(--racing-green);
    }

    @media (max-width: 768px) {
      .hero {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
      }

      .hero-content {
        padding: 0 20px;
      }

      .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
      }

      .hero-subtitle {
        font-size: 0.95rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 1rem;
      }

      .hero .btn {
        width: 100%;
      }
    }

    /* ===== PHILOSOPHY SECTION ===== */
    .philosophy {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .philosophy-text .divider {
      height: 1px;
      width: 60px;
      background: var(--stone);
      margin-bottom: 1.5rem;
    }

    .philosophy-image {
      border-radius: 8px;
      overflow: hidden;
      min-height: 400px;
    }

    .philosophy-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width: 1024px) {
      .philosophy {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .philosophy-image {
        min-height: 300px;
      }
    }

    /* ===== SOCIAL PROOF / REVIEWS ===== */
    .reviews-section {
      background: var(--stone-tint);
      text-align: center;
    }

    .reviews-header {
      margin-bottom: 3rem;
    }

    .reviews-header h2 {
      color: var(--racing-green);
    }

    .reviews-header p {
      color: var(--text-light);
      font-size: 1.05rem;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .review-card {
      background: var(--white);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .review-stars {
      margin-bottom: 1.2rem;
    }

    .review-text {
      font-style: italic;
      color: var(--text-light);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .review-author {
      font-weight: 600;
      color: var(--text-dark);
      font-size: 0.95rem;
    }

    @media (max-width: 1024px) {
      .reviews-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== CLINIC MONTAGE VIDEO ===== */
    .clinic-section {
      background: var(--racing-green);
      color: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .clinic-text h2 {
      color: var(--white);
    }

    .clinic-text p {
      color: rgba(255, 255, 255, 0.85);
    }

    .clinic-text .btn-primary {
      margin-top: 2rem;
    }

    .clinic-video {
      position: relative;
      max-width: 340px;
      margin: 0 auto;
      aspect-ratio: 9/16;
      border-radius: 12px;
      overflow: hidden;
      background: var(--black);
    }

    .clinic-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 1;
    }

    .video-overlay.playing {
      opacity: 0;
      pointer-events: none;
    }

    .play-button {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255, 255, 255, 0.4);
      transition: all 0.3s ease;
    }

    .play-button:hover {
      background: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.6);
    }

    .play-icon {
      width: 0;
      height: 0;
      border-left: 25px solid var(--white);
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      margin-left: 4px;
    }

    .mute-button {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .mute-button:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    @media (max-width: 1024px) {
      .clinic-section {
        grid-template-columns: 1fr;
      }

      .clinic-video {
        max-width: 100%;
        max-height: 500px;
      }
    }

    /* ===== TRANSFORMATION VIDEOS ===== */
    .transformation {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .transformation.reversed {
      direction: rtl;
    }

    .transformation.reversed > * {
      direction: ltr;
    }

    .transformation-video {
      position: relative;
      max-width: 340px;
      margin: 0 auto;
      aspect-ratio: 9/16;
      border-radius: 12px;
      overflow: hidden;
      background: var(--black);
    }

    .transformation-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .transformation-text h2 {
      color: var(--racing-green);
    }

    @media (max-width: 1024px) {
      .transformation {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .transformation.reversed {
        direction: ltr;
      }

      .transformation-video {
        max-width: 100%;
        max-height: 500px;
      }
    }

    /* ===== WHY CHOOSE ARTE DENTAL ===== */
    .why-section {
      background: var(--white);
    }

    .why-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .why-header h2 {
      color: var(--racing-green);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
    }

    .why-card {
      position: relative;
      text-align: center;
    }

    .why-number {
      font-family: 'Outfit', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      color: var(--stone-tint);
      margin-bottom: 1.5rem;
      line-height: 1;
    }

    .why-card h3 {
      color: var(--racing-green);
      margin-bottom: 1rem;
    }

    .why-card p {
      font-size: 0.95rem;
      text-align: center;
    }

    @media (max-width: 1024px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (max-width: 768px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== COMPARISON TABLE ===== */
    .comparison-section {
      background: var(--white);
    }

    .comparison-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .comparison-header h2 {
      color: var(--racing-green);
    }

    .comparison-wrapper {
      position: relative;
      overflow-x: auto;
    }

    .scroll-hint {
      position: absolute;
      bottom: 20px;
      right: 20px;
      font-size: 0.85rem;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 8px;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(5px); }
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 100%;
    }

    .comparison-table thead {
      background: var(--racing-green);
      color: var(--white);
    }

    .comparison-table th {
      padding: 1.5rem;
      text-align: left;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .comparison-table td {
      padding: 1.2rem 1.5rem;
      border-bottom: 1px solid var(--stone-tint);
      font-size: 0.95rem;
    }

    .comparison-table tbody tr:nth-child(even) {
      background: rgba(28, 59, 52, 0.02);
    }

    .arte-column {
      background: rgba(164, 180, 148, 0.1) !important;
    }

    .feature-name {
      font-weight: 600;
      color: var(--text-dark);
      width: 250px;
    }

    .check {
      color: #4CAF50;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .cross {
      color: var(--text-light);
      font-weight: bold;
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .scroll-hint {
        display: none;
      }

      .comparison-table {
        font-size: 0.85rem;
      }

      .comparison-table th,
      .comparison-table td {
        padding: 1rem 0.8rem;
      }
    }

    /* ===== PROCESS SECTION ===== */
    .process-section {
      background: var(--racing-green);
      color: var(--white);
    }

    .process-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .process-header h2 {
      color: var(--white);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
    }

    .process-card {
      position: relative;
      text-align: center;
    }

    .process-number {
      font-family: 'Outfit', sans-serif;
      font-size: 4rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.08);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .process-card h3 {
      color: var(--white);
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .process-card p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
    }

    .process-grid::before,
    .process-grid::after {
      content: '';
      position: absolute;
      height: 1px;
      background: rgba(255, 255, 255, 0.12);
      width: 0;
      top: 50%;
    }

    .process-grid::before {
      left: 33.33%;
      width: 66.66%;
    }

    .process-grid::after {
      left: 0;
      width: 33.33%;
    }

    @media (max-width: 1024px) {
      .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .process-grid::before,
      .process-grid::after {
        display: none;
      }
    }

    /* ===== BEFORE/AFTER GALLERY ===== */
    .gallery-section {
      background: var(--racing-green);
      color: var(--white);
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .gallery-header h2 {
      color: var(--white);
    }

    .gallery-container {
      position: relative;
      margin-bottom: 2rem;
    }

    .gallery-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 0 1rem;
    }

    .gallery-track::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 1;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      flex: 0 0 280px;
      min-width: 280px;
      scroll-snap-align: start;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.03);
    }

    .gallery-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .gallery-watermark img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .gallery-footer {
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 2rem;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .gallery-item {
        flex: 0 0 240px;
        min-width: 240px;
      }
    }

    /* ===== PRICING SECTION ===== */
    .pricing-section {
      background: var(--white);
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .pricing-header h2 {
      color: var(--racing-green);
    }

    .pricing-list {
      max-width: 500px;
      margin: 0 auto 3rem;
    }

    .pricing-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem;
      border-bottom: 1px solid var(--stone-tint);
    }

    .pricing-item.featured {
      background: rgba(164, 180, 148, 0.1);
      border-left: 4px solid var(--racing-green);
      margin: 1rem 0;
      border-bottom: 1px solid var(--stone-tint);
    }

    .pricing-item-name {
      font-weight: 600;
      color: var(--text-dark);
    }

    .pricing-item-note {
      font-size: 0.75rem;
      color: var(--stone);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-left: auto;
      margin-right: 1.5rem;
    }

    .pricing-item-price {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--racing-green);
    }

    .pricing-footer {
      text-align: center;
      color: var(--text-light);
      margin-bottom: 2.5rem;
    }

    .pricing-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .pricing-buttons {
        flex-direction: column;
      }

      .pricing-buttons .btn {
        width: 100%;
      }
    }

    /* ===== FAQ SECTION ===== */
    .faq-section {
      background: var(--stone-tint);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq-header h2 {
      color: var(--racing-green);
    }

    .faq-list {
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      margin-bottom: 1.5rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      background: var(--white);
    }

    .faq-question:hover {
      background: rgba(164, 180, 148, 0.05);
    }

    .faq-question h3 {
      margin: 0;
      font-size: 1.1rem;
      text-align: left;
    }

    .faq-toggle {
      font-size: 1.5rem;
      color: var(--racing-green);
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 1.5rem;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: rgba(164, 180, 148, 0.05);
    }

    .faq-item.active .faq-answer {
      max-height: 400px;
      padding: 0 1.5rem 1.5rem;
    }

    .faq-answer p {
      margin-bottom: 0;
    }

    /* ===== QUIZ SECTION ===== */
    .quiz-section {
      background: var(--racing-green);
      color: var(--white);
    }

    .quiz-container {
      max-width: 500px;
      margin: 0 auto;
    }

    .quiz-progress {
      height: 4px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 2px;
      margin-bottom: 2rem;
      overflow: hidden;
    }

    .quiz-progress-bar {
      height: 100%;
      background: var(--stone);
      transition: width 0.3s ease;
    }

    .quiz-step {
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .quiz-step.active {
      display: block;
      opacity: 1;
    }

    .quiz-step h2 {
      color: var(--white);
      margin-bottom: 2rem;
    }

    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .quiz-option {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      color: var(--white);
      padding: 1.2rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: left;
      font-weight: 500;
    }

    .quiz-option:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .quiz-option.selected {
      background: var(--stone);
      border-color: var(--stone);
      color: var(--racing-green);
    }

    .quiz-text-input {
      width: 100%;
      padding: 1rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      margin-bottom: 1.5rem;
    }

    .quiz-text-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .quiz-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    .quiz-button {
      flex: 1;
      padding: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .quiz-next {
      background: var(--white);
      color: var(--racing-green);
    }

    .quiz-next:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .quiz-back {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .quiz-back:hover {
      background: var(--white);
      color: var(--racing-green);
    }

    .quiz-iframe-container {
      width: 100%;
      min-height: 450px;
      margin-bottom: 1.5rem;
    }

    .quiz-thank-you {
      text-align: center;
      padding: 3rem 0;
    }

    .quiz-thank-you h2 {
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .quiz-thank-you p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
    }

    .quiz-footer {
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      margin-top: 2rem;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--black);
      color: var(--white);
      padding: 60px 40px;
      text-align: center;
    }

    footer .logo {
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    footer .logo img {
      height: 50px;
      filter: brightness(0) invert(1);
      opacity: 0.5;
    }

    .footer-tagline {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 2rem 0;
    }

    .footer-contact {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-box {
      background: var(--racing-green);
      border-radius: 16px;
      padding: 48px;
      max-width: 500px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: scale(0.95);
      transition: transform 0.3s ease;
    }

    .modal-overlay.open .modal-box {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      border-radius: 50%;
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .modal-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.8rem;
      display: block;
    }

    .modal-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 2rem;
    }

    .modal-footer {
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
      margin-top: 1.5rem;
    }

    .modal-subtitle {
      color: rgba(255,255,255,0.85);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .modal-box {
        padding: 30px 24px;
        border-radius: 12px;
      }

      .modal-title {
        font-size: 1.5rem;
      }
    }

    /* ===== UTILITY ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .text-center {
      text-align: center;
    }

    /* ===== HEADER PHONE & RIGHT GROUP ===== */
    .header-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .header-phone {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--racing-green);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.3s ease;
    }

    .header-phone:hover {
      color: var(--stone);
    }

    @media (max-width: 768px) {
      .header-phone {
        display: none;
      }
    }

    /* ===== HERO VIDEO CLICK-TO-LOAD ===== */
    .hero-video-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      cursor: pointer;
    }

    .hero-video-poster {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(28, 59, 52, 0.9) 0%, rgba(15, 36, 32, 0.95) 100%);
    }

    .play-button-hero {
      width: 90px;
      height: 90px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }

    .hero-video-wrapper:hover .play-button-hero {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
      transform: scale(1.05);
    }

    .play-button-hero .play-icon {
      width: 0;
      height: 0;
      border-left: 28px solid var(--white);
      border-top: 17px solid transparent;
      border-bottom: 17px solid transparent;
      margin-left: 6px;
    }

    /* ===== FOOTER LINKS ===== */
    .footer-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .footer-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      color: var(--stone);
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    .footer-copyright {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.4);
      text-align: center;
    }
