:root {
    --navy: #1f3a55;
    --light: #3fa9f5;
    --white: #ffffff;
    --slate: #f5f7fb;
    --text: #273040;
    --muted: #6b7280;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", "Lato", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #edf0f5;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 2px solid rgba(31, 58, 85, 0.15);
    background: var(--white);
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: var(--navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--light);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(63, 169, 245, 0.4);
}

.btn-outline {
    border: 1px solid rgba(31, 58, 85, 0.2);
    color: var(--navy);
}

.btn-link {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    margin-top: 0.75rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
    padding: 5rem 5vw;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(31, 58, 85, 0.95), rgba(23, 72, 128, 0.9));
    color: var(--white);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
}

.hero .eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin: 0.5rem 0;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.75rem;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-highlights li {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: 200px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-highlights strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.hero-badge img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    object-fit: cover;
}

.hero-badge {
    position: relative;
}

.brand-chip {
    position: absolute;
    bottom: -1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.brand-chip img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.brand-chip p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    cursor: pointer;
    z-index: 10;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
    }
}

.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.orb {
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(63, 169, 245, 0.7), transparent 70%);
    filter: blur(8px);
}

.orb-one {
    top: -40px;
    left: 10%;
}

.orb-two {
    bottom: -80px;
    right: 5%;
}

.orb-three {
    top: 30%;
    right: 35%;
}

.hero-geo {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    opacity: 0.35;
}

.hero-ring {
    width: 220px;
    height: 220px;
    top: 5%;
    left: 45%;
}

.hero-hex {
    border-radius: 0;
    width: 180px;
    height: 180px;
    top: 40%;
    left: 5%;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-circle {
    width: 140px;
    height: 140px;
    bottom: 10%;
    right: 10%;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-deco {
    position: absolute;
    font-size: 2.5rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.hero-cap {
    top: 18%;
    right: 32%;
}

.hero-globe {
    bottom: 8%;
    right: 25%;
}

.hero-plane {
    top: 5%;
    right: 10%;
    font-size: 2rem;
}

.hero-books {
    top: 48%;
    right: 28%;
}

.hero-books svg {
    width: 70px;
    height: 50px;
}

.section {
    padding: 4.5rem 5vw;
    background: var(--white);
}

.section:nth-of-type(even) {
    background: var(--slate);
}

.section.decorated {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section.decorated::before,
.section.decorated::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

.section.decorated::before {
    background: radial-gradient(circle at top left, rgba(63, 169, 245, 0.25), transparent 55%);
}

.section.decorated::after {
    background: radial-gradient(circle at bottom right, rgba(31, 58, 85, 0.22), transparent 50%);
    mix-blend-mode: multiply;
}

.shape-cluster {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.shape-cluster span {
    position: absolute;
    display: block;
    opacity: 0.35;
}

.geo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 169, 245, 0.6), transparent 70%);
    filter: blur(0.5px);
}

.geo-circle.small {
    width: 80px;
    height: 80px;
}

.geo-circle.medium {
    width: 120px;
    height: 120px;
}

.geo-circle.large {
    width: 200px;
    height: 200px;
}

.geo-outline {
    border: 2px solid rgba(31, 58, 85, 0.35);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    backdrop-filter: blur(2px);
}

.geo-outline.ring {
    border-width: 3px;
    border-color: rgba(63, 169, 245, 0.45);
}

.geo-outline.hex {
    border: none;
    width: 150px;
    height: 150px;
    background: none;
    position: absolute;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    border: 2px solid rgba(31, 58, 85, 0.3);
}

.geo-outline.grid {
    width: 180px;
    height: 120px;
    border: none;
    background: repeating-linear-gradient(90deg, rgba(31, 58, 85, 0.2) 0, rgba(31, 58, 85, 0.2) 2px, transparent 2px, transparent 18px),
        repeating-linear-gradient(0deg, rgba(63, 169, 245, 0.2) 0, rgba(63, 169, 245, 0.2) 2px, transparent 2px, transparent 18px);
    border-radius: 18px;
}


.about-shapes .geo-circle.large {
    top: -20px;
    left: -40px;
}

.about-shapes .geo-circle {
    bottom: 10%;
    right: 10%;
}

.about-shapes .geo-outline {
    top: 30%;
    right: 5%;
}

.services-shapes .geo-circle {
    top: 5%;
    right: 20%;
}

.services-shapes .hex {
    bottom: 10%;
    left: 5%;
}

.services-shapes .ring {
    top: 35%;
    left: 60%;
}

.process-shapes .ring {
    top: -10%;
    right: 10%;
}

.process-shapes .geo-circle.small {
    bottom: 15%;
    left: 20%;
}

.process-shapes .grid {
    bottom: 5%;
    right: 5%;
}

.testimonial-shapes .geo-circle.large {
    bottom: -15%;
    right: -10%;
}

.testimonial-shapes .ring {
    top: 10%;
    left: 5%;
}

.testimonial-shapes .hex {
    top: 40%;
    right: 15%;
}

.contact-shapes .geo-circle {
    top: -10%;
    left: 40%;
}

.contact-shapes .ring {
    bottom: 5%;
    left: 10%;
}

.contact-shapes .hex {
    top: 20%;
    right: 15%;
}

#services.decorated {
    background: linear-gradient(145deg, rgba(245, 247, 251, 0.95), #ffffff);
}

#services.decorated::before {
    background: radial-gradient(circle at 15% 20%, rgba(63, 169, 245, 0.2), transparent 55%);
}

#services.decorated::after {
    background: linear-gradient(120deg, rgba(31, 58, 85, 0.08), transparent 65%);
}

#process.decorated {
    background: linear-gradient(160deg, #f5f7fb 0%, #ffffff 70%);
}

#testimonials.decorated {
    background: linear-gradient(120deg, rgba(31, 58, 85, 0.05), rgba(63, 169, 245, 0.05));
}

#contact.decorated {
    background: linear-gradient(135deg, rgba(31, 58, 85, 0.04), rgba(63, 169, 245, 0.12));
}

.section-header {
    max-width: 720px;
    margin-bottom: 2rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 800px;
}

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

.about-highlights {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-highlights li {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    background: rgba(31, 58, 85, 0.05);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(31, 58, 85, 0.05);
}

.image-gallery {
    margin-top: 2rem;
}

.gallery-img-single {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(31, 58, 85, 0.15);
    transition: transform 0.3s ease;
}

.gallery-img-single:hover {
    transform: scale(1.02);
}

.bullet-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 169, 245, 0.15);
    font-weight: 600;
    color: var(--navy);
}

.about-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(31, 58, 85, 0.15);
    position: relative;
    overflow: hidden;
    align-self: start;
}

.about-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(63, 169, 245, 0.2), transparent 60%);
    pointer-events: none;
}

.panel-feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-top: 1.5rem;
    box-shadow: 0 15px 30px rgba(31, 58, 85, 0.12);
    position: relative;
    z-index: 1;
}

.ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy), var(--light));
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.stat-pair {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.signature-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(31, 58, 85, 0.05);
    padding: 0.75rem;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.signature-card img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
}

.signature-title {
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.signature-meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.cards-grid::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 20% 20%, rgba(63, 169, 245, 0.12), transparent 55%), radial-gradient(circle at 80% 0%, rgba(31, 58, 85, 0.12), transparent 55%);
    z-index: -1;
    filter: blur(5px);
}

.swipe-hint {
    text-align: center;
    color: var(--light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    animation: pulse-hint 2s infinite;
    display: none;
}

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

@keyframes pulse-hint {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrapper::before,
.testimonials-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonials-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.testimonials-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper::after {
        opacity: 1;
    }
}

.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--light) var(--slate);
    padding-bottom: 1rem;
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--slate);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--light);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

.testimonials-slider .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
    min-width: 280px;
}

@media (max-width: 900px) {
    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 260px;
    }
}

@media (max-width: 640px) {
    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(85% - 0.75rem);
        min-width: 240px;
    }
}

.service-card, .testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(31, 58, 85, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(31, 58, 85, 0.18);
}

.service-image-wrapper {
    width: calc(100% + 4rem);
    height: 180px;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    position: relative;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(31, 58, 85, 0.3) 100%);
    pointer-events: none;
}

.service-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--light);
    text-transform: uppercase;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(63, 169, 245, 0.2), transparent 65%);
    opacity: 0.45;
    pointer-events: none;
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(31, 58, 85, 0.2);
}

.testimonial-meta {
    flex: 1;
}

.testimonial-meta .author {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
}

.testimonial-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(120deg, var(--light), rgba(63, 169, 245, 0.7));
    color: var(--white);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(63, 169, 245, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.process-steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-steps li {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(31, 58, 85, 0.1);
    position: relative;
}

.process-steps li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--light), transparent);
    transform: translateY(-50%);
}

.process-steps li:last-child::after {
    display: none;
}

.process-image-badge {
    width: calc(100% + 3rem);
    height: 140px;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    position: relative;
}

.process-image-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.process-steps li:hover .process-image-badge img {
    filter: brightness(1);
    transform: scale(1.05);
}

.process-image-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(31, 58, 85, 0.5) 100%);
    pointer-events: none;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.contact-info {
    background: var(--slate);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: inset 0 0 0 1px rgba(31, 58, 85, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info p {
    margin: 0 0 0.75rem;
}

.contact-info::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(63, 169, 245, 0.2), transparent 65%);
    opacity: 0.4;
    pointer-events: none;
}

.contact-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-badges span {
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(31, 58, 85, 0.1);
}

.mini-map {
    margin-top: 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.mini-map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 25px 45px rgba(31, 58, 85, 0.12);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem;
    font: inherit;
}

.contact-form label {
    font-weight: 600;
    color: var(--navy);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--light);
    box-shadow: 0 0 0 3px rgba(63, 169, 245, 0.2);
}

.site-footer {
    text-align: center;
    padding: 2.5rem 5vw;
    background: var(--navy);
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    background: white;
    padding: 4px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
}

@media (max-width: 900px) {
    .main-nav {
        position: absolute;
        top: 100%;
        right: 5vw;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        border-radius: var(--radius);
        box-shadow: 0 20px 40px rgba(31, 58, 85, 0.15);
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 1rem 1.25rem;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .hero {
        padding: 2.5rem 1.25rem 3rem;
        min-height: auto;
        align-content: start;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 0.95rem;
    }

    .hero .eyebrow {
        font-size: 0.75rem;
    }

    .hero-orbs {
        opacity: 0.3;
    }

    .hero-deco {
        display: none;
    }

    .hero-geo {
        opacity: 0.15;
    }

    .orb {
        width: 120px;
        height: 120px;
    }

    .brand-chip {
        position: static;
        margin-top: 1rem;
    }

    .hero-highlights {
        flex-direction: row;
    }

    .hero-highlights li {
        flex: 1;
        min-width: 140px;
        font-size: 0.85rem;
        padding: 0.85rem 1rem;
    }

    .hero-highlights strong {
        font-size: 1.25rem;
    }

    .btn-whatsapp {
        display: inline-flex;
    }

    .hero-badge {
        display: none;
    }
}

@keyframes float {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(15px, -25px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
