/* Generated by scripts/generate-pages.mjs from public/index.html — do not edit by hand. */

  :root {
    --primary: #7A9A6B;
    --primary-hover: #94B585;
    --primary-dim: rgba(122,154,107,0.10);
    --primary-glow: rgba(122,154,107,0.06);
    --accent: #D9A668;
    --cream: #FAF7EE;
    --cream2: #F2EBDA;
    --ink: #4A5A45;
    --ink2: #637060;
    --muted: #8A8B7E;
    --muted2: #B5B1A1;
    --white: #FFFFFF;
    --border: #E5DFCB;
    --hero-bg: #4A5A45;
    --nav-bg: #3F4E3A;
    --footer-bg: #33402F;
  }

  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    font-family: 'Montserrat', sans-serif;
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ═══════════════ NAV ═══════════════ */
  nav {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
    background: var(--nav-bg);
    padding: 0 48px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(122,154,107,0.25);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-img {
    height: 60px;
    width: auto;
    max-width: 100%;
  }

  .nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
  }

  .nav-logo-text em {
    color: var(--accent);
    font-style: normal;
  }

  .nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links-left {
    display: flex; align-items: center; gap: 28px;
    flex: 1;
    justify-content: flex-start;
  }

  .nav-links-right {
    display: flex; align-items: center; gap: 20px;
    flex: 1;
    justify-content: flex-end;
  }

  .nav-links a,
  .nav-links-left a,
  .nav-links-right a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
  }

  .nav-links a:hover,
  .nav-links-left a:hover,
  .nav-links-right a:hover { color: var(--accent); }

  .nav-cta {
    background: #D9A668;
    color: #33402F !important;
    border: 1px solid #D9A668;
    padding: 10px 22px;
    font-size: 11px !important;
    letter-spacing: 0.12em;
    transition: background 0.2s, color 0.2s, border-color 0.2s !important;
  }

  .nav-cta:hover { background: #C68E4D; color: #FFFFFF !important; border-color: #C68E4D; }

  .nav-cta-mediador {
    background: transparent;
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    padding: 9px 20px;
    font-size: 11px !important;
    letter-spacing: 0.12em;
    transition: background 0.2s, color 0.2s !important;
  }

  .nav-cta-mediador:hover { background: var(--accent); color: var(--white) !important; }

  .nav-vault-link {
    color: var(--accent) !important;
    border: 1px solid rgba(217,166,104,0.4);
    padding: 8px 16px;
    font-size: 11px !important;
    transition: all 0.2s !important;
  }
  .nav-vault-link:hover {
    background: rgba(217,166,104,0.12) !important;
    border-color: var(--accent) !important;
  }

  .nav-burger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; border: none; background: none; padding: 4px;
  }
  .nav-burger span { display:block; width:22px; height:1.5px; background:var(--white); transition:0.3s; }

  /* ═══════════════ LANG SWITCHER ═══════════════ */
  .lang-switcher {
    display: flex; align-items: center; gap: 6px; margin-left: 8px;
  }
  .lang-switcher a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    transition: color 0.2s, background 0.2s;
    color: rgba(255,255,255,0.4);
  }
  .lang-switcher a:hover { color: var(--accent); }
  .lang-switcher a.active {
    color: var(--white);
    background: rgba(122,154,107,0.3);
  }
  .lang-switcher-sep {
    color: rgba(255,255,255,0.2);
    font-size: 11px;
    user-select: none;
  }

  /* ═══════════════ HERO ═══════════════ */
  .hero {
    min-height: 100vh;
    background: var(--hero-bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 112px;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(122,154,107,0.2) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-bg-text {
    position: absolute;
    right: -20px; bottom: -60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 280px;
    font-weight: 700;
    color: rgba(122,154,107,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
  }

  .hero-left {
    padding: 80px 60px 80px 80px;
    position: relative; z-index: 1;
  }

  .hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block; width: 32px; height: 1px;
    background: var(--primary);
  }

  .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
  }

  .hero-title em {
    color: var(--accent);
    font-style: italic;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    max-width: 420px;
    margin-bottom: 52px;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 24px;
  }

  .btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }

  .btn-ghost {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--accent); }
  .btn-ghost::after { content: '→'; }

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

  .hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
  }

  .hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  .hero-right {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 80px 80px 40px;
  }

  .hero-card {
    background: #FFFFFF;
    border: 1px solid #E5DFCB;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(74, 90, 69, 0.18);
    padding: 44px;
    width: 100%; max-width: 420px;
    position: relative;
  }

  .hero-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 60px;
    background: var(--accent);
  }

  .hero-card-eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #4A5A45;
    line-height: 1.3;
    margin-bottom: 28px;
  }

  .hero-card-form {
    display: flex; flex-direction: column; gap: 14px;
  }

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

  .form-field label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4A5A45;
  }

  .form-field input, .form-field select {
    background: #FAF7EE;
    border: 1px solid #E5DFCB;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #4A5A45;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
  }

  .form-field input:focus, .form-field select:focus {
    border-color: #D9A668;
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 166, 104, 0.20);
  }

  .form-field input::placeholder { color: #8A8B7E; }

  .form-field select option { background: var(--ink2); }

  .form-submit {
    background: #D9A668;
    border: 1px solid #D9A668;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #33402F;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .form-submit:hover { background: #C68E4D; color: #FFFFFF; border-color: #C68E4D; }

  /* ═══════════════ MARQUEE ═══════════════ */
  .marquee-strip {
    background: var(--primary);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }

  .marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    gap: 0;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .marquee-item {
    display: inline-flex; align-items: center; gap: 24px;
    padding: 0 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
  }

  .marquee-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    flex-shrink: 0;
  }

  /* ═══════════════ SECTIONS ═══════════════ */
  .section {
    padding: 100px 80px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    display: block; width: 24px; height: 1px;
    background: var(--primary);
  }

  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .section-title em { color: var(--primary); font-style: italic; }

  .section-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
  }

  /* ═══════════════ SERVICES ═══════════════ */
  /* ═══════════════ TECHNOLOGY / PLATFORMS ═══════════════ */
  .tech-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .tech-section--pro {
    background: var(--hero-bg);
  }

  .tech-section--one {
    background: var(--cream2);
  }

  .tech-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .tech-content {
    position: relative;
    z-index: 1;
  }

  .tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122,154,107,0.15);
    border: 1px solid rgba(122,154,107,0.3);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .tech-section--pro .tech-badge {
    color: var(--accent);
    background: rgba(217,166,104,0.1);
    border-color: rgba(217,166,104,0.3);
  }

  .tech-section--one .tech-badge {
    color: var(--primary);
  }

  .tech-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .tech-section--pro .tech-title { color: var(--white); }
  .tech-section--pro .tech-title em { color: var(--accent); font-style: italic; }
  .tech-section--one .tech-title { color: var(--ink); }
  .tech-section--one .tech-title em { color: var(--primary); font-style: italic; }

  .tech-subtitle {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .tech-section--pro .tech-subtitle { color: rgba(255,255,255,0.72); }
  .tech-section--one .tech-subtitle { color: var(--muted); }

  .tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 0;
  }

  .tech-section--pro .tech-feature {
    background: rgba(122,154,107,0.12);
    border: 1px solid rgba(122,154,107,0.2);
  }

  .tech-section--one .tech-feature {
    background: var(--white);
    border: 1px solid var(--border);
  }

  .tech-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }

  .tech-section--pro .tech-feature-icon svg {
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .tech-section--one .tech-feature-icon svg {
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .tech-feature-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
  }

  .tech-section--pro .tech-feature-text { color: rgba(255,255,255,0.85); }
  .tech-section--one .tech-feature-text { color: var(--ink2); }

  .tech-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tech-visual-card {
    width: 100%;
    padding: 48px 40px;
    position: relative;
  }

  .tech-section--pro .tech-visual-card {
    background: rgba(122,154,107,0.08);
    border: 1px solid rgba(122,154,107,0.2);
  }

  .tech-section--one .tech-visual-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(74,90,69,0.08);
  }

  .tech-visual-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .tech-section--pro .tech-visual-label { color: var(--accent); }
  .tech-section--one .tech-visual-label { color: var(--primary); }

  .tech-visual-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .tech-metric {
    text-align: center;
    padding: 20px 12px;
  }

  .tech-section--pro .tech-metric {
    background: rgba(217,166,104,0.06);
    border: 1px solid rgba(217,166,104,0.15);
  }

  .tech-section--one .tech-metric {
    background: var(--cream);
    border: 1px solid var(--border);
  }

  .tech-metric-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
  }

  .tech-section--pro .tech-metric-num { color: var(--accent); }
  .tech-section--one .tech-metric-num { color: var(--primary); }

  .tech-metric-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .tech-section--pro .tech-metric-label { color: rgba(255,255,255,0.6); }
  .tech-section--one .tech-metric-label { color: var(--muted); }

  .tech-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .tech-cta .btn-primary {
    background: var(--primary);
  }

  .tech-section--pro .tech-cta .btn-ghost {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.25);
  }

  .tech-section--pro .tech-cta .btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
  }

  .tech-section--pro::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,166,104,0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .services-section {
    background: var(--cream2);
    padding: 100px 0;
  }

  .services-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 72px;
  }

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

  .service-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    transition: transform 0.3s;
    overflow: hidden;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

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

  .service-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 20px;
  }

  .service-icon {
    width: 44px; height: 44px;
    background: var(--primary-dim);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }

  .service-icon svg { width: 22px; height: 22px; fill: var(--primary); }

  .service-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 28px;
  }

  .service-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #637060;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap 0.2s, color 0.2s, border-color 0.2s, background-color 0.2s;
  }
  .service-link {
    background-color: transparent;
    border: 1px solid #B5B1A1;
    padding: 9px 22px;
    cursor: pointer;
    font-family: inherit;
  }
  .service-link:hover {
    gap: 14px;
    border-color: #7A9A6B;
    color: #7A9A6B;
    background-color: rgba(122, 154, 107, 0.06);
  }
  .service-link::after { content: '→'; transition: transform 0.3s; }
  .service-card.open .service-link::after { transform: rotate(90deg); }

  .service-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .service-detail-inner {
    padding-top: 20px;
    border-top: 1px solid var(--primary-dim);
  }
  .service-detail-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
  }
  .service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .service-detail-list li {
    font-size: 12px;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
  }
  .service-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
  }
  .service-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    background: #7A9A6B;
    padding: 10px 24px;
    border: 1px solid #7A9A6B;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: opacity 0.2s;
    text-decoration: none;
  }
  .service-detail-cta:hover { opacity: 0.85; }
  .service-card.open { transform: none !important; }
  @media (max-width: 600px) {
    .service-detail-list { grid-template-columns: 1fr; }
  }

  /* ═══════════════ WHY ═══════════════ */
  .why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
  }

  .why-left {
    background: var(--hero-bg);
    padding: 80px;
    position: relative;
    overflow: hidden;
  }

  .why-left::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,154,107,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .why-left .section-eyebrow { margin-bottom: 24px; }
  .why-left .section-title { color: var(--white); }
  .why-left .section-title em { color: var(--primary); }
  .why-left .section-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 52px; }

  .why-pillars {
    display: flex; flex-direction: column; gap: 28px;
  }

  .why-pillar {
    display: flex; align-items: flex-start; gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .why-pillar:last-child { border-bottom: none; padding-bottom: 0; }

  .why-pillar-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.6;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
  }

  .why-pillar-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
  }

  .why-pillar-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
  }

  .why-right {
    background: var(--cream2);
    padding: 80px;
    display: flex; flex-direction: column; justify-content: center;
  }

  .why-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 32px;
    position: relative;
  }

  .why-quote::before {
    content: '"';
    font-size: 120px;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -30px; left: -20px;
    line-height: 1;
    font-style: normal;
  }

  .why-quote-author {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex; align-items: center; gap: 12px;
  }

  .why-quote-author::before {
    content: '';
    display: block; width: 24px; height: 1px;
    background: var(--primary);
  }

  .why-testimonials {
    margin-top: 52px;
    display: flex; flex-direction: column; gap: 24px;
  }

  .testimonial {
    background: var(--white);
    padding: 28px;
    border-left: 3px solid var(--primary);
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink2);
    margin-bottom: 16px;
    font-style: italic;
  }

  .testimonial-author {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .testimonial-role {
    font-size: 11px;
    color: var(--muted2);
    margin-top: 2px;
  }

  /* ═══════════════ BLOG ═══════════════ */
  .blog-section {
    padding: 100px 80px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .blog-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 56px;
  }

  .blog-grid {
    display: flex;
    flex-direction: column;
  }

  .blog-card {
    background: transparent;
    overflow: visible;
    display: flex; flex-direction: row; align-items: center;
    transition: background 0.2s;
    cursor: pointer;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .blog-card:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .blog-card:hover { transform: none; background: rgba(122,154,107,0.04); }

  .blog-card-img {
    width: 72px; height: 72px; min-width: 72px;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .blog-card-img-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .blog-card-img-text {
    display: none;
  }

  .blog-card-tag {
    position: absolute;
    top: auto; bottom: 0; left: 0; right: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 4px;
    text-align: center;
    line-height: 1.2;
  }

  .blog-card-body {
    padding: 0 0 0 20px;
    flex: 1;
    display: flex; flex-direction: column; gap: 2px;
  }

  .blog-card-date {
    font-size: 11px;
    color: var(--muted2);
    letter-spacing: 0.06em;
    margin-bottom: 0;
  }

  .blog-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .blog-card-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-card-link {
    display: none;
  }

  /* ═══════════════ BLOG MODAL ═══════════════ */
  /* ═══════════════ TEAM ═══════════════ */
  .team-section {
    padding: 100px 80px;
    background: var(--white);
  }

  .team-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .team-profile {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .team-photo-wrapper {
    position: relative;
  }

  .team-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    right: 8px; bottom: 8px;
    border: 1.5px solid var(--primary);
    z-index: 0;
  }

  .team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    filter: grayscale(15%);
  }

  .team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .team-role {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 28px;
  }

  .team-bio p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink2);
    margin-bottom: 20px;
  }

  .team-bio strong {
    color: var(--ink);
    font-weight: 600;
  }

  @media (max-width: 1024px) {
    .team-section { padding: 60px 28px; }
    .team-profile { grid-template-columns: 1fr; gap: 40px; }
    .team-photo-wrapper { max-width: 320px; margin: 0 auto; }
  }

  /* ═══════════════ FAQ ═══════════════ */
  .faq-section {
    background: var(--cream2);
    padding: 100px 0;
  }

  .faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:first-child {
    border-top: 1px solid var(--border);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--primary); }

  .faq-question-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
  }

  .faq-question-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s, stroke 0.3s;
  }

  .faq-item.open .faq-question-icon {
    background: var(--primary);
    border-color: var(--primary);
  }

  .faq-item.open .faq-question-icon svg {
    stroke: var(--white);
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .faq-answer-inner {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 680px;
  }

  /* ═══════════════ CTA STRIP ═══════════════ */
  .cta-strip {
    background: var(--hero-bg);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }

  .cta-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(122,154,107,0.15) 0%, transparent 60%);
    pointer-events: none;
  }

  .cta-strip-text { position: relative; z-index: 1; }

  .cta-strip-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px; font-weight: 700;
    color: var(--white); line-height: 1.1;
    margin-bottom: 14px;
  }
  .cta-strip-title em { color: var(--primary); font-style: italic; }

  .cta-strip-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    max-width: 480px; line-height: 1.6;
  }

  .cta-strip-actions {
    display: flex; flex-direction: column; gap: 14px;
    flex-shrink: 0; position: relative; z-index: 1;
  }

  .cta-contact-item {
    display: flex; align-items: center; gap: 14px;
  }

  .cta-contact-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(217,166,104,0.35);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .cta-contact-icon svg { width: 18px; height: 18px; fill: var(--accent); }

  .cta-contact-label {
    font-size: 10px; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    margin-bottom: 3px;
  }

  .cta-contact-value {
    font-size: 15px; font-weight: 500;
    color: var(--white);
  }

  /* ═══════════════ FOOTER ═══════════════ */
  footer {
    background: var(--footer-bg);
    padding: 56px 80px 36px;
    border-top: 1px solid rgba(122,154,107,0.2);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 52px;
  }

  .footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px; font-weight: 600;
    color: var(--white); letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
  .footer-brand-name em { color: var(--accent); font-style: normal; }

  .footer-brand-desc {
    font-size: 13px; line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px; margin-bottom: 28px;
  }

  .footer-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid #2C3E50;
    padding: 8px 16px;
    font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .footer-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
  }

  .footer-col-title {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); margin-bottom: 20px;
  }

  .footer-col-links {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
  }

  .footer-col-links a {
    text-decoration: none;
    font-size: 13px; color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }
  .footer-col-links a:hover { color: var(--accent); }

  .footer-social {
    display: flex; gap: 12px; padding-top: 8px;
  }
  .footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: border-color 0.2s, background 0.2s;
  }
  .footer-social a:hover {
    border-color: var(--accent);
    background: rgba(217,166,104,0.1);
  }
  .footer-social a svg {
    width: 16px; height: 16px;
    fill: rgba(255,255,255,0.6);
    transition: fill 0.2s;
  }
  .footer-social a:hover svg { fill: var(--accent); }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }

  .footer-platforms {
    display: flex; gap: 12px;
  }
  .footer-platform-link {
    color: var(--accent) !important;
    border: 1px solid rgba(217,166,104,0.4);
    padding: 8px 18px;
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
  }
  .footer-platform-link:hover {
    background: rgba(217,166,104,0.12);
    border-color: var(--accent);
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }

  .footer-legal {
    display: flex; gap: 24px;
  }
  .footer-legal a {
    text-decoration: none;
    font-size: 12px; color: rgba(255,255,255,0.35);
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  .footer-regulatory {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 24px;
    text-align: center;
  }
  .footer-regulatory p {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin: 0;
    line-height: 1.6;
  }

  /* ═══════════════ RESPONSIVE ═══════════════ */
  @media (max-width: 1024px) {
    nav { padding: 0 28px; justify-content: space-between; }
    .nav-links,
    .nav-links-left,
    .nav-links-right { display: none; }
    .nav-burger { display: flex; }

    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 28px; }

    .services-inner { padding: 0 28px; }
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }

    .tech-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 28px; }
    .tech-section { padding: 60px 0; }
    .tech-features { grid-template-columns: 1fr; }
    .tech-visual { order: -1; }

    .why-section { grid-template-columns: 1fr; }
    .why-left, .why-right { padding: 60px 28px; }

    .blog-section { padding: 60px 28px; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .blog-card { padding: 16px 8px; }
    .blog-card-img { width: 56px; height: 56px; min-width: 56px; border-radius: 8px; }
    .blog-card-title { font-size: 14px; }
    .blog-card-excerpt { display: none; }
    .blog-card-body { padding-left: 14px; }

    .faq-inner { padding: 0 28px; }

    .cta-strip { padding: 60px 28px; flex-direction: column; }
    footer { padding: 56px 28px 36px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .section { padding: 60px 28px; }
  }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    position: fixed; top: 112px; left: 0; right: 0; bottom: 0;
    background: var(--nav-bg); z-index: 99;
    padding: 40px 28px;
    flex-direction: column; gap: 8px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    text-decoration: none;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--accent); }

  .mobile-lang-switcher {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-lang-switcher a {
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 6px 14px;
    border: none;
    transition: color 0.2s;
  }
  .mobile-lang-switcher a.active {
    color: var(--white);
    background: rgba(122,154,107,0.3);
  }

  /* Animate in */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ═══════════════ PARTNERS ═══════════════ */
  .partners-section {
    padding: 80px 48px;
    background: var(--white);
    text-align: center;
  }

  .partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 48px;
  }

  .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    opacity: 0.55;
    transition: opacity 0.3s;
    filter: grayscale(100%);
  }

  .partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  .partner-logo img {
    max-height: 50px;
    width: auto;
  }

  .partner-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  @media (max-width: 768px) {
    .partners-section { padding: 60px 24px; }
    .partners-logos { gap: 40px; }
    .partner-logo-text { font-size: 22px; }
      .asf-top-bar { font-size: 10px; padding: 6px 16px; }
  }

  /* ═══════════════ CONTACT MODAL ═══════════════ */
  .contact-modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: rgba(74,90,69,0.85);
    backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
    padding: 40px;
  }
  .contact-modal-overlay.open { display: flex; }

  .contact-modal {
    background: var(--cream);
    max-width: 540px; width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
  }

  .contact-modal-header {
    background: var(--hero-bg);
    padding: 40px 44px 36px;
    position: relative;
  }

  .contact-modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    width: 36px; height: 36px;
    cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
  }
  .contact-modal-close:hover { border-color: var(--primary); color: var(--primary); }

  .contact-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px; font-weight: 700;
    color: var(--white); line-height: 1.15;
    margin-bottom: 8px;
  }

  .contact-modal-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
  }

  .contact-modal-body {
    padding: 36px 44px 44px;
  }

  .contact-form {
    display: flex; flex-direction: column; gap: 20px;
  }

  .contact-form-field {
    display: flex; flex-direction: column; gap: 6px;
  }

  .contact-form-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .contact-form-field input,
  .contact-form-field textarea {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
  }

  .contact-form-field input:focus,
  .contact-form-field textarea:focus {
    border-color: var(--primary);
  }

  .contact-form-field input::placeholder,
  .contact-form-field textarea::placeholder {
    color: var(--muted2);
  }

  .contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form-charcount {
    font-size: 11px;
    color: var(--muted2);
    text-align: right;
    margin-top: 4px;
  }

  .contact-form-submit {
    background: var(--primary);
    border: none;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
  }
  .contact-form-submit:hover { background: var(--primary-hover); }

  .contact-form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .contact-form-success.show { display: block; }
  .contact-form-success-icon {
    width: 56px; height: 56px;
    background: var(--primary-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .contact-form-success-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 2; }
  .contact-form-success h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px; font-weight: 700;
    margin-bottom: 10px;
  }
  .contact-form-success p {
    font-size: 14px; color: var(--muted); line-height: 1.6;
  }

  @media (max-width: 768px) {
    .contact-modal-header { padding: 32px 24px 28px; }
    .contact-modal-body { padding: 28px 24px 32px; }
    .contact-modal-title { font-size: 24px; }
  }

  /* ═══════════════ MOBILE RESPONSIVENESS FIXES ═══════════════ */
  /* Images never overflow their container on narrow screens */
  .team-photo,
  .blog-card-img img {
    max-width: 100%;
    height: auto;
  }

  /* Touch targets: minimum 44px for all interactive controls (Apple/Google guidelines) */
  .service-link,
  .service-detail-cta,
  .btn-primary,
  .btn-ghost,
  .contact-form-submit {
    min-height: 44px;
  }
  .btn-primary { display: inline-flex; align-items: center; justify-content: center; }

  @media (max-width: 1024px) {
    /* Keep the hero analysis form visible, stacked below the hero text */
    .hero-right { display: flex; padding: 0 28px 60px; }
  }

  @media (max-width: 768px) {
    /* Hero subtitle should not be capped below the available width */
    .hero-subtitle { max-width: 100%; }
    /* Allow the two hero action buttons to wrap on narrow screens */
    .hero-actions { flex-wrap: wrap; gap: 16px; }
    /* Allow the four hero stats to wrap and tighten the gap */
    .hero-stats { flex-wrap: wrap; gap: 28px 32px; }
    /* Responsive CTA strip title */
    .cta-strip-title { font-size: clamp(26px, 6vw, 42px); }
  }

  @media (max-width: 480px) {
    /* Tighter hero/section padding on very small screens */
    .hero-left { padding: 48px 20px; }
    .hero-right { padding: 0 20px 48px; }
    .section { padding: 48px 20px; }
    .blog-section { padding: 48px 20px; }
    .cta-strip { padding: 48px 20px; }
    footer { padding: 48px 20px 28px; }

    /* Reduce oversized titles */
    .hero-title { font-size: 34px; }
    .section-title { font-size: 30px; }
    .cta-strip-title { font-size: 26px; }

    /* Stats layout: tighten further */
    .hero-stats { gap: 22px 24px; }
    .hero-stat-num { font-size: 30px; }

    /* Buttons go full-width so they remain easy to tap */
    .hero-actions { gap: 14px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; }

    /* Footer collapses to a single column */
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
  }


  .form-branch-fields[hidden] { display: none; }
  .form-branch-fields {
    border-top: 1px solid var(--border, #E5DFCB);
    margin-top: 4px;
    padding-top: 14px;
  }
  .form-gdpr {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted, #8A8B7E);
  }
  .form-gdpr a { color: var(--primary, #7A9A6B); }


  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--nav-bg);
    border-top: 1px solid rgba(122,154,107,0.25);
    padding: 20px 48px;
    display: none;
    animation: cookieSlideUp 0.4s ease;
  }
  .cookie-banner.show { display: block; }
  @keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .cookie-banner-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .cookie-banner-text strong {
    display: block; font-size: 14px; font-weight: 700; color: var(--white);
    margin-bottom: 4px;
  }
  .cookie-banner-text p {
    font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; margin: 0;
  }
  .cookie-banner-text a {
    color: var(--accent); text-decoration: underline;
  }
  .cookie-banner-actions {
    display: flex; gap: 12px; flex-shrink: 0;
  }
  .cookie-btn {
    padding: 10px 24px; font-family: inherit; font-size: 12px;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; transition: all 0.2s; border: none;
  }
  .cookie-btn-accept {
    background: var(--primary); color: var(--white);
  }
  .cookie-btn-accept:hover { background: var(--primary-hover); }
  .cookie-btn-reject {
    background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  }
  .cookie-btn-reject:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
  @media (max-width: 768px) {
    .cookie-banner { padding: 16px 20px; }
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn { flex: 1; }
  }

  /* ASF TOP BAR */
  .asf-top-bar {
    background: #1B2B4B;
    color: rgba(255,255,255,0.85);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 8px 24px;
    line-height: 1.4;
  }
  .asf-top-bar a {
    color: #C9A84C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }
  .asf-top-bar a:hover { color: #e0be6a; }

  /* CTA contextual nos artigos do blog */
  .blog-cta-box {
    background-color: var(--cream, #FAF7EE);
    border: 1px solid var(--border, #E5DFCB);
    border-left: 4px solid var(--accent, #D9A668);
    border-radius: 8px;
    padding: 28px 32px;
    margin: 40px 0;
  }
  .blog-cta-box h3 {
    color: var(--ink, #4A5A45);
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .blog-cta-box p {
    color: var(--ink2, #637060);
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  /* Badge de suporte em inglês */
  .lang-support-badge {
    display: inline-block;
    background-color: rgba(217, 166, 104, 0.12);
    border: 1px solid rgba(217, 166, 104, 0.35);
    color: var(--accent, #D9A668);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

/* ---------------------------------------------------------------------------
   Components introduced by the /blog/ and /seguros/ sections. Built from the
   same custom properties as everything above — no existing rule is redefined.
   --------------------------------------------------------------------------- */
.page-head {
  max-width: 1400px; margin: 0 auto; padding: 60px 60px 0;
}
.page-intro {
  max-width: 820px; color: var(--ink2); font-size: 16px; line-height: 1.8;
}
.page-intro p { margin: 0 0 16px; }
.page-intro a { color: var(--primary); }
.breadcrumb {
  max-width: 1400px; margin: 0 auto; padding: 24px 60px 0;
  font-size: 13px; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 8px; }
.category-nav {
  max-width: 1400px; margin: 0 auto; padding: 32px 60px 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.category-chip {
  display: inline-block; padding: 8px 18px; border: 1px solid var(--border);
  background: var(--white); color: var(--ink2); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.2s;
}
.category-chip:hover { border-color: var(--primary); color: var(--primary); }
.category-chip.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.category-chip-count { opacity: 0.6; margin-left: 6px; font-weight: 500; }
.pagination {
  max-width: 1400px; margin: 0 auto; padding: 0 60px 80px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center;
  justify-content: center; padding: 0 12px; border: 1px solid var(--border);
  background: var(--white); color: var(--ink2); text-decoration: none;
  font-size: 13px; font-weight: 600;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); border-color: var(--primary); color: var(--white); }
.lp-section {
  max-width: 1400px; margin: 0 auto; padding: 60px;
}
.lp-section h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--ink);
  letter-spacing: -0.02em; margin: 0 0 24px;
}
.lp-section h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.lp-section p { color: var(--ink2); font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.lp-section a { color: var(--primary); }
.lp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.lp-card {
  background: var(--white); border: 1px solid var(--border); padding: 28px;
}
.lp-card p { font-size: 14px; margin: 0; }
.lp-card--muted { background: var(--cream2); }
.lp-list { color: var(--ink2); font-size: 16px; line-height: 1.9; padding-left: 20px; margin: 0 0 16px; }
.lp-list li { margin-bottom: 10px; }
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.lp-step-num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 10px;
}
.lp-hero {
  background: var(--hero-bg); color: var(--white); padding: 100px 60px 80px;
}
.lp-hero-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start;
}
.lp-hero h1 {
  font-size: clamp(32px, 4.4vw, 54px); font-weight: 400; line-height: 1.1;
  letter-spacing: -0.03em; margin: 0 0 20px; color: var(--white);
}
.lp-hero h1 em { font-style: italic; color: var(--accent); }
.lp-hero-sub { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.75); margin: 0 0 28px; max-width: 620px; }
.lp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.lp-trust div { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.lp-form-card { background: var(--white); padding: 32px; }
.lp-form-card h2 { font-size: 20px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.lp-form-card .lp-form-sub { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-form-grid .full { grid-column: 1 / -1; }
.lp-form-card label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.lp-form-card input, .lp-form-card select, .lp-form-card textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--border);
  background: var(--cream); font-family: inherit; font-size: 14px; color: var(--ink);
}
.lp-form-card input:focus, .lp-form-card select:focus, .lp-form-card textarea:focus {
  outline: none; border-color: var(--primary);
}
.lp-form-card .radio-row { display: flex; gap: 18px; }
.lp-form-card .radio-row label {
  display: flex; align-items: center; gap: 7px; text-transform: none;
  letter-spacing: 0; font-size: 14px; font-weight: 500; color: var(--ink2); margin: 0;
}
.lp-form-card .radio-row input { width: auto; }
.lp-check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
.lp-check-grid label {
  display: flex; align-items: center; gap: 7px; text-transform: none;
  letter-spacing: 0; font-size: 14px; font-weight: 500; color: var(--ink2); margin: 0;
}
.lp-check-grid input { width: auto; }
.lp-form-submit {
  width: 100%; margin-top: 18px; padding: 14px; background: var(--primary);
  color: var(--white); border: none; font-family: inherit; font-size: 13px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.lp-form-submit:hover { background: var(--primary-hover); }
.lp-form-micro { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.lp-faq { max-width: 900px; }
.lp-faq details {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.lp-faq summary {
  cursor: pointer; font-size: 16px; font-weight: 600; color: var(--ink); list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; float: right; color: var(--primary); font-size: 20px; line-height: 1; }
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq p { margin: 14px 0 0; font-size: 15px; }
.lp-related-landing {
  background: var(--primary-dim); border: 1px solid var(--primary);
}
.lp-related-landing .related-card-tag { color: var(--primary); }
.article-author {
  display: flex; gap: 14px; align-items: center; margin: 0 0 24px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.article-author-photo {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  background: var(--cream2);
}
.article-author-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.article-author-name a { color: inherit; text-decoration: none; }
.article-author-name a:hover { color: var(--primary); }
.article-author-meta { font-size: 12px; color: var(--muted); line-height: 1.6; margin-top: 2px; }
.article-toc {
  background: var(--cream2); border-left: 3px solid var(--primary);
  padding: 22px 26px; margin: 0 0 32px;
}
.article-toc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.article-toc ol { margin: 0; padding-left: 20px; }
.article-toc li { margin-bottom: 7px; font-size: 15px; line-height: 1.5; }
.article-toc a { color: var(--ink2); text-decoration: none; }
.article-toc a:hover { color: var(--primary); text-decoration: underline; }
.article-faq { margin-top: 48px; }
.lang-unavailable { opacity: 0.55; }
@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-head, .breadcrumb, .category-nav, .pagination, .lp-section { padding-left: 24px; padding-right: 24px; }
  .lp-hero { padding: 70px 24px 50px; }
  .lp-form-grid { grid-template-columns: 1fr; }
}
