/* ==========================================================================
   EVANGELISTA & CO. — DESIGN SYSTEM V2
   Paleta: Beige/Crema + Verde Oliva
   Tipografía: Cormorant Garamond (serif) + Inter (sans)
   Sistema: 8pt Grid
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
    /* Backgrounds */
    --bg-cream:  #F5F1E8;
    --bg-white:  #FFFFFF;
    --bg-dark:   #1A1A1A;

    /* Text */
    --text-dark:    #1A1A1A;
    --text-body:    #2D3319;
    --text-muted:   #707070;
    --text-light:   #EEECE6;

    /* Accent */
    --olive:        #6B7B5E;
    --olive-dark:   #5A6A4E;
    --olive-light:  #8A9A7D;

    /* Spacing — 8pt system */
    --s1:  8px;
    --s2:  16px;
    --s3:  24px;
    --s4:  32px;
    --s5:  40px;
    --s6:  48px;
    --s8:  64px;
    --s10: 80px;
    --s12: 96px;
    --s15: 120px;
    --s20: 160px;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Type scale — Major Third 1.250 */
    --text-xs:   0.64rem;
    --text-sm:   0.8rem;
    --text-base: 1rem;
    --text-lg:   1.25rem;
    --text-xl:   1.563rem;
    --text-2xl:  1.953rem;
    --text-3xl:  2.441rem;
    --text-4xl:  3.052rem;
    --text-5xl:  3.815rem;
    --text-6xl:  4.768rem;

    /* Transitions */
    --t-quick:  250ms cubic-bezier(0, 0, 0.2, 1);
    --t-normal: 350ms cubic-bezier(0, 0, 0.2, 1);
    --t-slow:   500ms cubic-bezier(0, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-body);
    background-color: var(--bg-cream);
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--s6);
}

.container-narrow {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--s6);
}

@media (max-width: 768px) {
    .container,
    .container-narrow { padding: 0 var(--s3); }
}

@media (max-width: 480px) {
    .container,
    .container-narrow { padding: 0 var(--s2); }
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, var(--text-6xl)); }
h2 { font-size: clamp(2rem, 4vw, var(--text-4xl)); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 2.5vw, var(--text-3xl)); line-height: 1.25; }

p {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.75;
    max-width: 65ch;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--olive);
    margin-bottom: var(--s2);
    display: block;
}

.accent-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--olive);
}

.lead-text {
    font-size: var(--text-lg);
    line-height: 1.65;
    color: var(--text-dark);
    font-weight: 400;
    max-width: 60ch;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
    padding: var(--s2) var(--s5);
    background: var(--olive);
    color: #fff;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background var(--t-quick), transform var(--t-quick), box-shadow var(--t-quick);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107,123,94,0.28);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
    padding: calc(var(--s2) - 2px) var(--s5);
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid rgba(26,26,26,0.35);
    border-radius: 2px;
    transition: all var(--t-quick);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245,241,232,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-normal), box-shadow var(--t-normal);
}

.header-sticky.scrolled {
    border-bottom-color: rgba(107,123,94,0.2);
    box-shadow: 0 4px 24px rgba(26,26,26,0.07);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--s4);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--s2);
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

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

.brand-name {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text-dark);
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-tagline {
    font-family: var(--font-sans);
    font-size: 0.56rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--s5);
}

.main-nav a {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    transition: color var(--t-quick);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--olive);
    transition: width var(--t-normal);
}

.main-nav a:hover { color: var(--text-dark); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    padding: 8px 20px !important;
    background: var(--olive) !important;
    color: #fff !important;
    border-radius: 2px;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--olive-dark) !important; color: #fff !important; }

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-dark);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-cream);
    border-top: 1px solid rgba(107,123,94,0.15);
    padding: var(--s3) var(--s4);
    gap: var(--s3);
}

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

.mobile-nav a {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-body);
    padding: var(--s1) 0;
    border-bottom: 1px solid rgba(107,123,94,0.1);
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero-fullscreen {
    min-height: 100vh;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--s20) 0 var(--s15);
    position: relative;
    overflow: hidden;
}

