
    * {margin:0; padding:0; box-sizing:border-box;}
    body {
      font-family: 'Nunito', sans-serif;
        background: white;
      min-height:200vh;
    }
    html {
  scroll-behavior: smooth;
}

    :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{
    --brand:#203162;
    --accent:#007bff;
    --ink:#213057;
    --muted:#5f6b8a;
    --maxw:1200px;
  }
  .container{max-width:var(--maxw);margin:0 auto;padding:0 20px;box-sizing:border-box;}

  .pricing-info{
    background:#f7faff;
    padding: clamp(48px, 6vw, 100px) 0;
    overflow:hidden; /* avoid scrollbars during reveal */
  }

  .pricing-grid{
    display:grid;
    grid-template-columns: 1.05fr 0.95fr; /* text slightly wider */
    gap: clamp(20px, 3.8vw, 44px);
    align-items:center;
  }

  .pricing-text h2{
    margin:0 0 8px 0;
    color:var(--brand);
    font-weight:800;
    letter-spacing:-.02em;
    line-height:1.05;
    font-size: clamp(3.7rem, 3.6vw, 2.6rem);
  }

  .pricing-kicker{
    margin:0 0 16px 0;
    color:var(--accent);
    font-weight:800;
    letter-spacing:.01em;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  }

  .pricing-text p{
    margin: 10px 0 10px 0;
    color: var(--ink);
    line-height:1.7;
    font-size: clamp(0.98rem, 2vw, 1.06rem);
  }

  .pricing-text p strong{ font-weight:800; color:var(--brand); }

  .pricing-media{
    display:flex;align-items:center;justify-content:center;
  }
  .pricing-media img{
    width:100%;max-width:520px;height:auto;display:block;
    border-radius:14px;object-fit:cover;
    box-shadow:0 18px 48px rgba(8,18,48,0.16);
  }

  /* ---------- Reveal 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){
    .pricing-grid{ grid-template-columns: 1fr; gap: 22px; }
    /* keep natural reading flow; show image after text on small screens */
    .pricing-media{ order: 2; }
  }

  @media (max-width: 520px){
    .pricing-media img{ border-radius:12px; box-shadow:0 12px 32px rgba(8,18,48,.14); }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    .animate-item{ transition:none !important; transform:none !important; opacity:1 !important; }
  }







   :root{
    --maxw:1200px;
    --gap: clamp(18px, 4vw, 40px);
    --ink: #203162;
    --muted: #495b7a;
    --card-bg: #fff;
  }

  .container{ max-width: var(--maxw); margin:0 auto; padding:0 20px; box-sizing:border-box; }

  .salient-section{
    background: linear-gradient(180deg,#fbfdff,#fff);
    color: var(--ink);
    padding: clamp(40px, 6.5vw, 84px) 0;
    overflow: hidden;
  }

  .salient-grid{
    display: grid;
    grid-template-columns: 1fr 1fr; /* image left, content right */
    gap: var(--gap);
    align-items: start;
  }

  /* media (left) */
  .salient-media{
    display:flex; align-items:center; justify-content:center;
  }
  .salient-media img{
    width:100%;
    max-width:560px;
    margin-top: 70px;
    height:auto;
    border-radius:12px;
    object-fit:cover;
    box-shadow: 0 20px 60px rgba(8,18,48,0.12);
    display:block;
    transform-origin:center;
  }

  /* content (right) */
  .salient-content{ max-width: 70ch; }
  .salient-content h2{
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 12px;
    font-weight: 800;
    color: var(--ink);
    line-height:1.06;
  }

  .feature{
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,252,0.98));
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(32,49,98,0.04);
    box-shadow: 0 10px 30px rgba(8,18,48,0.04);
  }
  .feature h3{ margin: 0 0 6px; font-size: 1.02rem; color: #132742; }
  .feature p{ margin:0; color: var(--muted); line-height:1.7; font-size: clamp(.98rem, 1.6vw, 1.02rem); }

  /* ---------- 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(-24px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(24px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* subtle image float once visible */
  .salient-media.animate-item.in-view img { animation: floatTiny 10s ease-in-out infinite; }
  @keyframes floatTiny { 0%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} 100%{ transform: translateY(0);} }

  /* ---------- Responsive ---------- */
  @media (max-width: 920px){
    .salient-grid { grid-template-columns: 1fr; gap: 22px; }
    .salient-media { order: -1; } /* image first on small screens */
    .salient-media img { max-width: 92%; }
  }

  @media (max-width: 520px){
    .salient-section{ padding: clamp(28px, 8vw, 44px) 0; }
    .feature{ padding: 12px; }
    .salient-content h2{ font-size: clamp(1.25rem, 7.8vw, 1.9rem); }
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce){
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .salient-media.animate-item.in-view img { animation: none !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; }
  }








   :root{
    --pkg-bg: #203162;
    --card-bg: #ffffff;
    --accent: #00aaff;
    --muted-white: rgba(255,255,255,0.95);
    --muted-white-2: rgba(255,255,255,0.85);
    --maxw: 1200px;
  }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .packages-section {
    background: var(--pkg-bg);
    color: var(--muted-white);
    padding: clamp(48px, 8vw, 96px) 0;
  }

  .packages-inner { text-align: center; max-width: 1100px; margin: 0 auto; }

  .packages-title {
    font-size: clamp(1.8rem, 4.4vw, 2.8rem);
    margin: 0 0 8px;
    font-weight: 900;
    color: #ffffff;
  }

  .packages-sub {
    margin: 0 0 28px;
    color: var(--muted-white-2);
    font-weight: 700;
    letter-spacing: .02em;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
  }

  /* grid of cards */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 3.5vw, 28px);
    margin-top: 18px;
    align-items: start;
    align-content: start;
  }

  .pkg-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    color: #072043;
    box-shadow: 0 22px 60px rgba(4,10,30,0.45);
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease;
    display:flex;
    flex-direction:column;
    min-height: 420px;
    position: relative;
  }

  .pkg-card:focus { outline: 3px solid rgba(255,255,255,0.08); outline-offset: 6px; }

  .pkg-card:hover { transform: translateY(-8px); box-shadow: 0 30px 100px rgba(4,10,30,0.55); }

  /* featured card styling */
  .pkg-card.featured {
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
    transform: translateY(-6px);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .pkg-head { display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom: 12px; }
  .pkg-price { font-weight: 900; color: #fff; background: rgba(255,255,255,0.06); padding:8px 12px; border-radius: 999px; font-size: 1rem; }
  .pkg-price span { font-size:1.6rem; color: var(--accent); margin-left:6px; font-weight:900; }
  .pkg-name { margin: 0; font-size: 1.25rem; color: #fff; font-weight:800; }

  .pkg-features { margin: 10px 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; color: rgba(255,255,255,0.95); }
  .pkg-feature { font-weight:700; font-size: .98rem; background: rgba(255,255,255,0.02); padding: 10px 12px; border-radius: 10px; }

  .pkg-cta { margin-top: auto; display:flex; gap:10px; align-items:center; }
  .pkg-btn {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 16px; border-radius: 999px; text-decoration:none; font-weight:800;
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.12);
    transition: background .28s ease, color .28s ease, transform .18s ease;
  }
  .pkg-btn:focus { outline: 3px solid rgba(255,255,255,0.08); outline-offset: 4px; }
  .pkg-btn:hover { background: rgba(255,255,255,0.12); color: #072043; transform: translateY(-3px); }

  .pkg-btn-primary {
    background: linear-gradient(90deg, var(--accent), #0077dd);
    color: #072043;
    border: none;
    box-shadow: 0 10px 36px rgba(0,170,255,0.12);
  }

  /* animate-item base */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.42s 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: 1100px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 720px) {
    .packages-grid { grid-template-columns: 1fr; }
    .pkg-card { min-height: auto; padding: 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .pkg-card:hover { transform: none; box-shadow: 0 18px 40px rgba(4,10,30,0.45); }
  }







   :root{
    --maxw:1200px;
    --gap: clamp(18px, 4vw, 40px);
    --text: #203162;
    --muted: #445874;
    --card-bg: #fff;
  }

  .container{ max-width: var(--maxw); margin:0 auto; padding:0 20px; box-sizing:border-box; }

  .boosters-section{
    background: linear-gradient(180deg,#fbfdff,#fff);
    color: var(--text);
    padding: clamp(36px, 6.5vw, 84px) 0;
    overflow: hidden;
  }
  .boosters-inner { padding-inline:4px; }

  .boosters-grid{
    display: grid;
    grid-template-columns: 1fr 1fr; /* image left, content right */
    gap: var(--gap);
    align-items: start;
    align-content: start;
  }

  /* media (left) */
  .boosters-media { display:flex; align-items:center; justify-content:center; min-height:220px; }
  .boosters-media img{
    width:100%; max-width:520px; height:400px; border-radius:12px; object-fit:cover; margin-top: 40px;
    box-shadow: 0 20px 60px rgba(8,18,48,0.12); display:block;
  }

  /* content (right) */
  .boosters-content { max-width: 72ch; }
  .boosters-content h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 8px;
    font-weight: 800;
    color: #132742;
    line-height: 1.06;
  }

  .boosters-kicker {
    margin: 0 0 6px;
    font-weight: 800;
    color: #0b3a6b;
    font-size: clamp(1rem, 1.8vw, 1.06rem);
  }

  /* intro paragraph sits beneath the small bold kicker */
  .boosters-intro {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.6vw, 1.06rem);
    line-height: 1.66;
  }

  .boosters-list { display:flex; flex-direction:column; gap:12px; margin-top:8px; }

  .booster {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,252,0.98));
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(32,49,98,0.04);
    box-shadow: 0 10px 30px rgba(8,18,48,0.04);
  }
  .booster h3 { margin: 0 0 6px; font-size: 1.02rem; color: #132742; }
  .booster p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.98rem; }

  .boosters-note {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
  }

  /* ---------- 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(-24px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(24px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* subtle image float once visible */
  .boosters-media.animate-item.in-view img { animation: floatTiny 8s ease-in-out infinite; }
  @keyframes floatTiny { 0%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} 100%{ transform: translateY(0);} }

  /* responsive: stack columns on small screens */
  @media (max-width: 920px) {
    .boosters-grid { grid-template-columns: 1fr; gap: 20px; }
    .boosters-media { order: -1; } /* show image first on small screens */
    .boosters-media img { max-width: 92%; }
  }

  @media (max-width: 520px) {
    .boosters-content h2 { font-size: clamp(1.3rem, 7.5vw, 1.9rem); }
    .booster { padding: 10px; }
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .boosters-media.animate-item.in-view img { animation: none !important; }
  }











   :root {
    --maxw:1200px;
    --gap: clamp(18px, 4vw, 40px);
    --brand: #203162;
    --muted: #4b5b7a;
    --bg: #ffffff;
  }

  .container { max-width: var(--maxw); margin:0 auto; padding:0 20px; box-sizing:border-box; }

  .how-section {
    background: linear-gradient(180deg,#fbfdff,#fff);
    color: var(--brand);
    padding: clamp(36px, 6.5vw, 84px) 0;
    overflow: hidden;
  }

  .how-inner { padding-inline: 4px; }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* text left, image right */
    gap: var(--gap);
    align-items: start;
  }

  /* Text column */
  .how-text { max-width: 72ch; }
  .how-text h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.06;
  }
  .how-kicker { margin: 0 0 14px; font-weight: 800; color: #0b3a6b; }

  .how-list { display:flex; flex-direction:column; gap: 12px; margin-top: 6px; }

  .how-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,252,0.98));
    border: 1px solid rgba(32,49,98,0.04);
    box-shadow: 0 8px 24px rgba(8,18,48,0.04);
  }

  .how-step-left { display:flex; align-items:center; justify-content:center; color: #0ea5e9; }
  .how-step-left .check { display:block; stroke: currentColor; }

  .how-step-body strong { display:block; font-weight:800; color: #132742; margin-bottom: 6px; }
  .how-step-desc { color: var(--muted); font-size: .98rem; line-height: 1.6; }

  /* Image column */
  .how-media { display:flex; align-items:center; justify-content:center; min-height:220px; }
  .how-media img {
    width:100%;
    max-width:720px;
    height:700px;
    margin-top: 40px;
    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 on small screens */
  @media (max-width: 920px) {
    .how-grid { grid-template-columns: 1fr; gap: 20px; }
    .how-media { order: -1; } /* image first on mobile; remove if you prefer text first */
    .how-media img { max-width: 92%; height: auto; }
  }

  @media (max-width: 520px) {
    .how-section { padding: clamp(28px, 8vw, 44px) 0; }
    .how-text h2 { font-size: clamp(1.25rem, 7.5vw, 1.9rem); }
  }

  /* Reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }




    :root{
    --maxw:1200px;
    --brand:#203162;
    --muted:#55667f;
    --card-bg: #ffffff;
    --accent: #0ea5e9;
  }

  .container{ max-width:var(--maxw); margin:0 auto; padding:0 20px; box-sizing:border-box; }

  .faq2-section{ background: #203162; border-radius: 20px; margin: 30px; padding: clamp(36px,6.5vw,84px) 0; color:var(--brand); }

  .faq2-inner{ max-width:1100px; margin:0 auto; }

  .faq2-head{ text-align:center; margin-bottom:22px; }
  .faq2-head h2{ font-size: clamp(1.6rem,3.4vw,2.4rem); margin:0; font-weight:900; color:white; }
  .faq2-head .muted{ margin:8px 0 0; color:white; font-weight:600; }
  .faq2-head .link{ color:white; font-weight:700; text-decoration:none; }

  .faq2-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,4vw,36px); align-items:start; }

  /* Image */
  .faq2-media{ display:flex; align-items:center; justify-content:center; }
  .faq2-media img{ width:100%; max-width:520px; border-radius:14px; box-shadow: 0 18px 60px rgba(17,30,60,0.08); display:block; }

  /* cards column */
  .faq2-cards{ display:grid; grid-auto-rows: min-content; gap:14px; }

  .faq2-card{
    background: linear-gradient(180deg, #fff, #fbfdff);
    border-radius:12px;
    box-shadow: 0 14px 40px rgba(11,24,44,0.06);
    /* overflow: hidden; */
    border:1px solid rgba(32,49,98,0.04);
  }

  .f2-q{
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    padding:16px;
    border:0;
    background:transparent;
    cursor:pointer;
    font-weight:800;
    color:var(--brand);
    font-size:1rem;
  }
  .f2-q:focus{ outline: 3px solid rgba(14,165,233,0.14); outline-offset:4px; }

  .f2-icon{
    display:inline-grid;
    place-items:center;
    width:36px; height:36px;
    border-radius:8px;
    background: rgba(14,165,233,0.10);
    color:var(--accent);
    font-weight:900;
    flex-shrink:0;
  }

  .f2-q-text{ flex:1; text-align:left; }

  .f2-chevron{ margin-left:auto; color: rgba(32,49,98,0.5); transition: transform .22s ease; }

  .f2-a{
    padding: 0 18px 0 64px; /* matches icon width for alignment */
    color:var(--muted);
    line-height:2;
    font-size:0.9rem;
    max-height:0;
    overflow:hidden;
    transition: max-height .36s ease, padding .36s ease;
  }

  /* expanded state toggled by JS */
  .faq2-card.expanded .f2-a{ padding: 2px 18px 16px 64px; }

  .faq2-card.expanded .f2-chevron{ transform: rotate(180deg); }

  /* reveal helper */
  .animate-item{ opacity:0; transform:translateY(8px); transition: transform .64s cubic-bezier(.16,.9,.32,1) var(--delay,0ms), opacity .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.in-view{ opacity:1; transform:translateX(0) translateY(0); }

  /* responsive */
  @media (max-width: 920px){
    .faq2-grid{ grid-template-columns: 1fr; }
    .faq2-media{ order:-1; }
    .f2-a{ padding-left: 56px; }
  }
  @media (max-width: 520px){
    .f2-q{ padding:12px; font-size:.98rem; }
    .f2-icon{ width:32px;height:32px; }
    .f2-a{ padding-left: 50px; }
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce){
    .animate-item{ transition:none !important; transform:none !important; opacity:1 !important; }
    .f2-a{ transition:none !important; max-height:none !important; padding:12px 18px 16px 64px !important; }
  }