
    * {margin:0; padding:0; box-sizing:border-box;}
    body {
      font-family: 'Nunito', sans-serif;
        background: white;
      min-height:200vh;
    }
    html {
  scroll-behavior: smooth;
}

     body {
  font-family: 'Quicksand', sans-serif; /* For paragraphs and general text */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Agrandir', sans-serif; 
}
    :root { --glass-bg: rgba(255,255,255,0.06); --glass-border: rgba(255,255,255,0.08); --accent: #00bcd4; --accent2:#7c3aed; --fg:#ffffff; }

  .loader-2 { position:fixed; inset:0; z-index:99999; display:flex; align-items:center; justify-content:center; background: linear-gradient(180deg,#071029 0%, #081226 60%); font-family: Inter, system-ui, sans-serif; color:var(--fg); }

  .glass-wrap {
    width: min(88vw, 560px);
    max-width:560px;
    padding: clamp(18px, 3vw, 28px);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    box-shadow: 0 18px 80px rgba(2,8,20,0.6);
    display:flex; gap:20px; align-items:center; position:relative; overflow:visible;
    backdrop-filter: blur(6px);
  }

  .rings { width:120px; height:120px; position:relative; flex:0 0 120px; }
  .ring-svg { width:100%; height:100%; overflow:visible; position:absolute; left:0; top:0; }
  .ring-svg circle { fill:none; stroke: rgba(255,255,255,0.06); stroke-width:6; stroke-linecap:round; transform-origin:center; stroke-dasharray: 280; stroke-dashoffset: 280; }

  .ring-a circle { stroke-width:6; animation: ringA 1.8s cubic-bezier(.2,.9,.2,1) forwards; }
  .ring-b circle { stroke-width:5; animation: ringB 1.6s cubic-bezier(.2,.9,.2,1) .15s forwards; }
  .ring-c circle { stroke-width:4; animation: ringC 1.4s cubic-bezier(.2,.9,.2,1) .3s forwards; }

  @keyframes ringA { to { stroke-dashoffset: 60; stroke: var(--accent); } }
  @keyframes ringB { to { stroke-dashoffset: 80; stroke: var(--accent2); } }
  @keyframes ringC { to { stroke-dashoffset: 160; stroke: linear-gradient(90deg,#00bcd4,#7c3aed); stroke: #ffd; } }

  .glass-content { flex:1; display:flex; flex-direction:column; gap:8px; align-items:flex-start; justify-content:center; min-width:220px; }
  .brand { font-size: clamp(18px, 2.2vw, 22px); font-weight:800; letter-spacing: -0.01em; color:var(--fg); }
  .progress { display:flex; align-items:baseline; gap:6px; font-weight:800; font-size: clamp(34px, 6vw, 42px); color:var(--fg); }
  .progress small { font-size: 14px; font-weight:600; opacity:0.75; }

  .tag { color: rgba(255,255,255,0.85); font-size: clamp(13px, 2vw, 16px); }

  /* exit */
  body.loaded .loader-2 { opacity:0; transform: translateY(-8px); transition: opacity .5s ease, transform .5s ease; pointer-events:none; }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .ring-svg circle { animation:none !important; stroke-dashoffset:0 !important; }
  }

  /* responsive */
  @media (max-width:520px) {
    .glass-wrap { padding:14px; gap:12px; }
    .rings { display:none; }
    .glass-content { align-items:center; text-align:center; }
  }

  

/* ===== Scroll Progress Bar ===== */
    #progress-bar {
      position:fixed;
      top:0;
      left:0;
      height:4px;
      width:0;
      background:#203162;
      z-index:3000;
      transition:width 0.25s ease;
    }


      /* ===== Navbar ===== */
    .navbar {
      position:sticky;
      top:0;
      height: 140px;
      width:100%;
      background:white;
      backdrop-filter:blur(12px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 5%;
      z-index:1500; /* below overlay and mobile menu */
      /* box-shadow:0 4px 12px rgba(0,0,0,0.05); */
      transition:all 0.3s ease;
    }

    .navbar img { height:278px; transition:transform 0.3s ease, filter 0.3s ease; }
    .navbar img:hover { transform:scale(1.08); filter:drop-shadow(0 0 6px #203162); }

    /* ===== Nav Links ===== */
    .nav-links { display:flex; align-items:center; gap:32px; }
    .nav-links a {
      text-decoration:none; color:#203162; font-weight:500;
      position:relative; transition:color 0.3s ease;
    }
    .nav-links a::after {
      content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:#203162;
      transition:width 0.3s ease;
    }
    .nav-links a:hover::after { width:100%; }
    .nav-links a.active { font-weight:600; }

    /* ===== Dropdown ===== */
    .dropdown { position:relative; }
    .dropdown-content {
      position:absolute; top:150%; left:0; min-width:180px;
      background:#203162; border-radius:8px; box-shadow:0 4px 20px rgba(0,0,0,0.15);
      opacity:0; visibility:hidden; transform:translateY(10px);
      transition:opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.7s;
    }
    .dropdown:hover .dropdown-content {
      opacity:1; visibility:visible; transform:translateY(0);
      transition:opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
    }
    .dropdown-content a {
      display:block; padding:10px 16px; color:#fff; text-decoration:none; font-size:15px;
      transition:background 0.3s ease, padding-left 0.3s ease;
    }
    .dropdown-content a:hover { background:#2c478a; padding-left:20px; }

    /* ===== Book Now Button ===== */
    .book-btn {
      background:linear-gradient(135deg, #203162, #3a4f85);
      color:#fff; padding:10px 20px; border-radius:30px; text-decoration:none; font-weight:600;
      transition:all 0.3s ease; box-shadow:0 4px 12px rgba(32,49,98,0.3);
    }
    .book-btn:hover { box-shadow:0 6px 18px rgba(32,49,98,0.5); transform:translateY(-2px); }

    /* ===== Mobile Menu ===== */
    .hamburger {
      display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:3500; position:relative;
    }
    .hamburger span { width:26px; height:3px; background:#203162; border-radius:2px; transition:all 0.3s ease; }
    .hamburger.active span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
    .hamburger.active span:nth-child(2){ opacity:0; }
    .hamburger.active span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }

    /* Overlay (hidden by default) */
    .overlay {
      position:fixed; inset:0; background:rgba(0,0,0,0.48);
      opacity:0; visibility:hidden; transition:opacity 0.28s ease, visibility 0.28s;
      z-index:1750; /* above navbar (1500) but below mobile menu (2000) */
    }
    .overlay.show { opacity:1; visibility:visible; }

    .mobile-menu {
      position:fixed; top:0; right:-100%; width:320px; max-width:80vw; height:100vh;
        background:  #203162 ; box-shadow:-6px 0 30px rgba(0,0,0,0.12);
      display:flex; flex-direction:column; padding:80px 20px 20px; gap:20px;
      transition:right 0.38s cubic-bezier(.22,.9,.18,1);
      z-index:2000; /* above overlay & navbar */
    }
    .mobile-menu.open { right:0; }

    /* Close button inside drawer */
    .close-btn {
      position:absolute; top:18px; right:18px; font-size:28px; font-weight:700;
      color:#fff; cursor:pointer; transition:color .2s;
    }
    .close-btn:hover { color:#5a77be; }

    .mobile-menu a {
      color:#fff; font-size:18px; text-decoration:none; position:relative; transition:color .2s;
    }
    .mobile-menu a::after {
      content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:#203162; transition:width .25s;
    }
    .mobile-menu a:hover::after { width:100%; color: #5a77be; }

    /* Mobile dropdown */
    .mobile-dropdown { position:relative; }
    .mobile-dropdown-content {
      max-height:0; opacity:0; overflow:hidden; background:#203162; border-radius:6px;
      transition:max-height 0.45s ease, opacity 0.32s ease;
    }
    .mobile-dropdown.open .mobile-dropdown-content { max-height:300px; opacity:1; }
    .mobile-dropdown-content a {
      display:block; padding:10px 16px; color:#fff; text-decoration:none; font-size:15px;
      transition:background .2s, padding-left .25s;
    }
    .mobile-dropdown-content a:hover { background:#2c478a; padding-left:20px; }

    @media (max-width:900px) {
      .nav-links, .book-btn { display:none; }
      .hamburger { display:flex; }
    }

    /* Prevent page scroll when menu open (applied via JS class on body) */
    body.menu-open { overflow:hidden; touch-action:none; }





    :root { --maxw:1200px; --accent-blue: #0ea5e9; --bg-dark: #203162; --crumb-bg: #0b4fa0; }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .services-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: clamp(56px, 10vw, 120px) 0;
    display: flex;
    align-items: center;
  }

  .services-inner {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .services-title {
    font-size: clamp(2rem, 6.6vw, 3.4rem);
    line-height: 1.02;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    font-size: 6rem;
  }

  .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: clamp(.9rem, 2.2vw, 1.02rem);
  }

  .breadcrumb .crumb.current {
    background: var(--crumb-bg);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(11,79,160,0.18);
  }

  .breadcrumb .sep { opacity: 0.7; color: rgba(255,255,255,0.75); }

  .services-lead {
    margin: 0;
    max-width: 72ch;
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 2.2vw, 1.14rem);
    line-height: 1.7;
  }

  /* ---------- animation helpers ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-28px); }
  .animate-item[data-direction="right"] { transform: translateX(28px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-22px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(22px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* ---------- responsive ---------- */
  @media (max-width: 920px) {
    .services-inner { padding-inline: 6px; gap: 12px; }
    .services-title { font-size: clamp(4.6rem, 9vw, 2.4rem); }
    .breadcrumb { font-size: .95rem; padding: 7px 12px; }
    .services-lead { font-size: .98rem; padding-inline: 6px; text-align: center; }
  }

  @media (max-width: 520px) {
    .services-hero { padding: clamp(34px, 12vw, 54px) 0; }
    .services-title { font-size: clamp(2.4rem, 12vw, 1.8rem); }
    .breadcrumb { font-size: .92rem; }
  }

  /* prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }






  :root { --maxw:1200px; --vb-accent: #ffd166; --bg-card: rgba(255,255,255,0.02); --text-on-dark: #fff; --muted-on-dark: rgba(255,255,255,0.88); }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .vb-section {
    background: linear-gradient(180deg,#fbfdff,#fff); /* you can change background if you want */
    color: #203162;
    padding: clamp(36px, 6.5vw, 72px) 0;
  }

  .vb-inner { padding-inline: 4px; }

  .vb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 40px);
    align-items: center;
  }

  /* Left text column */
  .vb-text { max-width: 72ch; }
  .vb-text h2 {
    font-size: clamp(2.6rem, 3.6vw, 2.4rem);
    margin: 0 0 10px;
    color: #132742;
    font-weight: 800;
    line-height: 1.06;
  }
  .vb-lead {
    margin: 0 0 18px;
    color: #334466;
    font-size: clamp(1rem, 1.6vw, 1.06rem);
    line-height: 1.7;
  }

  /* feature chips grid */
  .vb-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 6px;
  }

  .vb-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg-card);
    color: #203162;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(8,18,48,0.06);
    border: 1px solid rgba(32,49,98,0.03);
    font-size: clamp(.92rem, 1.6vw, .98rem);
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .vb-chip:hover { transform: translateY(-4px); box-shadow: 0 18px 46px rgba(8,18,48,0.08); }

  /* make chips single-column on small screens */
  @media (max-width:920px) {
    .vb-features { grid-template-columns: repeat(1, minmax(0,1fr)); }
  }

  /* Right image column */
  .vb-media { display:flex; align-items:center; justify-content:center; min-height: 200px;  }
  .vb-media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(8,18,48,0.12);
    object-fit: cover;
    display:block;
  }

  /* ---------- animate-item base (lazy reveal) ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.68s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-28px); }
  .animate-item[data-direction="right"] { transform: translateX(28px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-24px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(24px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* Responsive stack */
  @media (max-width:920px) {
    .vb-grid { grid-template-columns: 1fr; }
    .vb-media { order: -1; } /* image first on small screens; remove if you prefer text first */
    .vb-media img { max-width: 92%; }
  }

  @media (max-width:520px) {
    .vb-section { padding: clamp(28px, 8vw, 40px) 0; margin: 10px; }
    .vb-text h2 { font-size: clamp(1.3rem, 6.8vw, 1.8rem); }
    .vb-chip { font-size: .95rem; padding: 10px; }
  }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .vb-chip:hover { transform: none; box-shadow: 0 8px 18px rgba(8,18,48,0.06); }
  }







    :root { --maxw:1200px; --accent:#0ea5e9; --card-bg: #fff; --muted:#334466; }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .at-section {
    background: linear-gradient(180deg,#fbfdff,#fff);
    color: #203162;
    padding: clamp(36px, 6.5vw, 76px) 0;
  }
  .at-inner { padding-inline:4px; }

  .at-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* image left, text right */
    gap: clamp(18px, 4vw, 40px);
    align-items: start;
    align-content: start;
  }

  /* Media (left) */
  .at-media { display:flex; align-items:center; justify-content:center; min-height:220px; }
  .at-media img {
    width:100%; max-width:520px; height:auto; border-radius:12px;
    box-shadow: 0 20px 60px rgba(8,18,48,0.12); object-fit:cover; display:block ;margin-top: 100px;
  }

  /* Text column */
  .at-text { max-width: 72ch; }
  .at-text h2 {
    font-size: clamp(2.6rem, 3.6vw, 2.4rem); margin:0 0 10px; font-weight:800; color:#132742;
    line-height:1.06;
  }
  .at-sub {
    margin:0 0 12px; color: #0b3a6b; font-weight:700; font-size: clamp(1rem, 1.6vw, 1.05rem);
  }
  .at-lead {
    margin:0 0 18px; color: var(--muted); font-size: clamp(.98rem, 1.6vw, 1.06rem); line-height:1.7;
  }

  /* Features chips grid */
  .at-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    margin-top: 6px;
  }

  .at-chip {
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 12px; border-radius:10px; background: linear-gradient(180deg, rgba(8,18,48,0.03), rgba(8,18,48,0.01));
    color:#203162; font-weight:700; border:1px solid rgba(32,49,98,0.04);
    box-shadow: 0 10px 28px rgba(8,18,48,0.05); font-size: clamp(.92rem, 1.6vw, .98rem);
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .at-chip:hover { transform: translateY(-4px); box-shadow: 0 18px 46px rgba(8,18,48,0.08); }

  /* responsive: single column chips on small screens */
  @media (max-width:920px) {
    .at-grid { grid-template-columns: 1fr; }
    .at-media { order: -1; } /* image first on mobile; change if you prefer text first */
    .at-features { grid-template-columns: 1fr; }
    .at-media img { max-width:92%; margin-bottom: 40px; margin-top: -40px; }
  }

  @media (max-width:520px) {
    .at-section { padding: clamp(28px, 8vw, 40px) 0; margin: 30px; }
    .at-text h2 { font-size: clamp(1.3rem, 7vw, 1.8rem); }
    .at-chip { font-size: .95rem; padding:10px; }
  }

  /* ---------- animate-item base (lazy reveal) ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.68s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.44s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-28px); }
  .animate-item[data-direction="right"] { transform: translateX(28px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-22px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(22px);   }

  .animate-item.in-view { opacity:1; transform: translateX(0) translateY(0); }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .at-chip:hover { transform: none; box-shadow: 0 8px 18px rgba(8,18,48,0.06); }
  }







  :root{
    --maxw:1200px;
    --gap: clamp(18px, 4vw, 40px);
    --chip-bg: rgba(8,18,48,0.03);
    --chip-border: rgba(32,49,98,0.04);
    --text: #203162;
    --muted: #334466;
  }

  /* container helper */
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  /* section */
  .bc2-section {
    background: linear-gradient(180deg,#fbfdff,#fff);
    color: var(--text);
    padding: clamp(36px, 6.5vw, 80px) 0;
    overflow: hidden;
  }
  .bc2-inner { padding-inline: 4px; }

  /* grid layout: text left, image right */
  .bc2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: start;
  }

  /* text column */
  .bc2-text { max-width: 78ch; }
  .bc2-text h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 10px;
    line-height: 1.06;
    font-weight: 800;
    color: #132742;
  }
  .bc2-sub {
    margin: 0 0 12px;
    font-weight: 700;
    color: #0b3a6b;
    font-size: clamp(1rem, 1.6vw, 1.06rem);
  }
  .bc2-lead {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: clamp(.98rem, 1.6vw, 1.04rem);
    line-height: 1.72;
  }

  /* chips grid */
  .bc2-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    margin-top: 8px;
  }

  .bc2-chip {
    display: inline-flex;
    align-items:flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--chip-bg);
    color: var(--text);
    font-weight: 700;
    border: 1px solid var(--chip-border);
    box-shadow: 0 10px 28px rgba(8,18,48,0.05);
    font-size: clamp(.92rem, 1.4vw, .98rem);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .bc2-chip:hover { transform: translateY(-4px); box-shadow: 0 18px 46px rgba(8,18,48,0.08); }

  /* media (right) */
  .bc2-media { display:flex; align-items:center; justify-content:center; min-height:220px; }
  .bc2-media img {
    width:100%;
    max-width:560px;
    height:auto;
    margin-top: 140px;
    border-radius:12px;
    object-fit:cover;
    box-shadow: 0 20px 60px rgba(8,18,48,0.12);
    display:block;
  }

  /* ---------- animate-item base (lazy reveal) ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-28px); }
  .animate-item[data-direction="right"] { transform: translateX(28px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-24px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(24px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* responsive: stack columns on small screens */
  @media (max-width: 920px) {
    .bc2-grid { grid-template-columns: 1fr; gap: 22px; }
    .bc2-media { order: -1; } /* image first on mobile */
    .bc2-features { grid-template-columns: 1fr; }
    .bc2-media img { max-width: 92%; }
  }

  @media (max-width: 520px) {
    .bc2-section { padding: clamp(28px, 8vw, 44px) 0; }
    .bc2-text h2 { font-size: clamp(1.3rem, 7.5vw, 1.9rem); }
    .bc2-chip { font-size: .95rem; padding: 10px; }
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .bc2-chip:hover { transform: none; box-shadow: 0 8px 18px rgba(8,18,48,0.06); }
  }






  

   :root {
    --maxw: 1200px;
    --gap: clamp(18px, 4vw, 40px);
    --text: #203162;
    --muted: #334466;
    --card-bg: #fff;
  }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; border-radius: 20px;margin: 30px; }

  .acsp-section {
    background: #203162;
    border-radius: 20px;
    margin: 40px;
    color: white;
    padding: clamp(36px, 6.5vw, 80px) 0;
    overflow: hidden;
  }
  .acsp-inner { padding-inline: 4px; }

  .acsp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* image left, text right */
    gap: var(--gap);
    align-items: center;
  }

  /* MEDIA (left) */
  .acsp-media { display:flex; align-items:center; justify-content:center; min-height: 220px; }
  .acsp-media img {
    width:100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(8,18,48,0.12);
    object-fit: cover;
    display:block;
  }

  /* TEXT (right) */
  .acsp-text { max-width: 72ch; }
  .acsp-text h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 12px;
    font-weight: 800;
    color: #fff;
    line-height: 1.06;
  }
  .acsp-text p {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(.98rem, 1.6vw, 1.06rem);
    line-height: 1.72;
  }
  .acsp-why {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: clamp(1.02rem, 1.8vw, 1.1rem);
    color: #fff;
    font-weight: 800;
  }

  /* ---------- animation helpers (lazy reveal) ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-32px); }
  .animate-item[data-direction="right"] { transform: translateX(32px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-26px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(26px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* Responsive: stack on small screens */
  @media (max-width: 920px) {
    .acsp-grid { grid-template-columns: 1fr; gap: 20px; }
    .acsp-media { order: -1; } /* show image first on small screens */
    .acsp-media img { max-width: 92%; }
    .acsp-text { padding-inline: 6px; }
  }

  @media (max-width: 520px) {
    .acsp-section { padding: clamp(28px, 8vw, 44px) 0; }
    .acsp-text h2 { font-size: clamp(1.3rem, 7.5vw, 1.9rem); }
  }

  /* Respect reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }





  :root {
    --maxw: 1200px;
    --gap: clamp(18px, 4vw, 40px);
    --text: #203162;
    --muted: #334466;
    --accent: #0ea5e9;
  }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .brain-section {
    background: linear-gradient(180deg,#fbfdff,#fff);
    color: var(--text);
    padding: clamp(36px, 6.5vw, 84px) 0;
    overflow: hidden;
  }
  .brain-inner { padding-inline: 4px; }

  .brain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* text left, image right */
    gap: var(--gap);
    align-items: center;
  }

  /* text column */
  .brain-text { max-width: 72ch; }
  .brain-text h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 12px;
    font-weight: 800;
    color: #132742;
    line-height: 1.06;
  }

  .brain-text h3 {
    margin: 18px 0 8px;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: #0b3a6b;
    font-weight: 800;
  }

  .brain-text p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: clamp(.98rem, 1.6vw, 1.06rem);
    line-height: 1.72;
  }

  /* image column */
  .brain-media { display:flex; align-items:center; justify-content:center; min-height:240px; }
  .brain-media img {
    width:100%;
    max-width: 560px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(8,18,48,0.12);
    object-fit: cover;
    display:block;
    transform-origin: center;
  }

  /* animate-item base (lazy reveal) */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0.998);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-28px) scale(0.998); }
  .animate-item[data-direction="right"] { transform: translateX(28px) scale(0.998);  }
  .animate-item[data-direction="top"]   { transform: translateY(-22px) scale(0.998);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(22px) scale(0.998);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }

  /* small image float after reveal for subtle polish */
  .brain-media.animate-item.in-view img { animation: floatSubtle 6s ease-in-out infinite; }
  @keyframes floatSubtle {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }

  /* Responsive: stack on small screens */
  @media (max-width: 920px) {
    .brain-grid { grid-template-columns: 1fr; gap: 22px; }
    .brain-media { order: -1; } /* image first on narrow screens; remove if you prefer text first */
    .brain-media img { max-width: 92%; }
  }

  @media (max-width: 520px) {
    .brain-section { padding: clamp(28px, 8vw, 44px) 0; }
    .brain-text h2 { font-size: clamp(1.3rem, 7.5vw, 1.9rem); }
  }

  /* reduce motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .brain-media.animate-item.in-view img { animation: none !important; }
  }






  :root {
    --maxw: 1200px;
    --gap: clamp(18px, 4vw, 36px);
    --text: #203162;
    --muted: #37476a;
    --accent: #0ea5e9;
    --card-bg: #fff;
  }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .benefits-section {
    background: linear-gradient(180deg,#fbfdff,#fff);
    color: var(--text);
    padding: clamp(36px, 6.5vw, 84px) 0;
    overflow: hidden;
  }

  .benefits-inner { padding-inline: 4px; }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* image left, text right */
    gap: var(--gap);
    align-items: start;
  }

  /* IMAGE column */
  .benefits-media { display:flex; align-items:center; justify-content:center; min-height:220px; }
  .benefits-media img {
    width:100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    margin-top: 100px;
    object-fit: cover;
    /* box-shadow: 0 20px 60px rgba(8,18,48,0.08); */
    display:block;
    transform-origin: center;
  }

  /* TEXT column */
  .benefits-text { max-width: 74ch; }
  .benefits-text h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 8px;
    font-weight: 800;
    color: #132742;
    line-height: 1.06;
  }

  .lead-small {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.06rem);
    line-height: 1.5;
  }

  .benefits-list { display:flex; flex-direction:column; gap:12px; margin-top:8px; }

  .benefit {
    background: linear-gradient(180deg, rgba(8,18,48,0.02), rgba(255,255,255,0.01));
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(32,49,98,0.04);
    box-shadow: 0 8px 22px rgba(8,18,48,0.04);
    display: grid;
    grid-template-columns: 1fr;
    gap:6px;
    color: var(--text);
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .benefit:hover { transform: translateY(-4px); box-shadow: 0 18px 46px rgba(8,18,48,0.08); }

  .benefit strong { display:block; font-weight: 900; color: #0b3a6b; }
  .benefit-desc { font-weight: 600; color: var(--muted); font-size: .985rem; }

  /* ---------- animate-item base (lazy reveal) ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.46s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-28px); }
  .animate-item[data-direction="right"] { transform: translateX(28px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-22px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(22px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* small floating motion after reveal (image) */
  .benefits-media.animate-item.in-view img { animation: floatTiny 6s ease-in-out infinite; }
  @keyframes floatTiny { 0%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} 100%{ transform: translateY(0);} }

  /* responsive: swap to single column on small screens */
  @media (max-width: 920px) {
    .benefits-grid { grid-template-columns: 1fr; gap:18px; }
    .benefits-media { order: -1; } /* image first on mobile; remove if you prefer text first */
    .benefits-media img { max-width: 92%; }
  }

  @media (max-width: 520px) {
    .benefits-section { padding: clamp(28px, 8vw, 44px) 0; }
    .benefits-text h2 { font-size: clamp(1.3rem, 7.5vw, 1.9rem); }
    .benefit-desc { font-size: .95rem; }
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .benefits-media.animate-item.in-view img { animation: none !important; }
    .benefit:hover { transform: none; box-shadow: 0 8px 18px rgba(8,18,48,0.04); }
  }







    :root{
    --brand:#203162;
    --accent:#007bff;
    --muted:#3b4a72;
    --maxw:1200px;
  }

  .container{max-width:var(--maxw);margin:0 auto;padding:0 20px;box-sizing:border-box;}

  .cta-quote{
    background:#e4e4e4; /* soft backdrop to separate the section */
    padding: clamp(34px,6vw,84px) 0;
    overflow:hidden;
  }

  .cta-quote-inner{
    display:grid;
    grid-template-columns: 1.2fr auto;
    gap: clamp(14px,3.5vw,32px);
    align-items:center;
  }

  .cta-quote-text{
    color:var(--brand);
    font-weight:800;
    line-height:1.2;
    letter-spacing:.2px;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    margin:0;
  }

  /* Button */
  .cta-quote-btn{
    justify-self:end;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    border-radius:999px;
    background:#fff;
    color:#203162;
    font-weight:800;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 26px rgba(8,18,48,.10);
    transition: transform .2s ease, box-shadow .2s ease, color .35s ease;
    isolation:isolate; /* keep ::before under content */
  }

  .cta-quote-btn::before{
    content:'';
    position:absolute; inset:0;
    background: linear-gradient(120deg, #203162, #00aaff);
    transform: translateX(-100%);
    transition: transform .38s ease;
    z-index:0;
  }

  .cta-quote-btn .cta-label,
  .cta-quote-btn .cta-icon{ position:relative; z-index:1; }

  .cta-quote-btn .cta-icon{
    transition: transform .38s ease;
  }

  .cta-quote-btn:hover::before{ transform: translateX(0); }
  .cta-quote-btn:hover{ color:#fff; box-shadow:0 18px 40px rgba(0,123,255,.25); transform: translateY(-2px); }
  .cta-quote-btn:hover .cta-icon{ transform: translateX(6px); }

  /* Focus styles for accessibility */
  .cta-quote-btn:focus-visible{
    outline: 3px solid rgba(0,123,255,.5);
    outline-offset: 3px;
  }

  /* ---------- Lazy reveal animations ---------- */
  .animate-item{
    opacity:0;
    transform: translateX(0) translateY(0);
    transition: transform .72s cubic-bezier(.16,.9,.32,1) var(--delay,0ms),
                opacity .48s ease var(--delay,0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]{  transform: translateX(-32px); }
  .animate-item[data-direction="right"]{ transform: translateX(32px);  }
  .animate-item[data-direction="top"]{   transform: translateY(-24px); }
  .animate-item[data-direction="bottom"]{transform: translateY(24px);  }
  .animate-item.in-view{
    opacity:1;
    transform: translateX(0) translateY(0);
  }

  /* Responsive */
  @media (max-width: 960px){
    .cta-quote-inner{ grid-template-columns: 1fr; }
    .cta-quote-btn{ justify-self:start; }
  }
  @media (max-width: 520px){
    .cta-quote-text{ font-size: clamp(1.05rem, 4.4vw, 1.2rem); }
    .cta-quote-btn{ width: fit-content; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    .animate-item{ transition:none !important; transform:none !important; opacity:1 !important; }
    .cta-quote-btn{ transition: none !important; }
    .cta-quote-btn .cta-icon{ transition: none !important; }
  }





   :root{
    --brand:#203162;
    --accent:#007bff;
    --ink:#1e2b54;
    --muted:#5e6b8a;
    --maxw:1200px;
  }
  .container{max-width:var(--maxw);margin:0 auto;padding:0 20px;box-sizing:border-box;}

  .journey-section{
    background:var(--brand);
    padding: clamp(44px,6vw,96px) 0;
    border-radius: 20px;
    margin: 30px;
    overflow:hidden; /* avoid scrollbar during reveal */
  }

  .journey-grid{
    display:grid;
    grid-template-columns: 1.05fr 0.95fr; /* text a bit wider */
    gap: clamp(18px,3.6vw,40px);
    align-items:center;
  }

  .journey-text h2{
    color:white;
    font-weight:800;
    line-height:1.08;
    letter-spacing:-.02em;
    font-size: clamp(1.6rem,3.4vw,2.4rem);
    margin:0 0 10px 0;
  }

  .journey-sub{
    margin: 10px 0 6px 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height:1.55;
    color:white;
  }
  .journey-sub strong{ color:#02dbf7; font-weight:800; }

  .journey-media{
    display:flex;justify-content:center;align-items:center;
  }
  .journey-media img{
    width:100%;max-width:520px;height:auto;display:block;
    border-radius:14px;
    box-shadow:0 16px 46px rgba(8,18,48,0.16);
    object-fit:cover;
  }

  /* ---------- Reveal animation helpers ---------- */
  .animate-item{
    opacity:0;
    transform: translateX(0) translateY(0);
    transition: transform .72s cubic-bezier(.16,.9,.32,1) var(--delay,0ms),
                opacity .48s ease var(--delay,0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-34px); }
  .animate-item[data-direction="right"] { transform: translateX(34px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-26px); }
  .animate-item[data-direction="bottom"]{ transform: translateY(26px);  }
  .animate-item.in-view{
    opacity:1;
    transform: translateX(0) translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px){
    .journey-grid{ grid-template-columns: 1fr; gap: 22px; }
    /* keep reading flow: image after text on small screens */
    .journey-media{ order: 2; }
  }

  @media (max-width: 520px){
    .journey-media img{ border-radius:12px; box-shadow:0 12px 32px rgba(8,18,48,.14); }
  }

  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce){
    .animate-item{ transition:none !important; transform:none !important; opacity:1 !important; }
  }












  /* base footer */
  .finanza-footer {
    background: #203162;
    color: white;
    padding: clamp(28px,5vh,48px) 18px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  .footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: start;
  }

  .footer-card {
    background: transparent;
    padding: 6px 4px;
    min-height: 80px;
    text-align: left;
    box-sizing: border-box;
  }

  .footer-heading {
    margin: 0 0 10px 0;
    font-size: clamp(1.05rem, 2.6vw, 1.28rem);
    font-weight: 800;
    color: white;
  }

  .footer-text {
    margin: 0;
    color: white;
    font-size: clamp(.95rem,1.9vw,1rem);
    line-height: 1.6;
  }

  .icaew-row { display:flex; align-items:center; gap:12px; }
  .icaew-logo {
height: 240px;
 width: 240px;
 margin-top: -80px;
    display:block;
    border-radius:8px;
    /* background: rgba(255,255,255,0.04); */
    padding:6px;
    box-shadow: none;
    object-fit: contain;
  }

  .footer-subheading{
    margin:0 0 8px 0;
    font-weight:800;
    font-size: clamp(1rem, 2.2vw, 1.02rem);
    color:white;
  }

  .footer-list{
    margin:0;
    padding-left:18px;
    color:white;
    font-size: clamp(.98rem,1.9vw,1rem);
    line-height:1.7;
  }
  .footer-list li{ margin-bottom:8px; }

  .footer-contact { margin:6px 0; color:var(--muted-contrast); font-size: .98rem; text-decoration: none; }
  .footer-contact a { color: var(--footer-contrast); text-decoration: underline; text-underline-offset: 3px; }

  .cta-book {
    display:inline-block;
    background: #fff;
    color: #203162;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight:700;
    text-decoration:none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform .18s cubic-bezier(.2,.9,.2,1), box-shadow .18s ease;
  }
  .cta-book:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }

  .footer-bottom {
    max-width: var(--max-w);
    margin: 18px auto 0;
    color: var(--muted-contrast-2);
    font-size: .92rem;
    text-align:center;
    padding-top:12px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  /* responsive layout */
  @media (max-width: 1100px) {
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 880px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-card { text-align: center; }
    .footer-heading { text-align: center; }
    .footer-text { text-align: center; }
    .icaew-row { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
    .footer-list { padding-left: 0; list-style-position: inside; display: inline-block; text-align: left; }
  }
  @media (max-width: 520px) {
    .icaew-logo { width:260px; }
    .footer-card { padding: 10px 6px; }
    .footer-list { font-size: .95rem; }
  }

  /* ------------------ Reveal animation helpers ------------------ */
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s ease, transform .8s cubic-bezier(.2,.9,.2,1);
    will-change: transform, opacity;
    transition-delay: var(--delay, 0ms);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

  /* directional starting positions */
  .reveal[data-direction="left"]  { transform: translateX(-28px); }
  .reveal[data-direction="right"] { transform: translateX(28px); }
  .reveal[data-direction="top"]   { transform: translateY(-18px); }
  .reveal[data-direction="bottom"]{ transform: translateY(18px); }

  /* when visible reset transform - in-view overrides */
  .reveal.in-view[data-direction="left"],
  .reveal.in-view[data-direction="right"],
  .reveal.in-view[data-direction="top"],
  .reveal.in-view[data-direction="bottom"] {
    transform: translateX(0) translateY(0);
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
    .cta-book { transition: none !important; }
  }