/* ============================================
   Daily Us - Landing Page Styles
   A playful, love-themed design
   ============================================ */

/* --- CSS Variables (from app design system) --- */
:root {
    --bar-height: 40px;
    --primary: #E8788A;
    --primary-dark: #D4566A;
    --primary-light: #FFB6C1;
    --primary-glow: rgba(232, 120, 138, 0.3);
    --bg: #FFF0F5;
    --bg-warm: #FFF5F8;
    --surface: #FFFFFF;
    --text: #2D2D2D;
    --text-secondary: #888888;
    --border: #F0E0E5;
    --success: #6BCB77;
    --error: #E74C3C;

    --font-main: 'Quicksand', sans-serif;
    --font-script: 'Sacramento', cursive;

    --shadow-sm: 0 2px 8px rgba(232, 120, 138, 0.08);
    --shadow-md: 0 4px 20px rgba(232, 120, 138, 0.12);
    --shadow-lg: 0 8px 40px rgba(232, 120, 138, 0.16);
    --shadow-xl: 0 16px 60px rgba(232, 120, 138, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(80px + var(--bar-height));
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Highlight Text --- */
.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    font-size: 14px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px var(--primary-glow);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* --- Floating Hearts Background --- */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-hearts .heart {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: floatHeart linear infinite;
}

@keyframes floatHeart {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(360deg) scale(1);
    }
}

/* --- Announcement Bar --- */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--bar-height);
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    font-size: 13px;
    padding: 0 40px 0 16px;
    gap: 8px;
}

.announcement-link {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announcement-link:hover {
    text-decoration: underline;
}

.announcement-close {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
}

.announcement-close:hover {
    color: #fff;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: var(--bar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 240, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 224, 229, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    z-index: 1001;
}

.logo-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
}

.footer-logo-img {
    height: 44px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
    padding: calc(120px + var(--bar-height)) 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-cta-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-icon {
    font-size: 20px;
}

/* --- Phone Mockup --- */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 300px;
    height: 620px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-xl), inset 0 0 0 2px rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

/* --- Screenshot Carousel inside phone --- */
.phone-screenshots {
    width: 100%;
    height: 100%;
    position: relative;
}

.phone-screenshots .screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 34px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.phone-screenshots .screenshot-active {
    opacity: 1;
}

/* --- Floating Elements --- */
.floating-element {
    position: absolute;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.float-card {
    background: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.float-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 25%;
    left: -15%;
    animation-delay: 2s;
}

.float-3 {
    top: 45%;
    right: -8%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- How It Works Section --- */
.how-it-works {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-icon {
    font-size: 48px;
    margin: 24px 0 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    flex-shrink: 0;
    padding-top: 60px;
}

.step-connector svg {
    width: 100%;
    height: 20px;
}

/* --- Social Proof --- */
.social-proof {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.proof-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
}

.proof-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: var(--font-script);
    color: var(--primary-light);
    line-height: 1;
}

.proof-quote {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.proof-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.proof-avatars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 24px;
}

.proof-author strong {
    display: block;
    font-size: 15px;
}

.proof-author span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* --- Valentine's Day Promo Section --- */
.valentines-promo {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.valentines-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5), rgba(255, 182, 193, 0.1));
    z-index: 0;
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.promo-info h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.promo-info > p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* --- Pricing Cards --- */
.promo-pricing {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.pricing-card.pricing-featured {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    padding-top: 36px;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-plan {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.price-old {
    font-size: 20px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-current {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.price-current.price-small {
    font-size: 28px;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-note {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.promo-free-note {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Promo CTA Card --- */
.promo-cta-wrapper {
    position: relative;
}

.promo-cta-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.promo-heart-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.promo-cta-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.promo-cta-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.promo-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.store-btn div {
    text-align: left;
    line-height: 1.3;
}

.store-btn small {
    font-size: 11px;
    font-weight: 500;
    display: block;
}

.store-btn strong {
    font-size: 16px;
}

.store-btn-apple {
    background: var(--text);
    color: white;
}

.store-btn-apple:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-btn-google {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}

.store-btn-google:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-btn-soon {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.store-badge-soon {
    opacity: 0.5;
}

.promo-offer-deadline {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* --- Footer --- */
.footer {
    background: var(--text);
    color: white;
    padding: 60px 0 24px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-img {
    height: 48px;
}

.footer-brand .logo-text {
    font-size: 24px;
    font-weight: 700;
}

.footer-brand p {
    margin-top: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-stores p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 12px;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.store-badge svg {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-phone {
        transform: scale(0.9);
    }

    .floating-element.float-1 {
        right: 5%;
    }

    .floating-element.float-2 {
        left: 5%;
    }

    .floating-element.float-3 {
        right: 5%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 240, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 22px;
    }

    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: calc(100px + var(--bar-height)) 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-phone {
        transform: scale(0.85);
    }

    .floating-element {
        display: none;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        width: 60px;
    }

    .proof-card {
        padding: 32px 24px;
    }

    .proof-quote {
        font-size: 17px;
    }

    .promo-info h2 {
        font-size: 32px;
    }

    .promo-cta-card {
        padding: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .store-badges {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .phone-frame {
        width: 260px;
        height: 540px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .promo-cta-card {
        padding: 20px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
}
