/* ==========================================
     SANCUS — Editorial Light Theme · v3
     Pure white background · High legibility
     Mobile-first responsive
     ========================================== */
  :root {
    --navy-deepest: #03102a;
    --navy-deep: #061a3d;
    --navy: #0a2a5e;
    --navy-mid: #133a78;
    --navy-light: #1f4d99;
    --cyan: #2bb7f0;
    --cyan-bright: #4cc7f5;
    --cyan-deep: #0e7cc0;
    --white: #ffffff;
    --line: #e4ebf3;
    --line-strong: #cdd8e6;
    --text-dark: #0a1626;
    --text-body: #2a3447;
    --text-muted: #5a6678;

    --font-display: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .container-narrow {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--navy-deepest);
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 10px 0;
  }
  .topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .topbar a { color: var(--cyan-bright); transition: opacity .2s; font-weight: 600; }
  .topbar a:hover { opacity: .75; }
  .topbar-tag {
    text-transform: uppercase;
    color: var(--cyan-bright);
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 11.5px;
  }

  /* ============ HEADER ============ */
  .site-header {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 18px 36px;
    gap: 32px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .header-left, .header-right { display: flex; gap: 28px; align-items: center; }
  .header-left { justify-content: center; }
  .header-right { justify-content: flex-end; }

  .nav-link {
    font-size: 13.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    transition: color .2s;
  }
  .nav-link:hover { color: var(--cyan-deep); }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--cyan);
    transition: width .25s ease;
  }
  .nav-link:hover::after { width: 100%; }

  .header-logo { display: block; text-align: left; }
  .header-logo img { height: 80px; width: auto; display: block; }

  .btn-cta-header {
    background: var(--navy);
    color: var(--white) !important;
    padding: 12px 22px;
    border-radius: 2px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background .25s;
    border: none;
  }
  .btn-cta-header:hover { background: var(--cyan-deep); }

  /* Mobile menu button */
  .menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line-strong);
    width: 44px; height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: var(--navy-deep);
  }
  .menu-toggle svg { width: 22px; height: 22px; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    background: var(--white);
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    min-height: 700px;
    align-items: stretch;
  }
  .hero-text-wrap {
    padding: 96px 64px 96px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    font-weight: 700;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 48px; height: 1px;
    background: var(--cyan-deep);
  }
  .hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 30px;
    color: var(--navy-deepest);
  }
  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--cyan-deep);
  }
  .hero-sub {
    font-size: 18px;
    line-height: 1.6;
    max-width: 560px;
    color: var(--text-body);
    font-weight: 400;
    margin: 0 0 40px;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 56px;
  }
  .btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 17px 30px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    min-height: 48px;
  }
  .btn-primary:hover {
    background: var(--cyan-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10,42,94,0.25);
  }
  .btn-ghost-dark {
    background: transparent;
    color: var(--navy);
    padding: 17px 30px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--line-strong);
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    min-height: 48px;
  }
  .btn-ghost-dark:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  .hero-image-wrap {
    position: relative;
    background: var(--navy-deepest);
    overflow: hidden;
    min-height: 700px;
  }
  .hero-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/image_01.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3,16,42,0.55) 0%, rgba(10,42,94,0.25) 60%, rgba(43,183,240,0.10) 100%);
  }
  .hero-image-pull-quote {
    position: absolute;
    left: 32px;
    bottom: 36px;
    right: 32px;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    border-left: 2px solid var(--cyan-bright);
    padding-left: 18px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .meta-item {
    padding: 24px;
    border-right: 1px solid var(--line);
  }
  .meta-item:last-child { border-right: none; }
  .meta-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    color: var(--navy-deep);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .meta-num em {
    font-style: italic;
    color: var(--cyan-deep);
    font-weight: 400;
  }
  .meta-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 10px;
    font-weight: 600;
    line-height: 1.4;
  }

  /* ============ SERVICES BANNER (NEW) ============ */
  .services-banner {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0;
    position: relative;
  }
  .services-banner-header {
    text-align: center;
    padding: 64px 32px 24px;
    border-bottom: 1px solid var(--line);
  }
  .services-banner-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    font-weight: 700;
    margin-bottom: 18px;
  }
  .services-banner-header .eyebrow::before,
  .services-banner-header .eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--cyan-deep);
  }
  .services-banner-header h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 2.8vw, 36px);
    line-height: 1.2;
    color: var(--navy-deepest);
    margin: 0 auto;
    letter-spacing: -0.02em;
    max-width: 880px;
  }
  .services-banner-header h2 em {
    font-style: italic;
    color: var(--cyan-deep);
  }
  .services-banner-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .sb-item {
    padding: 56px 40px 64px;
    border-right: 1px solid var(--line);
    background: var(--white);
    transition: background .3s, transform .3s;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
  }
  .sb-item:last-child { border-right: none; }
  .sb-item::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .sb-item:hover { background: #fbfcfe; }
  .sb-item:hover::before { transform: scaleX(1); }

  .sb-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 64px;
    line-height: 0.9;
    color: var(--cyan-deep);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }
  .sb-tag {
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .sb-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    color: var(--navy-deepest);
    letter-spacing: -0.015em;
    margin: 0 0 14px;
  }
  .sb-audience {
    font-size: 12.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 22px;
  }
  .sb-desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0 0 32px;
    flex: 1;
  }
  .sb-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy-deep);
    transition: color .25s;
  }
  .sb-link svg { transition: transform .25s; width: 18px; }
  .sb-item:hover .sb-link { color: var(--cyan-deep); }
  .sb-item:hover .sb-link svg { transform: translateX(6px); }

  /* ============ MANIFIESTO BANNER ============ */
  .manifesto-banner {
    background: var(--white);
    padding: 64px 32px;
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    text-align: center;
  }
  .manifesto-banner-link {
    display: inline-block;
    width: 100%;
    max-width: 760px;
    line-height: 0;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 20px 50px -25px rgba(10, 42, 94, 0.25);
  }
  .manifesto-banner-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
  }
  .manifesto-banner-link:hover img {
    transform: scale(1.02);
  }
  .manifesto-banner-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,42,94,0) 60%, rgba(10,42,94,0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .manifesto-banner-link:hover::after { opacity: 1; }

  @media (max-width: 640px) {
    .manifesto-banner { padding: 40px 20px; }
    .manifesto-banner-link { max-width: 100%; }
  }

  /* ============ DEPRECATED MANIFIESTO (kept for backwards compat) ============ */
  .manifesto {
    background: var(--white);
    padding: 110px 0;
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .manifesto::before {
    content: '';
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--cyan));
  }
  .manifesto-content { text-align: center; }
  .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    font-weight: 700;
    margin-bottom: 24px;
  }
  .manifesto h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy-deepest);
    margin: 0 0 32px;
  }
  .manifesto h2 em {
    font-style: italic;
    color: var(--cyan-deep);
    font-weight: 400;
  }
  .manifesto p {
    font-size: 18px;
    color: var(--text-body);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ============ SECTION SHARED ============ */
  .section { padding: 110px 0; }
  .section-header {
    margin-bottom: 72px;
    max-width: 880px;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy-deepest);
    margin: 0 0 24px;
  }
  .section-title em {
    font-style: italic;
    color: var(--cyan-deep);
    font-weight: 400;
  }
  .section-lead {
    font-size: 18.5px;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 720px;
  }

  /* ============ SERVICES (DETAILED CARDS) ============ */
  .services {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .services-intro-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }
  .services-intro-aside {
    border-left: 2px solid var(--cyan);
    padding-left: 24px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
  }
  .services-intro-aside strong.heading {
    color: var(--navy-deep);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .services-intro-aside .inline-tag {
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 14px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(10, 42, 94, 0.22);
    border-color: var(--cyan);
  }
  .service-card-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--navy);
  }
  .service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,16,42,0.05) 30%, rgba(3,16,42,0.92) 100%);
  }
  .service-card-num {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 22px;
    border: 1px solid rgba(255,255,255,0.5);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    background: rgba(3,16,42,0.3);
  }
  .service-card-tag {
    position: absolute;
    bottom: 22px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: var(--cyan-bright);
    font-size: 11.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .service-card-body {
    padding: 32px 30px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .service-card-body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--navy-deep);
    margin: 0 0 8px;
  }
  .service-card-audience {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .service-card-body p {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0 0 24px;
  }
  .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--line);
  }
  .service-list li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    font-weight: 500;
  }
  .service-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    margin-top: 8px;
  }
  .service-card-footer {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .service-card-footer .label {
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
  }
  .service-card-footer .arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all .3s;
  }
  .service-card:hover .arrow {
    background: var(--cyan);
    transform: translateX(4px);
  }

  /* ============ PROCESS ============ */
  .process {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid var(--line-strong);
  }
  .step {
    padding: 36px 24px 36px 0;
    border-right: 1px solid var(--line);
    position: relative;
  }
  .step:last-child { border-right: none; padding-right: 0; }
  .step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 52px;
    color: var(--cyan-deep);
    line-height: 0.9;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
  }
  .step-time {
    display: inline-block;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    font-weight: 700;
    margin-bottom: 10px;
    background: #ecf6fd;
    padding: 5px 12px;
    border-radius: 2px;
  }
  .step-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--navy-deep);
    margin: 8px 0 10px;
    line-height: 1.25;
  }
  .step-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.55;
  }

  .process-attributes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 88px;
    padding-top: 56px;
    border-top: 1px solid var(--line-strong);
  }
  .attribute {
    padding: 0 28px;
    border-left: 1px solid var(--line);
  }
  .attribute:first-child { border-left: none; padding-left: 0; }
  .attribute-icon {
    width: 42px; height: 42px;
    margin-bottom: 22px;
    color: var(--cyan-deep);
  }
  .attribute h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    color: var(--navy-deep);
    margin: 0 0 10px;
    line-height: 1.25;
  }
  .attribute p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0;
  }

  /* ============ CASES ============ */
  .cases {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
  }
  .case-card {
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    transition: all .3s;
  }
  .case-card:hover {
    box-shadow: 0 30px 60px -25px rgba(10,42,94,0.25);
    transform: translateY(-4px);
    border-color: var(--cyan);
  }
  .case-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--navy);
  }
  .case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,16,42,0.20) 0%, rgba(3,16,42,0.78) 100%);
  }
  .case-result {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    background: var(--cyan);
    color: var(--navy-deepest);
    padding: 10px 16px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
  }
  .case-recovery {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    color: var(--white);
  }
  .case-recovery .pct {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 84px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--cyan-bright);
  }
  .case-recovery .label {
    font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-top: 4px;
    font-weight: 600;
  }
  .case-body { padding: 32px 32px 36px; }
  .case-tag {
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    font-weight: 700;
    margin-bottom: 14px;
  }
  .case-body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: var(--navy-deep);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }
  .case-body p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
  }
  .case-meta {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .case-meta-item .k {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 11px;
  }
  .case-meta-item .v {
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 14.5px;
  }
  .cases-disclaimer {
    margin-top: 56px;
    text-align: center;
    font-size: 16px;
    color: var(--text-body);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 500;
  }
  .cases-disclaimer strong { color: var(--navy-deep); font-weight: 600; }

  /* ============ DIFFERENTIATORS ============ */
  .diff {
    background: var(--white);
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
  }
  .diff-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .diff-image {
    position: sticky;
    top: 120px;
    height: 620px;
    background-image: url('../images/image_09.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--navy-deep);
    position: relative;
  }
  .diff-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,16,42,0.18) 0%, rgba(10,42,94,0.55) 100%);
  }
  .diff-image-cite {
    position: absolute;
    bottom: 36px;
    left: 36px;
    right: 36px;
    color: var(--white);
    z-index: 2;
  }
  .diff-image-cite blockquote {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
  }
  .diff-image-cite .author {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cyan-bright);
  }
  .diff-list { counter-reset: diff; }
  .diff-item {
    counter-increment: diff;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
  }
  .diff-item:first-child { padding-top: 0; }
  .diff-item::before {
    content: counter(diff, decimal-leading-zero);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--cyan-deep);
  }
  .diff-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    color: var(--navy-deep);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
  }
  .diff-item p {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
  }

  /* ============ CLIENT BAND ============ */
  .clients {
    background: var(--white);
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
  }
  .clients-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: center;
  }
  .clients h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--navy-deep);
    line-height: 1.25;
    margin: 0;
  }
  .clients h3 em { font-style: italic; color: var(--cyan-deep); font-weight: 400; }
  .clients-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .client-tag {
    padding: 11px 20px;
    border: 1px solid var(--line-strong);
    background: var(--white);
    font-size: 13.5px;
    color: var(--navy-deep);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 2px;
  }

  /* ============ CONTACT ============ */
  .contact {
    background: var(--white);
    padding: 120px 0;
    position: relative;
  }
  .contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
    box-shadow: 0 30px 80px -40px rgba(10,42,94,0.18);
  }
  .contact-card-image {
    background-image: url('../images/image_08.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--navy-deep);
    position: relative;
    min-height: 360px;
  }
  .contact-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3,16,42,0.65) 0%, rgba(10,42,94,0.4) 60%, rgba(43,183,240,0.2) 100%);
  }
  .contact-card-image-quote {
    position: absolute;
    bottom: 36px;
    left: 36px;
    right: 36px;
    z-index: 2;
    color: var(--white);
  }
  .contact-card-image-quote .label {
    font-size: 11.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan-bright);
    font-weight: 700;
    margin-bottom: 14px;
  }
  .contact-card-image-quote .text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .contact-card-body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-eyebrow {
    color: var(--cyan-deep);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 22px;
  }
  .contact h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.2;
    color: var(--navy-deepest);
    margin: 0 0 22px;
    letter-spacing: -0.02em;
  }
  .contact h2 em {
    font-style: italic;
    color: var(--cyan-deep);
    font-weight: 400;
  }
  .contact-card-body > p {
    font-size: 16px;
    color: var(--text-body);
    margin: 0 0 32px;
    line-height: 1.6;
  }
  .contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 16px 24px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    min-height: 48px;
  }
  .btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
  }
  .btn-email {
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    min-height: 48px;
  }
  .btn-email:hover {
    background: var(--cyan-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(10,42,94,0.3);
  }
  .contact-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    margin-bottom: 24px;
  }
  .channel { padding: 0 22px 0 0; border-right: 1px solid var(--line); }
  .channel:last-child { border-right: none; padding: 0 0 0 22px; }
  .channel .k {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .channel .v {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy-deep);
    line-height: 1.35;
  }
  .channel a:hover { color: var(--cyan-deep); }

  .contact-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #f6f9fc;
    border-radius: 2px;
    margin-top: 8px;
  }
  .contact-address svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--cyan-deep); margin-top: 2px; }
  .contact-address-text {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.45;
  }
  .contact-address-text strong {
    display: block;
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  /* ============ FOOTER ============ */
  .site-footer {
    background: var(--navy-deepest);
    color: rgba(255,255,255,0.72);
    padding: 64px 0 32px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 22px; }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
    margin: 0 0 20px;
  }
  .footer-address {
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    border-left: 2px solid var(--cyan-bright);
    padding-left: 14px;
  }
  .footer-address strong { color: var(--white); display: block; font-weight: 600; margin-bottom: 4px; }
  .footer-col h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 22px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 12px; font-size: 14.5px; line-height: 1.4; }
  .footer-col li a { transition: color .2s; }
  .footer-col li a:hover { color: var(--cyan-bright); }
  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
  }
  .footer-bottom .accent { color: var(--cyan-bright); font-weight: 600; }

  /* ============ FLOATING WHATSAPP ============ */
  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.2);
    transition: all .25s;
    cursor: pointer;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
  }
  .whatsapp-float svg { width: 32px; height: 32px; }

  /* ============ ANIMATIONS ============ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-stats {
    opacity: 0;
    animation: fadeUp .9s ease forwards;
  }
  .hero-eyebrow { animation-delay: .1s; }
  .hero-title { animation-delay: .25s; }
  .hero-sub { animation-delay: .45s; }
  .hero-actions { animation-delay: .6s; }
  .hero-stats { animation-delay: .75s; }

  /* ============ RESPONSIVE — TABLET ============ */
  @media (max-width: 1080px) {
    .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; padding: 14px 24px; }
    .header-left { display: none; }
    .header-right { gap: 14px; }
    .header-right .nav-link { display: none; }
    .header-logo { text-align: left; }
    .header-logo img { height: 64px; }
    .menu-toggle { display: flex; }

    .container { padding: 0 24px; }

    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-text-wrap { padding: 56px 0 64px; }
    .hero-image-wrap { min-height: 380px; order: 2; min-width: calc(100% + 48px); margin: 0 -24px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .meta-item { padding: 18px 16px 18px 0; }
    .meta-item:nth-child(2) { border-right: none; padding-right: 0; }
    .meta-item:nth-child(1), .meta-item:nth-child(2) { border-bottom: 1px solid var(--line); }

    .services-banner-row { grid-template-columns: 1fr; }
    .sb-item { border-right: none; border-bottom: 1px solid var(--line); padding: 44px 28px 48px; }
    .sb-item:last-child { border-bottom: none; }

    .service-grid { grid-template-columns: 1fr; gap: 24px; }
    .case-grid { grid-template-columns: 1fr; gap: 24px; }
    .diff-grid { grid-template-columns: 1fr; gap: 48px; }
    .diff-image { position: relative; height: 360px; top: 0px; }

    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .step { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 16px 28px 0; }
    .step:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
    .step:nth-child(2n) { padding-right: 0; }
    .step:last-child, .step:nth-last-child(2) { border-bottom: none; }

    .process-attributes { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .attribute { border-left: none; padding-left: 0; }

    .services-intro-row { grid-template-columns: 1fr; gap: 32px; align-items: start; }
    .clients-row { grid-template-columns: 1fr; gap: 24px; }

    .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }

    .contact-card { grid-template-columns: 1fr; }
    .contact-card-image { min-height: 280px; }
    .contact-card-body { padding: 44px 32px; }
    .contact-channels { grid-template-columns: 1fr; gap: 0; }
    .channel { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 0; }
    .channel:first-child { padding-top: 0; }
    .channel:last-child { border-bottom: none; padding-bottom: 0; padding-left: 0; }

    .section { padding: 72px 0; }
    .manifesto { padding: 72px 0; }
    .diff { padding: 72px 0; }
    .contact { padding: 80px 0; }
    .clients { padding: 56px 0; }
  }

  /* ============ RESPONSIVE — MOBILE ============ */
  @media (max-width: 640px) {
    body { font-size: 16px; }

    .container, .container-narrow { padding: 0 20px; }
    .topbar { padding: 8px 0; font-size: 12px; }
    .topbar-inner { gap: 6px; justify-content: center; text-align: center; }
    .topbar-inner > span:nth-child(2) { font-size: 11.5px; }

    .header-inner { padding: 12px 20px; }
    .header-logo img { height: 52px; }
    .btn-cta-header { display: none; }

    /* Hero — mobile */
    .hero-text-wrap { padding: 44px 0 52px; }
    .hero-image-wrap { min-height: 280px; min-width: calc(100% + 40px); margin: 0 -20px; }
    .hero-eyebrow { font-size: 11px; letter-spacing: 0.24em; }
    .hero-eyebrow::before { width: 32px; }
    .hero-title { font-size: clamp(26px, 7.5vw, 38px); margin-bottom: 22px; line-height: 1.15; }
    .hero-sub { font-size: 16px; margin-bottom: 28px; }
    .hero-actions { gap: 10px; flex-direction: column; align-items: stretch; margin-bottom: 40px; }
    .btn-primary, .btn-ghost-dark { width: 100%; justify-content: center; padding: 16px 24px; }

    .hero-image-pull-quote {
      font-size: 17px;
      left: 22px;
      right: 22px;
      bottom: 24px;
    }

    .hero-stats { grid-template-columns: 1fr 1fr; }
    .meta-num { font-size: 30px; }
    .meta-label { font-size: 11px; }

    /* Services Banner — mobile */
    .services-banner-header { padding: 48px 20px 20px; }
    .services-banner-header .eyebrow { font-size: 10.5px; letter-spacing: 0.22em; gap: 12px; }
    .services-banner-header .eyebrow::before,
    .services-banner-header .eyebrow::after { width: 20px; }
    .services-banner-header h2 { font-size: clamp(20px, 5.5vw, 26px); line-height: 1.25; }
    .sb-item { padding: 36px 22px 40px; }
    .sb-num { font-size: 52px; margin-bottom: 18px; }
    .sb-title { font-size: 22px; }
    .sb-desc { font-size: 15px; }

    /* Manifesto — mobile */
    .manifesto { padding: 60px 0; }
    .manifesto h2 { font-size: clamp(22px, 6vw, 30px); line-height: 1.25; }
    .manifesto p { font-size: 16px; }

    /* Sections — mobile */
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 48px; }
    .section-title { font-size: clamp(22px, 6.2vw, 30px); line-height: 1.2; }
    .section-lead { font-size: 16px; }
    .section-eyebrow { font-size: 11px; letter-spacing: 0.24em; }

    /* Service cards — mobile */
    .service-card-image { height: 220px; }
    .service-card-body { padding: 28px 24px 32px; }
    .service-card-body h3 { font-size: 21px; }
    .service-card-body p { font-size: 15px; }

    /* Process — mobile */
    .process-steps { grid-template-columns: 1fr; }
    .step { padding: 24px 0 24px 0; border-right: none !important; border-bottom: 1px solid var(--line); padding-right: 0 !important; }
    .step:last-child { border-bottom: none; }
    .step-num { font-size: 42px; margin-bottom: 14px; }
    .process-attributes { grid-template-columns: 1fr; gap: 28px; margin-top: 56px; padding-top: 36px; }

    /* Cases — mobile */
    .case-image { height: 260px; }
    .case-recovery .pct { font-size: 64px; }
    .case-body { padding: 26px 22px 30px; }
    .case-body h3 { font-size: 22px; }
    .case-meta { grid-template-columns: 1fr; gap: 14px; }

    /* Diff — mobile */
    .diff { padding: 60px 0; }
    .diff-image { height: 280px; }
    .diff-image-cite { left: 22px; right: 22px; bottom: 22px; }
    .diff-image-cite blockquote { font-size: 21px; }
    .diff-item { grid-template-columns: 36px 1fr; gap: 16px; padding: 24px 0; }
    .diff-item h4 { font-size: 19px; }
    .diff-item p { font-size: 15px; }

    /* Clients — mobile */
    .clients { padding: 44px 0; }
    .clients h3 { font-size: 22px; }
    .client-tag { font-size: 12.5px; padding: 9px 16px; }

    /* Contact — mobile */
    .contact { padding: 64px 0; }
    .contact-card-body { padding: 36px 24px; }
    .contact h2 { font-size: clamp(22px, 6vw, 28px); line-height: 1.25; }
    .contact-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-whatsapp, .btn-email { width: 100%; justify-content: center; }
    .contact-card-image-quote { left: 22px; right: 22px; bottom: 22px; }
    .contact-card-image-quote .text { font-size: 21px; }

    /* Footer — mobile */
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand img { height: 48px; }

    .whatsapp-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
  }

  /* ============ LANGUAGE SWITCH ============ */
  .lang-en, .lang-en-block { display: none; }
  html[lang="en"] .lang-es, html[lang="en"] .lang-es-block { display: none; }
  html[lang="en"] .lang-en { display: inline; }
  html[lang="en"] .lang-en-block { display: block; }

  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 2px;
    overflow: hidden;
    margin-left: 8px;
    flex-shrink: 0;
  }
  .lang-switch button {
    background: transparent;
    border: none;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font-body);
    line-height: 1;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
  }
  .lang-switch button.active {
    background: var(--cyan);
    color: var(--navy-deepest);
  }
  .lang-switch button:not(.active):hover { color: var(--cyan-bright); }


  /* ============ LOGIN ENTRY (TOPBAR + HEADER) ============ */
  .topbar-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cyan-bright);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    padding: 5px 11px;
    border: 1px solid rgba(0, 198, 255, 0.45);
    border-radius: 2px;
    transition: all .25s;
    line-height: 1;
    flex-shrink: 0;
  }
  .topbar-login:hover {
    background: var(--cyan-bright);
    color: var(--navy-deepest) !important;
    border-color: var(--cyan-bright);
    opacity: 1 !important;
  }
  .topbar-login svg {
    width: 12px;
    height: 12px;
    stroke-width: 2;
    flex-shrink: 0;
  }

  .btn-login-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy-deep) !important;
    padding: 11px 20px;
    border: 1.5px solid var(--navy-deep);
    border-radius: 2px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all .25s;
    text-decoration: none;
  }
  .btn-login-header:hover {
    background: var(--navy-deep);
    color: var(--white) !important;
  }
  .btn-login-header svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    flex-shrink: 0;
  }

  @media (max-width: 1080px) {
    .btn-login-header { display: none; }
  }
  @media (max-width: 640px) {
    .topbar-login { padding: 4px 9px; font-size: 10px; letter-spacing: 0.06em; }
    .topbar-login svg { width: 11px; height: 11px; }
  }
  /* ============ MOBILE NAV DRAWER ============ */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 199;
    opacity: 0;
    transition: opacity .3s ease;
  }
  .mobile-nav-overlay.is-open {
    display: block;
    opacity: 1;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 88vw);
    background: var(--white);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 88px 0 40px;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -4px 0 32px rgba(0,0,0,.12);
  }
  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-link {
    display: block;
    padding: 16px 32px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: color .2s, background .2s;
  }
  .mobile-nav-link:hover {
    color: var(--cyan);
    background: var(--bg-warm);
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav-actions .btn-cta-header {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .mobile-nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 2px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
  }
  .mobile-nav-whatsapp:hover { background: #1ebe5d; }

  .mobile-nav-lang {
    display: flex;
    gap: 8px;
    padding: 24px 32px 0;
    margin-top: auto;
  }
  .mobile-nav-lang button {
    padding: 8px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--navy-deep);
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s, color .2s;
  }
  .mobile-nav-lang button:hover,
  .mobile-nav-lang button.active {
    background: var(--navy-deep);
    color: var(--white);
    border-color: var(--navy-deep);
  }
