:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #f0f0f5;
    --text-muted: #9aa0a6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-purple: #8b5cf6;
    --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --gradient-cyan: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --border-light: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: var(--accent-blue);
}

/* ===== HEADER ===== */
header {
    border-bottom: 1px solid var(--border-light);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    /* Remove dark background from logo */
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-blue);
}

.nav-phone {
    color: var(--accent-cyan) !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.audit-option-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.06);
}

/* ===== HERO ===== */
.hero {
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-proof {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.social-proof p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.niche-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.niche-badges span {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 0;
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.3)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.2));
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ===== SOLUTIONS ===== */
.solutions {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.circuit-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/circuit-bg.png') right center / cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.solutions .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.pain {
    color: #f87171;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.stat {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.solution {
    font-weight: 600;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    color: var(--text-main);
}

/* ===== MEET THE FOUNDER ===== */
.founder {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #0d0d14, var(--bg-dark));
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
}

.founder-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.founder-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.founder-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--accent-cyan);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.founder-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: #0d0d14;
    padding: 6rem 0;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: left;
}

.timeline-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border-left: 3px solid var(--accent-blue);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
}

.timeline-step {
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== PRICING ===== */
.pricing {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.07), rgba(139, 92, 246, 0.07));
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.04);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.tag {
    position: absolute;
    top: 1.2rem;
    right: -2.2rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1rem;
    -webkit-text-fill-color: var(--text-muted);
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 45px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 800;
}

.pricing-card .btn {
    text-align: center;
    width: 100%;
}

/* ===== CTA / AUDIT ===== */
.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.07), rgba(139, 92, 246, 0.07));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box>p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calendly-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--border-light);
    padding: 2.5rem 0;
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
}

.social-link:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

.legal {
    display: flex;
    gap: 1rem;
}

.legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.legal a:hover {
    color: var(--text-main);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes whatsapp-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    75%,
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
/* ===== RESULTS / SOCIAL PROOF ===== */
.results-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0d0d14);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3.5rem;
}

.result-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-metric {
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-main);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== LEAD MAGNET CTA ===== */
.lead-magnet-section {
    padding: 5rem 0;
    background: #0d0d14;
}

.lead-magnet-box {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.07), rgba(59, 130, 246, 0.07));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 24px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.lead-magnet-content .badge {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
    border-color: rgba(6, 182, 212, 0.3);
}

.lead-magnet-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.lead-magnet-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.lead-magnet-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
}

.lead-magnet-bullets li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--text-main);
    font-size: 1rem;
}

.lead-magnet-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 800;
}

/* ===== FOUNDER STATS ===== */
.founder-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.founder-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-stat strong {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-stat span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== PRICING ROI NOTE ===== */
.roi-note {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(6, 182, 212, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
    line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 6rem 0;
    background: #0d0d14;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-item:hover .faq-question {
    background: rgba(255, 255, 255, 0.03);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.1), rgba(251, 146, 60, 0.1));
    border: 1px solid rgba(248, 113, 113, 0.25);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.urgency-banner span {
    color: #fbbf24;
    font-size: 0.95rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .niche-badges {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-img {
        max-width: 400px;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lead-magnet-box {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .hero-img {
        max-width: 320px;
    }

    .circuit-overlay {
        width: 100%;
        opacity: 0.07;
    }

    .founder-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }

    .founder-img-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .founder-stats {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .lead-magnet-box {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}