.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 80% 15%, rgba(107,123,94,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 5% 85%, rgba(107,123,94,0.04) 0%, transparent 45%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7.5vw, var(--text-6xl));
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: var(--s5);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, var(--text-lg));
    color: var(--text-body);
    line-height: 1.7;
    max-width: 55ch;
    margin-bottom: var(--s6);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
    align-items: center;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
    margin-top: var(--s20);
    padding-top: var(--s8);
    border-top: 1px solid rgba(107,123,94,0.2);
    position: relative;
    z-index: 1;
}

.stat-item { display: flex; flex-direction: column; gap: var(--s1); }

.stat-number {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 300;
    line-height: 1;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    max-width: none;
}

@media (max-width: 768px) {
    .hero-fullscreen { min-height: auto; padding: var(--s15) 0 var(--s10); }
    .stats-bar { grid-template-columns: 1fr; gap: var(--s4); margin-top: var(--s10); }
    .stat-number { font-size: var(--text-3xl); }
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
    background: var(--bg-white);
    padding: var(--s20) 0;
}

.about-section h2 { margin-bottom: var(--s5); max-width: 22ch; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
    margin-top: var(--s10);
}

.value-card {
    padding: var(--s5);
    background: var(--bg-cream);
    border-left: 3px solid var(--olive);
    transition: transform var(--t-normal), box-shadow var(--t-normal);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107,123,94,0.1);
}

.value-card h3 { font-size: var(--text-xl); margin-bottom: var(--s2); }

.value-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    max-width: none;
}

@media (max-width: 768px) {
    .about-section { padding: var(--s12) 0; }
    .values-grid { grid-template-columns: 1fr; gap: var(--s3); }
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--bg-cream);
    padding: var(--s20) 0;
}

.services-section h2 { margin-bottom: var(--s3); }

.section-intro {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-bottom: var(--s10);
    max-width: 55ch;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
}

.service-card {
    background: var(--bg-white);
    padding: var(--s6);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    transition: transform var(--t-normal), box-shadow var(--t-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--olive);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(107,123,94,0.14);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
    font-family: var(--font-serif);
    font-size: var(--text-5xl);
    font-weight: 300;
    line-height: 1;
    color: var(--olive);
    opacity: 0.3;
    letter-spacing: -0.04em;
}

.service-card h3 { font-size: var(--text-2xl); }

.service-tagline {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive);
    max-width: none;
}

.service-card > p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    flex: 1;
    max-width: none;
    line-height: 1.65;
}

.deliverables {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.deliverables li {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-body);
    padding-left: var(--s2);
    position: relative;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.deliverables li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--olive);
    font-size: 0.65rem;
    top: 1px;
}

.link-arrow {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--olive);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--t-quick), color var(--t-quick);
    margin-top: auto;
}

.link-arrow:hover { color: var(--olive-dark); gap: 10px; }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; gap: var(--s3); }
}

@media (max-width: 768px) {
    .services-section { padding: var(--s12) 0; }
}

/* --------------------------------------------------------------------------
   10. METHODOLOGY SECTION
   -------------------------------------------------------------------------- */
.methodology-section {
    background: var(--bg-white);
    padding: var(--s20) 0;
}

.methodology-section h2 { margin-bottom: var(--s3); }

.phases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s5);
    margin-top: var(--s10);
    position: relative;
}

.phases-grid::before {
    content: '';
    position: absolute;
    top: 8px;
    left: calc(12.5% + var(--s2));
    right: calc(12.5% + var(--s2));
    height: 1px;
    background: linear-gradient(to right, var(--olive), rgba(107,123,94,0.1));
    z-index: 0;
}

.phase-item {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    position: relative;
    z-index: 1;
}

.phase-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--olive);
    margin-bottom: var(--s2);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(107,123,94,0.14);
}

.phase-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive);
    max-width: none;
    line-height: 1;
}

.phase-item h3 { font-size: var(--text-xl); }

.phase-item > p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.65;
    max-width: none;
}

