/* ========== BODY OVERRIDE FÜR SLUG-STYLE ========== */
body {
    background: #0a0e1a !important;
    overflow-x: hidden;
    position: relative;
}

/* ========== NEURAL NETWORK BACKGROUND ========== */
.neural-network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* ========== AURORA BACKGROUND ========== */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.aurora-wave {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.aurora-emerald {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    filter: blur(90px);
    animation: aurora-move-emerald 80s linear infinite;
}

.aurora-cyan {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    filter: blur(70px);
    animation: aurora-move-cyan 100s linear infinite;
}

.aurora-gold {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    animation: aurora-move-gold 90s linear infinite;
}

.aurora-spotlight {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    filter: blur(80px);
    animation: aurora-move-spotlight 85s ease-in-out infinite;
}

@keyframes aurora-move-emerald {
    0%, 100% { transform: translate(20%, 10%); }
    25% { transform: translate(60%, 50%); }
    50% { transform: translate(40%, 70%); }
    75% { transform: translate(80%, 30%); }
}

@keyframes aurora-move-cyan {
    0%, 100% { transform: translate(70%, 30%) rotate(0deg); }
    25% { transform: translate(30%, 70%) rotate(90deg); }
    50% { transform: translate(60%, 20%) rotate(180deg); }
    75% { transform: translate(20%, 60%) rotate(270deg); }
}

@keyframes aurora-move-gold {
    0%, 100% { transform: translate(40%, 60%) scale(1, 1); }
    25% { transform: translate(70%, 20%) scale(1.2, 0.9); }
    50% { transform: translate(30%, 80%) scale(0.9, 1.2); }
    75% { transform: translate(60%, 40%) scale(1.1, 1); }
}

@keyframes aurora-move-spotlight {
    0%, 100% { transform: translate(10%, 20%); }
    25% { transform: translate(80%, 60%); }
    50% { transform: translate(20%, 80%); }
    75% { transform: translate(70%, 30%); }
}

/* ========== MAIN CONTENT LAYER ========== */
main {
    position: relative;
    z-index: 10;
}

/* GPU-Beschleunigung für Animationen - Anti-Flicker */
.featureCard,
.pricingCard,
.pricingCardWrapper,
.dashboard-preview,
.btnPrimary,
.btnSecondary {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header & Navigation */
.header {
    background-color: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-dark-2);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.navbarContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.logo-inline {
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline;
    color: var(--color-white);
}

.footer .logo {
    color: var(--color-white);
}

.navLinks {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.navLinks a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.navLinks a:hover {
    color: #10b981;
}

/* Buttons */
.btnPrimary,
.btnSecondary {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btnPrimary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
    backdrop-filter: blur(15px);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btnPrimary:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(6, 182, 212, 0.2));
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.btnPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.btnSecondary {
    background: linear-gradient(135deg, rgba(13, 26, 45, 0.3), rgba(10, 14, 26, 0.4));
    backdrop-filter: blur(10px);
    color: #10b981;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btnSecondary:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.btnSecondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btnSecondary:hover::before {
    opacity: 1;
}

.btnLarge {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    display: flex;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scan-line-canvas {
    display: none;
}

/* hero::before entfernt - Aurora Background ersetzt den Glow-Effekt */

.heroContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.heroContent {
    position: relative;
    z-index: 100;
}

.heroContent h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -2px;
    font-weight: 700;
    position: relative;
    z-index: 101;
    background: linear-gradient(to right, #10b981 0%, #ffffff 30%, #ffffff 70%, #10b981 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animate 8s linear infinite;
}

@keyframes gradient-animate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.heroSubtitle {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.heroButtons {
    display: flex;
    gap: var(--spacing-sm);
}

.heroImage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow:
        0 0 60px rgba(16, 185, 129, 0.3),
        0 20px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    filter: brightness(1.05);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dashboard-preview:hover {
    transform: scale(1.02) translateZ(0);
    box-shadow:
        0 0 80px rgba(16, 185, 129, 0.4),
        0 30px 100px rgba(0, 0, 0, 0.5);
}

.placeholderImage {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: transparent;
    position: relative;
}

.sectionTitle {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.featureCard {
    background: linear-gradient(135deg, rgba(13, 26, 45, 0.6), rgba(10, 14, 26, 0.75));
    backdrop-filter: blur(15px);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease-out,
                box-shadow 0.2s ease-out,
                border-color 0.2s ease-out;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    cursor: pointer;
}

.featureCard:hover {
    transform: scale(1.05) translateZ(0);
    border-color: #10b981;
    box-shadow:
        0 16px 48px rgba(16, 185, 129, 0.35),
        0 0 40px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.featureCard::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    z-index: -1;
}

.featureCard:hover::before {
    opacity: 1;
}

.featureCard h3 {
    color: #10b981;
    margin-bottom: var(--spacing-sm);
}

.featureCard p {
    color: var(--color-text-dark);
}

/* How It Works */
.howItWorks {
    padding: var(--spacing-xl) 0;
    background: transparent;
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.step {
    flex: 1;
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(13, 26, 45, 0.4), rgba(10, 14, 26, 0.6));
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease-out,
                box-shadow 0.2s ease-out,
                border-color 0.2s ease-out;
    cursor: pointer;
}

.step:hover {
    transform: scale(1.05) translateZ(0);
    border-color: #10b981;
    box-shadow:
        0 16px 48px rgba(16, 185, 129, 0.35),
        0 0 40px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stepNumber {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.step h3 {
    color: #10b981;
}

.step p {
    color: var(--color-text-dark);
}

.stepArrow {
    font-size: 2rem;
    color: #06b6d4;
    font-weight: 700;
}

/* Pricing */
.pricing {
    padding: var(--spacing-xl) 0;
    background: transparent;
    position: relative;
}

.pricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
}

@media (max-width: 968px) {
    .pricingGrid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricingCardWrapper {
    position: relative;
    transition: transform 0.2s ease-out;
}

.pricingCardWrapper:hover {
    transform: scale(1.05) translateZ(0);
    z-index: 10;
}

.pricingCard {
    background: linear-gradient(135deg, rgba(13, 26, 45, 0.4), rgba(10, 14, 26, 0.6));
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: border-color 0.2s ease-out,
                box-shadow 0.2s ease-out;
}

.pricingCardWrapper:hover .pricingCard {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow:
        0 12px 36px rgba(16, 185, 129, 0.15),
        0 0 20px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricingCard::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.pricingCard:hover::after {
    left: 100%;
}

.pricingCard > * {
    position: relative;
    z-index: 5;
}

.pricingCardWrapper .pricingCard.featured {
    border-color: rgba(16, 185, 129, 0.3);
    border-width: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(13, 26, 45, 0.65));
    box-shadow:
        0 8px 24px rgba(16, 185, 129, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(16, 185, 129, 0.08);
    transition: border-color 0.2s ease-out,
                box-shadow 0.2s ease-out !important;
}

.pricingCardWrapper:hover .pricingCard.featured {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow:
        0 16px 48px rgba(16, 185, 129, 0.25),
        0 0 30px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(16, 185, 129, 0.12);
}

.pricingCardWrapper .pricingCard.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Featured Card Wrapper ist größer - wird durch Framer Motion gesteuert */

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) translateZ(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateZ(0);
    }
}

.pricingCardWrapper .pricingCard.featured .priceTag {
    font-size: 3rem;
}

.pricingCardWrapper .pricingCard.featured .serviceTitle {
    font-size: 2.25rem;
}

.pricingCardWrapper .badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Gold/Exclusive Card Styling */
.pricingCardWrapper .pricingCard.gold {
    border-color: rgba(245, 158, 11, 0.4);
    border-width: 1px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(13, 26, 45, 0.65));
    box-shadow:
        0 8px 24px rgba(245, 158, 11, 0.15),
        0 0 0 1px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(245, 158, 11, 0.08);
}

.pricingCardWrapper:hover .pricingCard.gold {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow:
        0 16px 48px rgba(245, 158, 11, 0.25),
        0 0 30px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(245, 158, 11, 0.12);
}

.pricingCardWrapper .pricingCard.gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: pulseGold 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGold {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.pricingCardWrapper .badge.gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.25));
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #f59e0b;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3), 0 0 20px rgba(245, 158, 11, 0.15);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.pricingCard.gold .featuresList li::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.15));
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.pricingCard.gold .serviceTitle {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricingCardWrapper:hover .pricingCard.gold {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow:
        0 16px 48px rgba(245, 158, 11, 0.25),
        0 0 30px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(245, 158, 11, 0.12);
}

.pricingCard.gold .btnSecondary {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.4);
}

.pricingCard.gold .btnSecondary:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.1));
}

.pricingCard.gold .btnSecondary::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.1));
}

