:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent: #10b981;
    --purple: #2563eb;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
    --gradient-card: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    --gradient-cool: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --neon-blue: #2563eb;
    --neon-green: #10b981;
    --neon-orange: #10b981;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--dark);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    color: var(--neon-blue);
    background: rgba(14, 165, 233, 0.1);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1rem 0;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--neon-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(15, 23, 42, 0.70) 0%,
            rgba(15, 23, 42, 0.50) 45%,
            rgba(15, 23, 42, 0.55) 60%,
            rgba(15, 23, 42, 0.80) 100%),
        url('./abq-vista.jpg') center/cover no-repeat;
    background-color: #0f172a; /* fallback if image fails to load */
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    animation: heroEnter 1.2s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-bottom: 2.25rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    white-space: nowrap;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.btn-secondary:hover {
    background: var(--neon-blue);
    color: var(--dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.8);
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-alt {
    background: var(--darker);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    padding-top: 2rem;
}

.section-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works - FIXED LAYOUT */
.how-it-works {
    background: var(--dark);
    color: white;
    padding: 8rem 0;
}

.process-flowchart {
    position: relative;
    margin: 3rem auto;
    min-height: 500px;
    max-width: 1200px;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: start;
    margin: 3rem 0;
    min-height: 450px;
    padding: 3rem 1rem;
}

.timeline-line {
    position: absolute;
    top: 120px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-green) 25%, var(--neon-orange) 50%, var(--accent) 75%, var(--secondary) 100%);
    border-radius: 2px;
    z-index: 1;
    animation: lineGlow 3s ease-in-out infinite alternate;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 200px;
}

/* FIXED ARROWS - DON'T AFFECT LAYOUT */
.process-step::after {
    content: '▶';
    position: absolute;
    top: 50%;
    right: -15px;
    font-size: 1.5rem;
    color: var(--neon-blue);
    z-index: 3;
    animation: arrowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 15px var(--neon-blue);
    transform: translateY(-50%);
    pointer-events: none;
}

/* HIDE ARROWS ON ALL MOBILE/TABLET SIZES */
@media (max-width: 1199px) {
    .process-step::after {
        display: none !important;
    }
}

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

.process-step:nth-child(2)::after {
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}

.process-step:nth-child(3)::after {
    color: var(--neon-orange);
    text-shadow: 0 0 15px var(--neon-orange);
}

.process-step:nth-child(4)::after {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: translateY(-50%) translateX(0px); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-50%) translateX(5px); 
        opacity: 1; 
    }
}

.step-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.1);
    animation: stepFloat 6s ease-in-out infinite;
}

.process-step:nth-child(1) .step-circle { animation-delay: 0s; }
.process-step:nth-child(2) .step-circle { animation-delay: -1.2s; }
.process-step:nth-child(3) .step-circle { animation-delay: -2.4s; }
.process-step:nth-child(4) .step-circle { animation-delay: -3.6s; }
.process-step:nth-child(5) .step-circle { animation-delay: -4.8s; }

@keyframes stepFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.step-circle:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
    border-color: var(--neon-green);
}

.step-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-green), var(--neon-orange)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-circle:hover::before {
    opacity: 1;
    animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-icon {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    z-index: 3;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    animation: numberPulse 2s ease-in-out infinite;
    z-index: 4;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-content {
    text-align: center;
    padding: 1rem 0.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.step-duration {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    color: var(--neon-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.process-flowchart {
    position: relative;
    margin: 3rem auto;
    min-height: 500px;
    max-width: 1200px;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: start;
    margin: 3rem 0;
    min-height: 450px;
    padding: 3rem 1rem;
}

.timeline-line {
    position: absolute;
    top: 180px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-green) 25%, var(--neon-orange) 50%, var(--accent) 75%, var(--secondary) 100%);
    border-radius: 2px;
    z-index: 1;
    animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { box-shadow: 0 0 10px rgba(14, 165, 233, 0.5); }
    100% { box-shadow: 0 0 30px rgba(14, 165, 233, 0.8), 0 0 60px rgba(34, 197, 94, 0.4); }
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 200px;
}

.step-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.1);
    animation: stepFloat 6s ease-in-out infinite;
}

.process-step:nth-child(1) .step-circle { animation-delay: 0s; }
.process-step:nth-child(2) .step-circle { animation-delay: -1.2s; }
.process-step:nth-child(3) .step-circle { animation-delay: -2.4s; }
.process-step:nth-child(4) .step-circle { animation-delay: -3.6s; }
.process-step:nth-child(5) .step-circle { animation-delay: -4.8s; }

@keyframes stepFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.step-circle:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
    border-color: var(--neon-green);
}

