/* ===== CSS Variables ===== */
:root {
    --primary-orange: #F97316;
    --primary-orange-dark: #EA580C;
    --primary-teal: #10B981;
    --primary-teal-dark: #059669;
    --primary-pink: #EC4899;
    --primary-blue: #3B82F6;
    --primary-purple: #8B5CF6;
    
    --bg-light: #E0F7FA;
    --bg-gradient-start: #E8F8FB;
    --bg-gradient-mid: #D4F1F9;
    --bg-gradient-end: #B8E8F5;
    
    --text-dark: #1F2937;
    --text-gray: #4B5563;
    --text-light: #9CA3AF;
    --text-muted: #6B7280;
    
    --white: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-bg-glass: rgba(255, 255, 255, 0.8);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.navbar.scrolled {
    padding: 12px 24px;
    box-shadow: var(--shadow-sm);
}

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

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

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-orange);
}

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

.nav-links a {
    font-weight: 600;
    color: var(--text-gray);
    transition: color var(--transition-fast);
}

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

.btn-nav {
    padding: 10px 24px;
    background: var(--primary-orange);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all var(--transition-fast);
}

.btn-nav:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

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

.mobile-menu a {
    font-weight: 600;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.mobile-menu a:hover {
    background: var(--bg-light);
}

.btn-mobile {
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 45%;
    animation: wave-rotate 20s linear infinite;
}

.wave-1 {
    top: -50%;
    left: -50%;
    opacity: 0.5;
}

.wave-2 {
    top: -60%;
    left: -40%;
    opacity: 0.3;
    animation-delay: -5s;
    animation-duration: 25s;
}

.wave-3 {
    top: -40%;
    left: -60%;
    opacity: 0.2;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes wave-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.hero-content {
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

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

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

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    transition: all var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--text-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: cover;
    background: var(--bg-gradient-start);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.float-card span {
    font-size: 1.25rem;
}

.float-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: -2s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.scroll-arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== Journey Section ===== */
.journey-section {
    padding: 100px 24px;
    background: var(--white);
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 16px;
}

/* Journey Steps */
.journey-step {
    padding: 60px 0;
}

.step-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.step-container.reverse {
    direction: rtl;
}

.step-container.reverse > * {
    direction: ltr;
}

.step-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.step-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.step-headline {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.step-description {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-gray);
}

/* Step Visuals */
.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.2s;
}

.step-visual.visible {
    opacity: 1;
    transform: translateY(0);
}

.phone-mockup-small {
    width: 260px;
    background: var(--text-dark);
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-xl);
}

.phone-mockup-small img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    aspect-ratio: 9/19;
    object-fit: cover;
    background: var(--bg-gradient-start);
}

.phone-stack {
    position: relative;
    width: 300px;
    height: 500px;
}

.phone-stack .phone-back {
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(8deg);
    opacity: 0.9;
}

.phone-stack .phone-front {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 2;
}

.chat-bubble-demo {
    position: absolute;
    bottom: -20px;
    right: -40px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 260px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-top-left-radius: 4px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.bubble-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chat-bubble-demo p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===== Privacy Section ===== */
.privacy-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

.privacy-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.privacy-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 16px;
}

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

.privacy-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.privacy-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.shield-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.shield-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.privacy-card h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.privacy-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-features li {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.privacy-features strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.privacy-features p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Safety Card */
.safety-card {
    display: flex;
    flex-direction: column;
}

.safety-icon {
    width: 72px;
    height: 72px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.safety-card h3 {
    text-align: left;
    margin-bottom: 12px;
}

.safety-description {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.safety-notice {
    background: rgba(249, 115, 22, 0.05);
    border-left: 4px solid var(--primary-orange);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 24px;
}

.safety-notice p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.safety-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-gray);
}

/* ===== Waitlist Section ===== */
.waitlist-section {
    padding: 100px 24px;
    background: var(--white);
}

.waitlist-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.waitlist-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.waitlist-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.waitlist-content h2 {
    margin-bottom: 16px;
}

.waitlist-content > p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.waitlist-form {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--primary-orange);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-xl);
    animation: fade-in-up 0.5s ease-out;
}

.success-message.show {
    display: block;
}

.success-message svg {
    margin: 0 auto 16px;
}

.success-message h3 {
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-muted);
}

.waitlist-visual {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out 0.2s;
}

.waitlist-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.waitlist-visual img {
    max-width: 280px;
    animation: float 4s ease-in-out infinite;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    font-style: italic;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .step-container,
    .step-container.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-features {
        align-items: center;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .waitlist-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .waitlist-visual {
        order: -1;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .float-card {
        display: none;
    }
    
    .phone-stack {
        width: 220px;
        height: 400px;
    }
    
    .phone-mockup-small {
        width: 200px;
    }
    
    .chat-bubble-demo {
        display: none;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 32px;
        padding: 8px;
    }
    
    .phone-screen {
        border-radius: 26px;
    }
    
    .privacy-card {
        padding: 24px;
    }
}

/* ===== Animations for scroll reveal ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