.pricingCard.gold::after {
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
}

/* Badge-Pulse entfernt - zu aufdringlich */

.serviceTitle {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: var(--spacing-sm) 0;
}

.priceTag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: var(--spacing-md) 0;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    border-radius: var(--border-radius);
    display: inline-block;
}

.pricingDescription {
    color: var(--color-text-dark);
    margin: var(--spacing-md) 0;
}

.featuresList {
    list-style: none;
    margin: var(--spacing-md) 0;
    text-align: left;
    padding: 0;
}

.featuresList li {
    padding: 0.6rem 0;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.featuresList li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pricingCard.featured .featuresList li::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.15));
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

.featuresList li strong {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.4);
}

.pricingCard button {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* CTA */
.cta {
    padding: var(--spacing-xl) 0;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* cta::before und ::after entfernt - Aurora Background übernimmt alle Glow-Effekte */

.cta > .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta p {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

/* Footer */
.footer {
    background: transparent;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footerContent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footerSection h4 {
    color: #10b981;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footerSection ul {
    list-style: none;
}

.footerSection li {
    margin-bottom: var(--spacing-xs);
}

.footerSection a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footerSection a:hover {
    color: #10b981;
}

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

.footerBottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-dark-2);
    color: var(--color-text-dark);
}

/* Responsive */
@media (max-width: 968px) {
    .heroContainer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .heroButtons {
        justify-content: center;
    }

    .steps {
        flex-direction: column;
    }

    .stepArrow {
        transform: rotate(90deg);
    }

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

    .sectionTitle {
        font-size: 2rem;
    }

    .pricingCard.featured {
        transform: scale(1);
    }

    .pricingCard.featured .priceTag {
        font-size: 2.5rem;
    }

    .pricingCard.featured .serviceTitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navLinks {
        gap: var(--spacing-sm);
        font-size: 0.875rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero,
    .features,
    .howItWorks,
    .pricing,
    .cta {
        padding: var(--spacing-lg) 0;
    }

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

    .heroContent h1 {
        font-size: 2rem;
    }
}
