:root {
    --brand: #a11234;
    --brand-dark: #720f28;
    --accent: #f2b694;
    --text: #1f1418;
    --card: #ffffff;
    --muted: #6b5c62;
    --border: #f1e4dc;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: #f8f5f1;
    line-height: 1.6;
}
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.page-wrap { overflow: hidden; }
.logo-link { text-decoration: none; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 245, 241, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.3px;
}
.logo-mark img {
  
    height: 52px;
   
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-links a {
    font-weight: 600;
    color: #43333a;
}
.downloadBtn:hover {
   color: #fff;

}
.nav-links a:hover { color: var(--brand); }
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: none;
    background: transparent;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.menu-toggle:hover { border-color: var(--brand); transform: translateY(-1px); }
.menu-lines, .menu-lines::before, .menu-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #341d27;
    border-radius: 999px;
    position: relative;
    transition: all 0.25s ease;
    content: '';
}
.menu-lines::before { position: absolute; top: -6px; left: 0; }
.menu-lines::after { position: absolute; top: 6px; left: 0; }
.menu-toggle.active .menu-lines { background: transparent; }
.menu-toggle.active .menu-lines::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active .menu-lines::after { transform: translateY(-6px) rotate(-45deg); }

.side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: #fffafa;
    box-shadow: 12px 0 40px rgba(0,0,0,0.08);
    padding: 26px 22px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
}
.side-drawer.open { transform: translateX(0); }
.side-drawer .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.side-drawer .nav-links a { padding: 8px 0; }
.drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 25;
}
.drawer-overlay.visible { opacity: 1; pointer-events: auto; }

.btn {
    display: inline-flex;
    width: 240px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
}
.btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.btn.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 15px 35px rgba(161, 18, 52, 0.25);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 18px 40px rgba(161, 18, 52, 0.3); }
.btn.ghost {
    border: 1px solid #d5c8bf;
    color: #3a2d32;
    background: #fff8f4;
}
.btn.ghost:hover { border-color: var(--brand); color: var(--brand); }

.hero {
    position: relative;
    padding: 84px 22px 96px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(242, 182, 148, 0.35), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(161, 18, 52, 0.18), transparent 40%),
                #fdf7f3;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(161,18,52,0.08), rgba(255,255,255,0.6));
    pointer-events: none;
}
.hero-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    align-items: center;
    z-index: 1;
}
.hero-text h1 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(34px, 4.2vw, 50px);
    line-height: 1.1;
    margin: 14px 0 14px;
    color: #1c0f16;
}
.hero-text p { color: var(--muted); max-width: 560px; margin: 0 0 20px; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-pill {
    background: rgba(161, 18, 52, 0.08);
    color: var(--brand);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(161, 18, 52, 0.16);
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 12px; }
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.stat-card {
    background: linear-gradient(145deg, #fff, #fdf5ef);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 28px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
    box-shadow: 0 16px 36px rgba(161, 18, 52, 0.12);
    transform: translateY(-2px);
}
.stat-card strong { display: block; color: var(--brand); font-size: 18px; }
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(161, 18, 52, 0.08);
    color: var(--brand);
    border: 1px solid rgba(161, 18, 52, 0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.hero-media {
    position: relative;
    display: grid;
    place-items: center;
}
.phone-frame {
    width: min(320px, 100%);
    background: #0f0a0c;
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.22);
   
}
.phone-frame img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}
.media-card {
    position: absolute;
    bottom: 16px;
    left: -12px;
    background: #fff9f5;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.media-card span {
    background: var(--brand);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
}

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 22px 60px;
}
.section h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(26px, 3vw, 34px);
    margin: 0 0 10px;
}
.section p.section-lead { color: var(--muted); margin: 0 0 26px; max-width: 720px; }


