:root {
      --primary: #f9a826;
      --accent: #56b7f5;
      --dark: #1f2937;
      --muted: #64748b;
      --surface: #ffffff;
      --bg: #fdf7ed;
      --shadow: 0 18px 40px rgba(31, 41, 55, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      background: radial-gradient(circle at top left, rgba(249, 168, 38, 0.18), transparent 28%),
                  radial-gradient(circle at bottom right, rgba(86, 183, 245, 0.16), transparent 32%),
                  var(--bg);
      color: var(--dark);
      line-height: 1.6;
    }

    a { color: inherit; }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(253, 247, 237, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-bar {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      gap: 16px;
    }

    .brand {
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .brand span { color: var(--primary); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      font-weight: 500;
      color: var(--muted);
    }

    .nav-links a:hover { color: var(--dark); }

    .hero {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 40px;
      padding: 80px 20px 48px;
    }

    .hero-copy {
      max-width: 580px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
    }

    .eyebrow::before {
      content: '';
      width: 32px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), rgba(249, 168, 38, 0.5));
    }

    .hero-title {
      font-size: clamp(2.75rem, 4vw, 4.25rem);
      line-height: 0.95;
      font-weight: 800;
    }

    .hero-title span { color: var(--primary); }

    .hero-copy p {
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 520px;
    }

    .hero-actions {
      margin-top: 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      text-decoration: none;
      border: 2px solid transparent;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 16px 28px rgba(249, 168, 38, 0.22);
    }

    .btn-primary:hover { transform: translateY(-2px); }

    .btn-secondary {
      border-color: rgba(86, 183, 245, 0.3);
      color: var(--dark);
      background: rgba(255,255,255,0.88);
    }

    .btn-secondary:hover { transform: translateY(-2px); }

    .hero-visual {
      position: relative;
      display: grid;
      gap: 18px;
      justify-items: end;
    }

    .hero-card {
      width: 100%;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--shadow);
      animation: float 8s ease-in-out infinite;
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-callout {
      position: absolute;
      right: 0;
      bottom: -10px;
      width: 240px;
      background: white;
      padding: 18px;
      border-radius: 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(15, 23, 42, 0.08);
      animation: appear 1.1s ease 0.25s both;
    }

    .hero-callout strong { display: block; margin-bottom: 6px; }

    main {
      padding-bottom: 60px;
    }

    .popover {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(249, 168, 38, 0.22);
      border-radius: 999px;
      padding: 12px 18px;
      font-size: 0.95rem;
      box-shadow: 0 18px 30px rgba(31, 41, 55, 0.08);
    }

    .section {
      padding: 80px 20px;
      max-width: 1100px;
      margin: auto;
    }

    .section h2 {
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      margin-bottom: 10px;
      text-align: center;
    }

    .section p.lead {
      max-width: 700px;
      margin: 0 auto 44px;
      color: var(--muted);
      text-align: center;
      font-size: 1.05rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .feature {
      background: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease;
    }

    .feature:hover { transform: translateY(-6px); }

    .feature h3 {
      margin-bottom: 14px;
      font-size: 1.2rem;
    }

    .feature p { color: var(--muted); }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .testimonial {
      background: linear-gradient(180deg, rgba(255,255,255,0.98), #fff9f2);
      border-radius: 30px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .testimonial::before {
      content: '“';
      position: absolute;
      top: 18px;
      right: 18px;
      font-size: 5rem;
      color: rgba(249, 168, 38, 0.2);
      line-height: 1;
    }

    .testimonial p {
      margin-bottom: 20px;
      color: var(--dark);
      line-height: 1.8;
    }

    .testimonial strong {
      display: block;
      color: var(--dark);
      letter-spacing: 0.03em;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }

    .gallery img {
      width: 100%;
      border-radius: 24px;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease;
    }

    .gallery img:hover { transform: translateY(-6px) scale(1.02); }

    .contact-panel {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 12px;
      align-items: center;
      margin-top: 20px;
    }

    .contact-copy {
      border-radius: 30px;
      padding: 16px;
      background: white;
      box-shadow: var(--shadow);
    }

    .contact-copy h3 {
      margin-bottom: 10px;
      font-size: 1.6rem;
    }

    .contact-copy p { color: var(--muted); }

    /* .contact-form {
      display: grid;
      gap: 16px;
      padding: 32px;
      border-radius: 30px;
      background: white;
      box-shadow: var(--shadow);
    } */

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 16px;
      font-size: 1rem;
      color: var(--dark);
      background: #fff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: rgba(86, 183, 245, 0.6);
      box-shadow: 0 0 0 4px rgba(86, 183, 245, 0.12);
    }

    .contact-form button {
      border: none;
      cursor: pointer;
      font-weight: 700;
      padding: 16px 22px;
      border-radius: 999px;
      background: var(--primary);
      color: white;
      transition: transform 0.2s ease;
    }

    .contact-form button:hover { transform: translateY(-2px); }

    footer {
      text-align: center;
      padding: 28px 20px 40px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .fade {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

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

    .floating-dot {
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(249, 168, 38, 0.2);
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); }
      50% { transform: translateY(-12px) translateX(6px); }
    }

    @keyframes appear {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 960px) {
      .hero { grid-template-columns: 1fr; }
      .contact-panel { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      .nav-bar { flex-direction: column; align-items: flex-start; }
      .nav-links { gap: 16px; }
      .hero { padding-top: 42px; }
      .hero-visual { justify-items: center; }
      .hero-callout { position: static; width: min(100%, 260px); margin: 0 auto; }
    }