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

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --accent-gold: #E6C27A;
    /* warmer pastel amber */
    --gold-light: #F3E1A3;
    --gold-dark: #B8944A;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-gold: linear-gradient(135deg, #E6C27A 0%, #F3E1A3 50%, #B8944A 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateX(-50%) translateY(-2px);
}

.nav {
    animation: floatNav 6s ease-in-out infinite;
}

@keyframes floatNav {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 30px;
}

.nav-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.nav-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-white);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 16px rgba(230, 194, 122, 0.22);
    border: 1px solid rgba(230, 194, 122, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(230, 194, 122, 0.26);
    border-color: rgba(230, 194, 122, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(230, 194, 122, 0.07) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23e6c27a" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(230, 194, 122, 0.22);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 194, 122, 0.28);
}

/* Hero CTA group and secondary CTA */
.hero-cta-group {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta.hero-cta-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.hero-cta.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
}

.glass-orb {
    width: 300px;
    height: 300px;
    background: var(--gradient-glass);
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    position: relative;
    animation: float 6s ease-in-out infinite;
    box-shadow:
        0 0 42px rgba(230, 194, 122, 0.14),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.floating-logo {
    position: absolute;
    width: 120px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatLogo 6s ease-in-out infinite;
    z-index: 10;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.floating-logo:hover {
    transform: translate(-50%, -50%) scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(230, 194, 122, 0.2));
}

.glass-orb::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Sections */
.shift-section,
.why-matters,
.how-works,
.final-cta {
    padding: 100px 0;
    position: relative;
}

/* Quick Win: Free AI Files */
.quick-win {
    background: var(--secondary-black);
}

.form-card {
    margin: 30px auto 0;
    max-width: 720px;
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.email-form .input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.email-form input[type="email"] {
    flex: 1 1 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border-radius: 14px;
    padding: 16px 16px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.email-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-form input[type="email"]:focus {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.email-form input[type="url"] {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border-radius: 14px;
    padding: 16px 16px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.email-form input[type="url"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-form input[type="url"]:focus {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.email-form .optional-field {
    margin-top: 12px;
}

.email-form .cta-button {
    flex: 0 0 auto;
    white-space: nowrap;
    display: block;
    margin: 12px auto 0;
}

.form-note {
    margin-top: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
    text-align: center;
}

.form-privacy {
    color: var(--accent-gold);
}

.form-success {
    margin-top: 12px;
    color: #7CFFB2;
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 1px, 1px);
    border: 0;
}

.shift-section {
    background: var(--secondary-black);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtext,
.section-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why it Matters Section */
.why-matters {
    background: var(--primary-black);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.stat-card {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

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

.highlight-text {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

/* How it Works Section */
.how-works {
    background: var(--secondary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 760px;
    /* constrain width so cards are smaller */
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 1 / 1;
    /* make cards square-ish on desktop */
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(230, 194, 122, 0.08);
    border-color: rgba(230, 194, 122, 0.28);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Style for inline SVG icons used in feature cards */
.feature-icon {
    color: var(--accent-gold);
}

.feature-icon .icon {
    width: 48px;
    height: 48px;
    display: inline-block;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: var(--primary-black);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-white);
    line-height: 1.3;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(230, 194, 122, 0.22);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 194, 122, 0.28);
}

.cta-secondary {
    margin-top: 10px;
}

/* Pricing Section */
.pricing-section {
    background: var(--secondary-black);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(230, 194, 122, 0.08);
    border-color: rgba(230, 194, 122, 0.28);
}

.pricing-card-featured {
    border-color: rgba(230, 194, 122, 0.4);
    box-shadow: 0 12px 40px rgba(230, 194, 122, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(230, 194, 122, 0.3);
}

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

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-left: 8px;
}

.plan-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.plan-features {
    margin-bottom: 40px;
    text-align: left;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list .feature-item {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    border-radius: 0;
    text-align: left;
    aspect-ratio: auto;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
    margin: 0;
    position: relative;
}

.features-list .feature-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: none;
}

.features-list .feature-item::before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 194, 122, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(230, 194, 122, 0.3);
}

.pricing-cta {
    margin-top: auto;
}

/* Features Comparison Section */
.features-comparison {
    background: var(--primary-black);
    padding: 100px 0;
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-black);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(230, 194, 122, 0.08);
    border-color: rgba(230, 194, 122, 0.2);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

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

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

@keyframes floatLogo {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

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

@keyframes floatLogoMobile {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .glass-orb {
        width: 250px;
        height: 250px;
    }

    .floating-logo {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .nav {
        top: 15px;
        width: calc(100% - 30px);
        border-radius: 40px;
    }

    .nav-container {
        height: 50px;
        padding: 0 20px;
        position: relative;
    }

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 20px;
        margin-top: 10px;
        flex-direction: column;
        gap: 15px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        text-align: center;
        font-size: 16px;
        padding: 12px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(232, 210, 124, 0.3);
    }

    .nav-cta {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .glass-orb {
        width: 200px;
        height: 200px;
    }

    .floating-logo {
        width: 80px;
        animation: floatLogoMobile 6s ease-in-out infinite;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: none;
        /* allow full width on mobile */
        gap: 24px;
    }

    /* Let feature cards size naturally on mobile */
    .feature-item {
        aspect-ratio: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Fix form overflow on mobile */
    .email-form .input-group {
        flex-direction: column;
        gap: 12px;
    }

    .email-form .cta-button {
        width: 100%;
        text-align: center;
    }
}

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

    .nav {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 30px;
    }

    .nav-container {
        height: 45px;
        padding: 0 15px;
    }

    .mobile-menu-btn {
        width: 35px;
        height: 35px;
    }

    .hamburger-line {
        width: 18px;
    }

    .nav-links {
        padding: 15px;
        margin-top: 8px;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 16px;
    }

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

    .hero {
        padding-top: 100px;
    }

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

    .floating-logo {
        width: 70px;
    }

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

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

    .nav-cta,
    .hero-cta,
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Additional form mobile fixes for very small screens */
    .form-card {
        margin: 20px auto 0;
        padding: 20px;
    }

    .email-form input[type="email"] {
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    /* Pricing page mobile styles */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    background: var(--secondary-black);
    padding: 100px 0;
}

.privacy-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.privacy-intro {
    margin-bottom: 50px;
    text-align: left;
}

.privacy-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-section {
    margin-bottom: 50px;
}

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

.privacy-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-white);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.privacy-subsection {
    margin-bottom: 35px;
}

.privacy-subsection:last-child {
    margin-bottom: 0;
}

.privacy-subsection-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.privacy-data-type,
.privacy-disclosure {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.privacy-data-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.privacy-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-list li {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.privacy-list li::before {
    content: "•";
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-list li strong {
    color: var(--text-white);
    font-weight: 600;
}

.privacy-link {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.privacy-last-updated {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 300;
}

/* Privacy Page Mobile Styles */
@media (max-width: 768px) {
    .privacy-card {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .privacy-section-title {
        font-size: 1.6rem;
    }

    .privacy-subsection-title {
        font-size: 1.2rem;
    }

    .privacy-data-type,
    .privacy-disclosure {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 30px 20px;
    }

    .privacy-section-title {
        font-size: 1.4rem;
    }

    .privacy-data-title {
        font-size: 1.1rem;
    }
}