.about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    align-items: center;
    justify-items: center;
   background: linear-gradient(145deg, #fff, #fdf5ef);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.about-media:hover {
    box-shadow: 0 16px 36px rgba(161, 18, 52, 0.12);

}
.about-media {
    /* border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border: 1px solid var(--border); */
    width: 370px;
    height: 370px;
    background-size: cover;
    background-position: center;
    border: 5px solid var(--brand);
    border-radius: 50%;
    background-image: url(co.jpeg);
}
.about-card {
    /* background: var(--card);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06); */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
}
.feature-card {
    background: linear-gradient(145deg, #fff, #fdf5ef);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}
.feature-card:hover {
    box-shadow: 0 16px 36px rgba(161, 18, 52, 0.12);
    transform: translateY(-2px);
}
.feature-title { font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(161, 18, 52, 0.08);
    color: var(--brand);
    border: 1px solid rgba(161, 18, 52, 0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.herofeatures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}
.herofeature-card {
       background: linear-gradient(145deg, #fff, #fdf5ef);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 28px rgba(0, 0, 0, 0.05);
    display: grid;
    gap: 12px;
    align-items: center;
    position: relative;
    justify-items: center;
}
.herofeature-card:hover {
    box-shadow: 0 16px 36px rgba(161, 18, 52, 0.12);
    transform: translateY(-2px);
}
.herofeature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(161, 18, 52, 0.08);
    color: var(--brand);
    border: 1px solid rgba(161, 18, 52, 0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.herofeature-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 16px rgba(161, 18, 52, 0.22);
}
.herofeature-title { text-align: center; font-weight: 700; color: #1c0f16; margin-bottom: 4px; }
.herofeature-copy { text-align: center; color: var(--muted); font-size: 15px; 
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.step-card {
       background: linear-gradient(145deg, #fff, #fdf5ef);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 28px rgba(0, 0, 0, 0.05);
    display: grid;
    gap: 12px;
    align-items: center;
    position: relative;
    justify-items: center;
}
.step-card:hover {
    box-shadow: 0 16px 36px rgba(161, 18, 52, 0.12);
    transform: translateY(-2px);
}
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(161, 18, 52, 0.08);
    color: var(--brand);
    border: 1px solid rgba(161, 18, 52, 0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.step-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 16px rgba(161, 18, 52, 0.22);
}
.step-title { text-align: center; font-weight: 700; color: #1c0f16; margin-bottom: 4px; }
.step-copy { text-align: center; color: var(--muted); font-size: 15px; 
}

.screens {
    background: #fdf9f6;
    border-radius: 24px;
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 12px 30px rgba(0,0,0,0.04);
}
.screens-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.screen-item {
    background: #0d0a0b;
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.screen-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

screen-item img { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; }

.cta-wrap {
    max-width: 1080px;
    margin: 0 auto 80px;
    padding: 0 22px;
}
.cta-card {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    border-radius: 26px;
    padding: 32px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(161, 18, 52, 0.3);
}
.cta-card h3 { margin: 0 0 8px; font-size: 26px; }
.cta-card p { margin: 0 0 14px; color: #fde8e3; }
.cta-meta { font-weight: 700; }

.footer {
    padding: 28px 22px 40px;
    background: #14090e;
    color: #f7f2f0;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; gap: 12px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; color: #f7f2f0; }
.footer-links a { color: #f7f2f0; opacity: 0.85; }
.footer-links a:hover { opacity: 1; }

/* Soft entrance animations */
.hero-grid,
.about,
.feature-grid,
.steps,
.herofeatures,
.screens-grid,
.cta-card,
.footer-inner {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.85s ease forwards;
}
.hero-grid { animation-delay: 0.05s; }
.about { animation-delay: 0.1s; }
.feature-grid { animation-delay: 0.15s; }
.steps { animation-delay: 0.2s; }
.screens-grid { animation-delay: 0.25s; }
.cta-card { animation-delay: 0.3s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .badges, .cta-row { justify-content: center; }
    .media-card { position: relative; bottom: auto; left: auto; margin-top: 12px; }
    .topbar { position: sticky; }
}

@media (max-width: 960px) {
    .navbar {  align-items: flex-start; gap: 8px; }
    .nav-links { width: 100%; justify-content: flex-start; gap: 12px; }
    .nav-links a { padding: 6px 0; }
    .nav-links.desktop-only { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero { padding: 64px 18px 76px; }
    .hero-text h1 { font-size: clamp(30px, 9vw, 38px); }
    .phone-frame { width: 86%; }
    .stats { grid-template-columns: 1fr; }
    .section { padding: 58px 18px 50px; }
    .screens-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .cta-card { grid-template-columns: 1fr; text-align: left; }
    .footer-inner { align-items: flex-start; }
}

@media (max-width: 640px) {
    .hero { padding: 56px 16px 68px; }
    .hero-text h1 { font-size: clamp(26px, 8vw, 34px); }
    .hero-text p { font-size: 15px; }
    .cta-row { width: 100%; }
    .cta-row .btn { width: 100%; justify-content: center; }
    .stats { grid-template-columns: 1fr; }
    .stat-card { text-align: left; grid-template-columns: auto 1fr; }
    .herofeatures { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .phone-frame { width: 100%; }
    .section { padding: 48px 16px 44px; }
    .screens {
  
    padding: 12px;
   
    }
    .about-media {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 440px) {
   
    .about-media {
    width: 200px;
    height: 200px;
    }
}