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

:root {
    --navbar-bg:    #545E5C;
    --dark-bg:      #021F2C;
    --green:        #61CE70;
    --orange:       #F59E0B;
    --mint:         #E3F5E3;
    --text-dark:    #292D34;
    --text-mid:     #4B5563;
    --text-light:   #666666;
    --border:       #E5E7EB;
    --white:        #FFFFFF;
    --font-heading: 'Oswald', sans-serif;
    --font-body:    'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background: #fff;
    line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

.container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 640px) { .container { width: 92%; } }


/* ══════════════════════════════════════
   TYPOGRAPHY SYSTEM
══════════════════════════════════════ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

/* Eyebrow labels */
.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.eyebrow--green { color: var(--green); }
.eyebrow--light { color: rgba(255,255,255,0.9); }
.eyebrow--dark  { color: var(--text-dark); }

/* Shared link styles */
.link-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 3px;
    transition: opacity .2s;
}
.link-accent:hover { opacity: .75; }
.link-accent svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1.5px solid rgba(255,255,255,0.6);
    padding-bottom: 3px;
    transition: opacity .2s, border-color .2s;
}
.hero-btn:hover { opacity: .8; border-bottom-color: var(--white); }
.hero-btn svg { width: 16px; height: 16px; }

.cta-underline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-bg);
    border-bottom: 1.5px solid var(--dark-bg);
    padding-bottom: 3px;
    transition: opacity .2s;
}
.cta-underline:hover { opacity: .7; }
.cta-underline svg { width: 16px; height: 16px; }


/* ══════════════════════════════════════
   LUCIDE ICONS
══════════════════════════════════════ */
svg.lucide { display: block; flex-shrink: 0; }

.hamburger-icon { width: 22px; height: 22px; stroke: var(--green); }
.nav-icon       { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--green); }
.check-icon     { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--green); stroke-width: 2.5 !important; }
.dato-icon      { width: 20px; height: 20px; flex-shrink: 0; stroke: rgba(255,255,255,.85); }

.feature-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.75rem;
    display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 100%; height: 100%; stroke: var(--green); stroke-width: 1.5 !important; }

.stat-icon {
    width: 48px; height: 48px;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 100%; height: 100%; stroke: var(--green); stroke-width: 1.5 !important; }

.cta-icon {
    width: 90px; height: 90px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.cta-icon svg { width: 100%; height: 100%; stroke: rgba(255,255,255,.45); stroke-width: 1.5 !important; }

.contacto-card-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.contacto-card-icon svg { width: 100%; height: 100%; stroke: var(--green); stroke-width: 1.5 !important; }

.footer-link-icon { width: 14px; height: 14px; stroke: var(--green); stroke-width: 2 !important; flex-shrink: 0; }

.footer-social .social-link svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.7); stroke-width: 1.5 !important; }

.mobile-menu-close svg { width: 24px; height: 24px; stroke: var(--white); stroke-width: 2 !important; }
.mobile-link svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--green); stroke-width: 1.5 !important; }

.testi-arrow svg { width: 22px; height: 22px; stroke: var(--text-mid); stroke-width: 1.5 !important; }

.btn-contacto svg { width: 16px; height: 16px; }


/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navbar-bg);
    height: 72px;
}

.navbar-inner {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: background .2s;
}
.menu-toggle:hover { background: rgba(255,255,255,.1); }
.menu-toggle:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-svg path { fill: var(--white); }

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-contact { display: flex; align-items: center; gap: 2rem; }

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity .2s;
}
.nav-contact-item:hover { opacity: .8; }

@media (max-width: 640px) {
    .navbar-inner { width: 92%; }
    .nav-contact { display: none; }
}


/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mobile-menu {
    position: fixed; inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
}
.mobile-menu.is-open { pointer-events: all; visibility: visible; opacity: 1; }

.mobile-menu-overlay {
    position: absolute; inset: 0;
    background: rgba(2,31,44,.6);
    backdrop-filter: blur(4px);
}

.mobile-menu-panel {
    position: absolute; top: 0; left: 0;
    width: 80%; max-width: 300px; height: 100%;
    background: var(--navbar-bg);
    padding: 1.5rem;
    display: flex; flex-direction: column;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.16,1,.3,1);
    box-shadow: 6px 0 32px rgba(0,0,0,.35);
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-close {
    background: none; border: none; cursor: pointer;
    padding: 6px; margin-bottom: 2rem; align-self: flex-end;
    display: flex; align-items: center; border-radius: 6px;
    transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.1); }

