/* Variables de Colores - Paleta Ejecutiva (Navy, Cian, Dorado) */
:root {
    --color-primary: #1B4F72; /* Azul navy profundo */
    --color-secondary: #2E86C1; /* Azul corporativo */
    --color-accent: #C9A84C; /* Dorado ejecutivo */
    --color-dark: #0D2137; /* Navy muy oscuro */
    --color-gradient: linear-gradient(135deg, #1B4F72 0%, #2471A3 50%, #2E86C1 100%);
    --color-gradient-alt: linear-gradient(135deg, #1B4F72 0%, #154360 100%);
    --color-gradient-gold: linear-gradient(135deg, #C9A84C 0%, #D4B86A 50%, #E0C97E 100%);
    --color-text: #1A1F36;
    --color-text-light: #64748B;
    --color-light: #F7F9FC;
    --color-white: #ffffff;
    --color-shadow: rgba(27, 79, 114, 0.15);
    --color-border: #E2E8F0;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* -------------------- CABECERA -------------------- */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    color: var(--color-text);
    padding: 0;
    min-height: 80px;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(13, 33, 55, 0.08);
}

.header-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-secondary), var(--color-primary));
    background-size: 200% 100%;
    animation: accentShimmer 6s ease-in-out infinite;
}

@keyframes accentShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: 1280px;
    padding: 16px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 6px rgba(27, 79, 114, 0.18));
}

.logo-container:hover .logo-img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 4px 12px rgba(201, 168, 76, 0.3));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

header .logo {
    font-family: 'Montserrat', sans-serif;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 4px;
    line-height: 1;
    position: relative;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

header a {
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

header a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header a:hover {
    color: var(--color-primary);
    background-color: transparent;
}

header a:hover::after {
    width: 100%;
}

/* CTA button in nav */
header a.nav-cta {
    background: var(--color-gradient-gold);
    color: var(--color-dark);
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 10px rgba(201, 168, 76, 0.25);
}

header a.nav-cta::after {
    display: none;
}

header a.nav-cta:hover {
    color: var(--color-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
    filter: brightness(107%);
}

header ul {
    list-style: none;
    display: flex;
    align-items: center;
}

header li {
    padding: 0 18px;
}

header li:last-child {
    padding-right: 0;
    padding-left: 10px;
}

/* -------------------- BOTONES Y UTILIDADES -------------------- */
.btn-primary {
    display: inline-block;
    background: var(--color-gradient-gold);
    color: var(--color-dark);
    padding: 15px 32px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    filter: brightness(108%);
}

.btn-learn-more {
    background: var(--color-gradient-alt);
    color: var(--color-white);
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-learn-more:hover {
    background: var(--color-gradient);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-shadow);
}

/* -------------------- SECCIÓN HERO -------------------- */
#hero {
    background-color: var(--color-dark);
    background-image:
        linear-gradient(rgba(46, 134, 193, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 134, 193, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    color: var(--color-white);
    min-height: 560px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 134, 193, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--color-accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 3px;
    margin-bottom: 24px;
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

#hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-shadow: none;
}

#hero h2 span {
    color: var(--color-accent);
}

#hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.75;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
    max-width: 420px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-permit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.hero-permit-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateX(6px);
}

.hero-permit-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    min-width: 28px;
}

.hero-permit-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.hero-permit-badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.hero-permit-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-permit-badge.process {
    background: rgba(201, 168, 76, 0.15);
    color: var(--color-accent);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

/* -------------------- SECCIÓN SERVICIOS -------------------- */
.services-section {
    padding: 90px 0;
    padding-top: 110px;
    text-align: center;
    background: var(--color-white);
    position: relative;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    color: var(--color-dark);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.services-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    flex: 1;
    background: var(--color-white);
    padding: 36px 32px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 79, 114, 0.12);
    border-left-color: var(--color-primary);
}

.card-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.card-icon svg {
    width: 26px;
    height: 26px;
}

.card h4 {
    color: var(--color-dark);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* -------------------- SECCIÓN MARCO LEGAL -------------------- */
.legal-section {
    padding: 90px 0;
    padding-top: 90px;
    background: var(--color-light);
    text-align: center;
    position: relative;
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(46, 134, 193, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(2) { animation-delay: -2s; }
.floating-icon:nth-child(3) { animation-delay: -4s; }
.floating-icon:nth-child(4) { animation-delay: -1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(5px) rotate(-1deg); }
    75% { transform: translateY(-5px) rotate(1deg); }
}

.legal-section .container {
    position: relative;
    z-index: 2;
}

.legal-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.legal-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.legal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.legal-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.legal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--color-shadow);
}

.legal-card h4 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-card p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-details ul {
    list-style: none;
    padding: 0;
}

.legal-details li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text);
}

.legal-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.process-placeholder {
    color: var(--color-text-light);
    font-weight: 500;
    font-style: italic;
    padding: 20px;
    background: rgba(27, 79, 114, 0.04);
    border-radius: 4px;
    border-left: 3px solid var(--color-accent);
}

/* -------------------- TIMELINE DE PROCESO -------------------- */
.process-section {
    padding: 90px 0;
    background: var(--color-dark);
    color: white;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
}

.process-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), rgba(201,168,76,0.4), transparent);
}

.process-step {
    padding: 0 24px;
    position: relative;
    text-align: center;
}

.step-number {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.step-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* -------------------- SECCIÓN CONTACTO -------------------- */
.contact-section {
    padding: 80px 0;
    padding-top: 120px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.contact-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    position: relative;
}

.contact-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-gradient-gold);
    border-radius: 2px;
}

.contact-subtitle {
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-top: 20px;
    margin-bottom: 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(27, 79, 114, 0.14);
    border-color: var(--color-accent);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

a.contact-card:hover .contact-card-icon {
    background: var(--color-gradient-gold);
    color: var(--color-dark);
    transform: scale(1.1);
}

a.contact-card:hover .contact-card-icon--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-detail {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-action {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.contact-action-muted {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-location {
    cursor: default;
}

/* -------------------- PIE DE PÁGINA -------------------- */
footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, #142d42 50%, var(--color-primary) 100%);
    color: var(--color-light);
    padding: 50px 0 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-gradient);
    border-radius: 2px;
}

.footer-section p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* -------------------- Media Queries (Responsividad) -------------------- */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 12px;
        padding: 14px 0;
    }
    header nav ul {
        padding-top: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    header li {
        padding: 0 8px;
    }
    header a.nav-cta {
        padding: 8px 18px;
        font-size: 12px;
    }
    .logo-tagline {
        text-align: center;
    }
    .logo-container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    .logo-text-group {
        align-items: center;
    }
    #hero h2 {
        font-size: 2rem;
    }
    #hero p {
        font-size: 1.2rem;
    }
    .service-cards {
        flex-direction: column;
    }
    
    .legal-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 12px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 65px;
    }
    
    header .logo {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .legal-section h3,
    .services-section h3,
    .contact-section h3,
    .why-section h3 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}