/* ============================================
   Baby Tracker & Newborn Log - Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary: #176B5D;
    --primary-dark: #123734;
    --primary-light: #82CBBF;
    --secondary: #E0A72F;
    --accent: #D9574A;

    /* Activity Colors */
    --feeding: #F59E0B;
    --sleep: #5267B0;
    --diaper: #1997A5;
    --growth: #10B981;
    --milestone: #F59E0B;
    --health: #EF4444;

    /* Backgrounds */
    --bg-dark: #10201E;
    --bg-light: #F5F4EF;
    --bg-card: rgba(255, 255, 255, 0.9);

    /* Text */
    --text-primary: #17211F;
    --text-secondary: #596663;
    --text-muted: #82908C;

    /* Spacing */
    --container-max: 1200px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 72px;
    --text-light: var(--text-secondary);
    --background: var(--bg-light);
    --white: #FFFFFF;
    --border-radius: 8px;
    --border-radius-lg: 8px;
    --shadow: 0 18px 42px rgba(18, 55, 52, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: #F5F4EF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fdf4ff 0%, #faf5ff 25%, #f0f9ff 50%, #f0fdfa 75%, #fefce8 100%);
    z-index: -3;
}

.bg-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: -2;
    animation: floatBlur 20s ease-in-out infinite;
}

.bg-blur-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    top: -200px;
    right: -100px;
}

.bg-blur-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: 0;
    left: -150px;
    animation-delay: -7s;
}

.bg-blur-3 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 40%;
    left: 20%;
    opacity: 0.3;
    animation-delay: -14s;
}

