/* Mocha Catppuccin Color Palette */
:root {
    /* Mocha Catppuccin Colors */
    --rosewater: #f5e0dc;
    --flamingo: #f2cdcd;
    --pink: #f5c2e7;
    --mauve: #cba6f7;
    --red: #f38ba8;
    --maroon: #eba0ac;
    --peach: #fab387;
    --yellow: #f9e2af;
    --green: #a6e3a1;
    --teal: #94e2d5;
    --sky: #89dceb;
    --sapphire: #74c7ec;
    --blue: #89b4fa;
    --lavender: #b4befe;
    --text: #cdd6f4;
    --subtext1: #bac2de;
    --subtext0: #a6adc8;
    --overlay2: #9399b2;
    --overlay1: #7f849c;
    --overlay0: #6c7086;
    --surface2: #585b70;
    --surface1: #45475a;
    --surface0: #313244;
    --base: #1e1e2e;
    --mantle: #181825;
    --crust: #11111b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--base);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 27, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--surface0);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 17, 27, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem; /* Increased from 1.5rem */
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    justify-self: start;
}

.nav-brand:hover {
    text-decoration: none;
}

.brand-icon {
    width: 2rem;
    height: 2rem;
    margin-right: -0.5rem;
    filter: drop-shadow(0 0 10px rgba(166, 227, 161, 0.4));
}

.brand-text {
    color: #a6e3a1; /* Catppuccin green */
    font-weight: 800; /* Make it bolder for more emphasis */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-self: center;
}

.nav-links {
    display: contents; /* On desktop, nav-links acts transparent */
}

.nav-link {
    text-decoration: none;
    color: var(--subtext1);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    transition: width 0.3s ease;
}

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

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

.btn-beta {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--crust);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.btn-beta:hover::before {
    left: 100%;
}

.btn-beta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(166, 227, 161, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1rem;
}

.btn-signup {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--surface1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-signup:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 227, 161, 0.2);
}

.mobile-menu-toggle {
    display: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hide mobile nav actions on desktop */
.mobile-nav-actions {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--base);
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.8), rgba(17, 17, 27, 0.9));
    z-index: 2;
}

.hero-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 6rem 1rem 1rem;
    position: relative;
    z-index: 5; /* Above aurora background */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 20rem;
    position: relative;
    z-index: 5; /* Above aurora background */
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(166, 227, 161, 0.1);
    border: 1px solid rgba(166, 227, 161, 0.3);
    color: var(--green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(166, 227, 161, 0.3); }
    50% { box-shadow: 0 0 40px rgba(166, 227, 161, 0.6); }
}

.hero-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    color: var(--text);
    white-space: nowrap;
    overflow: visible;
    text-align: center;
    width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, var(--green), var(--teal), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--subtext1);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--crust);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(166, 227, 161, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--surface1);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(166, 227, 161, 0.2);
}

.social-proof {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.proof-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.25rem;
}

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

/* Coming Soon Badge */
.feature-badge-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow), var(--peach));
    color: var(--base);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Privacy Policy Styling */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
}

.privacy-section {
    margin-bottom: 4rem;
    background: rgba(69, 71, 90, 0.2);
    border: 1px solid var(--surface1);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    background: rgba(69, 71, 90, 0.3);
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(166, 227, 161, 0.1);
}

.privacy-section h2 {
    color: var(--green);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--surface1);
}

.privacy-subsection {
    margin-bottom: 2.5rem;
}

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

.privacy-subsection h3 {
    color: var(--lavender);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--blue);
}

.privacy-subsection p {
    margin-bottom: 1rem;
    text-align: justify;
    color: var(--subtext1);
    font-size: 0.95rem;
    text-indent: 1.5em;
}

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

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--surface1);
    font-size: 0.9rem;
    color: var(--subtext0);
}

.privacy-footer p {
    margin-bottom: 0.5rem;
    text-indent: 0;
}