.step-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-green), var(--neon-orange)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-circle:hover::before {
    opacity: 1;
    animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-icon {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    z-index: 3;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    animation: numberPulse 2s ease-in-out infinite;
    z-index: 4;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-content {
    text-align: center;
    padding: 1rem 0.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.step-duration {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    color: var(--neon-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

/* Services */
.services {
    background: var(--darker);
    color: white;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 3rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.4);
    border-color: var(--neon-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose {
    background: var(--dark);
    color: white;
}

/* Comparison Table (Why Choose Us / Count On) */
.compare-table {
    max-width: 1100px;
    margin: 4rem auto 0;
}

.compare-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-col-them,
.compare-col-us {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

.compare-col-them {
    color: rgba(255, 255, 255, 0.45);
}

.compare-col-us {
    color: var(--neon-green);
}

.compare-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0.75rem;
    transition: background 0.25s ease;
}

.compare-row:hover {
    background: rgba(255, 255, 255, 0.055);
}

.compare-them,
.compare-us {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.45;
}

.compare-them {
    color: rgba(255, 255, 255, 0.55);
}

.compare-them i {
    color: rgba(239, 68, 68, 0.55);
    font-size: 1rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.compare-us {
    color: #ffffff;
    font-weight: 500;
}

.compare-us i {
    color: var(--neon-green);
    font-size: 1rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.compare-arrow {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .compare-table {
        margin-top: 3rem;
    }
    .compare-header {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }
    .compare-divider {
        display: none;
    }
    .compare-col-them,
    .compare-col-us {
        font-size: 0.8rem;
    }
    .compare-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem 1.25rem;
    }
    .compare-arrow {
        display: none;
    }
    .compare-them,
    .compare-us {
        font-size: 0.95rem;
    }
}

.benefits-tagline {
    max-width: 820px;
    margin: 5rem auto 0;
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.benefits-tagline::before,
.benefits-tagline::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.6), transparent);
    margin: 0 auto;
}

.benefits-tagline::before {
    margin-bottom: 2rem;
}

.benefits-tagline::after {
    margin-top: 2rem;
}

.benefits-tagline p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.benefits-tagline p span {
    display: block;
}

.benefits-tagline p span:first-child {
    color: var(--neon-green);
}

.benefits-tagline p span:last-child {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .benefits-tagline {
        margin-top: 3rem;
        padding: 1.5rem 1rem;
    }
    .benefits-tagline p {
        font-size: 1.15rem;
    }
}

/* Pricing */
.pricing {
    background: var(--darker);
    color: white;
}

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

.pricing-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.3);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.pricing-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.4);
    border-color: var(--neon-blue);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    transform: scale(1.1);
    border-color: var(--neon-green);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.4);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.pricing-btn {
    width: 100%;
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.pricing-btn:hover {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

/* FAQ */
.faq {
    background: var(--dark);
    color: white;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: rgba(14, 165, 233, 0.05);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 300px;
}

.faq-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: var(--neon-blue);
}

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

/* Contact */
.contact {
    background: var(--darker);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-form {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: white;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
        padding: 4rem 0.5rem;
    }
    
    .timeline-line {
        left: 10%;
        right: 10%;
        top: 120px;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 3rem 1rem;
        min-height: 600px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        grid-column: span 1;
    }
    
    .process-step:nth-child(5) {
        grid-column: 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        white-space: normal;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

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

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

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1rem;
        min-height: auto;
    }

    .step-circle {
        width: 100px;
        height: 100px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
    
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .service-card,
    .pricing-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Testimonial section */
.testimonial-section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.75) 60%, rgba(15, 23, 42, 0.85) 100%),
        url('./abq-backdrop.jpg') center/cover no-repeat;
    background-color: #0f172a; /* fallback if image fails to load */
    z-index: 0;
}

.testimonial-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.testimonial-mark {
    font-family: 'Space Grotesk', serif;
    font-size: 7rem;
    line-height: 0.6;
    color: var(--neon-green);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.testimonial-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 2rem 0;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--neon-green);
    opacity: 0.8;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 5rem 0;
    }
    .testimonial-quote {
        font-size: 1.35rem;
    }
    .testimonial-mark {
        font-size: 5rem;
    }
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* ===== New Process v2 (replaces old timeline) ===== */
.how-it-works{background:var(--dark);color:#fff}
.process-v2{position:relative}
.p2-rail{position:relative;margin:1.5rem 0 3.25rem}
.p2-rail-line{
  height:6px;border-radius:4px;
  background:linear-gradient(90deg,#0ea5e9 0%,#22c55e 25%,#f97316 50%,#f59e0b 75%,#10b981 100%);
  box-shadow:0 6px 20px rgba(14,165,233,.25), inset 0 0 0 1px rgba(255,255,255,.06)
}
.p2-dots{
  position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);
  display:grid;grid-template-columns:repeat(5,1fr);list-style:none;gap:0;padding:0;margin:0
}
.p2-dots li{display:flex;justify-content:center;align-items:center}
.p2-dots li span{
  width:44px;height:44px;border-radius:999px;display:flex;align-items:center;justify-content:center;
  font-weight:800;color:#fff;
  background:radial-gradient(70% 70% at 30% 30%, rgba(255,255,255,.35) 0%, rgba(255,255,255,.05) 60%, rgba(255,255,255,0) 100%),
             linear-gradient(135deg,#22c55e 0%,#2563eb 100%);
  box-shadow:0 10px 30px rgba(37,99,235,.35), 0 0 0 4px rgba(255,255,255,.06)
}

.p2-cards{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:1.25rem}
@media (max-width:1100px){.p2-cards{grid-template-columns:repeat(3,1fr)}}
@media (max-width:780px){.p2-cards{grid-template-columns:1fr}.p2-rail{display:none}}

.p2-card{
  position:relative;background:linear-gradient(135deg,rgba(37,99,235,.12) 0%,rgba(16,185,129,.12) 100%);
  border:1px solid rgba(14,165,233,.25);border-radius:20px;
  padding:1.25rem 1.1rem 1.1rem;min-height:270px;
  display:grid;grid-template-rows:auto 1fr auto;gap:.6rem;
  box-shadow:0 16px 40px rgba(14,165,233,.18)
}
.p2-card h3{font-weight:800;color:#fff}
.p2-card p{color:rgba(255,255,255,.9)}
.p2-chip{justify-self:start;padding:.4rem .75rem;border-radius:18px;background:rgba(14,165,233,.15);color:#93c5fd;border:1px solid rgba(14,165,233,.3);font-size:.85rem;font-weight:600}
.p2-icon{
  left:1.1rem;top:-26px;width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#10b981 0%,#2563eb 100%);color:#fff;font-size:1.25rem;
  box-shadow:0 12px 28px rgba(37,99,235,.35), 0 0 0 4px rgba(2,6,23,.65)
}
