/* CSS Variables based on Premium Theme */
:root {
    /* Light Theme Palette */
    --primary-color: #4A6B53;
    --primary-light: #7CA385;
    --primary-dark: #2f4535;
    --secondary-color: #6B5C82;
    --accent-color: #eaf0eb;

    --bg-color: #FAF8F5;
    --surface-color: #FFFFFF;

    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --border-color: #E5E7EB;

    /* Layout & Shadow */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (prefers-color-scheme: dark-disabled) {
    :root {
        /* Dark Theme Palette */
        --primary-color: #7CA385;
        --primary-light: #4A6B53;
        --primary-dark: #a2c4aa;
        --secondary-color: #9E8FB2;
        --accent-color: #1e2a22;

        --bg-color: #111827;
        --surface-color: #1F2937;

        --text-primary: #F9FAFB;
        --text-secondary: #9CA3AF;
        --border-color: #374151;

        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    }
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

@media (prefers-color-scheme: dark-disabled) {
    .navbar {
        background: rgba(17, 24, 39, 0.85);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-logo {
    height: 64px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
    line-height: 1;
}

.logo-subtext {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 3px;
    opacity: 0.8;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.logo-subtext::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(74, 107, 83, 0.1) 0%, 
        var(--primary-color) 25%, 
        #8ab596 50%, 
        var(--primary-color) 75%, 
        rgba(74, 107, 83, 0.1) 100%
    );
    background-size: 200% 100%;
    border-radius: 2px;
    animation: shimmer-line 3s ease-in-out infinite alternate;
}

@keyframes shimmer-line {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

.nav-links {
    display: flex;
    align-items: center;
}

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

.mobile-only {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1001;
}

@media (prefers-color-scheme: dark-disabled) {
    .mobile-menu-btn {
        color: #fff;
    }
}

.nav-links a:not(.btn-primary-small) {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.btn-primary-small {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(74, 107, 83, 0.3);
}

.btn-primary-small:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 107, 83, 0.4);
}

@media (prefers-color-scheme: dark-disabled) {
    .btn-primary-small {
        color: var(--bg-color) !important;
    }
}

/* Hero Section */
.hero {
    padding: 130px 5% 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 60%);
    z-index: -1;
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

/* Store Buttons (Like Samaj Setu / Invited) */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

/* Unified Premium Store Buttons */
.premium-store-btn {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px 16px 10px 10px;
    gap: 16px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    min-width: 260px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }
}

.premium-store-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Bottom colored line */
.premium-store-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 15%;
    right: 15%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    opacity: 0.9;
}

.premium-store-btn.apple-btn::after {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3), transparent);
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn.apple-btn::after {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
}

.premium-store-btn.play-btn::after {
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), transparent);
}

/* Icon Box */
.premium-store-btn .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-store-btn.apple-btn .icon-box {
    background: #f2f2f5;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn.apple-btn .icon-box {
        background: #2a2a2a;
    }
}

.premium-store-btn.apple-btn .icon-box i {
    color: #000;
    font-size: 26px;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn.apple-btn .icon-box i {
        color: #fff;
    }
}

.premium-store-btn.play-btn .icon-box {
    background: #e8f5e9;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn.play-btn .icon-box {
        background: rgba(76, 175, 80, 0.15);
    }
}

/* Store Text */
.premium-store-btn .store-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    align-items: flex-start;
}

.premium-store-btn .store-text span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 2px;
    white-space: nowrap;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn .store-text span {
        color: #aaa;
    }
}

.premium-store-btn .store-text strong {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn .store-text strong {
        color: #fff;
    }
}

/* Arrow Box */
.premium-store-btn .arrow-box {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn .arrow-box {
        background: #2a2a2a;
    }
}

.premium-store-btn.apple-btn .arrow-box i {
    color: var(--primary-color);
    font-size: 20px;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn.apple-btn .arrow-box i {
        color: var(--primary-light);
    }
}