/* Responsive privacy styling */
@media (max-width: 768px) {
    .privacy-container {
        padding: 2rem 1rem;
    }
    
    .privacy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-subsection h3 {
        font-size: 1.1rem;
    }
    
    .privacy-subsection p {
        text-align: left;
        text-indent: 0;
    }
}


/* Screenshot Section */
.screenshot-section {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6; /* Above aurora background */
    max-width: 1200px;
    width: 90vw;
    pointer-events: none;
}

.screenshot-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 0 0 1px rgba(166, 227, 161, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 40px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface0) 0%, var(--surface1) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(166, 227, 161, 0.3);
    color: var(--subtext0);
    z-index: 2;
    position: relative;
}

.screenshot-placeholder i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.screenshot-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
}

.screenshot-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: 1;
    border-radius: 20px;
    filter: blur(0.5px);
}

.screenshot-glow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: 
        radial-gradient(
            ellipse 120% 100% at 50% 50%,
            rgba(166, 227, 161, 0.1) 0%,
            rgba(166, 227, 161, 0.05) 50%,
            transparent 80%
        );
    border-radius: 24px;
    filter: blur(1px);
}

.screenshot-glow::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: 
        linear-gradient(
            135deg,
            rgba(166, 227, 161, 0.15) 0%,
            rgba(166, 227, 161, 0.05) 50%,
            rgba(166, 227, 161, 0.15) 100%
        );
    border-radius: 18px;
    animation: highlight-shimmer 6s ease-in-out infinite;
    filter: blur(0.3px);
}

@keyframes enhanced-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.08) rotate(0.5deg);
    }
}

@keyframes highlight-shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-2px) translateY(-1px);
    }
    33% {
        opacity: 0.7;
        transform: translateX(1px) translateY(1px);
    }
    66% {
        opacity: 0.5;
        transform: translateX(-1px) translateY(2px);
    }
}

/* Responsive screenshot section */
@media (max-width: 1200px) {
    .screenshot-section {
        max-width: 700px;
        width: 85vw;
    }
}

@media (max-width: 768px) {
    .screenshot-section {
        max-width: 600px;
        width: 95vw;
        bottom: 8%; /* Move further down to avoid blocking buttons */
    }
    
    .screenshot-glow {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
    }
    
    .screenshot-glow::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem) !important;
        line-height: 1.1;
        white-space: normal; /* Allow wrapping on very small screens */
    }

    .hero-container {
        padding: 1.5rem 0 !important; /* Further reduce for small screens */
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .screenshot-section {
        width: 98vw;
        bottom: 2%;
    }

    .feature-card,
    .example-card {
        padding: 1.5rem 1rem;
    }

    .feature-card h3,
    .example-header h3 {
        font-size: 1.1rem;
    }
}

/* Height-responsive screenshot adjustments */
@media (max-height: 900px) {
    .screenshot-section {
        max-width: 800px;
        width: 75vw;
        bottom: -3%;
    }
}

@media (max-height: 700px) {
    .screenshot-section {
        max-width: 600px;
        width: 65vw;
        bottom: -1%;
    }
}

@media (max-height: 600px) {
    .screenshot-section {
        max-width: 500px;
        width: 55vw;
        bottom: 1%;
    }
}

@media (max-height: 500px) {
    .screenshot-section {
        max-width: 400px;
        width: 45vw;
        bottom: 3%;
    }
}

/* Combined height and width media queries for very small screens */
@media (max-width: 768px) and (max-height: 700px) {
    .screenshot-section {
        max-width: 450px;
        width: 60vw;
        bottom: 5%;
    }
}

@media (max-width: 480px) and (max-height: 600px) {
    .screenshot-section {
        max-width: 350px;
        width: 50vw;
        bottom: 4%;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px; /* Improved touch target */
    }

    .nav-brand {
        font-size: 1.3rem; /* Increased from 1.1rem */
    }

    .brand-text {
        display: none; /* Hide text on very small screens, show only icon */
    }
}