@media (max-width: 900px) {
    .phases-grid { grid-template-columns: repeat(2, 1fr); }
    .phases-grid::before { display: none; }
}

@media (max-width: 600px) {
    .methodology-section { padding: var(--s12) 0; }
    .phases-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   11. SECTORS SECTION
   -------------------------------------------------------------------------- */
.sectors-section {
    background: var(--bg-cream);
    padding: var(--s20) 0;
}

.sectors-section h2 { margin-bottom: var(--s3); }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s4);
    margin-top: var(--s10);
}

.sector-card {
    background: var(--bg-white);
    padding: var(--s6);
    border-radius: 4px;
    transition: transform var(--t-normal), box-shadow var(--t-normal);
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107,123,94,0.1);
}

.sector-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--s3);
    line-height: 1;
}

.sector-card h3 {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: var(--s4);
}

.sector-item {
    margin-bottom: var(--s3);
    padding-bottom: var(--s3);
    border-bottom: 1px solid rgba(107,123,94,0.1);
}

.sector-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sector-item-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 4px;
    display: block;
}

.sector-item p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    max-width: none;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .sectors-section { padding: var(--s12) 0; }
    .sectors-grid { grid-template-columns: 1fr; gap: var(--s3); }
}

/* --------------------------------------------------------------------------
   12. RESULTS SECTION
   -------------------------------------------------------------------------- */
.results-section {
    background: var(--bg-white);
    padding: var(--s15) 0;
    border-top: 1px solid rgba(107,123,94,0.1);
    border-bottom: 1px solid rgba(107,123,94,0.1);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s4);
    margin-top: var(--s8);
}

.result-item {
    text-align: center;
    padding: var(--s4) var(--s2);
    border-right: 1px solid rgba(107,123,94,0.12);
}

.result-item:last-child { border-right: none; }

.result-number {
    font-family: var(--font-serif);
    font-size: var(--text-5xl);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: var(--s1);
}

.result-label {
    font-size: var(--text-sm);
    color: var(--text-body);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    max-width: none;
}

.result-context {
    font-size: var(--text-xs);
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: block;
}

.testimonial-block {
    margin-top: var(--s10);
    padding: var(--s6);
    background: var(--bg-cream);
    border-left: 3px solid var(--olive);
    max-width: 760px;
}

.testimonial-block blockquote {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-style: italic;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.55;
    margin-bottom: var(--s3);
}

.testimonial-block cite {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    font-style: normal;
}

@media (max-width: 900px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .result-item { border-right: none; border-bottom: 1px solid rgba(107,123,94,0.12); }
    .result-item:last-child { border-bottom: none; }
    .result-number { font-size: var(--text-4xl); }
}

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