.premium-store-btn.play-btn .arrow-box i {
    color: var(--primary-color);
    font-size: 20px;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-store-btn.play-btn .arrow-box i {
        color: var(--primary-light);
    }
}

/* Hero Feature Card below buttons */
.hero-feature-card {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
    max-width: 420px;
}

@media (prefers-color-scheme: dark-disabled) {
    .hero-feature-card {
        background: rgba(30, 41, 59, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.card-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.hero-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Premium iPhone Mockup */
.hero-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

@keyframes float-phone {
    0% {
        transform: translateY(0) scale(0.95);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 2px #333;
    }

    50% {
        transform: translateY(-15px) scale(0.95);
        box-shadow: 0 50px 80px rgba(0, 0, 0, 0.1), inset 0 0 0 2px #333;
    }

    100% {
        transform: translateY(0) scale(0.95);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 2px #333;
    }
}

.iphone-frame {
    width: 320px;
    height: 650px;
    background: var(--bg-color);
    border: 16px solid #111;
    border-radius: 54px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 2px #333;
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: var(--transition-smooth);
    z-index: 2;
    animation: float-phone 6s ease-in-out infinite;
}

.hero-mockup:hover .iphone-frame {
    animation-play-state: paused;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #111;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    z-index: 10;
}

.screen {
    width: 100%;
    height: 100%;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.screen-logo {
    width: 32px;
}

.screen-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(74, 107, 83, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

.app-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wave {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.app-header p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.mood-selector {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.mood {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #E5E7EB;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.mood:hover {
    transform: scale(1.15);
}

.mood.awful {
    background: linear-gradient(135deg, #FF8A80, #E53935);
}

.mood.bad {
    background: linear-gradient(135deg, #FFD180, #FB8C00);
}

.mood.neutral {
    background: linear-gradient(135deg, #FFF59D, #FDD835);
}

.mood.good {
    background: linear-gradient(135deg, #A5D6A7, #43A047);
}

.mood.great {
    background: linear-gradient(135deg, #90CAF9, #1E88E5);
}

.mood.awful:hover {
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #E53935;
}

.mood.bad:hover {
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #FB8C00;
}

.mood.neutral:hover {
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #FDD835;
}

.mood.good:hover {
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #43A047;
}

.mood.great:hover {
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #1E88E5;
}

.screen-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.screen-cards .card {
    background: #ffffff;
    padding: 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
}

.screen-cards .card-icon {
    background: rgba(74, 107, 83, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-cards .card-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.screen-cards .card span {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.screen-cards .card-info small {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (prefers-color-scheme: dark-disabled) {

    .mood-selector,
    .screen-cards .card {
        background: #1e1e24;
        border-color: rgba(255, 255, 255, 0.05);
    }

    .screen-cards .card-icon {
        background: rgba(124, 163, 133, 0.15);
    }
}

/* Floating Pills around mockup */
.float-element.pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-dark);
    z-index: 5;
    animation: float 5s ease-in-out infinite;
    letter-spacing: 0.5px;
    scale: 1;
    transition: scale 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, background 0.3s;
    cursor: default;
}

.float-element.pill:hover {
    scale: 1.1;
    box-shadow: 0 12px 30px rgba(74, 107, 83, 0.2);
    animation-play-state: paused;
    color: var(--primary-color);
}

@media (prefers-color-scheme: dark-disabled) {
    .float-element.pill {
        background: rgba(30, 41, 59, 0.9);
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }
}

@keyframes float-pill-1 {
    0%,
    100% {
        transform: translate(0, 0) rotate(-2deg);
    }

    50% {
        transform: translate(-5px, 15px) rotate(2deg);
    }
}

@keyframes float-pill-2 {
    0%,
    100% {
        transform: translate(0, 0) rotate(2deg);
    }

    50% {
        transform: translate(5px, 12px) rotate(-2deg);
    }
}

@keyframes float-pill-3 {
    0%,
    100% {
        transform: translate(0, 0) rotate(-3deg);
    }

    50% {
        transform: translate(5px, 10px) rotate(3deg);
    }
}

@keyframes float-pill-4 {
    0%,
    100% {
        transform: translate(0, 0) rotate(3deg);
    }

    50% {
        transform: translate(-5px, 14px) rotate(-3deg);
    }
}

.card-1 {
    top: 25%;
    right: calc(50% + 150px);
    animation: float-pill-1 6s ease-in-out infinite;
}

.card-2 {
    top: 15%;
    left: calc(50% + 150px);
    animation: float-pill-2 6s ease-in-out infinite;
}

.card-3 {
    bottom: 16%;
    right: calc(50% + 145px);
    z-index: 5;
    animation: float-pill-3 6s ease-in-out infinite;
}

.card-4 {
    bottom: 15%;
    left: calc(50% + 160px);
    animation: float-pill-4 6s ease-in-out infinite;
}

.card-5 {
    top: 40%;
    left: calc(50% + 170px);
    animation: float-pill-1 6s ease-in-out infinite;
}

.card-6 {
    bottom: 28%;
    right: calc(50% + 170px);
    z-index: 6;
    animation: float-pill-2 6s ease-in-out infinite;
}

.card-7 {
    top: 45%;
    right: calc(50% + 180px);
    animation: float-pill-4 6s ease-in-out infinite;
}

.card-8 {
    bottom: 35%;
    left: calc(50% + 145px);
    animation: float-pill-3 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Background Effects */
.hero-bg-blob {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(60px);
    z-index: -1;
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(20px, 20px);
    }
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.privacy-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(74, 107, 83, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.privacy-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 107, 83, 0.15);
}

.privacy-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Trust Section */
.trust-section {
    padding: 60px 5%;
    background: var(--surface-color);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-color-scheme: dark-disabled) {
    .trust-card {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.05);
    }
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.trust-card i {
    font-size: 28px;
    color: var(--primary-color);
    background: rgba(74, 107, 83, 0.1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover i {
    transform: scale(1.15) rotate(-8deg);
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(74, 107, 83, 0.2);
}

@media (prefers-color-scheme: dark-disabled) {
    .trust-card i {
        background: rgba(124, 163, 133, 0.15);
        color: #fff;
    }
}

.trust-card span {
    font-weight: 700;
    font-size: 15px;
    color: #2d3748;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

@media (prefers-color-scheme: dark-disabled) {
    .trust-card span {
        color: #e2e8f0;
    }
}

/* Sections Global */
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-heading p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Features Showcase (Zig-Zag) */
.features-showcase {
    padding: 120px 5%;
    background: var(--bg-color);
}

.showcase-row {
    max-width: 1200px;
    margin: 0 auto 120px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {

    .showcase-row,
    .showcase-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .showcase-row:last-child {
        margin-bottom: 0;
    }
}

.showcase-content {
    flex: 1;
}

.feature-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    margin-bottom: 16px;
}

.showcase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.showcase-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 500px) {
    .feature-benefits {
        grid-template-columns: 1fr;
    }
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-benefits li:hover {
    transform: translateX(6px);
    color: var(--primary-dark);
}

.feature-benefits i {
    color: var(--primary-color);
    background: var(--accent-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-benefits li:hover i {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(74, 107, 83, 0.2);
}

font-size: 14px;
}

.showcase-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-placeholder {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 8px solid #ffffff;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mockup-placeholder::before {
    display: none;
}

.showcase-row:hover .mockup-placeholder {
    transform: scale(1.05) translateY(-12px);
}

.showcase-row:hover .color-sage {
    box-shadow: 0 30px 60px rgba(74, 107, 83, 0.3);
}

.showcase-row:hover .color-lavender {
    box-shadow: 0 30px 60px rgba(106, 90, 128, 0.3);
}

.showcase-row:hover .color-mint {
    box-shadow: 0 30px 60px rgba(122, 156, 181, 0.3);
}

.showcase-row:hover .color-cream {
    box-shadow: 0 30px 60px rgba(207, 158, 118, 0.3);
}

.mockup-placeholder i {
    font-size: 64px;
    color: #ffffff;
    opacity: 0.9;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-row:hover .mockup-placeholder i {
    transform: scale(1.2) translateY(-5px);
    opacity: 1;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.mockup-placeholder p {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
    margin: 0;
}

.color-sage {
    background: linear-gradient(135deg, #8ab596, var(--primary-color));
    box-shadow: 0 20px 50px rgba(74, 107, 83, 0.2);
}

.color-lavender {
    background: linear-gradient(135deg, #b0a3c2, var(--secondary-color));
    box-shadow: 0 20px 50px rgba(106, 90, 128, 0.2);
}

.color-mint {
    /* Slate Blue */
    background: linear-gradient(135deg, #a8c1d6, #7a9cb5);
    box-shadow: 0 20px 50px rgba(122, 156, 181, 0.2);
}

.color-cream {
    /* Warm Peach */
    background: linear-gradient(135deg, #e8c6a5, #cf9e76);
    box-shadow: 0 20px 50px rgba(207, 158, 118, 0.2);
}

/* Premium Difference Section */
.premium-difference {
    padding: 120px 5%;
    background: #f8f7fa;
    position: relative;
}

@media (prefers-color-scheme: dark-disabled) {
    .premium-difference {
        background: #15151a;
    }
}

.difference-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.diff-card {
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (prefers-color-scheme: dark-disabled) {
    .diff-card {
        background: #1e1e24;
        border-color: rgba(255, 255, 255, 0.05);
    }
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.diff-icon {
    width: 64px;
    height: 64px;
    background: rgba(74, 107, 83, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark-disabled) {
    .diff-icon {
        background: rgba(124, 163, 133, 0.15);
    }
}

.diff-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.diff-card:hover .diff-icon {
    transform: scale(1.15) rotate(-8deg);
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(74, 107, 83, 0.2);
}

.diff-card:hover .diff-icon i {
    color: #ffffff;
}

.diff-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

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

/* Daily Journey Timeline */
.daily-journey {
    padding: 120px 5%;
    background: var(--bg-color);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(74, 107, 83, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        gap: 60px;
        padding-left: 40px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 32px;
        /* Center of 64px squircle */
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(74, 107, 83, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
    }
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 200px;
}

@media (max-width: 768px) {
    .timeline-item {
        text-align: left;
        display: flex;
        align-items: center;
        width: 100%;
        gap: 24px;
    }

    .timeline-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.time-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emoji-icon {
    font-size: 32px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@media (prefers-color-scheme: dark-disabled) {
    .time-icon {
        background: #1e1e24;
        border-color: rgba(255, 255, 255, 0.05);
    }
}

.timeline-item:hover .time-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .time-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

.timeline-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Privacy Dark Section -> Now Light Premium Section */
.privacy-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, var(--bg-color) 0%, #E8EFEA 100%);
    color: var(--text-primary);
    text-align: center;
}

@media (prefers-color-scheme: dark-disabled) {
    .privacy-section {
        background: linear-gradient(180deg, #131c15 0%, #1e2a22 100%);
        color: #ffffff;
    }
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 1px solid rgba(74, 107, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (prefers-color-scheme: dark-disabled) {
    .privacy-icon-wrapper {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

.privacy-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.privacy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.privacy-section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.privacy-section li {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(74, 107, 83, 0.15);
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

@media (prefers-color-scheme: dark-disabled) {
    .privacy-section li {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }
}

.privacy-section li:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

@media (prefers-color-scheme: dark-disabled) {
    .privacy-section li:hover {
        background: rgba(255, 255, 255, 0.15);
    }
}

.privacy-section li i {
    color: var(--primary-color);
    font-size: 20px;
}

@media (prefers-color-scheme: dark-disabled) {
    .privacy-section li i {
        color: var(--primary-light);
    }
}

/* Testimonials Marquee */
.testimonials {
    padding: 80px 0;
    background: var(--surface-color);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    padding: 40px 40px;
    border-radius: 24px;
    width: 400px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 140px;
    font-family: Georgia, serif;
    color: var(--primary-light);
    opacity: 0.15;
    line-height: 1;
    z-index: 0;
}

@media (prefers-color-scheme: dark-disabled) {
    .testimonial-card {
        background: linear-gradient(180deg, #1e1e24 0%, #1a1a20 100%);
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    .testimonial-card::before {
        opacity: 0.05;
        color: #ffffff;
    }
}



.testimonial-card .stars {
    color: #F5A623;
    font-size: 18px;
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin: 0;
}

.testimonial-card .author-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

@media (prefers-color-scheme: dark-disabled) {
    .testimonial-card .author-section {
        border-top-color: rgba(255, 255, 255, 0.05);
    }
}

.testimonial-card .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 14px;
    border: 2px solid var(--primary-light);
}

.testimonial-card .author {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 5%;
    background: #f8f7fa;
    position: relative;
    z-index: 1;
}

@media (prefers-color-scheme: dark-disabled) {
    .final-cta {
        background: #15151a;
    }
}

.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4a6b53 0%, #2d4535 100%);
    border-radius: 40px;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 40px 80px rgba(45, 69, 53, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 10%;
    width: 80%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transform: rotate(-15deg);
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.cta-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 56px;
    font-weight: 300;
}

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

.dark-glass {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.dark-glass:hover {
    background: rgba(0, 0, 0, 0.3) !important;
}

.dark-glass i {
    color: #fff !important;
}

.dark-glass .store-text span {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Footer */
footer {
    background: #ffffff;
    color: var(--text-primary);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

@media (prefers-color-scheme: dark-disabled) {
    footer {
        background: var(--surface-color);
        border-color: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }
}

.footer-container {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-wrapper i {
    font-size: 28px;
    color: var(--primary-color);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-title {
        color: #ffffff;
    }
}

.brand-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    max-width: 320px;
}

.footer-heading {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.links-col a {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.links-col a:hover {
    color: var(--primary-dark);
    transform: translateX(6px);
}

@media (prefers-color-scheme: dark-disabled) {
    .links-col a:hover {
        color: var(--primary-dark);
    }
}

.footer-store-btn {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: #111 !important;
    padding: 12px 20px !important;
    border-radius: 24px !important;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), inset 0 -4px 0 rgba(0, 0, 0, 0.02) !important;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-store-btn {
        background: #1e1e1e !important;
        color: #fff !important;
        border-color: rgba(255, 255, 255, 0.05) !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
    }
}

.footer-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06), inset 0 -4px 0 rgba(0, 0, 0, 0.02) !important;
}

.footer-store-btn .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-store-btn .icon-box.apple-box {
    background: #f0f0f0;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-store-btn .icon-box.apple-box {
        background: #333;
    }
}

.footer-store-btn .icon-box.apple-box i {
    color: #000;
    font-size: 26px;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-store-btn .icon-box.apple-box i {
        color: #fff;
    }
}

.footer-store-btn .icon-box.play-box {
    background: #e8f5e9;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-store-btn .icon-box.play-box {
        background: rgba(76, 175, 80, 0.2);
    }
}

.footer-store-btn .icon-box.play-box i {
    color: #4CAF50;
    font-size: 26px;
}

.footer-store-btn .store-text {
    display: flex;
    flex-direction: column;
}

.footer-store-btn .store-text span {
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4) !important;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-store-btn .store-text span {
        color: rgba(255, 255, 255, 0.5) !important;
    }
}

.footer-store-btn .store-text strong {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #111;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-store-btn .store-text strong {
        color: #fff;
    }
}

.footer-bottom {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text-secondary);
    font-size: 13px;
}

@media (prefers-color-scheme: dark-disabled) {
    .footer-bottom {
        border-color: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
    }
}

.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Animations from script.js */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive adjustments */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {

    .container,
    .nav-container,
    .hero-container,
    .timeline-container,
    .testimonial-container,
    .footer-container,
    .footer-bottom {
        max-width: 1200px;
    }

    .cta-box {
        max-width: 1200px;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }

    .iphone-frame {
        transform: scale(0.9);
    }

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

    .cta-box {
        padding: 80px 40px;
    }
}

/* Tablet Portrait & Large Mobile (768px) */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

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

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions a {
        width: 100%;
        max-width: 320px;
    }

    .hero-mockup {
        margin-top: 40px;
    }

    .float-element {
        display: none;
    }

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

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-color);
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.4s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.6), -20px 0 40px rgba(0, 0, 0, 0.15);
    }

    .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    /* Drawer Header */
    .mobile-drawer-header {
        width: 100%;
        padding: 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
    }

    .drawer-logo-group {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .drawer-logo {
        height: 52px;
        width: auto;
    }

    .drawer-title {
        font-size: 22px;
        font-weight: 800;
        color: var(--primary-dark);
        letter-spacing: -0.5px;
    }

    /* Drawer Links */
    .drawer-menu-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 40px 32px;
        gap: 32px;
        flex: 1;
        align-items: flex-start;
    }

    .drawer-menu-items li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        width: 100%;
        text-align: left;
    }

    .nav-links.nav-active .drawer-menu-items li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a:not(.btn-primary-small) {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-dark);
        letter-spacing: -0.5px;
    }

    /* Drawer Footer */
    .mobile-drawer-footer {
        width: 100%;
        padding: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a.btn-primary-small.drawer-btn {
        width: 100%;
        text-align: center;
        font-size: 18px;
        padding: 16px;
        border-radius: 12px;
        background: var(--primary-dark);
        color: #fff;
    }

    .drawer-copyright {
        font-size: 13px;
        color: var(--text-secondary);
        opacity: 0.8;
    }

    @media (prefers-color-scheme: dark-disabled) {
        .mobile-drawer-header {
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        .mobile-drawer-footer {
            border-top-color: rgba(255, 255, 255, 0.05);
        }

        .nav-links {
            background: var(--bg-color);
        }

        .drawer-title,
        .nav-links a:not(.btn-primary-small) {
            color: #fff;
        }
    }

    .showcase-row,
    .showcase-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .feature-benefits {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .brand-col p {
        margin: 0 auto;
    }

    .footer-logo-wrapper {
        justify-content: center;
    }
}

/* Small Mobile (480px & down to 300px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 34px;
    }

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

    .iphone-frame {
        transform: scale(0.75);
    }

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

    .cta-box {
        padding: 60px 20px;
        border-radius: 24px;
    }

    .cta-box h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 320px;
    }

    .footer-store-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 16px;
    }

    .premium-store-btn {
        padding: 12px 16px;
    }
}

/* Legal / Privacy Policy Styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 20px 80px;
}

.legal-header {
    margin-bottom: 60px;
    text-align: center;
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.legal-header p {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (prefers-color-scheme: dark-disabled) {
    .legal-header h1 {
        color: #fff;
    }
}

.legal-content {
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
}

@media (prefers-color-scheme: dark-disabled) {
    .legal-content {
        background: var(--surface-color);
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (prefers-color-scheme: dark-disabled) {
    .legal-content h2 {
        color: #fff;
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
}

.legal-content p,
.legal-content ul {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    font-weight: 700;
    color: var(--primary-dark);
}

@media (prefers-color-scheme: dark-disabled) {
    .legal-content strong {
        color: #fff;
    }
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-container {
        padding-top: 120px;
    }

    .legal-header h1 {
        font-size: 36px;
    }

    .legal-content {
        padding: 32px 24px;
    }

    .legal-content h2 {
        font-size: 24px;
    }
}