    /* ---------- reset & base ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: #f7f9fc;
      color: #1a2634;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    /* ---------- colors ---------- */
    :root {
      --primary: #001748;
      --primary-light: #022675;
      --primary-dark: #000f2e;
      --accent: #df9402;
      --accent-light: #fcb322;
      --accent-gradient: linear-gradient(135deg, #ffab03, #df9402);
      --gold-glow: 0 0 40px rgba(212, 163, 115, 0.15);
      --bg-soft: #f4f7fa;
      --text-dark: #1a2634;
      --text-muted: #4a5a6e;
      --white: #ffffff;
      --shadow-sm: 0 4px 16px rgba(15, 59, 92, 0.06);
      --shadow-md: 0 8px 32px rgba(15, 59, 92, 0.10);
      --shadow-lg: 0 16px 48px rgba(15, 59, 92, 0.14);
      --radius: 20px;
      --radius-sm: 12px;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* ---------- scrollbar ---------- */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 10px;
    }
    /* ---------- buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary);
      color: white;
      font-weight: 600;
      padding: 14px 36px;
      border-radius: .5rem;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      font-size: 1rem;
      letter-spacing: 0.3px;
      box-shadow: 0 4px 14px rgba(15, 59, 92, 0.20);
      position: relative;
      overflow: hidden;
    }
    .btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      opacity: 0;
      transition: var(--transition);
    }
    .btn:hover::after {
      opacity: 1;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(15, 59, 92, 0.25);
    }
    .btn-accent {
      background: var(--accent-gradient);
      color: #1a2634;
      box-shadow: 0 4px 14px rgba(212, 163, 115, 0.35);
    }
    .btn-accent:hover {
      box-shadow: 0 12px 28px rgba(212, 163, 115, 0.45);
      color: #1a2634;
    }
    .btn-outline {
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
      box-shadow: none;
    }
    .btn-outline:hover {
      background: var(--primary);
      color: white;
      box-shadow: 0 8px 24px rgba(15, 59, 92, 0.20);
    }
    .btn-white {
      background: white;
      color: var(--primary);
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    }
    .btn-white:hover {
      background: var(--accent-light);
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }
    .btn i {
      font-size: 0.9rem;
    }
    /* ---------- header (transparent) ---------- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 0;
      transition: var(--transition);
      background: transparent;
    }
    header.scrolled {
      background: rgba(15, 59, 92, 0.92);
      backdrop-filter: blur(16px) saturate(180%);
      box-shadow: 0 4px 30px rgba(0,0,0,0.12);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    header.scrolled .logo {
      color: white;
    }
    header.scrolled .logo span {
      color: var(--accent);
    }
    header.scrolled .nav-links a {
      color: rgba(255,255,255,0.85);
    }
    header.scrolled .nav-links a:hover,
    header.scrolled .nav-links a.active {
      color: white;
    }
    header.scrolled .nav-links a::after {
      background: var(--accent-gradient);
    }
    header.scrolled .hamburger {
      color: white;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 1rem;
      flex-wrap: wrap;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: white;
      display: flex;
      align-items: center;
      gap: 4px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.15);
      transition: var(--transition);
    }
    .logo img {
        width: 100%;
        height: 70px;
        object-fit: cover;
      }
    .logo span {
      color: var(--accent);
      font-weight: 700;
    }
    .logo i {
      color: var(--accent);
      font-size: 1.6rem;
      margin-right: 6px;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      list-style: none;
      font-weight: 500;
    }
    .nav-links a {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.9);
      transition: var(--transition);
      position: relative;
      padding-bottom: 4px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2.5px;
      background: var(--accent-gradient);
      transition: var(--transition);
      border-radius: 4px;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
    .nav-links a:hover {
      color: white;
    }
    .nav-cta {
      margin-left: 8px;
    }
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: white;
      background: none;
      border: none;
      padding: 8px;
      border-radius: 12px;
      transition: var(--transition);
      text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .hamburger:hover {
      background: rgba(255,255,255,0.1);
    }
    /* mobile menu */
    @media (max-width: 880px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 24px 0 16px;
        gap: 18px;
        align-items: flex-start;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 12px;
      }
      .nav-links.open {
        display: flex;
      }
      .hamburger {
        display: block;
      }
      .nav-cta {
        margin-left: 0;
        width: 100%;
      }
      .nav-cta .btn {
        width: 100%;
        justify-content: center;
      }
      header.scrolled .nav-links a {
        color: rgba(255,255,255,0.9);
      }
    }
    /* ---------- sections ---------- */
    section {
      padding: 80px 0;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 2rem;
      letter-spacing: -0.02em;
      line-height: 1.25;
    }
    .section-title .highlight {
      color: var(--accent);
      position: relative;
    }
    .section-title .highlight::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 8px;
      background: var(--accent-light);
      opacity: 0.4;
      border-radius: 4px;
      z-index: -1;
    }
    .section-sub {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 660px;
      margin-bottom: 48px;
      line-height: 1.7;
    }
    .text-center {
      text-align: center;
    }
    .text-center .section-sub {
      margin-left: auto;
      margin-right: auto;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 30px;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
  .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
  }
    /* ---------- cards ---------- */
    .card {
      background: white;
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid rgba(15, 59, 92, 0.04);
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--accent-gradient);
      opacity: 0;
      transition: var(--transition);
    }
    .card:hover::before {
      opacity: 1;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(212, 163, 115, 0.15);
    }
    .card-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: .5rem;
      background: var(--accent-light);
      color: var(--accent);
      font-size: 2rem;
      margin-bottom: 18px;
      transition: var(--transition);
    }
    .card:hover .card-icon {
      background: var(--accent-gradient);
      color: white;
      transform: scale(1.05) rotate(-2deg);
    }
    .card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--primary);
      font-weight: 700;
    }
    .card p {
      color: var(--text-muted);
      line-height: 1.7;
    }
    /* ---------- HERO CAROUSEL ---------- */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .carousel-slides {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
      background-size: cover;
      background-position: center;
    }
    .carousel-slide.active {
      opacity: 1;
    }
    .carousel-slide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(9, 42, 66, 0.75) 0%, rgba(15, 59, 92, 0.45) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 120px 0 40px;
      animation: fadeInUp 0.8s ease forwards;
      text-align: center;
    }
    .hero-content .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      padding: 10px 24px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.85rem;
      color: white;
      border: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 24px;
    }
    .hero-content .hero-badge i {
      color: var(--accent);
    }
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4.2rem;
      font-weight: 900;
      line-height: 1.08;
      color: white;
      text-shadow: 0 4px 40px rgba(0,0,0,0.2);
      margin-bottom: 1.5rem;
    }
    .hero-content h1 .highlight {
      color: var(--accent);
      position: relative;
    }
    .hero-content h1 .highlight::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 0;
      right: 0;
      height: 10px;
      background: rgba(212, 163, 115, 0.3);
      border-radius: 4px;
      z-index: -1;
    }
    .hero-content p {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.8;
      margin-bottom: 32px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hero-buttons .btn {
      font-size: 1.05rem;
      padding: 16px 40px;
    }
    /* carousel controls */
    .carousel-controls {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 14px;
      align-items: center;
    }
    .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      border: 2px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .carousel-dot.active {
      background: var(--accent);
      border-color: white;
      transform: scale(1.2);
      box-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
    }
    .carousel-dot:hover {
      background: rgba(255,255,255,0.6);
    }
    .carousel-arrow {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.12);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      font-size: 1.2rem;
    }
    .carousel-arrow:hover {
      background: var(--accent);
      color: var(--primary-dark);
      transform: scale(1.05);
    }
    .carousel-arrow:active {
      transform: scale(0.95);
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ---------- trust strip ---------- */
    .trust-strip {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(8px);
      border-radius: .5rem;
      padding: 16px;
      margin-top: 32px;
      gap: 10px 30px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      font-size: 0.95rem;
    }
    .trust-item i {
      color: var(--accent);
      font-size: 1.4rem;
    }
    /* ---------- testimonials ---------- */
    .testimonial-card {
      background: white;
      border-radius: var(--radius);
      padding: 32px 30px;
      box-shadow: var(--shadow-sm);
      border-left: 6px solid var(--accent);
      transition: var(--transition);
    }
    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .testimonial-card .quote-icon {
      color: var(--accent-light);
      font-size: 2.4rem;
      opacity: 0.5;
      margin-bottom: 8px;
    }
    .testimonial-card p {
      font-style: italic;
      color: var(--text-dark);
      font-size: 1.05rem;
      line-height: 1.7;
    }
    .testimonial-card .author {
      margin-top: 18px;
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-card .author .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--accent-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
    }
    /* ---------- about preview ---------- */
    .about-preview {
      background: white;
      border-radius: var(--radius);
      padding: 56px 48px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(15, 59, 92, 0.04);
    }
    .about-preview img {
      border-radius: 20px;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }
    .about-preview img:hover {
      transform: scale(1.02);
    }
    /* ---------- listings ---------- */
    .listing-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid rgba(15, 59, 92, 0.04);
    }
    .listing-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    .listing-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: var(--transition);
    }
    .listing-card:hover img {
      transform: scale(1.03);
    }
    .listing-card .content {
      padding: 24px 20px 28px;
    }
    .listing-card .content h3 {
      font-size: 1.2rem;
      margin-bottom: 6px;
      color: var(--primary);
    }
    .listing-card .content .price-tag {
      display: inline-block;
      background: var(--accent-light);
      padding: 4px 16px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--primary);
      margin-top: 8px;
    }
    .filter-bar {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .filter-bar button {
      background: white;
      border: 1px solid #dce3ec;
      padding: 10px 26px;
      border-radius: 60px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
    }
    .filter-bar button.active,
    .filter-bar button:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
      box-shadow: 0 4px 12px rgba(15, 59, 92, 0.15);
    }
    /* ---------- contact ---------- */
    .contact-card {
      background: white;
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(15, 59, 92, 0.04);
    }
    .contact-card input,
    .contact-card textarea {
      width: 100%;
      padding: 14px 20px;
      border-radius: .5rem;
      border: 2px solid #e8edf2;
      margin-bottom: 16px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
      background: #fafbfc;
    }
    .contact-card input:focus,
    .contact-card textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
      background: white;
    }
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid #f0f2f5;
    }
    .contact-info-item:last-child {
      border-bottom: none;
    }
    .contact-info-item i {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-light);
      border-radius: .5rem;
      color: var(--accent);
      font-size: 1.2rem;
    }
    .map-placeholder {
      background: linear-gradient(135deg, #dce3ec, #eef2f7);
      height: 400px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 0px;
      border: 2px dashed #c8d2de;
    }

/* ---------- page hero ---------- */
  .page-hero {
      position: relative;
      height: 55vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #2461e4 0%, #0244d0 60%, var(--primary-light) 100%);
      overflow: hidden;
  }
  .page-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
  }
  .page-hero::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
  }
  .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding-top: 80px;
      text-align: center;
  }
  .page-hero-content .breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      margin-bottom: 20px;
  }
  .page-hero-content .breadcrumb a {
      color: rgba(255,255,255,0.7);
      transition: var(--transition);
  }
  .page-hero-content .breadcrumb a:hover {
      color: var(--accent);
  }
  .page-hero-content .breadcrumb .current {
      color: var(--accent);
  }
  .page-hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 900;
      color: white;
      line-height: 1.08;
      text-shadow: 0 4px 40px rgba(0,0,0,0.2);
      margin-bottom: 2rem;
  }
  .page-hero-content h1 .highlight {
      color: var(--accent);
      position: relative;
  }
  .page-hero-content h1 .highlight::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 0;
      right: 0;
      height: 10px;
      background: rgba(212, 163, 115, 0.3);
      border-radius: 4px;
      z-index: -1;
  }
  .page-hero-content p {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.8);

      line-height: 1.8;
  }
  @media (max-width: 780px) {
      .page-hero { height: 50vh; min-height: 350px; }
      .page-hero-content h1 { font-size: 2.8rem; }
      .page-hero-content p { font-size: 1rem; }
      .page-hero-content { padding-top: 100px; }
  }

    /* ---------- footer ---------- */
    footer {
      background: var(--primary-dark);
      color: rgba(255,255,255,0.85);
      padding: 60px 0 30px;
      margin-top: 0px;
      position: relative;
      overflow: hidden;
    }
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--accent-gradient);
    }
    footer a {
      color: rgba(255,255,255,0.7);
      transition: var(--transition);
    }
    footer a:hover {
      color: white;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 2rem;
    }
    .footer-logo img {
        height: 85px;
        object-fit: cover;
        filter: invert(1);
      }
    .footer-social {
      display: flex;
      gap: 16px;
      margin-top: 12px;
    }
    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: .25rem;
      background: rgba(255,255,255,0.06);
      transition: var(--transition);
      font-size: 1.2rem;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .footer-social a:hover {
      background: var(--accent);
      color: var(--primary-dark);
      transform: translateY(-3px);
      border-color: var(--accent);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 28px;
      margin-top: 40px;
      text-align: center;
      font-size: 0.9rem;
      opacity: 0.7;
    }
    @media (max-width: 700px) {
      .about-preview { padding: 30px 20px; }
      .contact-card { padding: 24px; }
    }

  @media (max-width: 780px) {
      .hero { min-height: 600px; height: 90vh; }
      .hero-content h1 { font-size: 2.6rem; }
      .hero-content p { font-size: 1.05rem; }
      .hero-content { padding: 100px 0 20px; }
      .carousel-controls { bottom: 5px; }
      .carousel-arrow { width: 40px; height: 40px; font-size: 1rem; }
      .grid-3 { grid-template-columns: 1fr; }
      .grid-2 { grid-template-columns: 1fr; gap: 30px; }
      .grid-4 { grid-template-columns: 1fr 1fr; }
      section { padding: 50px 0; }
      .section-title { font-size: 2.2rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    }
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent-light);
      padding: 4px 16px 4px 12px;
      border-radius: 60px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary);
    }
    .mt-4 { margin-top: 30px; }
    .mb-4 { margin-bottom: 30px; }
    .gap-2 { gap: 20px; }
    .flex-center { display: flex; align-items: center; justify-content: center; }
    .bg-white { background: white; }
    /* faq */
    .faq-item {
      border-bottom: 1px solid #e2e8f0;
      padding: 20px 0;
    }
    .faq-item:last-child {
      border-bottom: none;
    }
    .faq-item h4 {
      font-weight: 600;
      color: var(--primary);
      display: flex;
      gap: 12px;
    }
    .faq-item h4 span {
      color: var(--accent);
    }
    .faq-item p {
      color: var(--text-muted);
      margin-top: 6px;
      padding-left: 28px;
    }
    /* scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255,255,255,0.5);
      font-size: 1.6rem;
      animation: bounce 2s infinite;
      cursor: pointer;
    }
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-12px); }
      60% { transform: translateX(-50%) translateY(-6px); }
    }
    @media (max-width: 780px) {
      .scroll-indicator { display: none; }
    }