/* Since - Sobriety & Recovery Counter */
/* Premium warm design, emotionally resonant and privacy-first */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #FFA000;
    --primary-dark: #F57C00;
    --primary-light: #FFB740;
    --secondary: #E65100;
    --accent: #FFF8E1;
    --accent-alt: #FFE082;
    --success: #66BB6A;
    --danger: #EF5350;
    --warmth: #FF8F00;
    --glow: rgba(255, 160, 0, 0.35);
    --background: #FFFDF8;
    --background-alt: #FFF9EE;
    --background-warm: #FFF5E1;
    --background-dark: #0D0800;
    --hero-dark: #1A0F00;
    --text: #2D1B00;
    --text-secondary: #6B5B4D;
    --text-light: #9E8E7E;
    --text-on-dark: #FAF0E6;
    --border: #F0E6D8;
    --border-light: #FAF5EE;
    --card-shadow: 0 4px 6px -1px rgba(45, 27, 0, 0.06), 0 2px 4px -2px rgba(45, 27, 0, 0.04);
    --card-hover-shadow: 0 20px 40px -8px rgba(45, 27, 0, 0.12), 0 8px 16px -6px rgba(45, 27, 0, 0.08);
    --glow-shadow: 0 0 80px rgba(255, 160, 0, 0.15);
    --glow-strong: 0 0 60px rgba(255, 160, 0, 0.3), 0 0 120px rgba(255, 143, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #FFA000 0%, #F57C00 100%);
    --gradient-warm: linear-gradient(135deg, #FFB740 0%, #FFA000 50%, #F57C00 100%);
    --gradient-hero: linear-gradient(180deg, #1A0F00 0%, #2D1500 40%, #1A0F00 100%);
    --gradient-accent: linear-gradient(135deg, #FFE082 0%, #FFA000 100%);
    --gradient-radial: radial-gradient(circle at 30% 30%, rgba(255, 160, 0, 0.08) 0%, transparent 50%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 160, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); }

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ============================================
   ANIMATED BACKGROUND BLOBS
   ============================================ */
.bg-blobs {
    display: none;
}

.blob {
    display: none;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: #FFA000;
    top: -250px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #FF6F00;
    top: 40%;
    right: -200px;
    animation-delay: -7s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: #FFE082;
    bottom: -150px;
    left: 25%;
    animation-delay: -14s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.08); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(25px, 40px) scale(1.03); }
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 100%;
    z-index: 1000;
    background: rgba(26, 15, 0, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 160, 0, 0.1);
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(26, 15, 0, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255, 160, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-on-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(255, 160, 0, 0.5);
}

.logo-text {
    color: var(--text-on-dark) !important;
    -webkit-text-fill-color: var(--text-on-dark) !important;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul a {
    color: rgba(250, 240, 230, 0.7);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
}

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

nav ul a:hover {
    color: var(--primary-light);
}

nav ul a:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION, DARK, WARM, EMOTIONAL
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 160, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 143, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 224, 130, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle grain/texture overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.15) 0%, rgba(255, 143, 0, 0.08) 100%);
    border: 1px solid rgba(255, 160, 0, 0.25);
    color: var(--accent-alt);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse-badge 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 160, 0, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(255, 160, 0, 0); }
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFE082 0%, #FFA000 40%, #F57C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.8;
    color: rgba(250, 240, 230, 0.75);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 160, 0, 0.5);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    background: rgba(255, 160, 0, 0.1);
    border: 2px solid rgba(255, 160, 0, 0.3);
    color: var(--accent-alt);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(255, 160, 0, 0.15);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.app-store-badge img {
    height: 54px;
    transition: var(--transition);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 160, 0, 0.2);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFE082 0%, #FFA000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(250, 240, 230, 0.5);
    font-weight: 500;
}

/* ============================================
   PHONE MOCKUP, CSS-ONLY
   ============================================ */