@keyframes floatBlur {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition-property: transform, background-color, border-color, box-shadow, color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid #E2E8F0;
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-light);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

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

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition-property: opacity, transform, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero .container {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(40px, 4rem, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
}

/* Hero Device */
.hero-devices {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.device-iphone {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FEFCE8 0%, #FEF3C7 100%);
    border-radius: 34px;
    overflow: hidden;
}

.app-ui {
    padding: 48px 20px 20px;
    height: 100%;
}

.app-header {
    margin-bottom: 24px;
}

.app-greeting {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.app-title {
    font-size: 24px;
    font-weight: 700;
}

.app-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.app-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-icon {
    font-size: 28px;
}

.card-info {
    flex: 1;
}

.card-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.card-label {
    font-size: 12px;
    color: var(--text-muted);
}

.card-time {
    font-size: 11px;
    color: var(--text-muted);
    background: #F1F5F9;
    padding: 4px 8px;
    border-radius: 6px;
}

.app-quick-actions {
    display: flex;
    gap: 8px;
}

.quick-btn {
    flex: 1;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.quick-btn:nth-child(2) {
    background: var(--sleep);
}

.quick-btn:nth-child(3) {
    background: var(--diaper);
}

/* ============================================
   Trusted Section
   ============================================ */
.trusted {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
}

.trusted-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

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

/* ============================================
   Screenshots Section
   ============================================ */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

.screenshots-carousel {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.screenshot-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-phone {
    width: 220px;
    height: auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(139, 92, 246, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #000;
    padding: 8px;
}

.screenshot-phone img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.screenshot-caption {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .screenshots-carousel {
        gap: 24px;
    }

    .screenshot-phone {
        width: 160px;
        border-radius: 24px;
        padding: 6px;
    }

    .screenshot-phone img {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .screenshots-carousel {
        gap: 16px;
    }

    .screenshot-phone {
        width: 140px;
        border-radius: 20px;
        padding: 4px;
    }

    .screenshot-phone img {
        border-radius: 16px;
    }

    .screenshot-caption {
        font-size: 12px;
    }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(244, 114, 182, 0.1));
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 3rem, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #F1F5F9;
    transition-property: transform, border-color, box-shadow, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0;
    overflow: hidden;
}

.feature-visual {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feeding-icon { background: rgba(245, 158, 11, 0.15); }
.sleep-icon { background: rgba(139, 92, 246, 0.15); }
.diaper-icon { background: rgba(6, 182, 212, 0.15); }
.growth-icon { background: rgba(16, 185, 129, 0.15); }
.milestone-icon { background: rgba(245, 158, 11, 0.15); }
.health-icon { background: rgba(239, 68, 68, 0.15); }
.stats-icon { background: rgba(139, 92, 246, 0.15); }
.medicine-icon { background: rgba(239, 68, 68, 0.15); }
.photo-icon { background: rgba(244, 114, 182, 0.15); }
.insights-icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(244, 114, 182, 0.15)); }
.appointments-icon { background: rgba(16, 185, 129, 0.15); }
.siri-icon { background: rgba(6, 182, 212, 0.15); }

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Feature Demo */
.feeding-demo {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.demo-timer {
    margin-bottom: 24px;
}

.timer-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: 'SF Mono', monospace;
    color: var(--primary);
}

.timer-label {
    font-size: 14px;
    color: var(--text-muted);
}

.demo-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.demo-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.demo-btn.pause {
    background: var(--primary);
    color: white;
}

.demo-btn.switch {
    background: #F1F5F9;
    color: var(--text-primary);
}

/* Insights Demo */
.insights-demo {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.insight-card-demo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(244, 114, 182, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.insight-icon {
    font-size: 32px;
}

.insight-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.insights-demo .insight-card-demo + .insight-card-demo {
    margin-top: 12px;
}

/* Feature Mini Visuals */
.feature-mini-visual {
    margin-top: 20px;
}

.sleep-bar {
    height: 12px;
    background: #F1F5F9;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    margin-bottom: 8px;
}

.sleep-segment {
    height: 100%;
}

.sleep-segment.night {
    background: var(--sleep);
}

.sleep-segment.nap {
    background: var(--primary-light);
}

.sleep-total {
    font-size: 13px;
    color: var(--text-muted);
}

.diaper-quick {
    display: flex;
    gap: 8px;
}

.diaper-btn {
    flex: 1;
    padding: 10px;
    background: #F1F5F9;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
}

/* ============================================
   Platforms Section
   ============================================ */
.platforms {
    padding: 100px 0;
    background: white;
}

.platforms-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.platform-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition-property: transform, box-shadow, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.platform-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.platform-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.platform-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.platform-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.platform-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* Watch Highlight */
.watch-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: var(--bg-dark);
    border-radius: 32px;
    padding: 64px;
    color: white;
    margin-bottom: 80px;
}

.highlight-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.watch-content h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.watch-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.watch-features {
    list-style: none;
}

.watch-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.watch-features svg {
    color: var(--primary-light);
}

/* Watch Visual */
.watch-visual {
    display: flex;
    justify-content: center;
}

.watch-device {
    width: 200px;
    height: 240px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.watch-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-ui {
    text-align: center;
    padding: 20px;
}

.watch-time-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.watch-time-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.watch-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.watch-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Widgets Showcase */
.widgets-showcase {
    text-align: center;
}

.widgets-showcase h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.widgets-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.widget {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.widget.small {
    width: 170px;
    height: 170px;
    padding: 20px;
}

.widget.medium {
    width: 360px;
    height: 170px;
    padding: 24px;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 16px;
}

.widget-icon {
    font-size: 18px;
}

.widget-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}

.widget-value.sleeping {
    color: var(--sleep);
    font-size: 28px;
}

.widget-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.widget-row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.widget-stat {
    text-align: center;
}

.widget-stat-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
}

.widget-stat-value {
    font-size: 24px;
    font-weight: 700;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid #E2E8F0;
    position: relative;
    transition-property: transform, box-shadow, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    opacity: 0.7;
}

.price-desc {
    font-size: 14px;
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features svg {
    color: white;
}

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--primary);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 12px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #F1F5F9;
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   What's New Section
   ============================================ */
.whats-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
}

.whats-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.whats-new-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whats-new-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.whats-new-card.featured {
    background: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 100%);
    color: white;
    grid-row: span 1;
}

.whats-new-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.whats-new-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.whats-new-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .whats-new-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Download Section
   ============================================ */
.download {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, #F8FAFC 100%);
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download h2 {
    font-size: clamp(32px, 3rem, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.download p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.app-store-link {
    display: inline-block;
    transition: transform 0.2s;
}

.app-store-link:hover {
    transform: scale(1.05);
}

.app-store-link img {
    height: 54px;
}

.download-requirements {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   MORE APPS SECTION
   ============================================ */

.more-apps {
    padding: 80px 24px;
    background: #1C1C1E;
}

.more-apps-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.more-apps h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 8px;
}

.more-apps-container > p {
    color: #A1A1AA;
    margin-bottom: 32px;
}

.more-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.more-app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: #27272A;
    border: 1px solid #38383A;
    border-radius: 12px;
    text-decoration: none;
    transition-property: transform, border-color, box-shadow, background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.more-app-card:hover {
    transform: translateY(-2px);
    border-color: #6366F1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.more-app-icon {
    font-size: 2rem;
}

.more-app-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #FAFAFA;
}

.more-apps-cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition-property: transform, box-shadow, background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.more-apps-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

@media (max-width: 640px) {
    .more-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   DUTTLABS BRANDED FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, #1C1C1E 0%, #0A0A0B 100%);
    border-top: 1px solid #38383A;
    padding: 60px 24px 24px;
    margin-top: 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
}

.site-footer .footer-brand {
    flex: 1;
    min-width: 200px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}

.brand-logo {
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    color: #A1A1AA;
    font-size: 0.95rem;
    margin: 0;
}

.site-footer .footer-links {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: #FAFAFA;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #6366F1;
}

.site-footer .footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid #38383A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #A1A1AA;
    font-size: 0.875rem;
}

.footer-maker {
    color: #A1A1AA;
    font-size: 0.875rem;
}

.footer-maker a {
    color: #6366F1;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-maker a:hover {
    opacity: 0.8;
}

/* Mobile responsive for footer */
@media (max-width: 640px) {
    .site-footer {
        padding: 40px 16px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .site-footer .footer-links {
        gap: 32px;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Old footer styles - kept for other pages */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition-property: background-color, color, transform;
    transition-duration: 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: white;
}

.footer .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .feature-content {
        padding: 32px;
    }

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

    .watch-highlight {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px;
    }

    .watch-features {
        display: inline-block;
        text-align: left;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .btn-nav {
        display: none;
    }

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

    .hero {
        padding: 120px 0 60px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .device-iphone {
        width: 240px;
        height: 500px;
    }

    .trusted-logos {
        flex-direction: column;
        gap: 24px;
    }

    .platforms-showcase {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 48px;
    }

    .watch-highlight {
        padding: 32px;
    }

    .watch-content h3 {
        font-size: 28px;
    }

    .widgets-grid {
        flex-direction: column;
        align-items: center;
    }

    .widget.medium {
        width: 100%;
        max-width: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

    .hero-title {
        font-size: 32px;
    }

    .device-iphone {
        width: 220px;
        height: 460px;
    }

    .app-ui {
        padding: 40px 16px 16px;
    }

    .app-title {
        font-size: 20px;
    }

    .widget.small {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   Baby Tracker & Newborn Log 2026 Editorial Refresh
   ============================================ */
.page-texture {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(18, 55, 52, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(18, 55, 52, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.bg-gradient,
.bg-blur {
    display: none;
}

h1,
h2,
.hero-title,
.section-title {
    font-family: 'Fraunces', Georgia, serif;
    text-wrap: balance;
}

p,
li,
.section-subtitle,
.hero-subtitle {
    text-wrap: pretty;
}

.navbar {
    background: rgba(245, 244, 239, 0.78);
    border-bottom: 1px solid rgba(18, 55, 52, 0.08);
    box-shadow: 0 1px 24px rgba(18, 55, 52, 0.06);
}

.logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 21px;
    font-weight: 780;
    flex-shrink: 0;
}

.logo span:not(.logo-icon) {
    display: block;
    max-width: 420px;
    white-space: nowrap;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(18, 55, 52, 0.18);
}

.logo-icon img {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    outline: 1px solid rgba(18, 55, 52, 0.12);
}

.nav-links a {
    color: rgba(23, 33, 31, 0.74);
}

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

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
    color: #fff;
}

.btn {
    min-height: 44px;
    border-radius: 8px;
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: #123734;
    box-shadow: 0 14px 30px rgba(18, 55, 52, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(18, 55, 52, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 55, 52, 0.14);
    box-shadow: 0 12px 28px rgba(18, 55, 52, 0.08);
}

.btn-secondary:hover {
    background: #fff;
    border-color: rgba(18, 55, 52, 0.28);
}

.hero {
    min-height: calc(100svh - 56px);
    padding: 132px 0 64px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(245, 244, 239, 0.92), rgba(245, 244, 239, 0.76)),
        url("../images/screenshot-dashboard.png") right 8% top 46% / min(360px, 32vw) auto no-repeat,
        #F5F4EF;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    background: linear-gradient(to bottom, transparent, #F5F4EF);
    z-index: -1;
}

.hero .container,
.hero-content {
    width: min(100%, 760px);
    max-width: 760px;
    text-align: left;
    margin-left: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-shot {
    position: absolute;
    width: 230px;
    border-radius: 28px;
    padding: 7px;
    background: #111;
    box-shadow:
        0 30px 60px rgba(18, 55, 52, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.72);
    outline: 1px solid rgba(18, 55, 52, 0.08);
}

.hero-shot-dashboard {
    right: max(28px, calc((100vw - var(--container-max)) / 2 + 72px));
    top: 118px;
    width: 260px;
    transform: rotate(3deg);
}

.hero-shot-stats {
    right: max(240px, calc((100vw - var(--container-max)) / 2 + 300px));
    bottom: 56px;
    width: 204px;
    transform: rotate(-7deg);
}

.hero-shot-welcome {
    right: max(-36px, calc((100vw - var(--container-max)) / 2 - 12px));
    bottom: 98px;
    width: 190px;
    transform: rotate(9deg);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.78);
    color: rgba(23, 33, 31, 0.72);
    border: 1px solid rgba(18, 55, 52, 0.1);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(18, 55, 52, 0.08);
    max-width: 100%;
}

.hero-badge span:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.badge-dot {
    background: var(--accent);
}

.hero-title {
    max-width: 12ch;
    font-size: 72px;
    line-height: 0.96;
    font-weight: 780;
    letter-spacing: 0;
    margin-bottom: 26px;
}

.hero-subtitle {
    max-width: 650px;
    font-size: 20px;
    color: rgba(23, 33, 31, 0.78);
}

.hero-buttons {
    justify-content: flex-start;
}

.hero-stats {
    justify-content: flex-start;
    gap: 18px;
    padding: 14px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(18, 55, 52, 0.09);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(18, 55, 52, 0.08);
}

.hero-mobile-device {
    display: none;
}

.stat {
    min-width: 128px;
    text-align: left;
}

.stat-number {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 12px;
    color: rgba(23, 33, 31, 0.6);
}

.stat-divider {
    background: rgba(18, 55, 52, 0.16);
}

.trusted {
    padding: 34px 0;
    background: #123734;
    border: 0;
    color: #F8F4E9;
}

.trusted-text {
    color: rgba(248, 244, 233, 0.62);
    margin-bottom: 18px;
}

.trust-item {
    color: #F8F4E9;
}

.screenshots {
    background: #F5F4EF;
}

.screenshots-carousel {
    align-items: flex-end;
}

.screenshot-phone {
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(18, 55, 52, 0.18);
}

.screenshot-phone img {
    border-radius: 16px;
    outline: 1px solid rgba(255, 255, 255, 0.34);
}

.section-badge {
    border-radius: 8px;
    color: var(--primary-dark);
    background: rgba(224, 167, 47, 0.16);
}

.gradient-text {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--accent);
}

.feature-card,
.platform-card,
.pricing-card,
.testimonial-card,
.whats-new-card,
.widget {
    border-radius: 8px;
    border: 1px solid rgba(18, 55, 52, 0.09);
    box-shadow: 0 18px 42px rgba(18, 55, 52, 0.08);
}

.feature-card:hover,
.platform-card:hover,
.pricing-card:hover,
.whats-new-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(18, 55, 52, 0.12);
}

.feature-icon {
    border-radius: 8px;
}

.feature-visual {
    background:
        linear-gradient(135deg, rgba(224, 167, 47, 0.16), rgba(23, 107, 93, 0.12)),
        #F8F4E9;
}

.feeding-demo,
.insights-demo,
.app-card {
    border-radius: 8px;
}

.platform-card.featured,
.pricing-card.featured {
    background: #123734;
}

.watch-highlight {
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(18, 55, 52, 0.96), rgba(30, 69, 61, 0.96)),
        #123734;
}

.watch-device {
    border-radius: 42px;
}

.watch-screen {
    border-radius: 32px;
}

.watch-btn,
.quick-btn,
.demo-btn,
.diaper-btn {
    border-radius: 8px;
}

.pricing {
    background: #F8F4E9;
}

.pricing-card.featured {
    transform: translateY(-8px);
}

.price,
.timer-value,
.watch-time-value,
.widget-value,
.widget-stat-value {
    font-variant-numeric: tabular-nums;
}

.download {
    background:
        linear-gradient(180deg, #F5F4EF 0%, #EAF2EF 100%);
}

.download-content {
    padding: 54px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 20px 50px rgba(18, 55, 52, 0.08);
}

.more-apps,
.site-footer {
    background: #10201E;
}

/* ============================================
   Support, Press, and Legal Pages
   ============================================ */
.support-hero,
.press-page,
.legal-page {
    padding-top: 128px;
}

.support-hero {
    padding-bottom: 44px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(245, 244, 239, 0.96), rgba(245, 244, 239, 0.72)),
        #F5F4EF;
}

.support-hero h1,
.press-page h1,
.legal-page h1 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 0.98;
    margin-bottom: 18px;
}

.support-hero p,
.press-page .lead {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(23, 33, 31, 0.72);
    font-size: 18px;
}

.quick-links,
.faq-section,
.contact-section {
    background: #F5F4EF;
}

.quick-links {
    padding: 24px 0 36px;
}

.quick-links-grid,
.contact-grid,
.facts-grid,
.assets-grid,
.colors-grid {
    display: grid;
    gap: 16px;
}

.quick-links-grid {
    grid-template-columns: repeat(4, 1fr);
}

.quick-link-card,
.contact-option,
.contact-form-container,
.fact-item,
.asset-card,
.color-card,
.press-section,
.legal-page section {
    border: 1px solid rgba(18, 55, 52, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(18, 55, 52, 0.07);
}

.quick-link-card {
    min-height: 168px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(18, 55, 52, 0.1);
}

.quick-link-icon,
.contact-icon {
    display: block;
    margin-bottom: 12px;
    font-size: 30px;
}

.quick-link-card h3,
.contact-option h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.quick-link-card p,
.contact-option p {
    color: rgba(23, 33, 31, 0.68);
    font-size: 14px;
    line-height: 1.5;
}

.faq-section {
    padding: 40px 0 72px;
}

.faq-section .container,
.contact-section .container,
.legal-page .container,
.press-page .container {
    max-width: 920px;
}

.faq-section h2,
.contact-section h2 {
    text-align: center;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1;
    margin-bottom: 34px;
}

.faq-category {
    margin-top: 34px;
}

.faq-category h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.faq-item {
    border-top: 1px solid rgba(18, 55, 52, 0.11);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(18, 55, 52, 0.11);
}

.faq-question {
    width: 100%;
    min-height: 52px;
    padding: 14px 36px 14px 0;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-align: left;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.faq-question.active::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: rgba(23, 33, 31, 0.72);
    transition: max-height 0.25s ease;
}

.faq-answer p,
.faq-answer li {
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer p:last-child,
.faq-answer ul,
.faq-answer ol {
    padding-bottom: 18px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 22px;
}

.contact-section {
    padding: 72px 0;
}

.contact-section > .container > p {
    max-width: 620px;
    margin: -16px auto 28px;
    text-align: center;
    color: rgba(23, 33, 31, 0.7);
}

.contact-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
}

.contact-option,
.contact-form-container {
    padding: 28px;
}

.contact-note {
    margin-top: 12px;
    font-weight: 800;
    color: var(--primary-dark) !important;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group label {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(18, 55, 52, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text-primary);
    font: inherit;
    padding: 11px 12px;
}

.form-group textarea {
    resize: vertical;
}

.press-page,
.legal-page {
    background: #F5F4EF;
    padding-bottom: 72px;
}

.press-section,
.legal-page section {
    padding: 28px;
    margin-bottom: 18px;
}

.press-section h2,
.legal-page h2 {
    color: var(--primary-dark);
}

.press-section ul,
.legal-page ul,
.legal-page ol {
    padding-left: 22px;
}

.press-section li,
.legal-page li,
.legal-page p {
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(245, 244, 239, 0.94), rgba(245, 244, 239, 0.86)),
            #F5F4EF;
    }

    .hero .container,
    .hero-content {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-title,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-shot {
        opacity: 0.12;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 66px;
    }

    .logo {
        font-size: 16px;
    }

    .logo span:not(.logo-icon) {
        max-width: 250px;
    }

    .nav-links {
        top: 66px;
        background: rgba(245, 244, 239, 0.96);
    }

    .hero {
        min-height: auto;
        padding: 112px 0 52px;
    }

    .hero-badge {
        width: 100%;
    }

    .hero-title {
        font-size: 46px;
        max-width: 12ch;
    }

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

    .hero-shot-dashboard,
    .hero-shot-stats,
    .hero-shot-welcome {
        display: none;
    }

    .hero-mobile-device {
        display: block;
        width: 150px;
        margin: 26px auto 22px;
        padding: 5px;
        background: #111;
        border-radius: 20px;
        transform: rotate(2deg);
        box-shadow: 0 20px 42px rgba(18, 55, 52, 0.18);
    }

    .hero-mobile-device img {
        display: block;
        width: 100%;
        border-radius: 15px;
    }

    .hero-stats {
        width: 100%;
        align-items: stretch;
    }

    .stat {
        text-align: center;
        min-width: 0;
    }

    .trusted-logos {
        align-items: center;
    }

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

@media (max-width: 480px) {
    .logo {
        font-size: 15px;
    }

    .logo span:not(.logo-icon) {
        max-width: 230px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .stat-divider {
        display: none;
    }

    .support-hero,
    .press-page,
    .legal-page {
        padding-top: 106px;
    }

    .quick-links-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-link-card {
        min-height: 0;
        padding: 20px 18px;
    }
}

@media (max-width: 360px) {
    .logo span:not(.logo-icon) {
        max-width: 180px;
    }
}

/* ============================================
   Baby Tracker 2026 Brand Domain Refresh
   ============================================ */
:root {
    --primary: #116A63;
    --primary-dark: #152A27;
    --primary-light: #BCE7DE;
    --secondary: #F2B84B;
    --accent: #E85D4F;
    --ink: #171D1C;
    --paper: #FBFAF4;
    --mist: #ECF7F4;
    --blue-note: #E8EEFF;
    --rose-note: #FFE7DE;
    --line: rgba(21, 42, 39, 0.12);
    --shadow: 0 20px 48px rgba(21, 42, 39, 0.10);
}

* {
    letter-spacing: 0;
}

body {
    background:
        linear-gradient(180deg, rgba(251, 250, 244, 1) 0%, rgba(236, 247, 244, 0.72) 42%, rgba(251, 250, 244, 1) 100%);
    color: var(--ink);
    max-width: 100%;
    overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(232, 93, 79, 0.45);
    outline-offset: 3px;
}

.navbar {
    background: rgba(251, 250, 244, 0.86);
}

.navbar.scrolled {
    box-shadow: 0 10px 34px rgba(21, 42, 39, 0.10);
}

.btn-primary {
    background: #152A27;
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.86);
}

.hero {
    min-height: min(860px, calc(100svh - 20px));
    padding-top: 126px;
    background:
        linear-gradient(90deg, rgba(251, 250, 244, 0.98) 0%, rgba(251, 250, 244, 0.92) 48%, rgba(236, 247, 244, 0.64) 100%),
        url("../images/screenshot-dashboard.png") right 9% top 48% / min(390px, 34vw) auto no-repeat,
        var(--paper);
}

.hero-title {
    max-width: 660px;
    font-size: clamp(46px, 7vw, 86px);
    line-height: 0.96;
}

.hero-subtitle {
    max-width: 620px;
    font-size: clamp(17px, 2vw, 21px);
}

.hero-badge,
.hero-stats {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.74);
    border-color: var(--line);
}

.stat-number {
    color: var(--primary-dark);
}

.trusted {
    background:
        linear-gradient(135deg, #152A27 0%, #123734 64%, #31403B 100%);
}

.trusted-logos {
    gap: 22px;
}

.trust-item {
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.screenshots {
    background:
        linear-gradient(180deg, var(--paper) 0%, var(--blue-note) 46%, var(--paper) 100%);
}

.section-header {
    max-width: 680px;
}

.section-badge {
    color: #152A27;
    background: rgba(242, 184, 75, 0.24);
    border: 1px solid rgba(242, 184, 75, 0.35);
}

.features {
    background:
        linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.feature-card,
.platform-card,
.pricing-card,
.whats-new-card,
.quick-link-card,
.contact-option,
.contact-form-container,
.fact-item,
.asset-card,
.press-section,
.legal-page section,
.widget {
    border-radius: 8px;
    border-color: var(--line);
    box-shadow: var(--shadow);
}

.feature-card {
    background: rgba(255, 255, 255, 0.82);
}

.feature-card:nth-child(3n + 1) {
    border-top: 4px solid var(--secondary);
}

.feature-card:nth-child(3n + 2) {
    border-top: 4px solid var(--primary-light);
}

.feature-card:nth-child(3n) {
    border-top: 4px solid var(--accent);
}

.feature-large {
    border-top: 0 !important;
}

.feature-visual {
    background:
        linear-gradient(135deg, rgba(188, 231, 222, 0.42), rgba(255, 231, 222, 0.78)),
        #fff;
}

.platforms {
    background: #fff;
}

.platform-card {
    background: var(--paper);
}

.platform-card.featured,
.pricing-card.featured {
    background:
        linear-gradient(135deg, #152A27 0%, #1E4740 100%);
}

.watch-highlight {
    background:
        linear-gradient(135deg, rgba(21, 42, 39, 0.98), rgba(28, 86, 76, 0.94)),
        #152A27;
}

.pricing {
    background:
        linear-gradient(180deg, #fff 0%, var(--rose-note) 50%, var(--paper) 100%);
}

.pricing-card.featured {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: translateY(-14px);
}

.pricing-badge {
    background: var(--accent);
}

.whats-new {
    background: var(--paper);
}

.download {
    background:
        linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.download-content {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 238, 255, 0.62));
    border: 1px solid var(--line);
}

.more-apps,
.site-footer {
    background: #101817;
}

.footer-column h4 {
    letter-spacing: 0;
}

.support-hero,
.quick-links,
.faq-section,
.contact-section,
.press-page,
.legal-page {
    background: var(--paper);
}

.faq-question {
    min-height: 56px;
}

.faq-question:hover {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #fff;
}

@media (max-width: 1100px) {
    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(251, 250, 244, 0.96), rgba(236, 247, 244, 0.84)),
            var(--paper);
    }

    .hero-title {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .container,
    .hero .container,
    .hero-content {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo span:not(.logo-icon) {
        max-width: 220px;
    }

    .hero-title {
        max-width: 8ch;
        font-size: clamp(32px, 9.4vw, 38px);
        line-height: 1;
    }

    .hero-subtitle {
        max-width: 342px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        width: min(100%, 342px);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        width: min(100%, 342px);
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        width: min(100%, 342px);
        padding: 12px;
    }

    .pricing-card.featured,
    .pricing-card.featured:hover {
        transform: none;
    }

    .trust-item {
        width: min(100%, 320px);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo span:not(.logo-icon) {
        max-width: 196px;
    }

    .hero-badge,
    .hero-subtitle,
    .hero-buttons,
    .hero-stats {
        width: min(100%, 330px);
    }
}