/* --------------------------------------------------------------------------
   13. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    background: var(--bg-cream);
    padding: var(--s20) 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s10);
    align-items: start;
}

.contact-left h2 { margin-bottom: var(--s4); }

.contact-box {
    background: var(--bg-white);
    padding: var(--s6);
    border-radius: 4px;
    margin-top: var(--s5);
}

.contact-box h3 { font-size: var(--text-xl); margin-bottom: var(--s2); }

.contact-box > p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--s5);
    max-width: none;
    line-height: 1.65;
}

.contact-disclaimer {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--s2);
    max-width: none;
    letter-spacing: 0.02em;
}

.contact-right h3 { font-size: var(--text-xl); margin-bottom: var(--s5); }

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: var(--s5);
}

.contact-info-item {
    display: flex;
    gap: var(--s3);
    align-items: flex-start;
}

.contact-info-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 3px; }

.contact-info-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    display: block;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: var(--text-base);
    color: var(--text-dark);
}

.contact-info-value a {
    color: var(--text-dark);
    transition: color var(--t-quick);
}

.contact-info-value a:hover { color: var(--olive); }

@media (max-width: 768px) {
    .contact-section { padding: var(--s12) 0; }
    .contact-split { grid-template-columns: 1fr; gap: var(--s8); }
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: var(--bg-dark);
    padding: var(--s10) 0 var(--s6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--s8);
    padding-bottom: var(--s6);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: var(--s5);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.footer-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.75;
}

.footer-brand .brand-name {
    color: rgba(255,255,255,0.8);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    max-width: 38ch;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--s3);
}

.footer-col a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    padding: 5px 0;
    transition: color var(--t-quick);
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s2);
}

.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.28); }

.footer-legal { display: flex; gap: var(--s3); }

.footer-legal a {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.28);
    transition: color var(--t-quick);
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; gap: var(--s6); }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--s2); }
}

/* --------------------------------------------------------------------------
   15. MODAL — CHATBOT DIAGNÓSTICO
   -------------------------------------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    background: rgba(26,26,26,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity var(--t-normal);
}

.modal.active { opacity: 1; }

.modal-content {
    background: #111;
    width: 100%;
    max-width: 520px;
    max-height: 80vh;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    transform: scale(0.96) translateY(8px);
    transition: transform var(--t-normal);
}

.modal.active .modal-content { transform: scale(1) translateY(0); }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s3) var(--s4);
    background: rgba(107,123,94,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.modal-header-title {
    display: flex;
    align-items: center;
    gap: var(--s2);
}

.modal-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--olive);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    flex-shrink: 0;
}

.modal-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.02em;
}

.modal-sub {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.05em;
}

.modal-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background var(--t-quick), color var(--t-quick);
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

#chat-container {
    flex: 1;
    overflow-y: auto;
    padding: var(--s4);
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    scroll-behavior: smooth;
}

#chat-container::-webkit-scrollbar { width: 3px; }
#chat-container::-webkit-scrollbar-track { background: transparent; }
#chat-container::-webkit-scrollbar-thumb { background: rgba(107,123,94,0.35); border-radius: 2px; }

.chat-message { display: flex; max-width: 85%; }
.chat-message.assistant { align-self: flex-start; }
.chat-message.user { align-self: flex-end; flex-direction: row-reverse; }

.bubble {
    padding: 10px 16px;
    font-size: var(--text-sm);
    line-height: 1.6;
    white-space: pre-wrap;
    border-radius: 4px;
}

.chat-message.assistant .bubble {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.82);
    border-radius: 2px 12px 12px 12px;
}

.chat-message.user .bubble {
    background: var(--olive);
    color: #fff;
    border-radius: 12px 2px 12px 12px;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s1);
    padding: 4px 0;
}

.chat-option-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1.5px solid rgba(107,123,94,0.45);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--t-quick);
    white-space: nowrap;
}

.chat-option-btn:hover:not(:disabled) {
    background: var(--olive);
    border-color: var(--olive);
    color: #fff;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
    padding: var(--s2) 0;
}

.chat-form input {
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.88);
    font-size: var(--text-sm);
    outline: none;
    border-radius: 2px;
    transition: border-color var(--t-quick);
    font-family: var(--font-sans);
}

.chat-form input:focus { border-color: var(--olive); }
.chat-form input::placeholder { color: rgba(255,255,255,0.28); }

.chat-form-submit {
    padding: 10px 20px;
    background: var(--olive);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 600;
    border: none;
    border-radius: 2px;
    margin-top: 4px;
    cursor: pointer;
    transition: background var(--t-quick);
    font-family: var(--font-sans);
}

.chat-form-submit:hover { background: var(--olive-dark); }
.chat-form-submit:disabled { opacity: 0.45; cursor: not-allowed; }

.chat-links { display: flex; flex-wrap: wrap; gap: var(--s2); padding: 4px 0; }

.chat-link-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1.5px solid rgba(107,123,94,0.45);
    color: var(--olive-light);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--t-quick);
    text-decoration: none;
}

.chat-link-btn:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: #fff;
}

#chat-input-area {
    display: none;
    align-items: center;
    gap: var(--s1);
    padding: 12px var(--s4);
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
    flex-shrink: 0;
}

#chat-free-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.88);
    padding: 10px 14px;
    font-size: var(--text-sm);
    font-family: var(--font-sans);
    outline: none;
    border-radius: 2px;
    transition: border-color var(--t-quick);
}

#chat-free-input:focus { border-color: var(--olive); }
#chat-free-input::placeholder { color: rgba(255,255,255,0.28); }

#chat-send-free {
    background: var(--olive);
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    flex-shrink: 0;
    transition: background var(--t-quick);
}

#chat-send-free:hover { background: var(--olive-dark); }

@media (max-width: 560px) {
    .modal { align-items: flex-end; }
    .modal-content {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 6px 6px 0 0;
    }
}

/* --------------------------------------------------------------------------
   16. SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--t-slow), transform var(--t-slow);
}

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

.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 110ms; }
.stagger-3 { transition-delay: 220ms; }
.stagger-4 { transition-delay: 330ms; }

@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   17. SECTION HELPERS
   -------------------------------------------------------------------------- */