.hero-image {
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    margin: 0 auto;
    perspective: 1000px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2D1B00 0%, #1A0F00 100%);
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 160, 0, 0.1),
        0 0 80px rgba(255, 160, 0, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1A0F00 0%, #0D0800 50%, #1A0F00 100%);
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 35%, rgba(255, 160, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 70%, rgba(255, 143, 0, 0.06) 0%, transparent 50%);
}

.phone-notch {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 36px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.countdown-preview {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.countdown-preview .flame {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    animation: flame-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 160, 0, 0.5));
}

@keyframes flame-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255, 160, 0, 0.5)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 30px rgba(255, 160, 0, 0.7)); }
}

.countdown-preview .days {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #FFE082 0%, #FFA000 60%, #F57C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(255, 160, 0, 0.3));
}

.countdown-preview .label {
    font-size: 1.375rem;
    margin-top: 0.5rem;
    color: rgba(255, 224, 130, 0.6);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.countdown-preview .event-name {
    font-size: 1rem;
    margin-top: 1.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(255, 160, 0, 0.1);
    border: 1px solid rgba(255, 160, 0, 0.2);
    border-radius: 50px;
    color: rgba(255, 224, 130, 0.7);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ============================================
   SECTION STYLING
   ============================================ */
section {
    padding: 7rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

section h2 {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 5%;
    max-width: 200px;
    margin: 0 auto;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: var(--background);
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-6px);
    border-color: rgba(255, 160, 0, 0.15);
}

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

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.04) 0%, rgba(255, 248, 225, 0.5) 100%);
    border-color: rgba(255, 160, 0, 0.15);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.12) 0%, rgba(245, 124, 0, 0.08) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   DAILY QUOTES SHOWCASE, STANDOUT SECTION
   ============================================ */
.quotes-showcase {
    background: var(--hero-dark);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.quotes-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 160, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 143, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.quotes-showcase .section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.quotes-showcase h2 {
    color: var(--text-on-dark);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
}

.quotes-showcase .section-subtitle {
    color: rgba(250, 240, 230, 0.6);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.quote-card {
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 160, 0, 0.12);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: quote-float 8s ease-in-out infinite;
}

.quote-card:nth-child(2) { animation-delay: -2s; }
.quote-card:nth-child(3) { animation-delay: -4s; }
.quote-card:nth-child(4) { animation-delay: -6s; }

@keyframes quote-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-warm);
    opacity: 0.6;
}

.quote-card:hover {
    box-shadow: 0 20px 60px rgba(255, 160, 0, 0.1), 0 0 40px rgba(255, 160, 0, 0.05);
    border-color: rgba(255, 160, 0, 0.25);
    transform: translateY(-8px);
}

.quote-card .quote-mark {
    font-size: 5rem;
    font-family: var(--font-serif);
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.6) 0%, rgba(255, 224, 130, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.8;
    margin-bottom: 0.75rem;
    display: block;
}

.quote-card .quote-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-on-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.quote-card .quote-author {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.02em;
}

.quote-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.quote-category {
    background: rgba(255, 160, 0, 0.08);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(250, 240, 230, 0.6);
    border: 1px solid rgba(255, 160, 0, 0.15);
    transition: var(--transition);
    cursor: default;
}

.quote-category:hover {
    background: rgba(255, 160, 0, 0.15);
    color: var(--accent-alt);
    border-color: rgba(255, 160, 0, 0.3);
}

.quotes-count {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(250, 240, 230, 0.5);
    font-weight: 500;
}

.quotes-count strong {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   MILESTONES TIMELINE
   ============================================ */
.milestones-section {
    background: var(--background);
    overflow: hidden;
}

.milestone-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
}

/* Connecting line between milestones */
.milestone-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--border), var(--primary-light), var(--primary), var(--primary-dark), #B8D8F8, #FF6F00);
    opacity: 0.3;
    z-index: 0;
}

.milestone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
    min-width: 140px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.milestone-item:hover {
    transform: translateY(-8px);
}

.milestone-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    transition: var(--transition);
}

