
  :root {
    --navy: #174A8B;
    --navy-deep: #174A8B;
    --btn: #533AFD;
    --btn-hover: #4429e0;
    --cream: #F0F4F9;
    --white: #ffffff;
    --page-bg: #F5F7FA;
    --gray: #6B7C93;
    --gray-light: #E4EAF2;
    --text: #333333;
    --heading: #1A1F36;
    --subtext: #5A6478;
    --border: #D8E0EC;
  }

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

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #F5F7FA;
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed; top:0; left:0; width:100%; z-index:1000;
    background: rgba(23,74,139,0.97);
    backdrop-filter: blur(12px);
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-logo {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
  }
  .nav-logo span { color: #ffffff; font-weight: 400; }

  .nav-links {
    display: flex; gap: 32px; align-items: center; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    cursor: pointer;
  }
  .nav-links a:hover { color: rgba(255,255,255,1); }

  .lang-toggle {
    display: flex; gap: 8px; align-items: center;
  }
  .lang-btn {
    background: none; border: 1px solid var(--border);
    color: rgba(255,255,255,0.7);
    padding: 4px 10px; border-radius: 4px;
    font-size: 0.78rem; cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
  }
  .lang-btn.active, .lang-btn:hover {
    background: #533AFD; color: #ffffff;
    border-color: #533AFD; font-weight: 600;
  }

  .nav-cta {
    background: #533AFD;
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #7560FE !important; color: #ffffff !important; }

  .hamburger { display: none; flex-direction: column; gap:5px; cursor:pointer; }
  .hamburger span { width:24px; height:2px; background: var(--white); border-radius:2px; transition: all 0.3s; }

  /* ===== PAGES ===== */
  .page { display: none; padding-top: 70px; }
  .page.active { display: block; }

  /* ===== HERO CAROUSEL ===== */
  .hero-carousel {
    position: relative;
    height: calc(100vh - 70px);
    min-height: 560px;
    overflow: hidden;
    background: var(--navy-deep);
  }

  .slide {
    position: absolute; inset:0;
    display: flex; align-items: center;
    opacity:0; transition: opacity 0.9s ease;
    padding: 60px 80px;
  }
  .slide.active { opacity:1; }

  .slide-bg {
    position: absolute; inset:0;
    background-size: cover; background-position: center;
  }
  .slide-overlay {
    position: absolute; inset:0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.12) 100%);
  }

  .slide-content {
    position: relative; z-index: 2;
    max-width: 620px;
  }

  .slide-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
  }

  .slide-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .slide-content h1 em {
    font-style: normal;
    color: #ffffff;
  }

  .slide-content p {
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 400;
  }

  .btn-primary {
    display: inline-block;
    background: #533AFD;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.2px;
  }
  .btn-primary:hover { background: #7560FE; transform: translateY(-1px); }

  .btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.4);
    transition: border-color 0.2s, color 0.2s;
    margin-left: 12px;
  }
  .btn-outline:hover { border-color: #533AFD; background: #533AFD; color: #ffffff; }

  .carousel-dots {
    position: absolute; bottom: 32px; left: 80px;
    display: flex; gap: 10px; z-index:3;
  }
  .dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%; cursor: pointer;
    transition: all 0.3s;
    border: none;
  }
  .dot.active { background: #533AFD; width: 26px; border-radius: 4px; }

  .carousel-arrows {
    position: absolute; bottom: 24px; right: 60px;
    display: flex; gap:10px; z-index:3;
  }
  .arrow-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer; color: white;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .arrow-btn:hover { background: #533AFD; border-color: #533AFD; color: var(--navy); }

  /* ===== ANNOUNCEMENT BAR — prominent editorial ===== */
  .ann-bar {
    background: linear-gradient(100deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-bottom: 3px solid #533AFD;
  }
  .ann-inner {
    display: flex; align-items: center; gap: 20px;
    padding: 22px 80px; flex-wrap: wrap;
  }
  .ann-tag {
    font-size: 0.68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: rgba(255,255,255,0.9); white-space: nowrap;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 12px; border-radius: 20px;
  }
  .ann-divider { color: rgba(255,255,255,0.15); font-size: 1.2rem; }
  .ann-msg { flex: 1; font-size: 0.97rem; color: rgba(255,255,255,0.88); line-height: 1.55; min-width: 200px; }
  .ann-msg strong { color: white; font-size: 1.05rem; display: block; margin-bottom: 3px; }
  .ann-btn {
    background: #533AFD; color: #ffffff;
    border: none; padding: 11px 24px; border-radius: 6px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    font-weight: 700; cursor: pointer; white-space: nowrap;
    transition: background 0.2s;
  }
  .ann-btn:hover { background: #7560FE; }
  .ann-close {
    background: none; border: none; color: rgba(255,255,255,0.25);
    cursor: pointer; font-size: 0.9rem; padding: 4px;
    transition: color 0.2s;
  }
  .ann-close:hover { color: white; }

  /* ===== HOME INTRO v2 — cinematic full-bleed with benefit cards ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes lineGrow {
    from { width: 0; }
    to   { width: 64px; }
  }

  .home-intro {
    position: relative;
    background: #0d1b35;
    overflow: hidden;
    padding: 0;
  }

  /* layered geometric background */
  .home-intro::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 15% 50%, rgba(83,58,253,0.22) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 85% 20%, rgba(23,74,139,0.35) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 60% 85%, rgba(83,58,253,0.12) 0%, transparent 50%);
    pointer-events: none;
  }
  .home-intro::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .hi-inner {
    position: relative; z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px 110px;
  }

  /* top section: eyebrow + headline + intro paragraph */
  .hi-top {
    max-width: 760px;
    margin-bottom: 80px;
    animation: fadeUp 0.7s ease both;
  }
  .hi-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 4px;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
  }
  .hi-eyebrow::before {
    content: '';
    display: block; width: 32px; height: 2px;
    background: #533AFD;
    animation: lineGrow 0.8s ease 0.3s both;
  }
  .hi-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: white; line-height: 1.1; font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  .hi-title em {
    font-style: normal;
    background: linear-gradient(135deg, #7560FE 0%, #a89bff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hi-body {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 620px;
  }

  /* cards row */
  .hi-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .hi-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 36px 44px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    animation: fadeUp 0.7s ease both;
  }
  .hi-card:nth-child(1) { animation-delay: 0.1s; }
  .hi-card:nth-child(2) { animation-delay: 0.22s; }
  .hi-card:nth-child(3) { animation-delay: 0.34s; }

  .hi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(83,58,253,0.5);
    background: rgba(83,58,253,0.08);
  }

  /* glow behind card on hover */
  .hi-card::before {
    content: '';
    position: absolute; bottom: -60px; left: -30px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83,58,253,0.25) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .hi-card:hover::before { opacity: 1; }

  .hi-card-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: #533AFD;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .hi-card-num::after {
    content: '';
    flex: 1; height: 1px;
    background: rgba(83,58,253,0.3);
  }

  .hi-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.18rem; font-weight: 700;
    color: #ffffff; line-height: 1.3;
    margin-bottom: 16px;
  }

  .hi-card p {
    font-size: 0.9rem; line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin: 0;
  }

  .hi-card-icon {
    position: absolute; top: 36px; right: 32px;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(83,58,253,0.15);
    border: 1px solid rgba(83,58,253,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }

  .hi-bottom {
    margin-top: 60px;
    display: flex; align-items: center; gap: 24px;
    animation: fadeUp 0.7s ease 0.5s both;
  }

  /* ===== HOME TESTIMONIALS — light clean ===== */
  .home-testimonials {
    background: var(--white);
    padding: 90px 80px;
    border-top: 1px solid var(--gray-light);
  }
  .ht-header { margin-bottom: 52px; }
  .ht-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--heading); line-height: 1.2; font-weight: 700;
    margin-top: 10px;
  }
  .ht-title em { font-style: normal; color: var(--navy); }

  .ht-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
    align-items: start;
  }
  .ht-featured {
    background: var(--cream);
    border: 1px solid var(--gray-light);
    border-top: 3px solid var(--border);
    border-radius: 18px; padding: 48px 44px;
    position: relative;
  }
  .ht-quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem; color: var(--border); opacity: 1;
    line-height: 0.5; display: block; margin-bottom: 24px;
  }
  .ht-featured p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem; color: var(--text);
    line-height: 1.65; font-style: italic; margin-bottom: 32px;
  }
  .ht-author {
    display: flex; align-items: center; gap: 14px;
  }
  .ht-avatar {
    width: 44px; height: 44px;
    background: #533AFD; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem; color: white;
    flex-shrink: 0;
  }
  .ht-author strong { display: block; color: var(--heading); font-size: 0.93rem; font-weight: 700; }
  .ht-author span { color: var(--gray); font-size: 0.8rem; }
  .ht-stars { margin-left: auto; color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; }

  .ht-stack { display: flex; flex-direction: column; gap: 18px; }
  .ht-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--gray-light);
    border-radius: 0 12px 12px 0;
    padding: 24px 24px 20px;
    transition: box-shadow 0.2s;
  }
  .ht-card:hover { box-shadow: 0 4px 20px rgba(0,117,221,0.08); }
  .ht-stars-sm { color: #F59E0B; font-size: 0.72rem; letter-spacing: 2px; margin-bottom: 10px; }
  .ht-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
  .htc-author { display: flex; gap: 8px; align-items: center; }
  .htc-author strong { color: var(--navy); font-size: 0.82rem; }
  .htc-author span { color: var(--gray); font-size: 0.78rem; }
  .htc-author span::before { content: '· '; }

  /* ===== HOME WHO WE SERVE — vertical photo cards with overlay text ===== */
  .home-who { background: var(--white); }

  .hw-header {
    text-align: center;
    padding: 90px 80px 60px;
  }
  .hw-eyebrow {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: var(--subtext); margin-bottom: 14px;
  }
  .hw-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    color: var(--text); font-weight: 700; line-height: 1.2;
    max-width: 780px; margin: 0 auto;
  }
  .hw-title em { font-style: normal; color: var(--navy); }

  /* Three vertical photo cards side by side */
  .hw-cards-v {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    min-height: 640px;
  }

  .hw-card-v {
    position: relative;
    overflow: hidden;
    cursor: default;
  }

  .hw-card-v-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
  }
  .hw-card-v:hover .hw-card-v-img { transform: scale(1.04); }

  /* Gradient overlay — strong at bottom for text legibility */
  .hw-card-v-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(23,74,139,0.1) 0%,
      rgba(23,74,139,0.25) 40%,
      rgba(23,74,139,0.82) 75%,
      rgba(23,74,139,0.95) 100%
    );
    transition: background 0.4s;
  }
  .hw-card-v:hover .hw-card-v-overlay {
    background: linear-gradient(
      to bottom,
      rgba(23,74,139,0.15) 0%,
      rgba(23,74,139,0.3) 40%,
      rgba(23,74,139,0.88) 70%,
      rgba(23,74,139,0.97) 100%
    );
  }

  /* Thin accent line at top of each card */
  .hw-card-v::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: #533AFD; z-index: 3;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }
  .hw-card-v:hover::before { transform: scaleX(1); }

  .hw-card-v-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 40px 36px 44px;
  }

  .hw-tag {
    display: inline-block;
    font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 5px 12px; border-radius: 20px;
    margin-bottom: 14px; align-self: flex-start;
  }

  .hw-card-v-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: white; line-height: 1.2; margin-bottom: 14px;
  }

  /* Body text hidden by default, revealed on hover */
  .hw-card-v-content p {
    font-size: 0.88rem; color: rgba(255,255,255,0.78);
    line-height: 1.7; margin-bottom: 24px;
    max-height: 0; overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
  }
  .hw-card-v:hover .hw-card-v-content p {
    max-height: 200px; opacity: 1;
  }

  .hw-btn {
    display: inline-block;
    background: white;
    color: #174A8B;
    border: none; padding: 10px 22px;
    border-radius: 6px; font-family: 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 700; cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s, background 0.2s;
  }
  .hw-card-v:hover .hw-btn {
    opacity: 1; transform: translateY(0);
  }
  .hw-btn:hover { background: #533AFD; color: white; }

  /* ===== CLOSING CTA — cinematic full-bleed ===== */
  .home-closing-cta {
    position: relative;
    min-height: 520px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hcc-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center top;
  }
  .hcc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(23,74,139,0.88) 0%, rgba(0,117,221,0.75) 100%);
  }
  .hcc-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 740px;
    padding: 80px 40px;
  }
  .hcc-eyebrow {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,0.75);
    margin-bottom: 20px; display: block;
  }
  .hcc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: white; font-weight: 700; line-height: 1.25;
    margin-bottom: 22px;
  }
  .hcc-title em { font-style: normal; color: #ffffff; }
  .hcc-body {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem; line-height: 1.75;
    margin-bottom: 36px; max-width: 560px;
    margin-left: auto; margin-right: auto;
  }
  .hcc-cta { font-size: 1rem !important; padding: 16px 36px !important; }

  @media (max-width: 900px) {
    .hw-header { padding: 60px 28px 44px; }
    .hw-cards-v { grid-template-columns: 1fr; min-height: auto; }
    .hw-card-v { min-height: 420px; }
    .hw-card-v-content p { max-height: 200px; opacity: 1; }
    .hw-btn { opacity: 1; transform: none; }
    .home-closing-cta { min-height: 440px; }
    .hcc-content { padding: 60px 28px; }
    .hi-inner { padding: 72px 28px 80px; }
    .hi-cards { grid-template-columns: 1fr; gap: 16px; }
    .ht-grid { grid-template-columns: 1fr; }
    .ann-inner { padding: 16px 28px; }
    .home-testimonials { padding: 70px 28px; }
  }

  /* ===== SECTION GENERAL ===== */
  section { padding: 90px 80px; }

  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--subtext);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    color: var(--heading);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.3px;
  }

  .section-title em { font-style: normal; color: var(--navy); }

  .section-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 560px;
  }

  /* services-strip replaced above */

  /* ===== PROCESS ===== */
  .process-section { background: var(--cream); }

  .process-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    margin-top: 56px;
  }

  .process-step {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    border-top: 3px solid var(--gray-light);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    position: relative;
  }

  .step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: rgba(26,31,54,0.07);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
  }

  .process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .process-step p { font-size: 0.93rem; color: var(--gray); line-height: 1.65; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section { background: var(--white); }

  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 56px;
  }

  .testimonial-card {
    background: var(--cream);
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    border-left: 3px solid var(--gray-light);
  }

  .quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--border);
    opacity: 1;
    line-height: 0.6;
    margin-bottom: 16px;
    display: block;
  }

  .testimonial-card p {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
  }

  .testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
  }
  .testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
  }

  .stars { color: #F59E0B; font-size: 0.8rem; margin-bottom: 12px; }

  /* ===== ABOUT PAGE ===== */
  .about-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);    padding: 100px 80px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    line-height: 1.25;
    margin-bottom: 24px;
  }
  .about-hero h1 em { font-style: normal; color: #ffffff; }
  .about-hero p { color: rgba(255,255,255,0.8); line-height: 1.8; font-size: 1rem; }

  .about-photo-wrap {
    position: relative;
  }
  .about-photo-wrap img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    object-fit: cover;
    height: 480px;
    border: 4px solid rgba(255,255,255,0.2);
    display: block;
  }
  .about-photo-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: #533AFD;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .about-story { background: var(--cream); }

  .about-story-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }

  .about-story p { color: var(--gray); line-height: 1.8; font-size: 0.97rem; margin-bottom: 18px; }

  .principles-list { list-style: none; margin-top: 8px; }
  .principles-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 0.95rem; color: var(--text);
  }
  .principles-list li:last-child { border-bottom: none; }
  .principles-list .icon {
    width: 28px; height: 28px; min-width: 28px;
    background: #533AFD;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .certs-section { background: var(--white); padding: 80px; }
  .certs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
  .cert-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    transition: box-shadow 0.2s;
  }
  .cert-card:hover { box-shadow: 0 8px 32px rgba(23,74,139,0.1); }
  .cert-icon { font-size: 2.2rem; margin-bottom: 12px; }
  .cert-card h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
  .cert-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.6; }

  /* ===== ABOUT V2 ===== */

  /* Bloque 1: Hero Quote */
  .about-quote-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-deep);
  }
  .aqh-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.28);
  }
  .aqh-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(23,74,139,0.55), rgba(23,74,139,0.8));
  }
  .aqh-inner {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 80px 40px;
    display: flex; flex-direction: column; align-items: center; gap: 28px;
  }
  .aqh-deco {
    width: 56px; height: 3px;
    background: #533AFD; border-radius: 2px;
  }
  .aqh-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    font-style: italic;
    letter-spacing: -0.2px;
  }

  /* Bloque 2: Historia */
  .about-historia {
    background: var(--cream);
    padding: 100px 80px;
  }
  .ah-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .ah-text .section-title { margin-top: 16px; margin-bottom: 24px; }
  .ah-text p {
    color: var(--gray); line-height: 1.8;
    font-size: 0.97rem; margin-bottom: 16px;
  }
  .ah-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 0.97rem !important;
    color: var(--navy) !important;
    padding: 16px 20px;
    border-left: 4px solid #533AFD;
    background: rgba(83,58,253,0.06);
    border-radius: 0 8px 8px 0;
    margin: 24px 0 32px !important;
    line-height: 1.6 !important;
  }
  .ah-stats {
    display: flex; align-items: center;
    padding: 28px 0; border-top: 1px solid var(--border);
  }
  .ah-stat { flex: 1; text-align: center; }
  .ah-stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: var(--navy); line-height: 1; margin-bottom: 6px;
  }
  .ah-stat-label {
    font-size: 0.78rem; color: var(--gray);
    font-weight: 500; letter-spacing: 0.3px;
  }
  .ah-stat-divider {
    width: 1px; height: 40px; background: var(--border);
  }
  .ah-image {
    position: relative; border-radius: 16px;
    overflow: hidden; height: 460px;
  }
  .ah-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .ah-img-placeholder {
    display: none; width: 100%; height: 460px;
    background: linear-gradient(135deg, var(--navy-deep), #2a5298);
    border-radius: 16px;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 0.9rem; text-align: center;
  }

  /* Bloque 3: Lucía */
  .about-lucia-section {
    background: var(--white);
    padding: 100px 80px;
  }
  .als-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 360px 1fr;
    gap: 80px; align-items: start;
  }
  .als-photo-wrap { position: relative; }
  .als-photo-wrap img {
    width: 100%; max-width: 360px;
    border-radius: 16px; object-fit: cover;
    height: 500px; display: block;
    border: 4px solid var(--gray-light);
  }
  .als-photo-badge {
    position: absolute; bottom: -16px; left: 50%;
    transform: translateX(-50%); white-space: nowrap;
    background: #533AFD; color: #ffffff;
    padding: 12px 22px; border-radius: 10px;
    font-weight: 700; font-size: 0.82rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    letter-spacing: 0.3px;
  }
  .als-credentials {
    margin-top: 44px;
    border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
  }
  .als-cred-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem; color: var(--text);
    font-weight: 500; background: var(--white);
    transition: background 0.2s;
  }
  .als-cred-item:last-child { border-bottom: none; }
  .als-cred-item:hover { background: var(--cream); }
  .als-cred-icon { font-size: 1.1rem; min-width: 24px; text-align: center; }
  .als-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--heading); font-weight: 800;
    margin-bottom: 24px; line-height: 1.2;
  }
  .als-ea { color: #533AFD; }
  .als-bio-col p {
    color: var(--gray); line-height: 1.8;
    font-size: 0.97rem; margin-bottom: 18px;
  }
  .als-quote {
    margin-top: 32px; padding: 28px 32px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ebe5ff 100%);
    border-radius: 12px; border-left: 4px solid #533AFD;
    position: relative;
  }
  .als-quote::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem; color: #533AFD; opacity: 0.18;
    position: absolute; top: -8px; left: 18px; line-height: 1;
  }
  .als-quote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem !important; font-weight: 600;
    color: var(--heading) !important;
    line-height: 1.7 !important; font-style: italic;
    margin-bottom: 12px !important; position: relative; z-index: 1;
  }
  .als-quote cite {
    font-size: 0.82rem; color: var(--gray);
    font-style: normal; font-weight: 600; letter-spacing: 0.5px;
  }

  /* Bloque 4: Valores */
  .about-valores {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1a3a6b 100%);
    padding: 100px 80px;
  }
  .av-container { max-width: 1100px; margin: 0 auto; }
  .av-header { text-align: center; margin-bottom: 64px; }
  .av-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    color: #ffffff; font-weight: 700;
    margin-top: 12px; line-height: 1.2;
  }
  .av-cards {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  }
  .av-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 40px 32px;
    transition: background 0.2s, transform 0.2s;
  }
  .av-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
  .av-card--featured {
    background: #533AFD; border-color: #533AFD;
  }
  .av-card--featured:hover { background: #6348fe; }
  .av-card-icon { font-size: 2rem; margin-bottom: 20px; }
  .av-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: #ffffff; margin-bottom: 16px; line-height: 1.3;
  }
  .av-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75); line-height: 1.75;
  }
  .av-card--featured p { color: rgba(255,255,255,0.92); }

  /* Bloque 5: CTA */
  .about-cta-block {
    background: var(--cream); padding: 100px 80px; text-align: center;
  }
  .acb-inner { max-width: 700px; margin: 0 auto; }
  .acb-inner .section-title { margin-top: 16px; margin-bottom: 20px; }
  .acb-inner p {
    color: var(--gray); font-size: 1rem;
    line-height: 1.8; margin-bottom: 40px;
  }
  .acb-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  }

  /* ===== SERVICES PAGE ===== */
  .services-hero {
    background: var(--navy);
    padding: 90px 80px 70px;
    text-align: center;
  }
  .services-hero h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 18px;
  }
  .services-hero h1 em { font-style: normal; color: #ffffff; }
  .services-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; line-height: 1.7; }

  .services-grid-section { background: var(--cream); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 56px;
  }
  .service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 36px 30px;
    border-top: 3px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
  .service-icon { font-size: 2rem; margin-bottom: 16px; }
  .service-card h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); font-size: 1.1rem; margin-bottom: 12px; }
  .service-card ul { list-style: none; }
  .service-card li {
    font-size: 0.88rem; color: var(--gray); line-height: 1.6;
    padding: 5px 0; border-bottom: 1px solid var(--gray-light);
    padding-left: 14px; position: relative;
  }
  .service-card li::before {
    content: '→'; position: absolute; left:0;
    color: var(--subtext); font-size: 0.75rem;
  }
  .service-card li:last-child { border-bottom: none; }

  .industries-section { background: var(--white); }
  .industries-wrap {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px;
  }
  .industry-tag {
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: default;
  }
  .industry-tag:hover { background: #533AFD; border-color: #533AFD; color: #ffffff; }

  .faq-section { background: var(--cream); }
  .faq-list { margin-top: 48px; max-width: 800px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; cursor: pointer;
    font-weight: 600; color: var(--navy); font-size: 0.97rem;
  }
  .faq-q .toggle {
    width: 28px; height: 28px;
    background: #533AFD;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 700;
  }
  .faq-item.open .faq-q .toggle { transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    color: var(--gray); font-size: 0.93rem; line-height: 1.7;
  }
  .faq-a.open { max-height: 200px; padding-bottom: 18px; }

  .services-cta {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));    padding: 90px 80px;
    text-align: center;
    color: white;
  }
  .services-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
  }
  .services-cta h2 em { font-style: normal; color: #ffffff; }
  .services-cta p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1rem; }

  /* ===== CONTACT PAGE ===== */
  .contact-page { background: var(--cream); min-height: 100vh; }
  .contact-header {
    background: var(--navy);
    padding: 80px 80px 60px;
    text-align: center;
  }
  .contact-header h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: clamp(1.9rem,3vw,2.8rem);
    margin-bottom: 14px;
  }
  .contact-header h1 em { font-style:normal; color: #ffffff; }
  .contact-header p { color: rgba(255,255,255,0.75); font-size:1rem; max-width:520px; margin:0 auto; line-height:1.7; }

  .contact-body {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
    max-width: 1200px; margin: 60px auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.08);
    margin-left: auto; margin-right: auto;
    padding: 0 80px;
    box-sizing: border-box;
  }

  .contact-info {
    padding: 56px 40px 56px 0;
    border-right: 1px solid var(--gray-light);
  }
  .contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-size: 1.3rem; margin-bottom: 28px;
  }

  .contact-detail {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 24px;
  }
  .contact-detail .ci {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--cream);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .contact-detail strong { display:block; font-size:0.8rem; color:var(--gray); text-transform:uppercase; letter-spacing:1px; font-weight:600; }
  .contact-detail span { font-size:0.95rem; color:var(--navy); font-weight:500; }

  .calendly-embed {
    padding: 56px 0 56px 40px;
  }
  .calendly-embed h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy); font-size:1.3rem; margin-bottom:24px;
  }
  .calendly-placeholder {
    background: var(--cream);
    border-radius: 14px;
    padding: 60px 32px;
    text-align: center;
    border: 2px dashed var(--border);
  }
  .calendly-placeholder p { color: var(--gray); font-size: 0.93rem; margin-bottom: 18px; line-height:1.6; }
  .calendly-placeholder a {
    display: inline-block;
    background: #533AFD;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  .calendly-placeholder a:hover { background: #7560FE; }

  /* ===== LEGAL PAGES ===== */
  .legal-page { padding: 100px 80px; max-width: 880px; margin: 0 auto; }
  .legal-page h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy); font-size: 2.4rem; margin-bottom: 12px;
  }
  .legal-date { font-size: 0.85rem; color: var(--gray); margin-bottom: 40px; }
  .legal-page h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy); font-size: 1.2rem; margin: 32px 0 10px;
  }
  .legal-page p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; margin-bottom: 14px; }

  /* ===== COOKIE BANNER ===== */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
    background: var(--navy-deep);
    border-top: 2px solid #533AFD;    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
  }
  .cookie-banner.show { transform: translateY(0); }
  .cookie-text { color: rgba(255,255,255,0.85); font-size: 0.87rem; line-height: 1.5; }
  .cookie-text a { color: rgba(255,255,255,0.9); text-decoration: underline; cursor: pointer; }
  .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-accept {
    background: #533AFD; color: #ffffff;
    border: none; padding: 10px 22px;
    border-radius: 6px; font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.87rem;
    transition: background 0.2s;
  }
  .cookie-accept:hover { background: #7560FE; }
  .cookie-decline {
    background: transparent; color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2); padding: 10px 18px;
    border-radius: 6px; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.87rem;
    transition: all 0.2s;
  }
  .cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy-deep);
    padding: 60px 80px 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-top: 12px; }
  .footer-col h4 {
    color: rgba(255,255,255,0.55); font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 700; margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.65); font-size: 0.88rem;
    text-decoration: none; cursor: pointer;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: #ffffff; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
  .social-links { display: flex; gap:12px; }
  .social-links a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none; font-size: 0.8rem;
    transition: all 0.2s;
  }
  .social-links a:hover { background: #533AFD; color: #ffffff; }

  /* ===== BEFORE/AFTER ===== */
  .ba-section { background: var(--navy); padding: 80px; }
  .ba-grid { display: grid; grid-template-columns:1fr 1fr; gap: 40px; margin-top:48px; }
  .ba-card { border-radius:14px; padding:36px 32px; }
  .ba-before { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
  .ba-after { background: var(--cream); border: 1px solid var(--border); }
  .ba-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem; margin-bottom: 20px;
  }
  .ba-before h3 { color: rgba(255,255,255,0.5); }
  .ba-after h3 { color: #ffffff; }
  .ba-card ul { list-style: none; }
  .ba-card li { padding: 8px 0; font-size:0.93rem; display:flex; gap:10px; align-items:flex-start; }
  .ba-before li { color: rgba(255,255,255,0.5); }
  .ba-before li::before { content: '✗'; color: rgba(255,100,100,0.5); font-weight:700; }
  .ba-after li { color: rgba(255,255,255,0.85); }
  .ba-after li::before { content: '✓'; color: rgba(255,255,255,0.85); font-weight:700; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    section, .services-strip, footer { padding-left: 28px; padding-right: 28px; }
    .slide { padding: 40px 28px; }
    .carousel-dots { left: 28px; }
    .process-steps, .testimonials-grid, .services-grid { grid-template-columns: 1fr; }
    .about-hero, .about-story-grid { grid-template-columns: 1fr; }
    .ah-container, .als-container { grid-template-columns: 1fr; gap: 48px; }
    .ah-image, .ah-img-placeholder { height: 320px; }
    .als-photo-wrap img { max-width: 100%; height: 380px; }
    .about-historia, .about-lucia-section, .about-valores, .about-cta-block { padding: 60px 28px; }
    .av-cards { grid-template-columns: 1fr; }
    .about-quote-hero { min-height: 300px; }
    .aqh-inner { padding: 60px 28px; }
    .certs-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-body { grid-template-columns: 1fr; padding: 0 28px; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 40px 0; }
    .calendly-embed { padding: 40px 0; }
    .services-strip { flex-direction: column; text-align: center; }
    .ba-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .legal-page { padding: 80px 28px; }
    .contact-header { padding: 70px 28px 50px; }
    .about-hero { padding: 80px 28px 60px; }
    .services-hero { padding: 70px 28px 50px; }
    .services-cta { padding: 70px 28px; }
    .certs-section { padding: 70px 28px; }
    .ba-section { padding: 70px 28px; }
  }

  /* Mobile nav overlay */
  .mobile-nav {
    display: none; position: fixed; inset:0; background: var(--navy-deep);
    z-index: 999; padding: 90px 40px 40px;
    flex-direction: column; gap: 28px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem; font-weight: 500;
    text-decoration: none; cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 20px;
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: #ffffff; }

  /* Animations */
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(24px); }
    to { opacity:1; transform: translateY(0); }
  }
  .page.active .animate {
    animation: fadeUp 0.6s ease forwards;
  }
  .animate { opacity:0; }
