*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== THEME VARIABLES ===== */
:root {
    --accent: #EC407A;
    --accent-light: #F48FB1;
    --accent-warm: #EF5350;
    --radius: 16px;
    --radius-sm: 10px;
}

[data-theme="light"] {
    --bg: #FFF8F6;
    --bg-alt: #ffffff;
    --text: #442926;
    --text-secondary: #7a5a57;
    --surface: #ffffff;
    --surface-card: #FFF8F6;
    --nav-bg: rgba(255, 248, 246, 0.85);
    --border: rgba(68, 41, 38, 0.1);
    /* Widget colors — light app theme */
    --w-bg: #FFF8F6;
    --w-text: #2D1714;
    --w-text-secondary: #6D4C50;
    --w-accent: #EC407A;
    --w-progress-track: #FFF0ED;
    --w-progress-fill: #EC407A;
    /* Phone mockup */
    --phone-body: #1A1114;
    --phone-screen-bg: #FFF8F6;
    --phone-screen-text: #2D1714;
    --phone-screen-secondary: #6D4C50;
}

[data-theme="dark"] {
    --bg: #1A1114;
    --bg-alt: #211519;
    --text: #F5DDE0;
    --text-secondary: #C4A0A5;
    --surface: #251920;
    --surface-card: #211519;
    --nav-bg: rgba(26, 17, 20, 0.85);
    --border: rgba(245, 221, 224, 0.08);
    /* Widget colors — dark app theme */
    --w-bg: #1A1114;
    --w-text: #F5DDE0;
    --w-text-secondary: #C4A0A5;
    --w-accent: #F48FB1;
    --w-progress-track: #251920;
    --w-progress-fill: #F48FB1;
    /* Phone mockup */
    --phone-body: #0d0a0b;
    --phone-screen-bg: #1A1114;
    --phone-screen-text: #F5DDE0;
    --phone-screen-secondary: #C4A0A5;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--nav-bg);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(236, 64, 122, 0.1); }
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.2rem; color: var(--accent); text-decoration: none;
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--surface-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
    color: var(--text);
}
.theme-toggle:hover { background: var(--surface); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon,
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
.theme-toggle-wrap { position: relative; }
.theme-tooltip {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: var(--text); color: var(--bg);
    padding: 6px 14px; border-radius: 8px;
    font-size: 0.78rem; font-weight: 500; white-space: nowrap;
    opacity: 0; transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.theme-tooltip::before {
    content: ''; position: absolute; bottom: 100%; right: 16px;
    border: 6px solid transparent;
    border-bottom-color: var(--text);
}
.theme-tooltip.visible {
    opacity: 1; transform: translateY(0);
}
.nav-cta {
    background: var(--accent); color: #fff;
    padding: 10px 22px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(236, 64, 122, 0.35); }

/* ===== UTILITIES ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800;
    text-align: center; margin-bottom: 16px;
}
.section-subtitle {
    text-align: center; color: var(--text-secondary);
    font-size: 1.05rem; max-width: 560px; margin: 0 auto 56px;
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 80px; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 64, 122, 0.12) 0%, transparent 70%);
    top: -100px; right: -150px; pointer-events: none;
}
.hero .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(236, 64, 122, 0.1); color: var(--accent);
    padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 36px; max-width: 460px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: #fff;
    padding: 14px 32px; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(236, 64, 122, 0.35); }
.btn-primary svg { width: 22px; height: 22px; }
.btn-store {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--surface); color: var(--text);
    padding: 12px 16px; border-radius: 14px; text-decoration: none;
    border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.btn-store svg { width: 28px; height: 28px; flex-shrink: 0; }
.btn-store-text { text-align: left; line-height: 1.2; }
.btn-store-text small { font-size: 0.7rem; opacity: 0.7; }
.btn-store-text strong { font-size: 0.95rem; display: block; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text);
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: 1rem; border: 2px solid var(--border);
    transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent-light); }

.store-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }

/* ===== PHONE MOCKUP ===== */
.hero-mockup { display: flex; justify-content: center; position: relative; z-index: 2; }
.phone-frame {
    width: 280px; height: 580px; background: var(--phone-body);
    border-radius: 40px; padding: 12px;
    box-shadow: 0 40px 80px rgba(236, 64, 122, 0.18), 0 10px 30px rgba(0,0,0,0.08);
    position: relative; transition: background 0.3s;
}
.phone-screen {
    width: 100%; height: 100%;
    background: var(--phone-screen-bg);
    border-radius: 30px; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
    padding: 40px 16px 24px;
    transition: background 0.3s;
}
.phone-camera {
    position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px; background: #2a2a2a;
    border-radius: 50%; z-index: 5;
    border: 1.5px solid #3a3a3a;
}
/* App bar */
.mock-appbar {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px; padding: 0 4px;
}
.mock-appbar-title {
    font-size: 0.95rem; font-weight: 700;
    color: var(--phone-screen-text);
}
.mock-appbar-icon {
    width: 20px; height: 20px; color: var(--phone-screen-text); opacity: 0.6;
}
/* Date since */
.mock-since {
    font-size: 0.7rem; color: var(--phone-screen-secondary);
    margin-bottom: 16px;
}
/* Photos + counter row */
.mock-main-row {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; width: 100%; margin-bottom: 6px;
}
.mock-partner-col {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.mock-partner-name {
    font-size: 0.6rem; font-weight: 600;
    color: var(--phone-screen-text);
}
.mock-heart-photo {
    width: 70px; height: 64px; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.mock-heart-photo svg.heart-shape {
    width: 100%; height: 100%; position: absolute;
    fill: var(--w-accent); opacity: 0.15;
}
.mock-heart-photo svg.heart-border {
    width: 100%; height: 100%; position: absolute;
    fill: none; stroke: var(--w-accent); stroke-width: 0.7;
}
.mock-heart-photo .photo-placeholder {
    position: relative; z-index: 2;
    width: 28px; height: 28px; color: var(--w-accent); opacity: 0.5;
}
.mock-counter-col {
    display: flex; flex-direction: column; align-items: center;
    flex: 1; min-width: 0;
}
.mock-counter .number {
    font-size: 2.6rem; font-weight: 800; line-height: 1;
    color: var(--w-accent);
    animation: pulse-number 2s ease-in-out infinite;
}
@keyframes pulse-number { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.mock-counter .label {
    font-size: 0.75rem; font-weight: 500;
    color: var(--phone-screen-secondary);
}
.mock-breakdown {
    font-size: 0.65rem; color: var(--phone-screen-secondary);
    margin-bottom: 16px; opacity: 0.7;
}
/* Event card in phone */
.mock-event-card {
    background: var(--surface); border-radius: 12px;
    padding: 10px 14px; width: 100%; margin-bottom: 10px;
    border: 1px solid var(--border); transition: background 0.3s;
}
.mock-event-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 6px;
}
.mock-event-header .name {
    font-size: 0.62rem; font-weight: 600;
    color: var(--phone-screen-text);
}
.mock-event-header .days {
    font-size: 0.62rem; font-weight: 700;
    color: var(--w-accent);
}
.mock-progress {
    width: 100%; height: 4px; border-radius: 2px;
    background: var(--w-progress-track); overflow: hidden;
}
.mock-progress-bar {
    height: 100%; border-radius: 2px;
    background: linear-gradient(90deg, var(--w-accent), var(--accent-light));
}
.mock-event-footer {
    display: flex; justify-content: space-between;
    margin-top: 4px;
}
.mock-event-footer span {
    font-size: 0.55rem; color: var(--phone-screen-secondary); opacity: 0.7;
}

/* Floating hearts */
.floating-hearts { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floating-heart { position: absolute; opacity: 0; animation: float-up linear infinite; }
.floating-heart svg { fill: var(--accent-light); opacity: 0.25; }
@keyframes float-up {
    0% { opacity: 0; transform: translateY(0) scale(0.5) rotate(0deg); }
    10% { opacity: 1; } 90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1) rotate(20deg); }
}

/* ===== WIDGETS SECTION ===== */
.widgets-section { background: var(--bg-alt); }
.widgets-grid { display: grid; grid-template-columns: 0.8fr 0.8fr 1.1fr 1.3fr; gap: 24px; }
.widget-card {
    background: var(--surface-card); border-radius: var(--radius);
    padding: 28px 20px; text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.widget-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(236, 64, 122, 0.12); }

/* Widget previews — match actual app */
.widget-preview {
    background: var(--w-bg); border-radius: 24px;
    margin-bottom: 20px; overflow: hidden; position: relative;
    border: 1px solid var(--border);
    transition: background 0.3s;
}
.widget-preview.tiny {
    width: 70px; height: 90px; margin: 0 auto;
    border-radius: 18px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 4px 6px; gap: 0;
}
.widget-preview.small {
    width: 100%; max-width: 140px; height: 140px; margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 10px 14px;
}
.widget-preview.medium {
    width: 100%; height: 70px;
    display: flex; align-items: center; justify-content: center; padding: 0 16px;
}
.widget-preview.large {
    width: 100%; height: 160px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 14px 20px;
}

/* Widget text styles */
.w-names {
    display: flex; align-items: center; gap: 3px;
    font-size: 0.6rem; color: var(--w-text); font-weight: 500;
}
.w-names svg { width: 10px; height: 10px; fill: var(--w-accent); }
.w-days {
    font-size: 2rem; font-weight: 800; color: var(--w-accent); line-height: 1;
}
.w-label {
    font-size: 0.6rem; color: var(--w-text-secondary);
}
.w-event {
    font-size: 0.55rem; color: var(--w-text-secondary); margin-top: 4px;
    font-weight: 500; text-align: center; line-height: 1.4;
}
.w-event strong { color: var(--w-accent); font-weight: 700; display: block; }

/* Tiny widget specifics */
.w-tiny-name {
    font-size: 0.45rem; font-weight: 600; color: var(--w-text);
    line-height: 1.1;
}
.w-tiny-heart {
    width: 10px; height: 10px;
}
.widget-preview.tiny .w-days { font-size: 1.1rem; }
.widget-preview.tiny .w-label { font-size: 0.4rem; }

/* Small widget specifics */
.widget-preview.small .w-names { font-size: 0.65rem; margin-bottom: 4px; }
.widget-preview.small .w-names svg { width: 12px; height: 12px; }
.widget-preview.small .w-days { font-size: 2.2rem; }
.widget-preview.small .w-label { font-size: 0.65rem; }

/* Medium widget */
.medium-inner {
    display: flex; align-items: center; width: 100;
    gap: 16px;
}
.medium-inner .w-days { font-size: 1.8rem; }
.medium-inner .w-label { font-size: 0.6rem; }
.medium-left { display: flex; flex-direction: column; align-items: center; }
.medium-right { display: flex; flex-direction: column; align-items: flex-start; }

/* Large widget */
.large-inner { width: 100%; text-align: center; }
.large-inner .w-names svg { width: 14px; height: 14px; }
.large-inner .w-names { font-size: 0.7rem; justify-content: center; margin-bottom: 4px; }
.large-inner .w-days { font-size: 2.6rem; }
.large-inner .w-label { font-size: 0.7rem; }

/* Widget heart photos (medium & large) */
.w-heart-photo {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.w-heart-photo svg.heart-shape {
    width: 100%; height: 100%; position: absolute;
    fill: var(--w-accent); opacity: 0.15;
}
.w-heart-photo svg.heart-border {
    width: 100%; height: 100%; position: absolute;
    fill: none; stroke: var(--w-accent); stroke-width: 0.7;
}
.w-heart-photo .photo-placeholder {
    position: relative; z-index: 2;
    color: var(--w-accent); opacity: 0.5;
}
/* Small hearts for medium widget */
.w-heart-sm {
    width: 44px; height: 40px;
}
.w-heart-sm .photo-placeholder {
    width: 18px; height: 18px;
}
/* Large hearts for large widget — positioned as background layer */
.w-heart-lg {
    width: 72px; height: 66px;
    position: absolute; top: 14px;
    opacity: 0.7;
}
.w-heart-lg .photo-placeholder {
    width: 26px; height: 26px;
}
.w-heart-left { left: 6px; }
.w-heart-right { right: 6px; }

/* Adjust large widget to accommodate photos */
.widget-preview.large { position: relative; overflow: hidden; }
.widget-preview.large .large-inner { position: relative; z-index: 2; }

.large-event {
    margin-top: 10px; width: 100%; text-align: left;
}
.large-event-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
}
.large-event-row .le-title { font-size: 0.6rem; font-weight: 500; color: var(--w-text-secondary); }
.large-event-row .le-days { font-size: 0.6rem; font-weight: 700; color: var(--w-accent); }
.large-progress {
    width: 100%; height: 5px; border-radius: 3px;
    background: var(--w-progress-track); overflow: hidden; margin-bottom: 3px;
}
.large-progress-bar {
    height: 100%; border-radius: 3px;
    background: var(--w-progress-fill);
}
.large-event-meta {
    display: flex; justify-content: space-between;
    font-size: 0.5rem; color: var(--w-text-secondary); opacity: 0.7;
}

.widget-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.widget-card p { font-size: 0.85rem; color: var(--text-secondary); }

.widgets-customization {
    margin-top: 48px; display: flex; align-items: center;
    justify-content: center; gap: 32px; flex-wrap: wrap;
}
.custom-tag {
    display: flex; align-items: center; gap: 8px;
    background: rgba(236, 64, 122, 0.08); padding: 10px 20px;
    border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--text);
}
.custom-tag svg { width: 18px; height: 18px; color: var(--accent); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
    background: var(--surface); border-radius: var(--radius);
    padding: 36px 28px; transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(236, 64, 122, 0.1); }
.feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(236,64,122,0.12), rgba(244,143,177,0.12));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--accent); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps::before {
    content: ''; position: absolute; top: 36px;
    left: calc(16.66% + 36px); right: calc(16.66% + 36px);
    height: 2px; background: linear-gradient(90deg, var(--accent-light), var(--accent)); opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-number {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 800; color: #fff;
    margin: 0 auto 24px; position: relative; z-index: 2;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-secondary); max-width: 260px; margin: 0 auto; }

