/* ==========================================================================
   CSS Variables - Premium Upgrade
   ========================================================================== */
:root {
    --primary: #0284c7;
    /* Deeper, richer blue */
    --primary-hover: #0369a1;
    --primary-light: #e0f2fe;

    --secondary: #0f172a;
    /* Deeper slate */
    --text-main: #334155;
    --text-muted: #64748b;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-subtle-blue: #f0f9ff;

    --border-light: #e2e8f0;

    /* Premium Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
    --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.4);

    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles & Typography
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
    /* slightly lighter for premium feel */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

section {
    padding: 6rem 0;
    position: relative;
    /* For absolutely positioned blobs */
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ==========================================================================
   Background & Decorations (Cleaned up)
   ========================================================================== */
.relative-overflow {
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Animations
   ========================================================================== */
/* Entrance Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Continuous floating animation for hero objects */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.floating-animation-slow {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 99px;
    /* Pill shape for modern look */
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0369a1 0%, var(--primary) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
    color: white;
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-primary-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--secondary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}

.white-button {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.white-button:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Header & Nav
   ========================================================================== */
.header {
    position: fixed;
    /* Fixed instead of sticky for smoother effect */
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--secondary);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 10rem 0 6rem;
    /* Extra top padding for fixed header */
    background: linear-gradient(180deg, var(--bg-subtle-blue) 0%, white 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    border: 1px solid var(--border-light);
}

.hero-trust i {
    color: var(--primary);
    font-size: 1.125rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mockup-rectangle {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    background: #f0f4f8;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    /* helps popular card stand out */
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.popular {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-subtle-blue) 100%);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(2, 132, 199, 0.1);
    transform: scale(1.05);
    z-index: 2;
    padding: 3.5rem 2.5rem;
    /* slightly taller */
}

.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary) 0%, #0369a1 100%);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 50%;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1;
}

.price span {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-light);
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* ==========================================================================
   USPs Grid (Waarom huren)
   ========================================================================== */
.usps-grid {
    background-color: var(--bg-white);
    position: relative;
    padding-bottom: 8rem;
}

.usp-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.usp-item {
    text-align: left;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.usp-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    border: 1px solid var(--border-light);
}

.usp-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.usp-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Reviews / Social Proof
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #eab308;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.rating-stars span {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.review-author strong {
    display: block;
    color: var(--secondary);
    font-size: 1.125rem;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.review-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 0;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works {
    background-color: var(--bg-subtle-blue);
    position: relative;
}

/* Soft transition between sections */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-subtle-blue);
    transform: skewY(-2deg);
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    /* above skewed bg */
}

/* Connector Line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 0 0 10px white, 0 10px 20px rgba(2, 132, 199, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Highlight Banner
   ========================================================================== */
.highlight-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background for banner */
.highlight-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
}

.highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* ==========================================================================
   Trust / Service
   ========================================================================== */
.trust-service {
    background-color: var(--bg-white);
    padding: 8rem 0;
}

.trust-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.trust-text>p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

.trust-points li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.trust-points li:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: var(--primary-light);
}

.trust-points i {
    color: var(--primary);
    font-size: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.trust-points strong {
    display: block;
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.trust-points span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
    border-radius: 50%;
    padding: 0.25rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    padding-right: 2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
    background: var(--primary-light);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--bg-white);
}

.contact-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
    color: white;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

/* Contact bg decoration */
.contact-info::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
}

.contact-link i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    transition: var(--transition);
}

.contact-link:hover i {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

.whatsapp-link {
    background-color: #25D366;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: inline-flex;
    width: max-content;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link i {
    background: transparent;
    padding: 0;
    font-size: 1.75rem;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-link:hover i {
    background: transparent;
    color: white;
}

.contact-form-wrapper {
    padding: 4rem 3rem;
    background: var(--bg-white);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--secondary);
    color: white;
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about .logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 80%;
}

.footer h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer ul li,
.footer ul a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer ul a:hover {
    color: white;
    padding-left: 5px;
    /* Slight nudge on hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .usps-grid .usp-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-container {
        gap: 3rem;
    }

    .trust-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header .btn {
        display: none;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-trust {
        justify-content: center;
    }

    .pricing-grid,
    .pricing-card:last-child {
        grid-template-columns: 1fr;
        max-width: 100%;
        grid-column: auto;
    }

    .popular {
        transform: none;
        padding: 2.5rem;
    }

    .popular:hover {
        transform: translateY(-5px);
    }

    .usps-grid .usp-items {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid::before {
        display: none;
    }

    .trust-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-image {
        order: -1;
    }

    .trust-points li {
        text-align: left;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about p {
        max-width: 100%;
    }

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

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-price {
    font-size: 1rem;
    color: var(--text-muted);
}

.sticky-price strong {
    font-size: 1.5rem;
    color: var(--secondary);
}

.sticky-price span {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* On mobile, push above sticky CTA bar */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 6rem;
        right: 1rem;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float i {
        font-size: 1.75rem;
    }
}