/* Video Section */
.video-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.8), rgba(17, 17, 27, 0.6));
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.video-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description {
    font-size: 1.25rem;
    color: var(--subtext1);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-video-play {
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: var(--crust);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-video-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(148, 226, 213, 0.4);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--mantle);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--subtext1);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(69, 71, 90, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 227, 161, 0.05), rgba(148, 226, 213, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(166, 227, 161, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--crust);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--subtext1);
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 227, 161, 0.1), rgba(148, 226, 213, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Examples Section */
.examples-section {
    padding: 8rem 0;
    background: var(--base);
}

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

.example-card {
    background: rgba(69, 71, 90, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(166, 227, 161, 0.15);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.example-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crust);
    font-size: 1.25rem;
}

.example-header h3 {
    color: var(--text);
    font-weight: 600;
    font-size: 1.25rem;
}

.example-conversation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-message,
.ai-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.user-message {
    background: rgba(69, 71, 90, 0.4);
    border: 1px solid var(--surface2);
}

.user-message i {
    color: var(--blue);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.user-message span {
    color: var(--text);
    font-style: italic;
}

.ai-message {
    background: rgba(166, 227, 161, 0.1);
    border: 1px solid rgba(166, 227, 161, 0.3);
}

.ai-message i {
    color: var(--green);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ai-message span {
    color: var(--text);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: var(--base);
}

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

.testimonial-card {
    background: rgba(69, 71, 90, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(166, 227, 161, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crust);
    font-weight: 700;
}

.author-info h4 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--subtext1);
    font-size: 0.875rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--yellow);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--mantle), var(--crust));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--subtext1);
    margin-bottom: 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--crust);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(166, 227, 161, 0.4);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--subtext0);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--crust);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .brand-icon {
    font-size: 2rem;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--subtext1);
    line-height: 1.6;
}

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

.link-group h4 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: var(--subtext1);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--surface0);
}

.footer-bottom p {
    color: var(--subtext0);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--surface1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--subtext1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--green);
    color: var(--crust);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 27, 0.8);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--surface0);
    border: 1px solid var(--surface1);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modal-appear 0.3s ease-out;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--surface1);
}

.modal-header h2 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--subtext1);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.modal-close:hover {
    color: var(--text);
    background: var(--surface1);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: var(--subtext1);
    margin-bottom: 2rem;
    text-align: center;
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--surface1);
    border: 1px solid var(--surface2);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(166, 227, 161, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--subtext0);
    font-size: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--crust);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 227, 161, 0.3);
}

.beta-benefits {
    background: rgba(69, 71, 90, 0.3);
    border: 1px solid var(--surface1);
    border-radius: 12px;
    padding: 1.5rem;
}

.beta-benefits h4 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.beta-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.beta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--subtext1);
}

.beta-benefits li i {
    color: var(--green);
}

/* Contact Form Enhancements */
.contact-form-container {
    background: rgba(69, 71, 90, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 227, 161, 0.05), rgba(148, 226, 213, 0.05));
    z-index: -1;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--subtext1);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--surface1);
    border: 2px solid var(--surface2);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(166, 227, 161, 0.1);
    background: var(--surface0);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--subtext0);
    font-size: 1rem;
    transition: color 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group:has(input:focus) .form-icon,
.form-group:has(select:focus) .form-icon,
.form-group:has(textarea:focus) .form-icon {
    color: var(--green);
}

/* Textarea specific styles - no icon */
.form-group textarea {
    padding-left: 1rem !important;
}

.form-group:has(label) .form-icon {
    top: calc(50% + 0.75rem);
}

.submit-button {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--crust);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

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

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 227, 161, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    color: var(--subtext0);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(69, 71, 90, 0.3);
    border-radius: 8px;
    border: 1px solid var(--surface1);
}

.form-note i {
    color: var(--green);
    margin-right: 0.5rem;
}

