:root {
    --primary-navy: #05192D;
    --primary-green: #22C55E;
    --primary-green-hover: #16A34A;
    --bg-light: #F8FAFC;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --font-family: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    color: var(--primary-navy);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 0.02em;
}

.announcement-bar span {
    color: var(--primary-green);
    font-weight: 700;
}

/* Hero Section – responsive full-bleed image */
.hero {
    position: relative;
    background-color: var(--primary-navy);
    min-height: clamp(520px, 88svh, 95vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(72px, 12vw, 100px) 0;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(5, 25, 45, 0.88) 0%,
        rgba(5, 25, 45, 0.78) 35%,
        rgba(5, 25, 45, 0.45) 58%,
        rgba(5, 25, 45, 0.15) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.hero-text {
    max-width: 800px;
    color: var(--white);
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-text h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}


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

.hero-text p.sub-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: clamp(24px, 5vw, 48px);
    max-width: 700px;
    font-weight: 400;
}


.hero-features-v2 {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

.hero-feature-item i {
    font-size: 1.4rem;
    color: var(--primary-green);
}

.whatsapp-btn-hero {
    background: var(--primary-green);
    color: var(--white);
    padding: clamp(16px, 3vw, 24px) clamp(32px, 5vw, 48px);
    border-radius: 16px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    width: fit-content;
}


.whatsapp-btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    background: #26d465;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-navy);
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: -10px;
}

.hero-trust-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #94a3b8;
}

.hero-trust-text span {
    color: var(--primary-green);
}

.hero-guarantee-text {
    margin-top: 24px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #94a3b8;
    border-left: 3px solid var(--primary-green);
    padding-left: 15px;
    letter-spacing: 0.01em;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero {
        min-height: clamp(480px, 82svh, 80vh);
        text-align: left;
    }

    .hero-bg-image {
        object-position: 68% center;
    }

    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(5, 25, 45, 0.92) 0%,
            rgba(5, 25, 45, 0.82) 45%,
            rgba(5, 25, 45, 0.55) 100%
        );
    }

    .hero-content {
        align-items: flex-start;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-features-v2 {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 0;
        font-size: 0.8rem;
    }

    .hero {
        min-height: auto;
        display: flex;
        align-items: flex-start;
        padding: clamp(12px, 3vw, 20px) 0 clamp(32px, 6vw, 48px);
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
    }

    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% center;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(5, 25, 45, 0.82) 0%,
            rgba(5, 25, 45, 0.72) 35%,
            rgba(5, 25, 45, 0.62) 70%,
            rgba(5, 25, 45, 0.55) 100%
        );
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        background: transparent;
    }
}

@media (max-width: 480px) {
    .hero-bg-image {
        object-position: 60% center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-features-v2 {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .hero-trust-indicators {
        flex-wrap: wrap;
    }
}


/* Satisfaction CTA Section */
.unsatisfied-cta {
    background-color: #051324;
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.unsatisfied-cta .cta-content {
    max-width: 850px;
}

.unsatisfied-cta h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}


.unsatisfied-cta h2 span {
    color: var(--primary-green);
}

.unsatisfied-cta .cta-sub {
    font-size: 1.4rem;
    color: #cbd5e1;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 750px;
}

.unsatisfied-cta .cta-features {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unsatisfied-cta .cta-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.unsatisfied-cta .cta-features i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.unsatisfied-cta .cta-whatsapp-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 24px 48px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);
    margin-bottom: 24px;
}

.unsatisfied-cta .cta-whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background: #26d465;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.35);
}