.section-header { margin-bottom: var(--s10); }

.section-header h2 { margin-bottom: var(--s3); }

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 55ch;
}

.cta-center { text-align: center; margin-top: var(--s8); }

/* --------------------------------------------------------------------------
   18. HERO BACKGROUND IMAGE
   -------------------------------------------------------------------------- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.08;
    filter: grayscale(40%);
}

/* --------------------------------------------------------------------------
   19. GEOMETRIC DECORATORS
   -------------------------------------------------------------------------- */
.geo-decor {
    position: absolute;
    pointer-events: none;
    color: var(--olive);
    opacity: 0.12;
    z-index: 0;
}

.geo-decor--hero {
    right: 4%;
    top: 15%;
    width: 280px;
    height: 280px;
}

.geo-decor--services {
    left: -40px;
    bottom: 60px;
    width: 180px;
    height: 180px;
    opacity: 0.08;
}

@media (max-width: 768px) {
    .geo-decor { display: none; }
}

/* --------------------------------------------------------------------------
   20. ABOUT SPLIT LAYOUT
   -------------------------------------------------------------------------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s10);
    align-items: center;
}

.about-text .values-grid {
    grid-template-columns: 1fr;
    gap: var(--s2);
    margin-top: var(--s5);
}

.about-text .value-card {
    padding: var(--s3) var(--s4);
}

.about-text .value-card h3 { font-size: var(--text-lg); }

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26,26,26,0.14);
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img { transform: scale(1.03); }

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: var(--olive);
    color: #fff;
    padding: var(--s3) var(--s4);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(107,123,94,0.35);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-badge-number {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-badge-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: var(--s8);
    }

    .about-image img { height: 340px; }

    .about-badge {
        bottom: -16px;
        left: var(--s3);
    }
}

/* --------------------------------------------------------------------------
   21. SERVICES BACKGROUND
   -------------------------------------------------------------------------- */
.services-section { position: relative; overflow: hidden; }

.services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.04;
    filter: grayscale(60%);
}

/* Service card updated top section */
.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--s1);
}

.service-card-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
}

.service-card:hover .service-card-bar { transform: scaleX(1); }

.service-icon-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: transform var(--t-normal), box-shadow var(--t-normal);
}

.service-card:hover .service-icon-badge {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107,123,94,0.35);
}

/* --------------------------------------------------------------------------
   22. SECTORS BACKGROUND
   -------------------------------------------------------------------------- */
.sectors-section { position: relative; overflow: hidden; }

.sectors-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.sectors-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.04;
    filter: grayscale(50%);
}

/* --------------------------------------------------------------------------
   23. RESULTS BACKGROUND
   -------------------------------------------------------------------------- */
.results-section { position: relative; overflow: hidden; }

.results-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.results-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.04;
    filter: grayscale(50%);
}

/* --------------------------------------------------------------------------
   24. TYPING INDICATOR (Chatbot)
   -------------------------------------------------------------------------- */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px 12px 12px 12px;
    align-self: flex-start;
    max-width: 80px;
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    background: var(--olive-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: typing-pulse 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.22s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.44s; }

@keyframes typing-pulse {
    0%, 60%, 100% { opacity: 0.25; transform: scale(1); }
    30% { opacity: 1; transform: scale(1.2); }
}

