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

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --accent-purple: #6C63FF;
    --purple-light: #8B83FF;
    --purple-dark: #4A3FCC;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-purple: linear-gradient(135deg, #6C63FF 0%, #8B83FF 50%, #4A3FCC 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(108, 99, 255, 0.3);
}

.nav-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-purple);
    -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(108, 99, 255, 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-purple);
    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(108, 99, 255, 0.22);
    border: 1px solid rgba(108, 99, 255, 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(108, 99, 255, 0.26);
    border-color: rgba(108, 99, 255, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(ellipse at center, rgba(108, 99, 255, 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-purple);
    -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-purple);
    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(108, 99, 255, 0.22);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 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(108, 99, 255, 0.4);
}

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

.hero-phone-screenshot {
    width: 260px;
    height: auto;
    border-radius: 24px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(108, 99, 255, 0.1);
    transition: transform 0.3s ease;
}

.hero-phone-screenshot:hover {
    transform: scale(1.02);
}

/* Download Section */
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* QR Code */
.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-code-img {
    width: 180px;
    height: auto;
    border-radius: 12px;
}

.qr-code-text {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 400;
}

/* Download Badges */
.download-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-badges-center {
    justify-content: center;
}

.store-badge {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.store-badge img {
    height: 80px;
    width: auto;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* 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(108, 99, 255, 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(108, 99, 255, 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-purple);
}

.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-purple);
    -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-purple);
    -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-purple);
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

/* Team Credentials Section */
.team-credentials {
    background: var(--secondary-black);
    padding: 50px 0;
    text-align: center;
}

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

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.company-logo-item {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 35px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.28);
}

.company-logo {
    max-width: 100px;
    height: auto;
    filter: grayscale(30%) brightness(1.2);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.company-logo-item:hover .company-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* How it Works Section */
.how-works {
    background: var(--primary-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(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.28);
}

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

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

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

/* Blog Section */
.blog-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.28);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gradient-glass);
    border-bottom: 1px solid var(--glass-border);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
}

.blog-icon {
    color: var(--accent-purple);
    opacity: 0.6;
}

.blog-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.blog-date {
    color: var(--text-gray);
}

.blog-category {
    color: var(--accent-purple);
    font-weight: 500;
}

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

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-link:hover {
    color: var(--purple-light);
    transform: translateX(4px);
}

/* Blog Post Page */
.blog-post-content {
    background: var(--secondary-black);
    padding: 140px 0 100px;
    min-height: 100vh;
}

.blog-post-article {
    max-width: 800px;
    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);
}

.blog-post-article h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post-article h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-article p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post-article ul,
.blog-post-article ol {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-post-article li {
    margin-bottom: 10px;
}

.blog-post-article a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-article a:hover {
    color: var(--purple-light);
}

.blog-post-article strong {
    color: var(--text-white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 120px 0 80px;
    }

    .blog-post-article {
        padding: 40px 30px;
    }

    .blog-post-article h1 {
        font-size: 2rem;
    }

    .blog-post-article h2 {
        font-size: 1.6rem;
    }

    .blog-post-article h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog-post-article {
        padding: 30px 20px;
    }

    .blog-post-article h1 {
        font-size: 1.8rem;
    }
}

/* 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-purple);
    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(108, 99, 255, 0.22);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 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(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.28);
}

.pricing-card-featured {
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(108, 99, 255, 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-purple);
    -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-purple);
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(108, 99, 255, 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(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 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-purple);
    -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-purple);
}

/* 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(108, 99, 255, 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;
    }

    .company-logos {
        gap: 30px;
    }

    .company-logo-item {
        padding: 20px 30px;
        min-width: 150px;
    }

    .company-logo {
        max-width: 120px;
    }

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

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

    .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-purple);
    -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-purple);
    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-purple);
    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-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-link:hover {
    color: var(--purple-light);
    border-bottom-color: var(--purple-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;
    }
}

/* ========================================
   SIGNAL SCOUT - App Landing Page Styles
   ======================================== */

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

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(108, 99, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.3);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.12);
    border-radius: 14px;
    color: var(--accent-purple);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.steps-list {
    margin-top: 60px;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

.step-screenshot {
    display: flex;
    justify-content: center;
}

.step-phone {
    width: 280px;
    height: auto;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(108, 99, 255, 0.08);
    transition: transform 0.3s ease;
}

.step-phone:hover {
    transform: scale(1.03);
}

.step-text {
    padding: 20px 0;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Section Title SM override */
.section-title-sm {
    font-size: 1.5rem;
    color: var(--text-gray);
    background: none;
    -webkit-text-fill-color: var(--text-gray);
}

/* Footer Copyright */
.footer-copyright {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 12px;
}

/* Category Teaser (cycling) */
.category-teaser {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.category-teaser-static {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    white-space: nowrap;
}

.category-teaser-word {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    background: var(--cat-teaser-bg, rgba(108, 99, 255, 0.14));
    border: 1px solid var(--cat-teaser-border, rgba(108, 99, 255, 0.45));
    color: var(--cat-teaser-color, #a5b4fc);
    animation: teaserFadeIn 0.4s ease;
}

.category-teaser-word::after {
    content: '→';
    font-size: 11px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.category-teaser-word:hover {
    transform: translateY(-1px);
    background: var(--cat-teaser-bg-hover, rgba(108, 99, 255, 0.22));
    border-color: var(--cat-teaser-border-hover, rgba(108, 99, 255, 0.65));
}

.category-teaser-word:hover::after {
    transform: translateX(3px);
}

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

/* Signal Scout Responsive */
@media (max-width: 768px) {
    .qr-code {
        display: none;
    }

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

    .step-row,
    .step-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        direction: ltr;
    }

    .step-phone {
        width: 220px;
    }

    .hero-phone-screenshot {
        width: 200px;
    }

    .download-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .step-phone {
        width: 200px;
    }

    .hero-phone-screenshot {
        width: 170px;
    }
}

/* Social Badge */
.social-badge {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(108, 99, 255, 0.12);
    border: 1px solid rgba(108, 99, 255, 0.45);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(108, 99, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    animation: badgeFloat 5s ease-in-out infinite;
}

.social-badge:hover {
    background: rgba(108, 99, 255, 0.22);
    border-color: rgba(108, 99, 255, 0.7);
    box-shadow:
        0 12px 40px rgba(108, 99, 255, 0.25),
        0 0 0 1px rgba(108, 99, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    animation: none;
}

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

.social-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid rgba(108, 99, 255, 0.35);
    border-radius: 50%;
    color: #a5b4fc;
    flex-shrink: 0;
}

.social-badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.social-badge-label {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.social-badge-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.social-badge-arrow {
    color: #a5b4fc;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-badge:hover .social-badge-arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .social-badge {
        bottom: 20px;
        right: 16px;
        padding: 10px 14px;
        gap: 10px;
    }

    .social-badge-sub {
        display: none;
    }

    .social-badge-label {
        font-size: 12px;
    }
}