/* ===== SCREENSHOTS ===== */
.screenshots-wrapper {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    padding: 0 24px;
}
.screenshot-item { flex-shrink: 0; }
.screenshot-phone {
    width: 220px; height: 440px; background: var(--phone-body);
    border-radius: 32px; padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); transition: background 0.3s;
}
.screenshot-screen {
    width: 100%; height: 100%;
    background: var(--phone-screen-bg); border-radius: 24px;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; padding: 20px;
    color: var(--phone-screen-text); font-size: 0.75rem;
    text-align: center; gap: 8px; transition: background 0.3s, color 0.3s;
}
.screenshot-screen svg { width: 32px; height: 32px; color: var(--w-accent); margin-bottom: 4px; }
.screenshot-screen .ss-title { font-weight: 700; font-size: 0.85rem; }
.screenshot-screen .ss-desc { opacity: 0.5; font-size: 0.7rem; }
.screenshot-label {
    text-align: center; margin-top: 16px;
    font-size: 0.85rem; font-weight: 600; color: var(--text);
}

/* ===== SOLO MODE ===== */
.solo-section { background: var(--bg-alt); }
.solo-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.solo-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(236, 64, 122, 0.1); color: var(--accent);
    padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 24px;
}
.solo-badge svg { width: 16px; height: 16px; }
.solo-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
    line-height: 1.2; margin-bottom: 16px;
}
.solo-desc {
    font-size: 1rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6;
}
.solo-options {
    display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px;
}
.solo-option {
    display: flex; gap: 16px; align-items: flex-start;
}
.solo-option-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(236,64,122,0.12), rgba(244,143,177,0.12));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.solo-option-icon svg { width: 22px; height: 22px; color: var(--accent); }
.solo-option h4 {
    font-size: 1rem; font-weight: 700; margin-bottom: 4px;
}
.solo-option p {
    font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5;
}
.solo-note {
    font-size: 0.85rem; color: var(--text-secondary);
    line-height: 1.5; opacity: 0.8;
    border-left: 3px solid var(--accent-light); padding-left: 14px;
}
.solo-mockup {
    display: flex; justify-content: center;
}
.solo-phone {
    width: 220px; height: 440px; background: var(--phone-body);
    border-radius: 32px; padding: 10px; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); transition: background 0.3s;
}
.solo-phone-camera {
    position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; background: #2a2a2a;
    border-radius: 50%; z-index: 5;
    border: 1.5px solid #3a3a3a;
}
.solo-phone-screen {
    width: 100%; height: 100%;
    background: var(--phone-screen-bg); border-radius: 24px;
    overflow: hidden; display: flex; flex-direction: column;
    align-items: center; padding: 36px 14px 16px;
    transition: background 0.3s;
}