/* Mobile form adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--base) 0%, var(--mantle) 50%, var(--crust) 100%);
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--subtext1);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(166, 227, 161, 0.1);
    border: 1px solid rgba(166, 227, 161, 0.3);
    color: var(--green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    animation: pulse-glow 3s ease-in-out infinite;
}

.pricing-plans {
    padding: 4rem 0 8rem;
    background: var(--mantle);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: rgba(69, 71, 90, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(166, 227, 161, 0.2);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(166, 227, 161, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--crust);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--surface1);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
}

.period {
    font-size: 1rem;
    color: var(--subtext1);
    font-weight: 500;
}

.plan-description {
    color: var(--subtext1);
    font-size: 1rem;
    line-height: 1.6;
}

.plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--green);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.btn-plan-select {
    width: 100%;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--crust);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-plan-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 227, 161, 0.3);
}

.btn-plan-select.secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--surface1);
}

.btn-plan-select.secondary:hover {
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 10px 30px rgba(166, 227, 161, 0.15);
}

.pricing-faq {
    padding: 8rem 0;
    background: var(--base);
}

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

.faq-item {
    background: rgba(69, 71, 90, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(166, 227, 161, 0.1);
}

.faq-item h4 {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--subtext1);
    line-height: 1.6;
}

.nav-link.active {
    color: var(--green);
}

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

/* Enhanced Mobile Support */

/* Hide mobile menu by default */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
    padding: 0.5rem;
    background: none;
    border: none;
    transition: all 0.3s ease;
    margin-left: auto; /* Push to right side */
}

.mobile-menu-toggle:hover {
    color: var(--green);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        grid-template-columns: none !important;
        gap: 1rem !important;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        right: 0%;
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 2rem 4rem 2rem; /* Add top padding for navbar height and bottom padding */
        gap: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-y: auto;
    }

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

    .nav-menu .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: left;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--surface0);
        border-radius: 0;
        margin: 0;
        color: var(--text) !important;
        text-decoration: none !important;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.3s ease;
        display: block;
    }

    .nav-menu .nav-link:hover {
        background: var(--surface0);
        color: var(--green) !important;
        border-bottom-color: var(--green);
    }

    .nav-menu.active .nav-link {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu.active .nav-links .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-links .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-links .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-links .nav-link:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-links .nav-link:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-links .nav-link:nth-child(6) { transition-delay: 0.35s; }

    .mobile-nav-actions {
        margin-top: auto; /* Push to bottom of sidebar */
        display: flex !important; /* Override desktop hidden */
        flex-direction: column;
        gap: 1rem;
        border-top: 1px solid var(--surface0);
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .mobile-nav-actions .mobile-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu.active .mobile-nav-actions .mobile-btn:first-child {
        transition-delay: 0.45s;
    }

    .nav-menu.active .mobile-nav-actions .mobile-btn:last-child {
        transition-delay: 0.5s;
    }

    .nav-menu.active .mobile-nav-actions .mobile-btn {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 10000;
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active {
        transform: rotate(90deg);
    }

    .mobile-menu-toggle.active i::before {
        content: "\f00d"; /* FontAwesome times icon */
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 8rem);
        white-space: normal;
        width: 90%;
        line-height: 1.1;
    }

    .hero-container {
        padding: 2rem 0 6rem 0 !important; /* Add bottom padding to make room for buttons */
        min-height: 60vh; /* Ensure enough height for content and buttons */
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem; /* Add horizontal padding */
        max-width: calc(100vw - 2rem); /* Prevent edge-to-edge spanning */
        margin: 2rem auto 4rem auto; /* Center and add bottom margin to clear screenshot */
        position: relative;
        z-index: 10; /* Ensure buttons are above screenshot */
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem; /* Reduce padding for mobile */
        font-size: 1rem; /* Slightly smaller text */
    }

    .nav-actions .btn-signup,
    .nav-actions .btn-beta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .nav-actions {
        display: none; /* Hide desktop nav actions on mobile */
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 4rem;
        min-height: 80vh;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .example-card {
        padding: 1.5rem;
    }

    .example-conversation {
        gap: 1rem;
    }

    .user-message,
    .ai-message {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .proof-stats {
        justify-content: center;
        gap: 2rem;
    }

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

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 6rem);
        white-space: normal;
        width: 95%;
    }

    .hero-description {
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}