@font-face {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Generalsans';
    src: url('https://moussamamadou.github.io/flip-plugin-horizontal-scroll/fonts/GeneralSans-Variable.ttf') format('truetype');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #FFBD5F;
    --primary-dark: #E5A84F;
    --primary-light: #FFD080;
    --primary-glow: rgba(255, 189, 95, 0.4);
    
    --bg-darkest: #0a0a0c;
    --bg-darker: #0f0f12;
    --bg-dark: #18181b;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-solid: #1f1f23;
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-elevated: rgba(255, 255, 255, 0.05);
    
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #a1a1aa;
    --text-dim: #52525b;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 189, 95, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    line-height: 1.6;
    background: var(--bg-darkest);
    min-height: 100vh;
}

/* Animated Background */
/* Animated Background */
.bg-gradient {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--bg-darkest); /* Fallback color */
background-image: url('images/play.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
pointer-events: none;
z-index: -1; /* Changed to -1 to ensure it's behind everything */
}

.bg-gradient::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5); /* Dark overlay to improve readability */
pointer-events: none;
}

.bg-gradient::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 189, 95, 0.15) 0%, transparent 50%),
radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 189, 95, 0.12) 0%, transparent 40%),
radial-gradient(ellipse 50% 30% at 50% 90%, rgba(255, 189, 95, 0.08) 0%, transparent 50%);
pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Generalsans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    position: relative;
    z-index: 1;
}

/* Navigation */
.nav {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.nav_top-wrapper {
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem clamp(1rem, 3vw, 2rem);
    display: flex;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.9) 0%, transparent 100%);
}

.nav_top {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    display: flex;
    position: relative;
}

.nav_link {
    color: #fff;
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    text-decoration: none;
    overflow: hidden;
    opacity: 0.75;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
}

.nav_link:hover {
    opacity: 1;
}

.nav_links {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
}

.nav_cta {
    background: var(--primary);
    color: var(--bg-darkest);
    padding: 0.6rem 1.2rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    opacity: 1;
    transition: all 0.3s ease;
}

.nav_cta:hover {
    background: var(--primary-light);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Animated Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-main, .logo-triangle {
    fill: var(--primary);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-main { transform-origin: 60px 60px; }
.logo-triangle { transform-origin: 183px 60px; }

.arrow-chevron, .arrow-bar {
    fill: var(--primary);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.arrow-chevron {
    transform: translateX(20px) scale(0.7);
    transform-origin: 50px 60px;
}
.arrow-bar {
    transform: translateX(-40px) scaleX(0.5);
    transform-origin: 100px 60px;
}

#animatedLogo:hover .logo-main,
#animatedLogo.active .logo-main {
    opacity: 0;
    transform: translateX(-15px) scale(0.85);
}
#animatedLogo:hover .logo-triangle,
#animatedLogo.active .logo-triangle {
    opacity: 0;
    transform: translateX(15px) scale(0.85);
}
#animatedLogo:hover .arrow-chevron,
#animatedLogo.active .arrow-chevron {
    opacity: 1;
    transform: translateX(0) scale(1);
}
#animatedLogo:hover .arrow-bar,
#animatedLogo.active .arrow-bar {
    opacity: 1;
    transform: translateX(0) scaleX(1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-darkest);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 189, 95, 0.05);
}

/* Reference Button */
.button_reference {
    z-index: 20;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #fff;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: .25rem;
    padding: .5rem .75rem;
    font-family: monospace;
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    line-height: 1em;
    text-decoration: none;
    display: flex;
    transition: background 0.3s ease;
}

.button_reference:hover {
    background-color: rgba(255,255,255,0.12);
}

.button_reference.fix-bottom-left {
    position: fixed;
    bottom: .5rem;
    left: .5rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 189, 95, 0.1);
    border: 1px solid rgba(255, 189, 95, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    text-align: center;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-darkest);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

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

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-price .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-features .x {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Testimonial Stars */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    color: var(--primary);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -16px;
    width: calc(100% - 64px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    transform: translateX(100%);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-grid,
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p,
.faq-answer-content {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Meet Steve Section */
.meet-steve {
    background: linear-gradient(180deg, rgba(255, 189, 95, 0.03) 0%, transparent 100%);
}

.meet-steve-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.meet-steve-image {
    position: relative;
}

.meet-steve-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.meet-steve-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.meet-steve-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.meet-steve-stats {
    display: flex;
    gap: 48px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* Endorsements */
.endorsements {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.endorsements svg {
    min-width: 150px;
}
.endorsements a:hover .st0 {
    fill:white !important;
}
.endorsement {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-elevated);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.endorsement img {
    height: 32px;
    width: auto;
}

.endorsement span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 189, 95, 0.05) 100%);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-section > .container > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
}

.cta-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-form-container > p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-elevated);
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 189, 95, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card-solid);
    color: var(--text-primary);
}

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

.form-submit {
    margin-top: 24px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-note a {
    color: var(--primary);
}

.form-note a:hover {
    color: var(--primary-light);
}
 /* Status Messages */
 .form-status {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
}

.form-status.error {
    display: block;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #e74c3c;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

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

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo-text .logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: fill 0.2s ease;
}

.social-links a:hover svg {
    fill: var(--bg-darkest);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* ================================================
   MOBILE MENU - Hamburger Button
   ================================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #000;
}

.mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #000;
}

/* ================================================
   MOBILE FLYOUT MENU
   ================================================ */
.mobile-flyout {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #FFBD5F;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-flyout.is-open {
    transform: translateX(0);
}

.mobile-flyout-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-flyout-link {
    color: #000 !important;
    font-family: 'Generalsans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    opacity: 1 !important;
    letter-spacing: 0.02em;
}

.mobile-flyout-link:hover {
    padding-left: 12px;
}

.mobile-flyout-link:last-child {
    border-bottom: none;
}

.mobile-flyout-link.mobile-cta {
    margin-top: 24px;
    background: #000;
    color: #FFBD5F !important;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
}

.mobile-flyout-link.mobile-cta:hover {
    padding-left: 24px;
    background: rgba(0, 0, 0, 0.85);
}

/* Overlay when menu is open */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-media {
        order: -1;
    }

    .features-grid,
    .pricing-cards,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .step:nth-child(2)::after {
        display: none;
    }


    .meet-steve-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .endorsements {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    /* Hide desktop nav links */
    .nav_links {
        display: none !important;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .section {
        padding: 70px 0;
    }

    .features-grid,
    .pricing-cards,
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step::after {
        display: none;
    }

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

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

    .cta-form-container {
        padding: 32px 24px;
    }

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

    .meet-steve-stats {
        flex-direction: column;
        gap: 24px;
    }
}