/* Calendly CTA inside chat */
.calendly-cta {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    padding: var(--s3);
    background: rgba(107,123,94,0.12);
    border: 1px solid rgba(107,123,94,0.3);
    border-radius: 4px;
    align-self: flex-start;
    max-width: 90%;
}

.calendly-cta p {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.65);
    max-width: none;
    line-height: 1.5;
}

.calendly-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--olive);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background var(--t-quick);
}

.calendly-cta a:hover { background: var(--olive-dark); }

/* --------------------------------------------------------------------------
   25. INNER PAGES — Compatibility layer for por-que-nosotros, metodologia,
   sectores. Preserves semantic content while applying the beige design.
   -------------------------------------------------------------------------- */

/* Inner page hero */
.page-hero {
    padding: calc(var(--header-h) + var(--s12)) 0 var(--s12);
    background-color: var(--bg-cream);
    border-bottom: 1px solid rgba(107,123,94,0.12);
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.4rem,6vw,4rem); font-weight: 300; color: var(--text-dark); line-height: 1.15; margin-bottom: var(--s3); }
.page-hero .subtitle { font-size: var(--text-lg); color: var(--text-muted); max-width: 600px; }

/* General content sections */
.content-section { padding: var(--s16) 0; background: var(--bg-white); }
.content-section.alt-bg { background: var(--bg-cream); }
.content-section h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 300; color: var(--text-dark); margin-bottom: var(--s5); }
.content-section .lead, .lead { font-size: var(--text-lg); color: var(--text-body); line-height: 1.65; margin-bottom: var(--s5); font-weight: 400; }
.content-section p { color: var(--text-body); margin-bottom: var(--s4); }
.content-section .conclusion { font-style: italic; color: var(--olive); font-size: var(--text-lg); border-left: 3px solid var(--olive); padding-left: var(--s4); margin-top: var(--s6); }

/* Problem list */
.problem-list { display: flex; flex-direction: column; gap: var(--s3); margin: var(--s6) 0; }
.problem-item { display: flex; gap: var(--s3); align-items: flex-start; }
.problem-item .icon { color: var(--olive); font-style: normal; font-weight: 600; flex-shrink: 0; padding-top: 2px; }
.problem-item p { margin: 0; color: var(--text-body); }

/* Values */
.values-detailed { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s6); margin-top: var(--s8); }
.value-block { padding: var(--s6); background: var(--bg-white); border-top: 2px solid var(--olive); }
.value-block h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--text-dark); margin-bottom: var(--s2); }
.value-block p { color: var(--text-body); font-size: var(--text-sm); margin: 0; }
.content-section.alt-bg .value-block { background: var(--bg-cream); }

/* Roadmap */
.roadmap { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s6); margin-top: var(--s8); }
.roadmap-phase { padding: var(--s6); border: 1px solid rgba(107,123,94,0.2); background: var(--bg-white); }
.phase-label { display: block; font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin-bottom: var(--s2); font-weight: 600; }
.roadmap-phase h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--text-dark); margin-bottom: var(--s3); }
.roadmap-phase p { font-size: var(--text-sm); color: var(--text-body); margin-bottom: var(--s2); }
.roadmap-phase strong { color: var(--text-dark); }

/* Commitment / brand promise */
.commitment-section { padding: var(--s16) 0; background: var(--olive); }
.brand-promise { text-align: center; max-width: 700px; margin: 0 auto; }
.brand-promise p { font-family: var(--font-serif); font-size: clamp(1.4rem,3vw,2rem); font-style: italic; color: #fff; line-height: 1.5; font-weight: 300; }

/* Methodology section */
.methodology-section { padding: var(--s16) 0; background: var(--bg-cream); }
.method-phase { margin-bottom: var(--s12); padding: var(--s8); background: var(--bg-white); border-left: 3px solid var(--olive); }
.phase-header { display: flex; align-items: baseline; gap: var(--s4); margin-bottom: var(--s6); }
.phase-number { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); font-weight: 600; white-space: nowrap; }
.phase-header h3 { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 400; color: var(--text-dark); }
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s6); margin-bottom: var(--s5); }
.method-item h4 { font-size: var(--text-sm); letter-spacing: 0.06em; text-transform: uppercase; color: var(--olive); margin-bottom: var(--s2); font-weight: 600; }
.method-item p, .method-item li { font-size: var(--text-sm); color: var(--text-body); line-height: 1.6; }
.method-item ul { padding-left: var(--s4); display: flex; flex-direction: column; gap: var(--s1); }
.method-item li { list-style: disc; }
.method-result { padding: var(--s3) var(--s5); background: rgba(107,123,94,0.08); font-size: var(--text-sm); color: var(--text-body); }
.method-result strong { color: var(--text-dark); }

