.elementor-158 .elementor-element.elementor-element-df89bfe{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* Complete CSS for aiwillfix Landing Page */
/* Paste this into Elementor → Site Settings → Custom CSS */

:root {
    --neon-green: #9eff00;
    --neon-green-dark: #7acc00;
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1e1e1e;
    --border-color: #2a2a2a;
    --border-accent: rgba(158, 255, 0, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #707070;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--neon-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 900;
    font-size: 20px;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
}

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

.nav-cta {
    background: var(--neon-green);
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--neon-green-dark);
    transform: translateY(-1px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--neon-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(158, 255, 0, 0.3);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--neon-green);
    background: rgba(158, 255, 0, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

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

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.parallax-layer-1 {
    background: radial-gradient(circle at 30% 20%, rgba(158, 255, 0, 0.15) 0%, transparent 50%);
    animation: parallaxFloat1 20s ease-in-out infinite;
}

.parallax-layer-2 {
    background: radial-gradient(circle at 70% 80%, rgba(158, 255, 0, 0.08) 0%, transparent 50%);
    animation: parallaxFloat2 25s ease-in-out infinite;
}

.parallax-grid {
    position: absolute;
    top: -50%;
    left: -10%;
    right: -10%;
    bottom: -50%;
    background-image: 
        linear-gradient(rgba(158, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(158, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: parallaxGrid 30s linear infinite;
}

@keyframes parallaxFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes parallaxFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.15); }
}

@keyframes parallaxGrid {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 30%; animation-delay: 3s; }
.hero-particle:nth-child(3) { left: 50%; animation-delay: 6s; }
.hero-particle:nth-child(4) { left: 70%; animation-delay: 9s; }
.hero-particle:nth-child(5) { left: 90%; animation-delay: 12s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-green) 0%, #7acc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-feature i {
    color: var(--neon-green);
    font-size: 18px;
}

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

.hero-visual {
    position: relative;
}

.hero-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.hero-image-main img {
    width: 100%;
    display: block;
}

.floating-product {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-accent);
    animation: floatProduct 6s ease-in-out infinite;
}

.floating-product-1 {
    width: 140px;
    top: 10%;
    right: -20px;
}

.floating-product-2 {
    width: 120px;
    bottom: 10%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Sections */
.comparison-section {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(158, 255, 0, 0.1);
    border: 1px solid var(--border-accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card.bad {
    border-color: #ff4444;
}

.comparison-card.good {
    border-color: var(--neon-green);
    box-shadow: 0 8px 32px rgba(158, 255, 0, 0.15);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.comparison-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.comparison-card.bad .comparison-icon {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.comparison-card.good .comparison-icon {
    background: rgba(158, 255, 0, 0.1);
    color: var(--neon-green);
}

.comparison-header h3 {
    font-size: 18px;
}

.comparison-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.comparison-card.bad .comparison-image img {
    filter: blur(1.5px) brightness(0.85);
}

.comparison-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Detail Section */
.detail-section {
    padding: 120px 24px;
    background: var(--bg-primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.detail-image {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--neon-green);
    box-shadow: 0 20px 60px rgba(158, 255, 0, 0.2);
}

.detail-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.detail-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.detail-text ul {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.detail-text ul li i {
    color: var(--neon-green);
    font-size: 18px;
}

/* How It Works */
.how-it-works {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.video-showcase {
    max-width: 1000px;
    margin: 0 auto 80px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-showcase video {
    width: 100%;
    display: block;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(158, 255, 0, 0.1);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(158, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-icon i {
    font-size: 28px;
    color: var(--neon-green);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Gallery */
.gallery-section {
    padding: 120px 24px;
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--neon-green);
}

.gallery-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 20px;
    text-align: center;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.before-after-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.image-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.image-label.before {
    color: #ff4444;
}

.image-label.after {
    color: var(--neon-green);
}

/* Features */
.features-section {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(158, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--neon-green);
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Mobile Section */
.mobile-section {
    padding: 120px 24px;
    background: var(--bg-primary);
}

.mobile-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.mobile-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.mobile-text ul {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.mobile-text ul li i {
    color: var(--neon-green);
}

.mobile-video {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(158, 255, 0, 0.2);
}

.mobile-video video {
    width: 100%;
    border-radius: 24px;
}

/* Pricing - 4 Plans */
.pricing-section {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 12px 48px rgba(158, 255, 0, 0.15);
}

.pricing-card.payg {
    background: linear-gradient(135deg, rgba(158, 255, 0, 0.05) 0%, rgba(158, 255, 0, 0.02) 100%);
    border: 2px solid var(--neon-green);
}

.popular-badge, .payg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.payg-badge {
    background: linear-gradient(135deg, var(--neon-green) 0%, #7acc00 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.plan-name {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 28px;
    color: var(--text-secondary);
}

.plan-price .period {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-card.featured .plan-price {
    color: var(--neon-green);
}

.pricing-card.payg .plan-price {
    font-size: 36px;
    color: var(--neon-green);
}

.plan-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-features li i {
    color: var(--neon-green);
    margin-top: 2px;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-cta {
    width: 100%;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 24px;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--neon-green);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.stars {
    color: var(--neon-green);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ */
.faq-section {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--neon-green);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 16px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(158, 255, 0, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
    padding: 120px 24px;
    background: var(--bg-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-indicators i {
    color: var(--neon-green);
}

/* Footer */
.footer {
    padding: 48px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease;
    text-decoration: none;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--neon-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .detail-grid, .mobile-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .comparison-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 40px;
    }
    
    .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row, .before-after-container {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */