.nav-cta .btn {
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(1, 123, 59, 0.3);
}

.nav-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 123, 59, 0.4);
}/* ==========================================
   RESET & BASE
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #017b3b;
    --primary-dark: #015c2b;
    --secondary: #181d36;
    --dark: #242424;
    --gray-900: #1a1a1a;
    --gray-700: #4a4a4a;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, address {
    list-style: none;
    font-style: normal;
}

h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

/* ==========================================
   CONTAINERS
========================================== */

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.wrapper-form {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   NAVBAR
========================================== */

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 36px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 48px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.link-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.2s ease;
}

.link-phone:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(1, 123, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 123, 59, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
    background: var(--gray-100);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: var(--secondary);
}

.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(24, 29, 54, 0.95) 0%, 
        rgba(1, 123, 59, 0.85) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 15%;
    left: -40px;
    animation-delay: 0.5s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1s;
}

.hero-floating-card i {
    font-size: 28px;
    color: var(--primary);
}

.hero-floating-card strong {
    display: block;
    font-size: 16px;
    color: var(--secondary);
}

.hero-floating-card span {
    font-size: 13px;
    color: var(--gray-500);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   SECTIONS
========================================== */

.section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('IMG/mundi.png') repeat-x center;
    background-size: auto 80%;
    opacity: 0.03;
    animation: worldMapScroll 180s linear infinite;
    pointer-events: none;
}

@keyframes worldMapScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-alt {
    padding: 120px 0;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('IMG/mundi.png') repeat-x center;
    background-size: auto 80%;
    opacity: 0.02;
    animation: worldMapScroll 180s linear infinite;
    pointer-events: none;
}

.section-dark {
    padding: 120px 0;
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('IMG/mundi.png') repeat-x center;
    background-size: auto 80%;
    opacity: 0.05;
    animation: worldMapScroll 180s linear infinite;
    pointer-events: none;
}

.section-dark h2,
.section-dark h3,
.section-dark .text-large {
    color: var(--white);
}

.section-head {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.text-large {
    font-size: 19px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-top: 20px;
}

/* ==========================================
   GRIDS
========================================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* ==========================================
   EXPERTISE CARDS
========================================== */

.card-expertise {
    position: relative;
    padding: 48px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.card-expertise:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.card-expertise.featured {
    background: var(--gradient);
    border-color: var(--primary);
}

.card-expertise.featured h3,
.card-expertise.featured p,
.card-expertise.featured .card-list li {
    color: var(--white);
}

.card-expertise.featured .card-number {
    color: rgba(255, 255, 255, 0.3);
}

.card-expertise.featured .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.card-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 64px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.card-expertise h3 {
    margin-bottom: 16px;
}

.card-expertise p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.card-list i {
    color: var(--primary);
    font-size: 16px;
}

/* ==========================================
   SPLIT SECTION
========================================== */

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.split-text h2 {
    margin: 20px 0 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}

.benefit-item span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.split-visual {
    position: relative;
}

.visual-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.visual-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.visual-image:hover img {
    transform: scale(1.05);
}

/* ==========================================
   FEATURE CARDS
========================================== */

.card-feature {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.card-icon-top {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.card-feature h3 {
    margin-bottom: 12px;
}

.card-feature p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==========================================
   PRODUCTS
========================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.product-card {
    padding: 48px 36px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 24px;
}

.product-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.product-card p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 12px;
}

/* ==========================================
   INSURANCE CARDS
========================================== */

.insurance-card {
    padding: 48px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.insurance-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.insurance-header {
    margin-bottom: 24px;
}

.insurance-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.insurance-desc {
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.insurance-info {
    margin-bottom: 32px;
}

.insurance-info strong {
    display: block;
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.insurance-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.insurance-list i {
    color: var(--primary);
    font-size: 18px;
}

/* ==========================================
   CTA SUPPORT
========================================== */

.cta-support {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('IMG/mundi.png') repeat-x center;
    background-size: auto 80%;
    opacity: 0.08;
    animation: worldMapScroll 180s linear infinite;
    pointer-events: none;
}

.support-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.support-content > p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-item {
    text-align: center;
}

.support-item i {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.support-item strong {
    display: block;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.support-item span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   FORM SECTION
========================================== */

.section-form {
    padding: 120px 0;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.section-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('IMG/mundi.png') repeat-x center;
    background-size: auto 80%;
    opacity: 0.02;
    animation: worldMapScroll 180s linear infinite;
    pointer-events: none;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.form-content h2 {
    margin: 20px 0 24px;
}

.form-content > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-benefit i {
    color: var(--primary);
    font-size: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select {
    padding: 16px 20px;
    font-size: 15px;
    border: 2px solid var(--gray-100);
    border-radius: 10px;
    background: var(--white);
    color: var(--secondary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(1, 123, 59, 0.1);
}

.form-group select {
    cursor: pointer;
}

.btn-loading {
    display: none;
}

.contact-form.loading .btn-text {
    display: none;
}

.contact-form.loading .btn-loading {
    display: flex;
}

.form-message {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #34d399;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #f87171;
}

/* ==========================================
   FOOTER
========================================== */

.footer {
    padding: 80px 0 40px;
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.footer-contact-item:hover {
    color: var(--primary);
}

.footer-contact-item i {
    font-size: 16px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col address {
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        padding: 48px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wrapper,
    .wrapper-form {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 0 24px;
        height: 80px;
    }
    
    .nav-logo img {
        height: 32px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-menu a {
        display: block;
        padding: 20px 24px;
        font-size: 16px;
        font-weight: 600;
        color: var(--secondary);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-100);
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-cta.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-cta .link-phone {
        justify-content: center;
        padding: 14px;
        background: var(--gray-100);
        border-radius: 10px;
        font-size: 16px;
    }
    
    .nav-cta .btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section,
    .section-alt,
    .section-dark {
        padding: 80px 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-expertise,
    .insurance-card {
        padding: 32px;
    }
    
    .form-container {
        padding: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}