.mobile-menu-links { display: flex; flex-direction: column; gap: 0.5rem; }

.mobile-link {
    display: flex; align-items: center; gap: .85rem;
    color: var(--white); font-size: .95rem; font-weight: 500;
    padding: .75rem 1rem; border-radius: 8px;
    transition: background .2s;
}
.mobile-link:hover { background: rgba(255,255,255,.1); }

.mobile-cta {
    margin-top: 1rem;
    background: var(--green);
    color: var(--dark-bg);
    font-weight: 700;
    justify-content: center;
}
.mobile-cta:hover { background: #52c061; }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    position: relative;
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(2,31,44,.88) 0%,
        rgba(2,31,44,.6) 50%,
        rgba(2,31,44,.15) 100%
    );
    z-index: 1;
}

.hero-content-wrap {
    position: relative; z-index: 2;
    flex: 1;
    display: flex; align-items: center;
    padding: 5rem 0 2rem;
}

.hero-content { max-width: 620px; }

.hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,.82);
    max-width: 500px;
    margin-bottom: 2.25rem;
    line-height: 1.8;
}

/* logos strip at bottom of hero */
.hero-logos {
    position: relative; z-index: 2;
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 1.5rem 0;
    margin-top: auto;
}

.logos-inner {
    display: flex; gap: 3rem;
    align-items: center; flex-wrap: wrap;
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 500;
    color: rgba(255,255,255,.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ══════════════════════════════════════
   CTA BANNER (on mint bg)
══════════════════════════════════════ */
.cta-outer {
    background: var(--mint);
    padding: 3rem 0 0;
}

.cta-banner {
    background: var(--green);
    border-radius: 12px;
    padding: 2.75rem 3rem;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--dark-bg);
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .cta-banner { padding: 2rem 1.5rem; border-radius: 10px; }
    .cta-icon   { display: none; }
}


/* ══════════════════════════════════════
   3 FEATURE CARDS (on mint bg)
══════════════════════════════════════ */
.features {
    background: var(--mint);
    padding: 5rem 0 6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(97,206,112,.25);
    border-radius: 4px;
    overflow: hidden;
    background: var(--mint);
}

.feature-card {
    padding: 3rem 2.5rem;
    text-align: center;
    border-right: 1px solid rgba(97,206,112,.25);
    transition: background .25s;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: rgba(255,255,255,.5); }

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: 1px solid rgba(97,206,112,.25); }
    .feature-card:last-child { border-bottom: none; }
}


/* ══════════════════════════════════════
   SOLUCIÓN INTEGRAL
══════════════════════════════════════ */
.solucion {
    padding: 6rem 0;
    background: var(--white);
}

.solucion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.solucion-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.solucion-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.checklist { list-style: none; margin-bottom: 2.5rem; }

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--text-mid);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
}
.checklist li:first-child { border-top: 1px solid var(--border); }

.solucion-right {
    display: flex; flex-direction: column; gap: 1.5rem;
}

.solucion-img {
    border-radius: 4px;
    height: 380px;
    background-image: url('https://palegoldenrod-newt-728384.hostingersite.com/wp-content/uploads/2026/03/1920x1080-02.jpg');
    background-size: cover;
    background-position: center;
}

.solucion-note {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .solucion-grid { grid-template-columns: 1fr; gap: 3rem; }
}


/* ══════════════════════════════════════
   ¿POR QUÉ DQTAURO?
══════════════════════════════════════ */
.por-que {
    background: var(--white);
    padding: 6rem 0 10rem;   /* extra bottom for overlap */
    position: relative;
    z-index: 1;
}

.por-que .container { padding-bottom: 40px; }

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

.por-que-img {
    height: 560px;
    border-radius: 4px;
    overflow: hidden;
}

.por-que-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--border);
}

.dark-cards {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 1.5rem;
}

.dark-card {
    background: var(--dark-bg);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.dark-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}

.dark-card p {
    font-size: 0.83rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .por-que { padding-bottom: 6rem; }
    .por-que-grid { grid-template-columns: 1fr; }
    .por-que-img { height: 300px; }
}


/* ══════════════════════════════════════
   RECENT PROJECTS (dark, overlaps por-que)
══════════════════════════════════════ */
.proyectos {
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
    margin-top: -160px;
    padding-top: 280px;
    padding-bottom: 5rem;
}

.proyectos-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.proyectos-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
}

.proyectos-scroll-wrap {
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--green) rgba(255,255,255,.1);
}
.proyectos-scroll-wrap::-webkit-scrollbar { height: 3px; }
.proyectos-scroll-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.proyectos-scroll-wrap::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

