/* === Design Tokens === */
    :root {
      --color-navy: #00054b;
      --color-teal: #aed3cf;
      --color-cream: #f2ede6;
      --color-dark: #1f1f1f;
      --color-gray: #3a3a3a;
      --color-white: #ffffff;
      --color-footer-bg: #1f1f1f;
      --radius-card: 10px;
      --radius-btn: 10px;
      --font-poppins: 'Poppins', sans-serif;
      --font-inter: 'Inter', sans-serif;
    }

    /* === Reset & Base === */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-poppins); color: var(--color-dark); background: #fff; overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* === Layout === */
    .container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }

    /* === NAV === */
    nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--font-poppins);
      font-weight: 800;
      font-size: 28px;
      color: var(--color-navy);
      letter-spacing: 1px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 16px;
      color: var(--color-dark);
      font-weight: 400;
    }
    .nav-links a.active { font-weight: 600; color: var(--color-navy); }
    .nav-services {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 16px;
      cursor: pointer;
    }
    .nav-services svg { transition: transform 0.2s; }

    /* === HERO === */
    .hero {
      position: relative;
      min-height: 680px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://www.figma.com/api/mcp/asset/88ae199f-a981-4d44-8166-2b9e8b36b3e5') center/cover no-repeat;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    }
    .hero-glass {
      position: absolute;
      left: -22px;
      top: 60px;
      width: 580px;
      height: 420px;
      border: 4px solid rgba(255,255,255,0.4);
      border-radius: 0 120px 120px 0;
      backdrop-filter: blur(20px);
      background: rgba(255,255,255,0.04);
      box-shadow: inset 4px 8px 16px rgba(255,255,255,0.6), inset -4px -8px 16px rgba(255,255,255,0.5);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 140px 60px 80px;
      max-width: 680px;
    }
    .hero-eyebrow {
      font-size: 14px;
      color: rgba(255,255,255,0.9);
      margin-bottom: 20px;
      font-weight: 400;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--color-navy);
      margin-bottom: 24px;
    }
    .hero-desc {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255,255,255,0.95);
      margin-bottom: 36px;
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    .btn-primary {
      display: inline-block;
      background: var(--color-teal);
      color: var(--color-navy);
      font-family: var(--font-inter);
      font-weight: 700;
      font-size: 16px;
      padding: 14px 32px;
      border-radius: var(--radius-btn);
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
    }
    .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn-navy {
      background: var(--color-navy);
      color: #fff;
    }
    .btn-navy:hover { opacity: 0.85; }

    /* === Section Shared === */
    section { padding: 80px 0; }
    .section-eyebrow {
      font-size: 16px;
      color: var(--color-gray);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 36px;
      font-weight: 700;
      color: var(--color-navy);
      margin-bottom: 48px;
    }

    /* === HOW IT WORKS === */
    .how-it-works { background: #fff; }
    .how-steps {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: start;
      gap: 0 20px;
    }
    .how-step { text-align: center; }
    .how-step-num {
      font-size: 48px;
      font-weight: 600;
      color: var(--color-navy);
      margin-bottom: 12px;
    }
    .how-step-title {
      font-size: 20px;
      font-weight: 600;
      color: var(--color-dark);
      margin-bottom: 8px;
    }
    .how-step-desc {
      font-size: 16px;
      color: var(--color-gray);
      line-height: 1.6;
    }
    .how-arrow {
      display: flex;
      align-items: center;
      padding-top: 24px;
      color: var(--color-navy);
    }
    .how-arrow svg { width: 40px; height: 40px; }

    /* === WHY US === */
    .why-us {
      background: url('https://www.figma.com/api/mcp/asset/c8658b2e-0da7-4e96-8704-1769fe3dab62') center/cover no-repeat;
      padding: 80px 0;
    }
    .why-us .section-eyebrow { color: var(--color-cream); }
    .why-us .section-title { color: var(--color-cream); text-align: center; }
    .why-us-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .why-card {
      background: #fff;
      border-radius: var(--radius-card);
      padding: 32px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .why-card-icon {
      width: 60px; height: 60px;
      margin-bottom: 16px;
    }
    .why-card-icon img { width: 100%; height: 100%; }
    .why-card-title {
      font-size: 20px;
      font-weight: 600;
      color: var(--color-dark);
      margin-bottom: 8px;
    }
    .why-card-desc {
      font-size: 16px;
      color: var(--color-gray);
    }

    /* === ABOUT === */
    .about { background: #fff; padding: 100px 0; }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-img {
      border-radius: var(--radius-card);
      overflow: hidden;
      height: 360px;
    }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-eyebrow {
      font-size: 14px;
      color: var(--color-gray);
      margin-bottom: 12px;
    }
    .about-title {
      font-family: var(--font-inter);
      font-size: 40px;
      font-weight: 700;
      color: var(--color-dark);
      line-height: 1.25;
      margin-bottom: 20px;
    }
    .about-desc {
      font-size: 16px;
      color: var(--color-gray);
      line-height: 1.8;
      margin-bottom: 32px;
      text-align: justify;
    }

    /* === SERVICES === */
    .services { background: #fff; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--color-cream);
      border-radius: var(--radius-card);
      padding: 28px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .service-icon-wrap {
      background: var(--color-navy);
      border-radius: 46px;
      width: 93px; height: 93px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .service-icon-wrap img { width: 60px; height: 60px; }
    .service-name {
      font-size: 18px;
      font-weight: 500;
      color: var(--color-navy);
    }

    /* === VIDEO GALLERY === */
    .gallery {
      background: url('https://www.figma.com/api/mcp/asset/c4310839-b64e-4712-9f8d-120c46453d82') center/cover no-repeat;
      padding: 80px 0;
    }
    .gallery-inner { padding: 0 60px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 37px;
    }
    .gallery-card {
      background: #555;
      border-radius: var(--radius-card);
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-card img { width: 100%; height: 100%; object-fit: cover; }
    .gallery-play {
      position: absolute;
      width: 56px; height: 56px;
      background: rgba(255,0,0,0.8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .gallery-play svg { width: 24px; height: 24px; fill: #fff; }
    .pagination {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
    }
    .dot {
      height: 15px;
      border-radius: 20px;
      background: var(--color-teal);
      cursor: pointer;
      transition: width 0.3s;
    }
    .dot.active { width: 48px; background: var(--color-navy); }
    .dot:not(.active) { width: 15px; }

    /* === TESTIMONIALS === */
    .testimonials { background: #fff; padding: 80px 0; }
    .testimonials .section-title { color: var(--color-navy); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--color-cream);
      border: 1px solid var(--color-teal);
      border-radius: var(--radius-card);
      padding: 32px;
    }
    .testimonial-name {
      font-size: 20px;
      font-weight: 600;
      color: var(--color-dark);
      margin-bottom: 8px;
    }
    .testimonial-stars {
      color: #f5a623;
      font-size: 16px;
      margin-bottom: 16px;
    }
    .testimonial-text {
      font-size: 18px;
      color: var(--color-gray);
      line-height: 1.6;
    }

    /* === FOOTER === */
    footer {
      background: var(--color-footer-bg);
      color: #fff;
      padding: 60px 0 40px;
    }
    .footer-logo {
      font-family: var(--font-poppins);
      font-weight: 900;
      font-size: 28px;
      text-align: center;
      margin-bottom: 40px;
    }
    .footer-nav {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid #3f3f3f;
    }
    .footer-col { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      transition: opacity 0.2s;
    }
    .footer-col a:hover { opacity: 0.7; }
    .footer-contact {
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }
    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .footer-contact-icon {
      width: 26px; height: 26px;
      opacity: 0.8;
    }
    .footer-contact-label {
      font-size: 18px;
      color: #fff;
      font-weight: 400;
      margin-bottom: 2px;
    }
    .footer-contact-value {
      font-size: 14px;
      color: rgba(244,244,244,0.7);
    }

    /* === Responsive === */
    @media (max-width: 1024px) {
      .how-steps { grid-template-columns: 1fr; gap: 32px; }
      .how-arrow { display: none; }
      .why-us-grid { grid-template-columns: 1fr; }
      .about-inner { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .hero-content { padding: 120px 24px 60px; }
      .hero-title { font-size: 32px; }
      .about-title { font-size: 28px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .footer-nav { flex-wrap: wrap; gap: 32px; }
      .footer-contact { gap: 32px; }
      .gallery-inner { padding: 0 24px; }
    }
    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
    }