.unsatisfied-cta .cta-footer-note {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive Satisfaction CTA */
@media (max-width: 1024px) {
    .unsatisfied-cta {
        padding: 80px 0;
        text-align: center;
    }

    .unsatisfied-cta .cta-content {
        margin: 0 auto;
    }

    .unsatisfied-cta h2 {
        font-size: 3.5rem;
    }

    .unsatisfied-cta .cta-features {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .unsatisfied-cta h2 {
        font-size: 2.8rem;
    }

    .unsatisfied-cta .cta-sub {
        font-size: 1.15rem;
    }

    .unsatisfied-cta .cta-whatsapp-btn {
        padding: 20px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
}


/* Responsive */

/* Trust Section Refined */
.trust {
    background-color: var(--primary-navy);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.trust-subtitle {
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.overall-rating-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.overall-rating-badge h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.quote-icon {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.card-stars {
    color: var(--primary-green);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #e2e8f0;
}

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

.user-initial {
    width: 44px;
    height: 44px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-info p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Comparison Section Refined */
.comparison {
    background-color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.comparison-subtitle {
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}


.comp-card {
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    border: 1px solid transparent;
}

.comp-card.bad {
    background-color: #FFF1F2;
    border-color: #FFE4E6;
}

.comp-card.good {
    background-color: #F0FDF4;
    border-color: #DCFCE7;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--primary-navy);
}

.comp-header .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.bad .icon {
    background-color: #FECACA;
    color: #EF4444;
}

.good .icon {
    background-color: #BBF7D0;
    color: #16A34A;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
}

.bad .comp-list li i {
    color: #FCA5A5;
}

.good .comp-list li i {
    color: #4ADE80;
}

/* Service Cards */

/* Service Cards */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Calculator Section Refined */
.calc-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.calc-body {
    padding: clamp(30px, 8vw, 60px);
}


.calc-step {
    margin-bottom: 40px;
}

.step-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.step-num {
    width: 24px;
    height: 24px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.calc-btn {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.calc-btn:hover {
    border-color: var(--primary-navy);
}

.calc-btn.active {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(5, 25, 45, 0.2);
}

.calc-result-box {
    background: var(--primary-navy);
    padding: clamp(30px, 8vw, 60px);
    text-align: center;
    color: var(--white);
}


.result-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 12px;
    display: block;
}

.result-price {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.result-price span {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.6;
}

.result-meta {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 32px;
}

.calc-cta {
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: none;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.calc-cta:hover {
    transform: scale(1.02);
}

.result-info {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Floating Sticky Footer Bar */
.sticky-footer {
    position: fixed;
    bottom: 24px;
    right: 24px;
    transform: translateY(100px);
    background: rgba(5, 25, 45, 0.9);
    backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: 24px;
    display: flex;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: auto;
}

.sticky-footer.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-green {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

@media (max-width: 480px) {
    .sticky-footer {
        right: 12px;
        bottom: 12px;
        padding: 8px;
        gap: 8px;
    }

    .sticky-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .sticky-btn span {
        display: none;
        /* Hide text on very small screens to keep it clean */
    }

    .sticky-btn i {
        font-size: 1.2rem;
    }

    .btn-green span {
        display: inline;
        /* Keep green button text */
    }
}

/* New Premium Styles */
.dark-grid-bg {
    background-color: #051324;
    /* Deeper navy for more contrast */
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    overflow: hidden;
}

.dark-grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(5, 19, 36, 0.8) 100%);
    pointer-events: none;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(4px);
}

.premium-badge span {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cta-button-premium {
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.1);
    width: fit-content;
}

.cta-button-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4), 0 0 20px rgba(34, 197, 94, 0.2);
    background: #26d465;
}

.cta-button-premium i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.cta-button-premium:hover i {
    transform: translateX(4px);
}

.trust-footer-text {
    margin-top: 24px;
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.8;
}

/* Calculator Dark Theme Overrides */
.calculator-dark {
    background: #0a192f;
    border-color: rgba(255, 255, 255, 0.1);
}

.calculator-dark .step-label {
    color: var(--white);
}

.calculator-dark .step-num {
    background: var(--primary-green);
}

.calculator-dark .calc-btn {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.calculator-dark .calc-btn:hover {
    border-color: var(--primary-green);
    background: rgba(34, 197, 94, 0.05);
}

.calculator-dark .calc-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Feature Cards Premium Style */
.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .features-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid-premium {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature-card-premium {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.feature-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #05192D;
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
    background: var(--primary-green);
}

.feature-card-premium h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.feature-card-premium p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Location Section Premium */
.location-container-premium {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.map-visual-container {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 32px;
    padding: clamp(20px, 5vw, 40px);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    height: clamp(300px, 60vh, 450px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        linear-gradient(#f1f5f9 1px, transparent 1px),
        linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-green);
}

.map-node.center {
    width: 20px;
    height: 20px;
    border: 4px solid var(--white);
}

.map-label {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-top: 20px;
}

.city-list-premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-card-premium {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.city-card-premium.active {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.city-card-premium:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.city-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
}

.city-card-premium.active .city-icon {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.city-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-navy);
}

.city-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-green {
    background: #dcfce7;
    color: #16a34a;
}

.badge-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.badge-grey {
    background: #f1f5f9;
    color: #64748b;
}

.city-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
}

.city-check {
    margin-left: auto;
    color: var(--primary-green);
    opacity: 0.5;
}

.city-card-premium.active .city-check {
    opacity: 1;
}

@media (max-width: 992px) {
    .location-container-premium {
        grid-template-columns: 1fr;
    }
}

/* Premium Footer Bar */
.footer-premium {
    background: #051324;
    color: var(--white);
    padding: 20px 0;
    border-top: 4px solid var(--primary-green);
}

.footer-content-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo-premium {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle-g {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
}

.logo-text-premium h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.logo-text-premium p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer-buttons-premium {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 14px;
    display: flex;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-footer-calc {
    background: #1e293b;
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-footer-wa {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.footer-copy-premium {
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: right;
}

@media (max-width: 992px) {
    .footer-content-premium {
        flex-direction: column;
        text-align: center;
    }

    .footer-copy-premium {
        text-align: center;
    }
}

/* WhatsApp Modal Styles */
.wa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wa-modal-container {
    background: #05192D;
    width: 90%;
    max-width: 500px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-modal-overlay.active .wa-modal-container {
    transform: translateY(0) scale(1);
}

.wa-modal-header {
    background: #0a1e35;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-modal-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wa-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.wa-modal-title .wa-step {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.wa-modal-title h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.wa-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #94a3b8;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wa-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: rotate(90deg);
}

.wa-modal-body {
    padding: 32px;
    text-align: center;
}

.wa-response-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.wa-response-text span {
    color: var(--primary-green);
    font-weight: 700;
}

.wa-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.wa-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.wa-info-icon {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.wa-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-info-text strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.wa-info-text span {
    font-size: 0.7rem;
    color: #94a3b8;
}

.wa-final-btn {
    background: var(--primary-green);
    color: var(--white);
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
}

.wa-final-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
    background: #26d465;
}

.wa-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.wa-modal-footer i {
    color: var(--primary-green);
}

/* FAQ Section Polished */
#faq {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--bg-light);
}

.faq-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
}

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

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-muted);
}

/* Final Dark CTA Banner Responsive */
.dark-grid-bg {
    padding: clamp(80px, 15vw, 120px) 0;
    text-align: center;
    color: var(--white);
}

.dark-grid-bg h2 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dark-grid-bg p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Services Section Premium (Consolidated) */
#services {
    background: #F8FAFC;
    padding: clamp(60px, 10vw, 100px) 0;
}

.services-header-premium {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.premium-badge-v2 {
    color: #22C55E;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.section-title-v2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #05192D;
    margin-bottom: 12px;
}

.section-subtitle-v2 {
    color: #64748b;
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 850px;
    margin: 0 auto;
}

.services-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(16px, 3vw, 30px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card-v2 {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    width: calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1100px) {
    .service-card-v2 {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .service-card-v2 {
        width: 100%;
    }
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-image-v2 {
    position: relative;
    height: 220px;
    width: 100%;
}

.service-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-badge-v3 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    color: #000;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-info-v2 {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info-v2 h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #05192D;
    margin-bottom: 8px;
    margin-top: 0;
}

.service-info-v2 p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-whatsapp-btn-v3 {
    width: 100%;
    background: #22C55E;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-decoration: none;
    margin-top: auto;
}

.service-whatsapp-btn-v3:hover {
    background: #16A34A;
    transform: translateY(-2px);
}

.service-footer-v3 {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.service-footer-v3 i {
    color: #22C55E;
    font-size: 0.7rem;
}

@media (max-width: 480px) {
    .cta-button-premium, .wa-final-btn, .whatsapp-btn-hero {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .wa-info-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wa-info-card {
        flex-direction: row;
        text-align: left;
        padding: 12px 20px;
    }

    .wa-modal-body {
        padding: 24px;
    }
}

/* ─── Top-Right Floating Sticky Menu (Preisrechner + Angebot anfragen) ─── */
.sticky-top-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease,
                visibility 0.3s ease;
}

.sticky-top-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 9999px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.sticky-top-btn i {
    font-size: 1rem;
}

/* Dark navy: Preisrechner */
.sticky-top-calc {
    background: var(--primary-navy);
    color: var(--white);
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 10px 25px rgba(5, 25, 45, 0.25), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sticky-top-calc i {
    color: var(--primary-green);
}

.sticky-top-calc:hover {
    background: #0a2342;
    box-shadow: 0 14px 32px rgba(5, 25, 45, 0.35), 0 4px 10px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* WhatsApp green: Angebot anfragen */
.sticky-top-wa {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sticky-top-wa i {
    color: var(--white);
    font-size: 1.05rem;
}

.sticky-top-wa:hover {
    background: var(--primary-green-hover);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.45), 0 4px 10px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.sticky-top-btn:active {
    transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .sticky-top-menu {
        top: 14px;
        right: 14px;
        gap: 8px;
    }
    .sticky-top-btn {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .sticky-top-btn span {
        display: none;
    }
    .sticky-top-btn {
        padding: 0;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    .sticky-top-btn i {
        font-size: 1.15rem;
    }
}

/* ─── Animated Map (location section) ──────────────────────────────────── */

/* Soft green coverage ellipse behind the cities — gentle breathing */
.map-coverage-ellipse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 55%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
                rgba(34, 197, 94, 0.18) 0%,
                rgba(34, 197, 94, 0.08) 55%,
                rgba(34, 197, 94, 0) 75%);
    border-radius: 50%;
    pointer-events: none;
    animation: mapEllipseBreath 5s ease-in-out infinite;
    z-index: 0;
}

@keyframes mapEllipseBreath {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.85; }
    50%      { transform: translate(-50%, -50%) scale(1.06); opacity: 1;    }
}

/* Radar pings emanating from Wolfsburg center */
.map-radar-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    animation: mapRadarPing 2.6s ease-out infinite;
}

.map-radar-ping.delay {
    animation-delay: 1.3s;
}

@keyframes mapRadarPing {
    0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.75; }
    80%  { transform: translate(-50%, -50%) scale(5);   opacity: 0;    }
    100% { transform: translate(-50%, -50%) scale(5);   opacity: 0;    }
}

/* Dashed lines flowing outward from Wolfsburg */
.map-line {
    stroke-width: 1.5;
    animation: mapDashFlow 1.8s linear infinite;
}

@keyframes mapDashFlow {
    to { stroke-dashoffset: -16; }
}

/* City nodes & labels: keep them above the ellipse */
.map-node,
.map-label {
    z-index: 2;
}

/* Center node always pulses subtly */
.map-node.center {
    animation: mapCenterPulse 2.2s ease-in-out infinite;
}

@keyframes mapCenterPulse {
    0%, 100% { box-shadow: 0 0 15px var(--primary-green),
                           0 0 0  0 rgba(34, 197, 94, 0.6); }
    50%      { box-shadow: 0 0 22px var(--primary-green),
                           0 0 0  10px rgba(34, 197, 94, 0); }
}

/* Staggered entrance: nodes & labels fade-scale in when section is in view.
   The IntersectionObserver in script.js adds .in-view to the container. */
.map-anim {
    opacity: 0;
    transform: translate(0, 8px) scale(0.6);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--i, 0) * 180ms);
}

.map-visual-container.in-view .map-anim {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Helmstedt was set with inline opacity: 0.5 to look dimmer; preserve that
   final state after the animation finishes. */
.map-visual-container.in-view .map-anim[style*="opacity: 0.5"] {
    opacity: 0.55;
}

/* City cards (right column) slide in from the right when in view */
.city-card-premium {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease, border-color 0.3s ease;
}

.location-container-premium.in-view .city-card-premium {
    opacity: 1;
    transform: translateX(0);
}

.location-container-premium.in-view .city-card-premium:nth-child(1) { transition-delay: 0ms;   }
.location-container-premium.in-view .city-card-premium:nth-child(2) { transition-delay: 120ms; }
.location-container-premium.in-view .city-card-premium:nth-child(3) { transition-delay: 240ms; }
.location-container-premium.in-view .city-card-premium:nth-child(4) { transition-delay: 360ms; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .map-coverage-ellipse,
    .map-radar-ping,
    .map-line,
    .map-node.center,
    .map-anim,
    .city-card-premium {
        animation: none !important;
        transition: none !important;
    }
    .map-anim,
    .city-card-premium {
        opacity: 1 !important;
        transform: none !important;
    }
}