@media (max-width: 992px) {
    .solo-layout { grid-template-columns: 1fr; }
    .solo-mockup { order: -1; }
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg-alt); display: none; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
    background: var(--surface-card); border-radius: var(--radius); padding: 32px 28px;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.review-stars svg { width: 18px; height: 18px; fill: #FFC107; }
.review-text {
    font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px;
    font-style: italic; color: var(--text-secondary);
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 0.85rem;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-meta { font-size: 0.75rem; color: var(--text-secondary); }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.cta-section .section-title { color: #fff; }
.cta-stat { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; }
.cta-stat strong { font-size: 1.4rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: #fff; color: var(--accent);
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    font-weight: 700; font-size: 1rem;
    width: 180px; max-width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-white svg { width: 22px; height: 22px; }
.btn-white-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: transparent; color: #fff;
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    font-weight: 700; font-size: 1rem;
    width: 180px; max-width: 100%;
    border: 2px solid rgba(255,255,255,0.4);
    transition: transform 0.2s, border-color 0.2s;
}
.btn-white-outline:hover { transform: translateY(-2px); border-color: #fff; }
.btn-white-outline svg { width: 22px; height: 22px; }

/* ===== DOWNLOAD MODAL ===== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.active {
    opacity: 1; pointer-events: auto;
}
.modal {
    background: var(--surface); border-radius: 20px;
    padding: 36px 32px; max-width: 420px; width: 100%;
    text-align: center; position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s;
}
.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border: none; background: none;
    color: var(--text-secondary); cursor: pointer;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-close svg { width: 18px; height: 18px; }
.modal-icon {
    width: 56px; height: 56px; margin: 0 auto 20px;
    background: rgba(0, 119, 255, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.modal-icon svg { width: 36px; height: 36px; }
.modal-title {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 12px;
}
.modal-text {
    font-size: 0.9rem; color: var(--text-secondary);
    line-height: 1.6; margin-bottom: 24px;
}
.modal-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: #fff;
    padding: 14px 28px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 64, 122, 0.35);
}
.modal-btn svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-alt); color: var(--text);
    padding: 48px 0 32px; border-top: 1px solid var(--border);
}
.footer-content {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.1rem; color: var(--accent);
}
.footer-logo svg { width: 24px; height: 24px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.9rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px; background: var(--surface);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); text-decoration: none;
    transition: background 0.2s, color 0.2s; border: 1px solid var(--border);
}
.footer-social a:hover { background: rgba(236, 64, 122, 0.1); color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
    text-align: center; margin-top: 36px; padding-top: 24px;
    border-top: 1px solid var(--border); font-size: 0.8rem; opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons, .store-buttons { justify-content: center; }
    .widgets-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; gap: 36px; }
    .steps::before { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero { padding-top: 100px; }
    .widgets-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .screenshots-wrapper { gap: 16px; }
    .screenshot-phone { width: 200px; height: 400px; }
    .solo-phone { width: 240px; height: 480px; }
}
@media (max-width: 480px) {
    .store-buttons { grid-template-columns: 1fr; }
}
