/* ============================================
   GeoFilterX - Cartographic Digital Aesthetic
   ============================================ */

:root {
    /* Color System - Nautical/Cartographic */
    --navy-deep: #0A1628;
    --navy-medium: #152238;
    --navy-light: #1E2D45;
    --seafoam: #3DD9B3;
    --seafoam-light: #5FE5C4;
    --earth: #D4A574;
    --coral: #FF6B6B;
    --cream: #FFF8F0;
    --fog: #E8EEF2;

    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'IBM Plex Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Animation */
    --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   Topographic Background Animation
   ============================================ */

.topo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.topo-layer {
    width: 100%;
    height: 100%;
}

.contour {
    stroke: var(--seafoam);
    stroke-width: 2;
    fill: none;
    animation: contourPulse 8s ease-in-out infinite;
    opacity: 0.3;
}

.contour:nth-child(1) { animation-delay: 0s; }
.contour:nth-child(2) { animation-delay: 0.5s; }
.contour:nth-child(3) { animation-delay: 1s; }
.contour:nth-child(4) { animation-delay: 1.5s; }
.contour:nth-child(5) { animation-delay: 2s; }

@keyframes contourPulse {
    0%, 100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scaleY(1.05);
        opacity: 0.5;
    }
}

/* ============================================
   Floating Flag Particles
   ============================================ */

.flag-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.flag-particle {
    position: absolute;
    font-size: 2rem;
    animation: floatFlag 20s linear infinite;
    opacity: 0.1;
}

@keyframes floatFlag {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   Navigation
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(61, 217, 179, 0.1);
    animation: slideDown 0.6s var(--ease-smooth);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cream);
}

.logo-icon {
    font-size: 1.75rem;
    animation: rotateGlobe 10s linear infinite;
}

@keyframes rotateGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.nav-link {
    color: var(--fog);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--seafoam);
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
    color: var(--seafoam);
}

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

.cta-link {
    background: var(--coral);
    color: var(--cream);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    background: #FF5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.hero-content {
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(61, 217, 179, 0.1);
    border: 1px solid var(--seafoam);
    color: var(--seafoam);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--seafoam) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--seafoam) 0%, var(--coral) 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--fog);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--coral);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
}

.btn-primary:hover {
    background: #FF5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--seafoam);
    border: 2px solid var(--seafoam);
}

.btn-secondary:hover {
    background: var(--seafoam);
    color: var(--navy-deep);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--seafoam);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--fog);
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(61, 217, 179, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Hero Visual - Browser Mockup
   ============================================ */

.hero-visual {
    animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.mockup-container {
    position: relative;
    perspective: 1000px;
}

.browser-mockup {
    background: var(--navy-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(61, 217, 179, 0.2);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s var(--ease-smooth);
}

.browser-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.browser-header {
    background: var(--navy-medium);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(61, 217, 179, 0.1);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--earth);
    opacity: 0.5;
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
    flex: 1;
    background: var(--navy-deep);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--fog);
    opacity: 0.7;
}

.browser-content {
    padding: 2rem;
    min-height: 400px;
}

.tweet-demo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tweet-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(61, 217, 179, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(61, 217, 179, 0.1);
    animation: tweetSlideIn 0.5s var(--ease-smooth) both;
}

.tweet-item:nth-child(1) { animation-delay: 0.6s; }
.tweet-item:nth-child(2) { animation-delay: 0.8s; }
.tweet-item:nth-child(3) { animation-delay: 1s; }

@keyframes tweetSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--seafoam), var(--earth));
    flex-shrink: 0;
}