.milestone-badge.bronze {
    background: linear-gradient(145deg, #D4A574 0%, #B8875A 50%, #C09060 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.4);
}

.milestone-badge.silver {
    background: linear-gradient(145deg, #D0D0D0 0%, #B0B0B0 50%, #C0C0C0 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(192, 192, 192, 0.4);
}

.milestone-badge.gold {
    background: linear-gradient(145deg, #FFD54F 0%, #FFA000 50%, #F57C00 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.5);
    animation: gold-shimmer 3s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 160, 0, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(255, 160, 0, 0.6); }
}

.milestone-badge.platinum {
    background: linear-gradient(145deg, #E8E0D0 0%, #C8B898 50%, #D0C0A0 100%);
    color: #5C4A2A;
    box-shadow: 0 4px 20px rgba(208, 192, 160, 0.5);
}

.milestone-badge.diamond {
    background: linear-gradient(145deg, #B8D8F8 0%, #7EB8E8 50%, #5098D8 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(126, 184, 232, 0.5);
    animation: diamond-sparkle 4s ease-in-out infinite;
}

@keyframes diamond-sparkle {
    0%, 100% { box-shadow: 0 4px 20px rgba(126, 184, 232, 0.4); }
    33% { box-shadow: 0 4px 28px rgba(126, 184, 232, 0.6), 0 0 40px rgba(184, 216, 248, 0.2); }
    66% { box-shadow: 0 4px 20px rgba(126, 184, 232, 0.4); }
}

.milestone-badge.legendary {
    background: linear-gradient(145deg, #FF8F00 0%, #FF6F00 30%, #FF3D00 60%, #DD2C00 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 61, 0, 0.5);
    animation: legendary-glow 2s ease-in-out infinite;
}

@keyframes legendary-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 61, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 61, 0, 0.7), 0 0 50px rgba(255, 160, 0, 0.25); }
}

.milestone-label {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.milestone-sublabel {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
}

.milestone-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.04) 0%, rgba(245, 124, 0, 0.02) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 160, 0, 0.1);
}

.milestone-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.milestone-quote cite {
    color: var(--primary-dark);
    font-style: normal;
    font-weight: 600;
    font-family: var(--font-sans);
}

/* ============================================
   PRIVACY SECTION, DEDICATED
   ============================================ */
.privacy-section {
    background: var(--background-warm);
    padding: 7rem 0;
    max-width: 100%;
}

.privacy-section .section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.12) 0%, rgba(245, 124, 0, 0.06) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.privacy-section h2 {
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.privacy-section .section-subtitle {
    margin-bottom: 3rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.privacy-card {
    background: var(--background);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.privacy-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-4px);
}

.privacy-card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.privacy-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.privacy-card p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.platforms {
    background: var(--background);
}

.platform-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 3rem;
    background: var(--background);
    border-radius: var(--radius-xl);
    min-width: 180px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.platform:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(255, 160, 0, 0.2);
}

.platform:hover::before {
    opacity: 0.04;
}

.platform-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    color: var(--primary-dark);
}

.platform-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.platform-version {
    font-size: 0.8125rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: var(--background-alt);
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: var(--background-alt);
    padding: 7rem 0;
    max-width: 100%;
}

.pricing .section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 960px;
}

.pricing-disclaimer {
    max-width: 720px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pricing-card {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--background) 0%, rgba(255, 160, 0, 0.04) 100%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 160, 0, 0.4);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.25rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: var(--text-secondary);
}

.price-alt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "\2713";
    color: var(--success);
    font-weight: 700;
    width: 22px;
    height: 22px;
    background: rgba(102, 187, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    background: var(--background-alt);
    color: var(--text);
    transition: var(--transition);
    border: 2px solid var(--border);
}

.btn-pricing:hover {
    background: var(--text);
    color: var(--background);
    border-color: var(--text);
}