/* Why it works / comparison */
.why-works-section { padding: var(--s16) 0; background: var(--bg-white); }
.why-works-section h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 300; color: var(--text-dark); margin-bottom: var(--s8); }
.comparison { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s6); align-items: center; max-width: 800px; margin: 0 auto var(--s8); }
.comparison-item { padding: var(--s6); background: var(--bg-cream); }
.comparison-item.highlight { background: var(--olive); color: #fff; }
.comparison-item h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; margin-bottom: var(--s3); }
.comparison-item.highlight h3 { color: #fff; }
.comparison-item p { font-size: var(--text-sm); color: var(--text-body); margin: 0; }
.comparison-item.highlight p { color: rgba(255,255,255,0.85); }
.comparison-divider { font-size: var(--text-lg); font-weight: 700; color: var(--olive); text-align: center; }
.conclusion-text { text-align: center; font-style: italic; color: var(--text-muted); margin-bottom: var(--s8); }

/* CTA center */
.cta-center { text-align: center; margin-top: var(--s6); }

/* Link arrow */
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); color: var(--olive); font-weight: 600; letter-spacing: 0.02em; margin-top: var(--s3); }
.link-arrow:hover { color: var(--olive-dark); }

/* Sectors detail */
.sectors-detail-section { padding: var(--s16) 0; background: var(--bg-cream); }
.sector-detail-card { background: var(--bg-white); padding: var(--s8); margin-bottom: var(--s8); border-top: 3px solid var(--olive); }
.sector-detail-header { display: flex; align-items: center; gap: var(--s4); margin-bottom: var(--s6); }
.sector-icon-lg { font-size: 2.4rem; }
.sector-detail-header h2 { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 400; color: var(--text-dark); }
.sector-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s6); }
.sector-col h4 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.06em; color: var(--olive); margin-bottom: var(--s2); font-weight: 600; }
.sector-col p, .sector-col li { font-size: var(--text-sm); color: var(--text-body); line-height: 1.6; }
.sector-col ul { padding-left: var(--s4); display: flex; flex-direction: column; gap: var(--s1); margin-top: var(--s2); }
.sector-col li { list-style: disc; }
.sector-stat { margin-top: var(--s4); padding: var(--s3) var(--s4); background: rgba(107,123,94,0.08); }
.sector-stat-number { display: block; font-family: var(--font-serif); font-size: var(--text-3xl); color: var(--olive); font-weight: 300; }
.sector-stat-label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Sector agnostic CTA */
.sector-agnostic-section { padding: var(--s16) 0; background: var(--bg-white); }
.agnostic-content { max-width: 700px; margin: 0 auto; text-align: center; }
.agnostic-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 300; color: var(--text-dark); margin-bottom: var(--s4); }

/* Footer layout aliases (secondary pages) */
.footer-left  { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links { display: flex; flex-direction: column; gap: var(--s2); }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,0.55); transition: color var(--t-quick); }
.footer-links a:hover { color: #fff; }
.footer-right { display: flex; flex-direction: column; gap: var(--s1); }
.footer-right p { font-size: var(--text-xs); color: rgba(255,255,255,0.35); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s10); align-items: start; }

/* Responsive inner pages */
@media (max-width: 768px) {
    .comparison { grid-template-columns: 1fr; }
    .comparison-divider { padding: var(--s2) 0; }
    .footer-content { grid-template-columns: 1fr; gap: var(--s6); }
}