.tweet-content {
    flex: 1;
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tweet-name {
    font-weight: 600;
    color: var(--cream);
    font-size: 0.95rem;
}

.country-flag {
    font-size: 1.2rem;
    animation: flagWave 2s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.tweet-handle {
    color: var(--fog);
    opacity: 0.6;
    font-size: 0.85rem;
}

.tweet-text {
    color: var(--fog);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   Problem Section
   ============================================ */

.problem-section {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem;
    text-align: center;
}

.problem-content {
    margin-top: var(--space-md);
}

.problem-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--fog);
}

.problem-highlight {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-top: 2rem;
    color: var(--seafoam);
}

/* ============================================
   Features Grid
   ============================================ */

.features {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--seafoam);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 45, 69, 0.4);
    border: 1px solid rgba(61, 217, 179, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 217, 179, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--seafoam);
    box-shadow: 0 20px 40px rgba(61, 217, 179, 0.2);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--fog);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-detail {
    display: inline-block;
    background: rgba(61, 217, 179, 0.1);
    color: var(--seafoam);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--seafoam);
    position: relative;
    z-index: 1;
}

/* Staggered animation for feature cards */
.feature-card {
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease-smooth) both;
}

.feature-card[data-feature="1"] { animation-delay: 0.1s; }
.feature-card[data-feature="2"] { animation-delay: 0.2s; }
.feature-card[data-feature="3"] { animation-delay: 0.3s; }
.feature-card[data-feature="4"] { animation-delay: 0.4s; }
.feature-card[data-feature="5"] { animation-delay: 0.5s; }
.feature-card[data-feature="6"] { animation-delay: 0.6s; }

/* ============================================
   How It Works - Steps
   ============================================ */

.how-it-works {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: rgba(30, 45, 69, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(61, 217, 179, 0.2);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--seafoam), var(--coral));
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.step-item:hover {
    transform: translateX(10px);
    border-color: var(--seafoam);
}

.step-item:hover::before {
    opacity: 1;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(61, 217, 179, 0.2);
    line-height: 1;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.step-description {
    color: var(--fog);
    line-height: 1.7;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 4rem;
    opacity: 0.8;
}

/* ============================================
   Privacy Section
   ============================================ */

.privacy {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem;
}

.privacy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(30, 45, 69, 0.3);
    border: 2px solid rgba(61, 217, 179, 0.3);
    border-radius: 24px;
    padding: 4rem;
}

.privacy-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.privacy-description {
    color: var(--fog);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--fog);
}

.privacy-icon {
    color: var(--seafoam);
    font-weight: 700;
    font-size: 1.2rem;
}

.privacy-link {
    color: var(--seafoam);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-smooth);
}

.privacy-link:hover {
    gap: 1rem;
    color: var(--seafoam-light);
}

.privacy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-graphic {
    width: 280px;
    height: 320px;
}

.shield-svg {
    width: 100%;
    height: 100%;
    color: var(--seafoam);
    filter: drop-shadow(0 0 40px rgba(61, 217, 179, 0.3));
    animation: shieldPulse 3s ease-in-out infinite;
}

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

/* ============================================
   Use Cases
   ============================================ */

.use-cases {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(30, 45, 69, 0.3);
    border: 1px solid rgba(61, 217, 179, 0.2);
    border-radius: 16px;
    transition: all 0.4s var(--ease-smooth);
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: var(--seafoam);
    background: rgba(30, 45, 69, 0.5);
}

.use-case-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.use-case-card p {
    color: var(--fog);
    line-height: 1.6;
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--fog);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

.cta-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--fog);
}

.cta-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.world-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-globe {
    font-size: 12rem;
    animation: rotateGlobe 10s linear infinite;
    filter: drop-shadow(0 0 60px rgba(61, 217, 179, 0.4));
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(61, 217, 179, 0.2);
    background: rgba(10, 22, 40, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--fog);
    opacity: 0.7;
}

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

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--seafoam);
}

.footer-column a {
    display: block;
    color: var(--fog);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.footer-column a:hover {
    color: var(--seafoam);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 217, 179, 0.1);
    text-align: center;
    color: var(--fog);
    opacity: 0.6;
    font-size: 0.9rem;
}

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

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
    }

    .hero-visual {
        order: -1;
    }

    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        font-size: 3rem;
    }

    .privacy-container {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .final-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        text-align: center;
    }

    .cta-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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

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

    .rotating-globe {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .browser-content {
        padding: 1rem;
    }

    .privacy-container {
        padding: 2rem;
    }
}