.btn-pricing.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.4);
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 160, 0, 0.5);
    color: white;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--background);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 160, 0, 0.25);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    font-size: 1.0625rem;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer a {
    color: var(--primary-dark);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    text-align: center;
    background: var(--gradient-hero);
    color: white;
    padding: 6rem 5%;
    border-radius: var(--radius-xl);
    margin: 5rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 143, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    color: white;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    color: rgba(255, 240, 230, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta .app-store-badge {
    position: relative;
    z-index: 1;
}

.cta .app-store-badge img {
    filter: brightness(1.1);
}

/* ============================================
   CRISIS RESOURCES
   ============================================ */
.crisis-resources {
    text-align: center;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 700px;
    background: rgba(255, 160, 0, 0.05);
    border: 1px solid rgba(255, 160, 0, 0.15);
    border-radius: var(--radius);
}

.crisis-resources p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.crisis-resources a {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ============================================
   MORE APPS SECTION
   ============================================ */
.more-apps {
    padding: 80px 24px;
    background: #1C1C1E;
    max-width: 100%;
}

.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: all 0.2s ease;
}

.more-app-card:hover {
    transform: translateY(-2px);
    border-color: #FFA000;
    box-shadow: 0 8px 24px rgba(255, 160, 0, 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, #FFA000 0%, #F57C00 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.more-apps-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 160, 0, 0.4);
    color: white;
}

/* ============================================
   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;
    max-width: 100%;
}

.site-footer .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;
}

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

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

.site-footer .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFA000 0%, #F57C00 50%, #FFE082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

.site-footer .footer-column a:hover {
    color: #FFA000;
}

.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;
}

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

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

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

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

.footer-crisis {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 20px;
    text-align: center;
    background: rgba(255, 160, 0, 0.05);
    border: 1px solid rgba(255, 160, 0, 0.1);
    border-radius: var(--radius-sm);
}

.footer-crisis p {
    font-size: 0.8125rem;
    color: #A1A1AA;
    line-height: 1.6;
}

.footer-crisis strong {
    color: #D4D4D8;
}

.footer-crisis a {
    color: #FFA000;
    font-weight: 600;
    text-decoration: none;
}

.footer-crisis a:hover {
    text-decoration: underline;
}

/* ============================================
   PAGE HEADER (privacy, terms, support)
   ============================================ */
.page-header {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 5% 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 160, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 143, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: white;
    -webkit-text-fill-color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    color: rgba(255, 224, 130, 0.7);
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.page-header nav {
    background: rgba(26, 15, 0, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--background-alt);
    border-radius: var(--radius);
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}

.last-updated p { margin: 0; }

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-content h2,
.legal-section h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text);
}

.legal-content p,
.legal-content ul,
.legal-section p,
.legal-section ul {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-section ul {
    padding-left: 1.5rem;
}

.legal-content li,
.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.06) 0%, rgba(245, 124, 0, 0.04) 100%);
    border: 1px solid rgba(255, 160, 0, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box.success {
    background: rgba(102, 187, 106, 0.06);
    border-color: rgba(102, 187, 106, 0.2);
}

.highlight-box strong {
    color: var(--text);
}

.highlight-box ul {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.info-card {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.storage-grid,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.storage-item,
.right-item {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.storage-icon,
.right-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.storage-item h4,
.right-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.storage-item p,
.right-item p {
    font-size: 0.875rem;
}

.contact-card {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-method strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
.support-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.quick-links {
    margin-bottom: 3rem;
}

.quick-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

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

.quick-link-icon {
    font-size: 2rem;
}

.quick-link-card h3 {
    font-size: 1rem;
    color: var(--text);
}

.quick-link-card p {
    font-size: 0.8125rem;
}

.support-content .faq-section {
    padding: 2rem 0;
}

.support-content .faq-section h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.support-content .faq-item {
    margin-bottom: 1.5rem;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding-bottom: 1.5rem;
}

.support-content .faq-item h3 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.support-content .faq-answer {
    display: block;
    padding: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.support-content .faq-answer p {
    margin-bottom: 0.75rem;
}

.support-content .faq-answer ol,
.support-content .faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.support-content .faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.support-content .tip {
    background: rgba(255, 160, 0, 0.06);
    border: 1px solid rgba(255, 160, 0, 0.15);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
}

.contact-section {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-section .contact-card {
    text-align: center;
    padding: 2rem;
}

.contact-section .contact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-section .contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 160, 0, 0.3);
    color: white;
}

.response-time {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
}

.support-tips {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
}

.support-tips h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.support-tips ul {
    padding-left: 1.5rem;
}

.support-tips li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 5%;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

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

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

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

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

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat::after {
        display: none;
    }

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

    .platform-list {
        gap: 1rem;
    }

    .platform {
        padding: 2rem;
        min-width: 150px;
    }

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

    .milestone-timeline {
        gap: 0.25rem;
    }

    .milestone-timeline::before {
        display: none;
    }

    .milestone-item {
        min-width: 100px;
        padding: 1rem 0.5rem;
    }

    .milestone-badge {
        width: 64px;
        height: 64px;
        font-size: 1.1rem;
    }

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

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

    .cta {
        padding: 4rem 2rem;
        margin: 3rem 1rem;
        border-radius: var(--radius-lg);
    }
}

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

    .site-footer {
        padding: 40px 16px 20px;
    }

    .site-footer .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;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .phone-mockup {
        transform: scale(0.75);
    }

    .milestone-timeline {
        flex-direction: column;
        align-items: center;
    }

    .milestone-item {
        min-width: unset;
        width: 100%;
        max-width: 200px;
    }

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

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.feature-card,
.quote-card,
.pricing-card,
.platform,
.milestone-item,
.privacy-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.25s; }
.feature-card:nth-child(5) { animation-delay: 0.3s; }
.feature-card:nth-child(6) { animation-delay: 0.35s; }
.feature-card:nth-child(7) { animation-delay: 0.4s; }
.feature-card:nth-child(8) { animation-delay: 0.45s; }
.feature-card:nth-child(9) { animation-delay: 0.5s; }
.feature-card:nth-child(10) { animation-delay: 0.55s; }

.quote-card:nth-child(1) { animation-delay: 0.1s; }
.quote-card:nth-child(2) { animation-delay: 0.2s; }
.quote-card:nth-child(3) { animation-delay: 0.3s; }
.quote-card:nth-child(4) { animation-delay: 0.4s; }

.milestone-item:nth-child(1) { animation-delay: 0.1s; }
.milestone-item:nth-child(2) { animation-delay: 0.2s; }
.milestone-item:nth-child(3) { animation-delay: 0.3s; }
.milestone-item:nth-child(4) { animation-delay: 0.4s; }
.milestone-item:nth-child(5) { animation-delay: 0.5s; }
.milestone-item:nth-child(6) { animation-delay: 0.6s; }

.privacy-card:nth-child(1) { animation-delay: 0.1s; }
.privacy-card:nth-child(2) { animation-delay: 0.2s; }
.privacy-card:nth-child(3) { animation-delay: 0.3s; }
.privacy-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   DARK MODE SUPPORT
   ============================================ */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #1a1008;
        --background-alt: #241a10;
        --background-warm: #2D1B00;
        --text: #FAF0E6;
        --text-secondary: #BFA88A;
        --text-light: #8C7A66;
        --border: #3D2E1E;
        --border-light: #2D200F;
    }

    .feature-card,
    .pricing-card,
    .platform,
    .faq-item,
    .privacy-card {
        background: var(--background-alt);
    }

    .feature-card.highlight {
        background: linear-gradient(135deg, rgba(255, 160, 0, 0.06) 0%, rgba(45, 27, 0, 0.8) 100%);
    }

    .phone-frame {
        background: linear-gradient(180deg, #3D2E1E 0%, #241a10 100%);
    }

    .privacy-section {
        background: var(--background-alt);
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    nav,
    .cta,
    footer,
    .more-apps,
    .bg-blobs {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
        background: white;
    }
}