.proyectos-scroll {
    display: flex; gap: 4px;
    width: max-content;
    padding: 0 calc(10vw);   /* align with container */
}

.proy-img {
    width: 340px; height: 260px;
    flex-shrink: 0; overflow: hidden;
}
.proy-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.proy-img:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
    .proyectos { margin-top: 0; padding-top: 4rem; }
    .proyectos-scroll { padding: 0 4%; }
    .proy-img { width: 260px; height: 200px; }
}


/* ══════════════════════════════════════
   TESTIMONIAL CAROUSEL
══════════════════════════════════════ */
.testimonio {
    padding: 7rem 0 5rem;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonio-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    min-height: 280px;
}

.testi-quote {
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 0.75;
    color: #E5E7EB;
    flex-shrink: 0;
    user-select: none;
}
.testi-quote--l { align-self: flex-start; margin-top: 0.5rem; }
.testi-quote--r { align-self: flex-end; margin-bottom: 0.5rem; }

.testi-slider {
    flex: 1;
    text-align: center;
    position: relative;
}

.testi-slide {
    display: none;
    animation: fadeIn .4s ease;
}
.testi-slide.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testi-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.75rem;
    border: 3px solid var(--border);
}

.testi-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testi-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.testi-role {
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
}

/* Controls */
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.testi-arrow {
    background: none;
    border: 1px solid var(--border);
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, background .2s;
    flex-shrink: 0;
}
.testi-arrow:hover {
    border-color: var(--green);
    background: var(--mint);
}
.testi-arrow:hover svg { stroke: var(--green) !important; }

.testi-dots { display: flex; gap: 0.5rem; }

.testi-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.testi-dot.active {
    background: var(--green);
    transform: scale(1.2);
}


/* ══════════════════════════════════════
   ESTADÍSTICAS
══════════════════════════════════════ */
.stats { padding: 5rem 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.stat-item {
    padding: 2.75rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 700px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
}


/* ══════════════════════════════════════
   CONTACTO
══════════════════════════════════════ */
.contacto {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contacto-info .eyebrow--green { color: var(--green); }

.contacto-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.contacto-info > p {
    font-size: 0.9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Address card */
.contacto-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
}

.contacto-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.contacto-card span {
    font-size: 0.85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}

.contacto-datos {
    display: flex; flex-direction: column; gap: 0.85rem;
    margin-bottom: 2rem;
}

.dato-item {
    display: flex; align-items: center; gap: 1rem;
    color: var(--white); font-size: 0.95rem; font-weight: 500;
    transition: opacity .2s;
}
.dato-item:hover { opacity: .8; }

.btn-contacto {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.4);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background .2s, border-color .2s;
}
.btn-contacto:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.contacto-mapa {
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,.08);
}

@media (max-width: 900px) {
    .contacto-grid { grid-template-columns: 1fr; }
    .contacto-mapa { height: 300px; }
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-main {
    background: #333938;
    padding: 5rem 0;
}

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

/* Col 1 */
.footer-logo {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-svg { width: 40px; height: 40px; flex-shrink: 0; }
.footer-logo-svg path { fill: var(--white); }

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-address {
    font-size: 0.88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.9;
}

/* Col headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green);
}

/* Col 2 */
.footer-info-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.6rem;
    margin-bottom: 1.75rem;
}

.footer-info-list li {
    font-size: 0.87rem;
    color: rgba(255,255,255,.55);
    display: flex; gap: 0.4rem;
}

.footer-info-label {
    color: rgba(255,255,255,.8);
    font-weight: 600;
    flex-shrink: 0;
}

.footer-info-list a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-info-list a:hover { color: var(--green); }

.footer-social {
    display: flex; gap: 0.75rem;
}

.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, background .2s;
}
.social-link:hover {
    border-color: var(--green);
    background: rgba(97,206,112,.1);
}
.social-link:hover svg { stroke: var(--green) !important; }

/* Col 3 */
.footer-links-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.6rem;
}

.footer-links-list a {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,.55);
    transition: color .2s;
}
.footer-links-list a:hover { color: var(--green); }

/* Footer bottom bar */
.footer-bottom {
    background: #1e2221;
    padding: 1.25rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

.footer-bottom-links {
    display: flex; gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.83rem;
    color: rgba(255,255,255,.4);
    transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--green); }

@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ══════════════════════════════════════
   SCROLL REVEAL (applied by JS)
══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ══════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
