/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors - MiaNet Brand */
    --primary-dark: #1a4a6e;
    --primary: #2a6a8f;
    --primary-light: #3d8ab8;
    --accent: #f4c542;
    --accent-light: #ffd666;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a4a6e 0%, #3d8ab8 100%);
    --gradient-hero: linear-gradient(135deg, #e8f4fc 0%, #d0e8f5 50%, #b8dcee 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* WhatsApp */
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Sizing */
    --container-width: 1200px;
    --header-height: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    width: min(var(--container-width), 100% - 2rem);
    margin-inline: auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 106, 143, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 106, 143, 0.5);
}

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

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

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-link-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    margin-left: 0.5rem;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 106, 143, 0.4);
    background: var(--gradient-primary);
}

.nav-toggle,
.nav-close {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(61, 138, 184, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 197, 66, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(26, 74, 110, 0.08) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 8rem;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(42, 106, 143, 0.1);
    color: var(--primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(61, 138, 184, 0.15) 0%,
            rgba(26, 74, 110, 0.1) 50%,
            rgba(61, 138, 184, 0.12) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob 8s ease-in-out infinite;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 32px rgba(42, 106, 143, 0.25),
        inset 0 0 80px rgba(255, 255, 255, 0.15),
        inset 0 -30px 60px rgba(61, 138, 184, 0.1);
}

/* Shine/Shimmer highlight */
.hero-blob::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 12%;
    width: 45%;
    height: 35%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 100%);
    border-radius: 50%;
    filter: blur(3px);
}

/* Animated glow ring */
.hero-blob::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: inherit;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(61, 138, 184, 0.4) 50%,
            transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes blob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Floating water droplets */
.hero-image-wrapper::before,
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(61, 138, 184, 0.4) 100%);
    box-shadow: 0 4px 15px rgba(61, 138, 184, 0.3);
    animation: floatDroplet 4s ease-in-out infinite;
    z-index: 5;
}

.hero-image-wrapper::before {
    width: 25px;
    height: 25px;
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.hero-image-wrapper::after {
    width: 15px;
    height: 15px;
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatDroplet {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) scale(1.15);
        opacity: 1;
    }
}

.hero-img {
    position: relative;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(26, 74, 110, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(42, 106, 143, 0.1);
    color: var(--primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin-inline: auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: var(--white);
}

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

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-hover {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-text {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(42, 106, 143, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.service-text {
    color: var(--gray-500);
    transition: var(--transition);
}

.service-card-wide {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .service-card-wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card-wide {
        grid-column: span 1;
    }
}

/* ===== ENGAGEMENTS SECTION ===== */
.engagements {
    padding: 6rem 0;
    background: var(--gradient-hero);
}

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

.engagement-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.engagement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.engagement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.engagement-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.engagement-text {
    color: var(--gray-500);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(244, 197, 66, 0.15) 0%, transparent 40%);
}

.benefits-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
}

.benefits-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.benefits-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.benefits-title .highlight {
    display: inline-block;
    font-size: 1.3em;
    color: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.benefits-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.benefits-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.benefit-item svg {
    color: var(--accent);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-100);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
    font-size: 1.125rem;
    color: var(--gray-800);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--whatsapp);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(42, 106, 143, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.footer-contact a {
    color: var(--gray-300);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes bounce {

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

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

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-description {
        margin-inline: auto;
    }

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

    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }

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

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

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Improve touch targets - minimum 44px */
    a,
    button,
    .nav-link,
    .btn {
        min-height: 44px;
    }

    /* Smoother scrolling on mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        overflow-y: auto;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.25rem;
        text-align: center;
        border-radius: var(--radius-md);
        font-size: 1.1rem;
        background: var(--gray-50);
        transition: all 0.2s ease;
    }

    .nav-link:active {
        transform: scale(0.98);
        background: var(--gray-100);
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 1rem;
        background: var(--gradient-primary);
        color: var(--white) !important;
    }

    .nav-toggle,
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        cursor: pointer;
        color: var(--gray-700);
        border-radius: var(--radius);
        transition: background 0.2s ease;
    }

    .nav-toggle:active,
    .nav-close:active {
        background: var(--gray-100);
    }

    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    /* Mobile Header - smaller logo */
    .nav-logo img {
        height: 60px;
    }

    /* Mobile Hero */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 1rem);
        padding-bottom: 0;
    }

    .hero-content {
        padding: 1.5rem 0 5rem;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 1.5rem;
    }

    .hero-image-wrapper {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .hero-img {
        max-width: 140px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Active state for buttons - tactile feedback */
    .btn:active {
        transform: scale(0.98);
    }

    /* Mobile Sections */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .services,
    .engagements,
    .benefits,
    .contact,
    .testimonials {
        padding: 3.5rem 0;
    }

    .services-grid,
    .engagements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card:active {
        transform: scale(0.99);
    }

    .service-card-wide {
        grid-column: span 1;
    }

    /* Engagement cards - horizontal on mobile */
    .engagement-card {
        padding: 2rem 1.5rem;
    }

    .engagement-icon {
        width: 70px;
        height: 70px;
    }

    .engagement-icon svg {
        width: 36px;
        height: 36px;
    }

    /* Benefits section mobile */
    .benefits-title {
        font-size: 1.5rem;
    }

    .benefits-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    /* Contact section mobile */
    .contact-wrapper {
        gap: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 0.875rem 0;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 1rem;
    }

    /* WhatsApp button - more prominent on mobile */
    .whatsapp-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Mobile Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-contact p {
        justify-content: center;
    }

    /* Floating WhatsApp - larger touch target */
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Testimonials mobile */
    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Cookie banner mobile improvements */
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-btn {
        padding: 0.875rem 1.25rem;
        flex: 1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        width: calc(100% - 1.5rem);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .benefits-title {
        font-size: 1.5rem;
    }

    .engagement-card,
    .service-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--gradient-hero);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(42, 106, 143, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(42, 106, 143, 0.3);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.25rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.cookie-text svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 0.125rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 106, 143, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
}

.cookie-btn-decline:hover {
    border-color: var(--gray-500);
    color: var(--gray-700);
}

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

    .cookie-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Overlay for mobile menu */
body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
}