@charset "utf-8";
/* CSS Document */

 :root {
      --background:        hsl(40, 60%, 97%);
      --foreground:        hsl(25, 30%, 18%);
      --card:              hsl(40, 100%, 99%);
      --card-foreground:   hsl(25, 30%, 18%);
      --border:            hsl(40, 20%, 85%);
      --primary:           hsl(24, 95%, 48%);
      --primary-foreground:hsl(0, 0%, 100%);
      --secondary:         hsl(0, 78%, 42%);
      --secondary-foreground: hsl(0, 0%, 100%);
      --muted:             hsl(40, 20%, 90%);
      --muted-foreground:  hsl(25, 20%, 45%);
      --accent:            hsl(43, 95%, 50%);
      --accent-foreground: hsl(25, 30%, 18%);
      --font-sans: 'Poppins', sans-serif;
      --font-serif: 'Playfair Display', serif;
      --radius: 0.5rem;
    }

    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--background);
      color: var(--foreground);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); }

    /* ── Framer-motion entrance animations replicated ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-up.animated { opacity: 1; transform: translateY(0); }

    .fade-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-left.animated { opacity: 1; transform: translateX(0); }

    .fade-scale {
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-scale.animated { opacity: 1; transform: scale(1); }

    .hero-animate {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .hero-animate.animated { opacity: 1; transform: translateY(0); }

    /* ── Container ── */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    @media (min-width: 768px) { .container { padding: 0 1.5rem; } }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    nav.topnav {
      position: sticky;
      top: 0;
      z-index: 50;
      width: 100%;
      background: rgba(255, 253, 247, 0.80);  /* card/80 */
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .topnav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 5rem; /* h-20 */
    }
    /* Logo */
    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .logo-icon {
      width: 2.5rem; height: 2.5rem; /* w-10 h-10 */
      border-radius: 9999px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-family: var(--font-serif);
      font-size: 1.5rem;
      line-height: 1;
      padding-top: 4px;
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .logo-link:hover .logo-icon { transform: scale(1.05); }
    .logo-text {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--primary);
    }
    /* Desktop nav links */
    .nav-links {
      display: none;
      align-items: center;
      gap: 2rem;
    }
    @media (min-width: 768px) { .nav-links { display: flex; } }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--primary); }

    /* Browse Pujas dropdown */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
      cursor: pointer;
      transition: color 0.15s;
      background: none;
      border: none;
      font-family: var(--font-sans);
      padding: 0;
    }
    .nav-dropdown-toggle:hover,
    .nav-dropdown.open .nav-dropdown-toggle { color: var(--primary); }
    .nav-dropdown-toggle svg {
      width: 0.875rem;
      height: 0.875rem;
      transition: transform 0.2s;
    }
    .nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 0.75rem);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      min-width: 20rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      padding: 0.5rem 0;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 60;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu a {
      display: block;
      padding: 0.6rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
      white-space: nowrap;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown-menu a:hover {
      background: hsla(24, 95%, 48%, 0.08);
      color: var(--primary);
    }
    /* Desktop right side */
    .nav-right {
      display: none;
      align-items: center;
      gap: 1rem;
    }
    @media (min-width: 768px) { .nav-right { display: flex; } }
    .nav-phone {
      display: flex; align-items: center;
      font-size: 0.875rem; font-weight: 500;
      color: var(--secondary);
      gap: 0.5rem;
    }
    .nav-phone svg { width: 1rem; height: 1rem; }
    /* Login button */
    .btn-login {
      background: var(--primary);
      color: #fff;
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 0.875rem;
      border: none; cursor: pointer;
      border-radius: 9999px;
      padding: 0.5rem 1.5rem;
      box-shadow: 0 4px 6px -1px rgba(245,95,0,0.2);
      transition: background 0.2s;
      display: inline-block;
    }
    .btn-login:hover { background: hsl(24,95%,40%); }
    /* Right-side social bar */
    .social-side-bar {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 45;
      display: flex;
      flex-direction: column;
   /*   background: var(--card); */
     background: #EF6306;
      border: 1px solid var(--border);
      border-right: none;
      border-radius: var(--radius) 0 0 var(--radius);
      box-shadow: -4px 0 16px rgba(0,0,0,0.06);
      overflow: hidden;
    }
    .social-side-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      color: #FFFFFF;
      transition: background 0.2s, color 0.2s;
      border-bottom: 1px solid var(--border);
    }
    .social-side-bar a:last-child { border-bottom: none; }
    .social-side-bar a:hover { color: #fff; }
    .social-side-bar a.social-fb:hover { background: #1877F2; }
    .social-side-bar a.social-ig:hover { background: #E4405F; }
    .social-side-bar a.social-yt:hover { background: #FF0000; }
    .social-side-bar svg { width: 1.125rem; height: 1.125rem; }
    @media (max-width: 480px) {
      .social-side-bar a {
        width: 2.25rem;
        height: 2.25rem;
      }
      .social-side-bar svg { width: 1rem; height: 1rem; }
    }
    /* Chat with us widget */
    .chat-widget {
      position: fixed;
      right: 1rem;
      bottom: 1.5rem;
      z-index: 50;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.75rem;
    }
    .chat-panel {
      width: 18rem;
      max-width: calc(100vw - 2rem);
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px) scale(0.96);
      transform-origin: bottom right;
      transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
      pointer-events: none;
    }
    .chat-widget.open .chat-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .chat-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 1rem 1.25rem;
      background: var(--primary);
      color: #fff;
    }
    .chat-panel-header h4 {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      font-weight: 600;
      margin: 0;
    }
    .chat-panel-header p {
      font-size: 0.75rem;
      opacity: 0.9;
      margin: 0.15rem 0 0;
    }
    .chat-close {
      flex-shrink: 0;
      width: 1.75rem;
      height: 1.75rem;
      border: none;
      border-radius: 9999px;
      background: rgba(255,255,255,0.2);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .chat-close:hover { background: rgba(255,255,255,0.35); }
    .chat-close svg { width: 1rem; height: 1rem; }
    .chat-panel-body {
      padding: 1.25rem;
    }
    .chat-bubble {
      background: hsla(24, 95%, 48%, 0.08);
      border: 1px solid hsla(24, 95%, 48%, 0.15);
      border-radius: var(--radius);
      padding: 0.875rem 1rem;
      font-size: 0.875rem;
      line-height: 1.6;
      color: var(--foreground);
      margin-bottom: 1rem;
    }
    .chat-actions {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .chat-action-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.65rem 1rem;
      border-radius: 9999px;
      font-family: var(--font-sans);
      font-size: 0.875rem;
      font-weight: 500;
      transition: background 0.2s, color 0.2s;
    }
    .chat-action-btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
    .chat-action-whatsapp {
      background: #25D366;
      color: #fff;
    }
    .chat-action-whatsapp:hover { background: #1ebe57; }
    .chat-action-call {
      background: var(--muted);
      color: var(--foreground);
    }
    .chat-action-call:hover { background: hsl(40, 20%, 85%); }
    .chat-toggle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.25rem;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 9999px;
      font-family: var(--font-sans);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(245,95,0,0.35);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .chat-toggle:hover {
      background: hsl(24,95%,40%);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,95,0,0.4);
    }
    .chat-toggle svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
    .chat-widget.open .chat-toggle-icon-chat { display: none; }
    .chat-widget.open .chat-toggle-icon-close { display: block; }
    .chat-toggle-icon-close { display: none; }
    @media (max-width: 480px) {
      .chat-widget { right: 0.75rem; bottom: 1rem; }
      .chat-toggle span { display: none; }
      .chat-toggle { padding: 0.85rem; border-radius: 9999px; }
    }
    /* Mobile hamburger */
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 0.5rem;
      background: none; border: none; cursor: pointer;
      color: var(--foreground);
    }
    @media (min-width: 768px) { .hamburger { display: none; } }
    .hamburger svg { width: 1.5rem; height: 1.5rem; }
    /* Mobile menu */
    .mobile-menu {
      display: none;
      background: var(--card);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu-inner {
      padding: 1rem;
      display: flex; flex-direction: column;
      gap: 1rem;
    }
    .mobile-menu a {
      display: block;
      padding: 0.5rem 0;
      font-weight: 500;
      color: var(--foreground);
      border-bottom: 1px solid rgba(205,185,160,0.5);
    }
    .mobile-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0.5rem 0;
      font-weight: 500;
      color: var(--foreground);
      border-bottom: 1px solid rgba(205,185,160,0.5);
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: var(--font-sans);
      font-size: 1rem;
      cursor: pointer;
      text-align: left;
    }
    .mobile-dropdown-toggle svg {
      width: 1rem;
      height: 1rem;
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .mobile-dropdown.open .mobile-dropdown-toggle svg { transform: rotate(180deg); }
    .mobile-dropdown-menu {
      display: none;
      padding: 0.25rem 0 0.5rem 1rem;
    }
    .mobile-dropdown.open .mobile-dropdown-menu { display: block; }
    .mobile-dropdown-menu a {
      padding: 0.45rem 0;
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--muted-foreground);
      border-bottom: none;
    }
    .mobile-dropdown-menu a:hover { color: var(--primary); }
    .mobile-phone {
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 0;
      font-weight: 500;
      color: var(--secondary);
      font-size: 0.9rem;
    }
    .mobile-phone svg { width: 1rem; height: 1rem; }
    .btn-mobile-login {
      background: var(--primary);
      color: #fff;
      border: none; cursor: pointer;
      border-radius: 9999px;
      padding: 0.6rem 1rem;
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 0.9rem;
      width: 100%;
      transition: background 0.2s;
    }
    .btn-mobile-login:hover { background: hsl(24,95%,40%); }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      min-height: 90vh;
      display: flex;
      align-items: center;
    }
    /* bg image layer */
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
    }
    /* gradient overlay: from-background/95 via-background/80 to-background/30 (left→right) */
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        hsla(40,60%,97%,0.95) 0%,
        hsla(40,60%,97%,0.80) 50%,
        hsla(40,60%,97%,0.30) 100%
      );
    }
    .hero-content-wrap {
      position: relative; z-index: 10;
      padding: 5rem 0;
      width: 100%;
    }
    .hero-content {
      max-width: 42rem; /* max-w-2xl */
    }
    /* badge */
    .hero-badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      background: hsla(43,95%,50%,0.20);
      border: 1px solid hsla(43,95%,50%,0.30);
      box-shadow: 0 1px 2px rgba(0,0,0,0.05);
      backdrop-filter: blur(4px);
      font-weight: 500;
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
      color: var(--accent-foreground);
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      color: var(--foreground);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.06));
    }
    @media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
    @media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
    .hero h1 .text-primary { color: var(--primary); }
    .hero p {
      font-size: 1.125rem;
      font-weight: 300;
      color: var(--muted-foreground);
      margin-bottom: 2.5rem;
      max-width: 36rem;
      line-height: 1.75;
    }
    @media (min-width: 768px) { .hero p { font-size: 1.25rem; } }
    /* hero buttons */
    .hero-btns {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 3rem;
    }
    @media (min-width: 640px) { .hero-btns { flex-direction: row; } }
    .btn-hero-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--primary);
      color: #fff;
      font-family: var(--font-sans);
      font-size: 1.125rem; font-weight: 500;
      border: none; cursor: pointer;
      border-radius: 9999px;
      padding: 1rem 2rem;
      box-shadow: 0 10px 15px -3px hsla(24,95%,48%,0.25);
      transition: transform 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .btn-hero-primary:hover { background: hsl(24,95%,40%); transform: translateY(-4px); }
    .btn-hero-primary svg { width: 1.25rem; height: 1.25rem; }
    .btn-hero-outline {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: hsla(40,100%,99%,0.50);
      backdrop-filter: blur(4px);
      color: var(--primary);
      border: 1px solid hsla(24,95%,48%,0.20);
      font-family: var(--font-sans);
      font-size: 1.125rem; font-weight: 500;
      cursor: pointer;
      border-radius: 9999px;
      padding: 1rem 2rem;
      transition: transform 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .btn-hero-outline:hover { background: hsla(24,95%,48%,0.10); transform: translateY(-4px); }
    .btn-hero-outline svg { width: 1.25rem; height: 1.25rem; }
    /* trust badges */
    .hero-trust {
      display: flex; align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.875rem; font-weight: 500;
      color: var(--muted-foreground);
    }
    .trust-item { display: flex; align-items: center; gap: 0.5rem; }
    .trust-item svg { width: 1.25rem; height: 1.25rem; color: var(--accent); }
    .trust-item .star-filled { fill: var(--accent); color: var(--accent); }

    /* ══════════════════════════════
       CATEGORIES  (bg-card, py-24)
    ══════════════════════════════ */
    #pujas {
      padding: 6rem 0;
      background: var(--card);
    }
    .section-title {
      text-align: center;
      margin-bottom: 4rem;
    }
    .section-title h2 {
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) { .section-title h2 { font-size: 2.25rem; } }
    .section-title p {
      color: var(--muted-foreground);
      max-width: 42rem;
      margin: 0 auto;
    }
    /* grid: 1 col → 2 col (md) → 4 col (lg) */
    .categories-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    @media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(2,1fr); } }
    @media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(4,1fr); } }
    /* card */
    .cat-card {
      border-radius: 1rem; /* rounded-2xl */
      overflow: hidden;
      background: var(--background);
      border: 1px solid var(--border);
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
      cursor: pointer;
      transition: box-shadow 0.3s;
    }
    .cat-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
    /* aspect-[4/3] image wrapper */
    .cat-img {
      aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
    }
    .cat-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s;
    }
    .cat-card:hover .cat-img img { transform: scale(1.1); }
    .cat-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.60), transparent, transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .cat-card:hover .cat-img-overlay { opacity: 1; }
    .cat-body { padding: 1.5rem; }
    .cat-body h3 {
      font-size: 1.25rem; font-weight: 700;
      color: var(--foreground);
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }
    .cat-card:hover .cat-body h3 { color: var(--primary); }
    .cat-body p {
      color: var(--muted-foreground);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }
    .cat-link {
      display: flex; align-items: center;
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      gap: 0.25rem;
    }
    .cat-link svg {
      width: 1rem; height: 1rem;
      transition: transform 0.2s;
    }
    .cat-card:hover .cat-link svg { transform: translateX(4px); }
    /* View all button */
    .view-all-wrap { margin-top: 3rem; text-align: center; }
    .btn-outline-primary {
      display: inline-flex; align-items: center;
      border: 1px solid var(--border);
      color: var(--foreground);
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 0.875rem;
      cursor: pointer;
      border-radius: 9999px;
      padding: 1.1rem 2rem;
      background: transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-outline-primary:hover { border-color: var(--primary); color: var(--primary); }

    /* ══════════════════════════════
       HOW IT WORKS (bg-background, py-24)
    ══════════════════════════════ */
    #how-it-works {
      padding: 6rem 0;
      background: var(--background);
      position: relative;
      overflow: hidden;
    }
    /* decorative blobs */
    .blob-tr {
      position: absolute; top: 0; right: 0;
      width: 24rem; height: 24rem;
      background: hsla(43,95%,50%,0.05);
      border-radius: 9999px;
      filter: blur(48px);
      transform: translate(50%, -50%);
      pointer-events: none;
    }
    .blob-bl {
      position: absolute; bottom: 0; left: 0;
      width: 24rem; height: 24rem;
      background: hsla(24,95%,48%,0.05);
      border-radius: 9999px;
      filter: blur(48px);
      transform: translate(-50%, 50%);
      pointer-events: none;
    }
    .how-relative { position: relative; z-index: 10; }
    /* 4-column step grid */
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    @media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4,1fr); } }
    .step { position: relative; }
    .step-inner {
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
    }
    .step-num {
      width: 5rem; height: 5rem; /* w-20 h-20 */
      border-radius: 9999px;
      background: var(--card);
      border: 1px solid hsla(24,95%,48%,0.20);
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-serif);
      font-size: 1.5rem; font-weight: 700;
      color: var(--primary);
      margin-bottom: 1.5rem;
      position: relative; z-index: 10;
    }
    .step-inner h3 {
      font-size: 1.25rem; font-weight: 700;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }
    .step-inner p {
      color: var(--muted-foreground);
      font-size: 0.875rem;
      line-height: 1.7;
    }
    /* dashed connector line between steps (desktop only) */
    .step-connector {
      display: none;
      position: absolute;
      top: 2.5rem; /* top-10 */
      left: 60%;
      width: 80%;
      height: 2px;
      border-top: 2px dashed hsla(24,95%,48%,0.30);
      z-index: 0;
    }
    @media (min-width: 768px) { .step-connector { display: block; } }

    /* ══════════════════════════════
       WHY CHOOSE US (bg-card border-y, py-24)
    ══════════════════════════════ */
    #why {
      padding: 6rem 0;
      background: var(--card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .why-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4rem;
    }
    @media (min-width: 1024px) { .why-grid { flex-direction: row; } }
    /* left: image */
    .why-img-col {
      width: 100%;
    }
    @media (min-width: 1024px) { .why-img-col { width: 50%; } }
    .why-img-wrap {
      position: relative;
      border-radius: 1.5rem; /* rounded-3xl */
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    }
    .why-img-wrap img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
    }
    /* gradient overlay: from-primary/80 to-transparent, mix-blend-multiply */
    .why-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, hsla(24,95%,48%,0.80), transparent);
      mix-blend-mode: multiply;
    }
    /* floating card at bottom */
    .why-float-card {
      position: absolute;
      bottom: 2rem; left: 2rem; right: 2rem;
      background: hsla(40,60%,97%,0.95);
      backdrop-filter: blur(4px);
      padding: 1.5rem;
      border-radius: 1rem;
      border: 1px solid rgba(255,255,255,0.20);
      box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }
    .why-float-top {
      display: flex; align-items: center;
      gap: 1rem; margin-bottom: 0.5rem;
    }
    .why-float-top svg { width: 1.5rem; height: 1.5rem; fill: var(--accent); color: var(--accent); }
    .why-float-top span {
      font-size: 1.25rem; font-weight: 700;
      font-family: var(--font-serif);
      color: var(--foreground);
    }
    .why-float-card p { color: var(--muted-foreground); font-size: 0.875rem; }
    /* right: text */
    .why-text-col { width: 100%; }
    @media (min-width: 1024px) { .why-text-col { width: 50%; } }
    .why-text-col h2 {
      font-size: 1.875rem; font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) { .why-text-col h2 { font-size: 2.25rem; } }
    .why-text-col > p {
      color: var(--muted-foreground);
      margin-bottom: 2.5rem;
      font-size: 1.125rem;
    }
    .why-items { display: flex; flex-direction: column; gap: 2rem; }
    .why-item { display: flex; gap: 1.25rem; }
    .why-icon {
      flex-shrink: 0;
      width: 3rem; height: 3rem;
      border-radius: 9999px;
      background: hsla(24,95%,48%,0.10);
      display: flex; align-items: center; justify-content: center;
    }
    .why-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
    .why-item-text h3 {
      font-size: 1.25rem; font-weight: 700;
      color: var(--foreground); margin-bottom: 0.5rem;
    }
    .why-item-text p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.7; }

    /* ══════════════════════════════
       TESTIMONIALS (bg-background, py-24)
    ══════════════════════════════ */
    #testimonials {
      padding: 6rem 0;
      background: var(--background);
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    @media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
    .review-card {
      background: var(--card);
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid var(--border);
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
      position: relative;
    }
    .stars {
      color: var(--accent);
      margin-bottom: 1.5rem;
      display: flex; gap: 2px;
    }
    .stars svg { width: 1.25rem; height: 1.25rem; fill: var(--accent); color: var(--accent); }
    .review-card blockquote {
      color: var(--foreground);
      font-style: italic;

      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .reviewer { display: flex; align-items: center; gap: 1rem; }
    .reviewer-avatar {
      width: 3rem; height: 3rem;
      border-radius: 9999px;
      background: hsla(24,95%,48%,0.20);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-serif);
      font-size: 1.25rem; font-weight: 700;
      color: var(--primary);
      flex-shrink: 0;
    }
    .reviewer h4 { font-family: var(--font-sans); font-weight: 700; color: var(--foreground); margin-bottom: 0.1rem; font-size: 0.95rem; }
    .reviewer p { font-size: 0.875rem; color: var(--muted-foreground); }

    /* ══════════════════════════════
       APP BANNER (py-16)
    ══════════════════════════════ */
    #app-banner {
      padding: 4rem 0;
    }
    .app-banner-card {
      background: linear-gradient(to bottom right, var(--primary), var(--secondary));
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
      position: relative;
    }
    /* decorative circle */
    .app-banner-blob {
      position: absolute; top: 0; right: 0;
      width: 16rem; height: 16rem;
      background: rgba(255,255,255,0.10);
      border-radius: 9999px;
      filter: blur(24px);
      transform: translate(50%, -50%);
    }
    .app-banner-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem;
      position: relative; z-index: 10;
      gap: 2rem;
    }
    @media (min-width: 768px) {
      .app-banner-inner { flex-direction: row; padding: 4rem; }
    }
    .app-text { flex: 2; color: #fff; }
    .app-text h2 {
      font-size: 1.875rem; font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) { .app-text h2 { font-size: 2.25rem; } }
    .app-text p {
      color: rgba(255,255,255,0.90);
      font-size: 1.125rem;
      margin-bottom: 2rem;
      max-width: 36rem;
    }
    .app-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
    .btn-app {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: #fff;
      color: var(--primary);
      font-family: var(--font-sans);
      font-weight: 500;
      border: none; cursor: pointer;
      border-radius: 9999px;
      padding: 1rem 1.5rem;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .btn-app:hover { background: #f3f3f3; }
    .btn-app svg { width: 1.25rem; height: 1.25rem; }
    /* Om circle */
    .app-visual { flex: 1; display: flex; justify-content: center; }
    .app-om-circle {
      width: 12rem; height: 12rem;
      border-radius: 9999px;
      border: 4px solid rgba(255,255,255,0.20);
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-serif);
      font-size: 5rem;
      color: rgba(255,255,255,0.80);
    }
    @media (min-width: 768px) { .app-om-circle { width: 16rem; height: 16rem; font-size: 6rem; } }

    /* ══════════════════════════════
       FOOTER (bg-foreground, py-16, border-t-4 border-primary)
    ══════════════════════════════ */
    footer {
      background: var(--foreground);
      color: var(--background);
      padding: 4rem 0;
      border-top: 4px solid var(--primary);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
    @media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }
    /* brand col */
    .footer-logo {
      display: flex; align-items: center; gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-logo-icon {
      width: 2rem; height: 2rem;
      border-radius: 9999px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-family: var(--font-serif);
      font-size: 1.25rem;
      line-height: 1;
      padding-top: 3px;
      flex-shrink: 0;
    }
    .footer-logo-text {
      font-family: var(--font-serif);
      font-size: 1.5rem; font-weight: 700;
      letter-spacing: -0.025em;
      color: #fff;
    }
    .footer-brand-desc {
      color: #9ca3af; /* text-gray-400 */
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .social-links { display: flex; gap: 1rem; }
    .social-link {
      width: 2.5rem; height: 2.5rem;
      border-radius: 9999px;
      background: rgba(255,255,255,0.10);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      transition: background 0.2s;
    }
    .social-link:hover { background: var(--primary); }
    .social-link svg { width: 1.25rem; height: 1.25rem; }
    /* footer col */
    .footer-col h4 {
      font-family: var(--font-sans);
      font-size: 0.875rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.05em;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer-col ul li a {
      color: #9ca3af;
      font-size: 0.875rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--primary); }
    /* contact col */
    .footer-contact { display: flex; flex-direction: column; gap: 1rem; }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 0.75rem;
      color: #9ca3af; font-size: 0.875rem;
    }
    .footer-contact-item svg {
      width: 1.25rem; height: 1.25rem;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 1px;
    }
    /* footer bottom */
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.10);
      text-align: center;
      color: #6b7280;
      font-size: 0.875rem;
    }