*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --rose: #873D89;
    --rose-light: #fce8ed;
    --rose-dark: #b8324f;
    --coral: #ff7b5c;
    --gold: #f5c842;
    --cream: #fdf8f2;
    --ink: #1a1118;
    --ink-soft: #4a3d47;
    --muted: #8a7a86;
    --border: rgba(26,17,24,0.1);
    --white: #ffffff;
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container: min(1100px, 90vw);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem clamp(1.5rem, 5vw, 3rem);
    background: rgba(253,248,242,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex; align-items: center;
  }
  .nav-logo img { height: 64px;}
  .nav-logo span { color: var(--ink); }
  .nav-cta {
    background: var(--rose);
    color: #fff;
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--rose-dark); transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem clamp(1.5rem, 6vw, 3rem) 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 60% 20%, rgba(232,71,106,0.12) 0%, transparent 65%),
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,200,66,0.14) 0%, transparent 60%),
      radial-gradient(ellipse 40% 30% at 85% 75%, rgba(255,123,92,0.1) 0%, transparent 55%);
    pointer-events: none;
  }
  .hero-tag {
    display: inline-block;
    background: var(--rose-light);
    color: var(--rose-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(232,71,106,0.25);
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 820px;
    margin: 0 auto 1.4rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--rose);
  }
  .hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto 2.4rem;
  }
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'DM Sans', sans-serif;
    border: 2px solid var(--ink);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,17,24,0.2); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--ink);
    padding: 0.85rem 1.8rem;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--ink);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-secondary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

  /* PHONE MOCKUP */
  .hero-visual {
    margin-top: 3.5rem;
    position: relative;
    display: inline-block;
  }
  .phone-frame {
    width: clamp(190px, 32vw, 280px);
    height: clamp(380px, 60vw, 560px);
    background: var(--ink);
    border-radius: 40px;
    border: 3px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(26,17,24,0.28), 0 8px 20px rgba(26,17,24,0.15);
  }
  .phone-notch {
    position: absolute;
    top: 12px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 24px;
    background: var(--ink);
    border-radius: 20px;
    z-index: 10;
  }
  .phone-screen {
    position: absolute;
    inset: 6px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(160deg, #fff5f8 0%, #fff0f4 40%, #fce8ed 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.2rem 1.5rem;
    gap: 0.8rem;
  }
  .phone-heart {
    font-size: 2.4rem;
    animation: float 3s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .phone-label {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rose);
    text-align: center;
  }
  .phone-card {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 12px rgba(232,71,106,0.12);
  }
  .phone-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--coral) 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  .phone-card-text { flex: 1; }
  .phone-card-name { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
  .phone-card-sub { font-size: 0.7rem; color: var(--muted); }
  .phone-card-btn {
    background: var(--rose);
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 0.3rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: default;
  }
  .floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(26,17,24,0.15);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .badge-left {
    left: -90px;
    bottom: 30%;
    animation: float2 4s ease-in-out infinite;
  }
  .badge-right {
    right: -80px;
    top: 28%;
    animation: float2 4s ease-in-out infinite 1.5s;
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* SECTION COMMONS */
  section { padding: var(--section-pad) clamp(1.5rem, 6vw, 3rem); }
  .container { max-width: var(--container); margin: 0 auto; }
  .section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
  }
  .section-subtitle {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.7;
  }

  /* ABOUT */
  .about {
    background: var(--white);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  @media (max-width: 700px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .badge-left, .badge-right { display: none; }
  }
  .about-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .about-stat {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.2rem;
    border: 0.5px solid var(--border);
  }
  .about-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .about-stat-label { font-size: 0.85rem; color: var(--muted); }
  .about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-emblem {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light) 0%, #fff 60%);
    border: 2px solid rgba(232,71,106,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    gap: 0.5rem;
    position: relative;
  }
  .about-emblem-label {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rose);
  }

  /* FEATURES */
  .features { background: var(--cream); }
  .features-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
    gap: 1.2rem;
    margin-top: 3rem;
  }
  .feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem;
    border: 0.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,17,24,0.08); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
  }
  .feature-title {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }
  .feature-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

  /* HOW IT WORKS */
  .how { background: var(--ink); color: var(--cream); }
  .how .section-label { color: var(--gold); }
  .how .section-title { color: var(--cream); }
  .how .section-subtitle { color: rgba(253,248,242,0.65); }
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    counter-reset: step;
  }
  .step {
    counter-increment: step;
    position: relative;
    padding: 1.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 0.5px solid rgba(255,255,255,0.1);
  }
  .step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(245,200,66,0.25);
    display: block;
    line-height: 1;
    margin-bottom: 0.8rem;
  }
  .step-title {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }
  .step-desc { font-size: 0.88rem; color: rgba(253,248,242,0.6); line-height: 1.6; }

  /* SAFETY */
  .safety { background: var(--white); border-top: 0.5px solid var(--border); }
  .safety-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  @media (max-width: 700px) { .safety-inner { grid-template-columns: 1fr; gap: 2rem; } }
  .safety-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
  .safety-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.97rem;
    color: var(--ink-soft);
  }
  .safety-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--rose-light);
    color: var(--rose);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .safety-shield {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .shield-graphic {
    width: 240px; height: 270px;
    background: linear-gradient(160deg, var(--rose-light) 0%, #fff 70%);
    clip-path: polygon(50% 0%, 100% 18%, 100% 65%, 50% 100%, 0% 65%, 0% 18%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-size: 3.5rem;
    gap: 0.3rem;
  }
  .shield-label {
    font-family: 'Fraunces', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rose-dark);
  }

  /* TESTIMONIALS */
  .testimonials { background: var(--cream); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
  }
  .testi-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 0.5px solid var(--border);
    position: relative;
  }
  .testi-quote {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    color: var(--rose);
    line-height: 0.5;
    margin-bottom: 1rem;
    display: block;
  }
  .testi-text {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.4rem;
  }
  .testi-author { display: flex; align-items: center; gap: 0.75rem; }
  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--coral) 100%);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: #fff;
    flex-shrink: 0;
  }
  .testi-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
  .testi-city { font-size: 0.8rem; color: var(--muted); }
  .testi-stars { font-size: 0.8rem; color: var(--gold); margin-bottom: 2px; }

  /* DOWNLOAD CTA */
  .download-cta {
    background: var(--rose);
    color: #fff;
    text-align: center;
  }
  .download-cta .section-label { color: rgba(255,255,255,0.65); }
  .download-cta .section-title { color: #fff; max-width: 600px; margin: 0 auto 1rem; }
  .download-cta p { color: rgba(255,255,255,0.8); max-width: 440px; margin: 0 auto 2.2rem; }
  .dl-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: background 0.2s, transform 0.15s;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
  }
  .dl-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
  .dl-btn-icon { font-size: 1.3rem; }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: rgba(253,248,242,0.6);
    padding: 3rem clamp(1.5rem, 6vw, 3rem);
  }
  .footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    /* align-items: center;
    justify-content: center; */
    /* text-align: center; */
    padding-bottom: 2rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
  }
  .f-logo{ height: 72px; display: block; margin: 0 0 15px;}
  .f-logo img{ height: 100%;}
  .social-icons{ display: flex; align-items: center; justify-content: flex-start; gap: 15px; margin-top: 15px;}
  .social-icons img{ height: 24px;}
  @media (max-width: 650px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  }
  .footer-brand-name {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }
  .footer-brand-desc { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
  .footer-email {
    color: var(--rose);
    text-decoration: none;
    font-size: 0.88rem;
    display: block;
    margin-top: 0.8rem;
  }
  .footer-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; flex-wrap: wrap; }
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.2s;
    border: 0.5px solid rgba(255,255,255,0.15);
  }
  .social-link:hover { background: var(--rose); border-color: transparent; }
  .footer-col-title {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(253,248,242,0.45);
    margin-bottom: 1rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a {
    color: rgba(253,248,242,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cream); }
  .footer-bottom {
    max-width: var(--container);
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.82rem;
  }
  .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .footer-legal a { color: rgba(253,248,242,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--cream); }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  .privacy-container{ max-width: var(--container); margin: 0 auto; padding: 140px 0 60px;}
  .privacy-container p{ padding: 15px 0;}
  .privacy-container ul { margin:20px 0 16px 40px}

.privacy-container ul li { margin-bottom: 6px;}