 /* ============ TOKENS ============ */
  :root{
    --navy-950:#060B18;
    --navy-900:#0B1A33;
    --navy-800:#14264A;
    --blue-600:#2F6FED;
    --blue-500:#4C82F0;
    --blue-400:#5B9DFF;
    --blue-300:#8FBBFF;
    --ice-50:#F5F8FF;
    --ice-100:#EAF1FF;
    --slate-500:#4A5872;
    --slate-400:#A9B8D6;
    --ink-900:#0B1220;
    --white:#FFFFFF;
    --line:#1E2F52;
    --radius-lg:20px;
    --radius-md:14px;
    --radius-sm:9px;
    --shadow-glow:0 20px 60px -20px rgba(47,111,237,.45);
    --ease:cubic-bezier(.16,.84,.44,1);
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',system-ui,sans-serif;
    color:var(--ink-900);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{font-family:'Sora',sans-serif;line-height:1.15;letter-spacing:-0.02em;color:var(--navy-950);}
  a{color:inherit;text-decoration:none;}
  ul{list-style:none;}
  img,svg{display:block;max-width:100%;}
  .eyebrow{
    font-family:'IBM Plex Mono',monospace;
    font-size:.72rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--blue-600);
    font-weight:600;
  }
  .wrap{max-width:1180px;margin:0 auto;padding:0 24px;}
  .section{padding:96px 0;}
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    font-family:'Inter',sans-serif;font-weight:600;font-size:.95rem;
    padding:14px 26px;border-radius:100px;border:1px solid transparent;
    cursor:pointer;transition:transform .35s var(--ease),box-shadow .35s var(--ease),background .3s;
    white-space:nowrap;
  }
  .btn-primary{background:linear-gradient(135deg,var(--blue-500),var(--blue-600));color:#fff;box-shadow:0 10px 30px -8px rgba(47,111,237,.55);}
  .btn-primary:hover{transform:translateY(-3px);box-shadow:0 16px 36px -8px rgba(47,111,237,.65);}
  .btn-ghost{background:rgba(255,255,255,.06);color:#fff;border-color:rgba(255,255,255,.28);backdrop-filter:blur(6px);}
  .btn-ghost:hover{background:rgba(255,255,255,.14);transform:translateY(-3px);}
  .btn-dark{background:var(--navy-950);color:#fff;}
  .btn-dark:hover{transform:translateY(-3px);box-shadow:0 14px 30px -10px rgba(6,11,24,.5);}
  .reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease),transform .8s var(--ease);}
  .reveal.in{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion:reduce){
    *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important;}
  }

  /* ============ TOP BAR ============ */
  .topbar{background:var(--navy-950);color:var(--slate-400);}
  .topbar .wrap{display:flex;align-items:center;justify-content:space-between;padding:9px 24px;flex-wrap:wrap;gap:8px;}
  .topbar-contact{display:flex;align-items:center;gap:22px;font-size:.8rem;}
  .topbar-contact a{display:flex;align-items:center;gap:6px;color:var(--slate-400);transition:color .25s;}
  .topbar-contact a:hover{color:#fff;}
  .topbar-contact svg{width:13px;height:13px;stroke:var(--blue-400);flex-shrink:0;}
  .topbar-right{display:flex;align-items:center;gap:18px;}
  .topbar-socials{display:flex;gap:12px;}
  .topbar-socials a svg{width:13px;height:13px;stroke:var(--slate-400);transition:stroke .25s;}
  .topbar-socials a:hover svg{stroke:var(--blue-400);}
  .topbar-right .mini-link{font-size:.8rem;color:var(--blue-300);font-weight:600;}

  /* ============ NAV / HEADER (separate from hero) ============ */
  header{
    position:sticky;top:0;z-index:100;
    background:#fff;
    padding:16px 0;
    border-bottom:1px solid #EAEFF9;
    box-shadow:0 1px 0 rgba(11,26,51,.02);
    transition:padding .3s ease,box-shadow .3s ease;
  }
  header.scrolled{padding:11px 0;box-shadow:0 10px 30px -18px rgba(11,26,51,.25);}
  nav{display:flex;align-items:center;justify-content:space-between;}
  .logo{display:flex;align-items:center;gap:10px;font-family:'Sora',sans-serif;font-weight:700;font-size:1.15rem;color:var(--navy-950);}
  .logo .mark{width:34px;height:34px;border-radius:9px;background:linear-gradient(135deg,var(--blue-400),var(--blue-600));display:flex;align-items:center;justify-content:center;flex-shrink:0;}
  .logo .mark svg{width:18px;height:18px;}
  .nav-links{display:flex;align-items:center;gap:8px;}
  .nav-links > a{color:var(--ink-900);font-size:.92rem;font-weight:500;position:relative;padding:10px 14px;transition:color .25s;border-radius:8px;}
  .nav-links > a:hover{color:var(--blue-600);background:var(--ice-50);}
  .has-mega{position:relative;}
  .mega-trigger{
    display:flex;align-items:center;gap:6px;color:var(--ink-900);font-size:.92rem;font-weight:500;
    padding:10px 14px;border-radius:8px;cursor:pointer;background:none;border:none;font-family:'Inter',sans-serif;
    transition:color .25s,background .25s;
  }
  .mega-trigger svg{width:14px;height:14px;transition:transform .3s var(--ease);stroke:var(--slate-500);}
  .has-mega:hover .mega-trigger{color:var(--blue-600);background:var(--ice-50);}
  .has-mega:hover .mega-trigger svg{transform:rotate(180deg);stroke:var(--blue-600);}
  .mega-menu{
    position:absolute;top:calc(100% + 1px);left:50%;transform:translateX(-50%) translateY(8px);
    width:760px;background:#fff;border-radius:18px;box-shadow:0 30px 70px -20px rgba(11,26,51,.25);
    border:1px solid #EAEFF9;padding:26px;display:grid;grid-template-columns:1fr 230px;gap:26px;
    opacity:0;pointer-events:none;transition:opacity .28s var(--ease),transform .28s var(--ease);
  }
  .has-mega:hover .mega-menu,.has-mega.open .mega-menu{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0);}
  .mega-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:6px 20px;}
  .mega-item{display:flex;gap:12px;align-items:flex-start;padding:10px;border-radius:10px;transition:background .25s;}
  .mega-item:hover{background:var(--ice-50);}
  .mega-item .mega-icon{
    width:36px;height:36px;border-radius:9px;background:var(--ice-100);display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .mega-item .mega-icon svg{width:18px;height:18px;stroke:var(--blue-600);}
  .mega-item h4{font-size:.88rem;color:var(--navy-950);margin-bottom:3px;}
  .mega-item p{font-size:.76rem;color:var(--slate-500);line-height:1.4;}
  .mega-promo{
    background:linear-gradient(150deg,var(--navy-950),var(--navy-800));
    border-radius:14px;padding:22px;display:flex;flex-direction:column;justify-content:space-between;color:#fff;
  }
  .mega-promo .eyebrow{color:var(--blue-300);margin-bottom:10px;}
  .mega-promo h4{font-size:1rem;color:#fff;margin-bottom:8px;}
  .mega-promo p{font-size:.8rem;color:var(--slate-400);margin-bottom:18px;line-height:1.5;}
  .mega-promo .btn{width:100%;padding:11px 18px;font-size:.85rem;}
  .nav-cta{display:flex;align-items:center;gap:14px;}
  .hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;}
  .hamburger span{width:24px;height:2px;background:var(--navy-950);border-radius:2px;transition:transform .3s,opacity .3s;}
  .mobile-panel{
    position:fixed;inset:0;background:var(--navy-950);z-index:200;
    display:flex;flex-direction:column;justify-content:center;align-items:center;gap:22px;
    opacity:0;pointer-events:none;transition:opacity .35s ease;overflow-y:auto;padding:80px 24px;
  }
  .mobile-panel.open{opacity:1;pointer-events:auto;}
  .mobile-panel a{color:#fff;font-family:'Sora',sans-serif;font-size:1.3rem;font-weight:600;}
  .mobile-services{width:100%;max-width:320px;text-align:center;}
  .mobile-services-toggle{
    background:none;border:none;color:#fff;font-family:'Sora',sans-serif;font-size:1.3rem;font-weight:600;
    display:flex;align-items:center;gap:8px;justify-content:center;width:100%;cursor:pointer;
  }
  .mobile-services-toggle svg{width:16px;height:16px;stroke:#8FBBFF;transition:transform .3s;}
  .mobile-services.open .mobile-services-toggle svg{transform:rotate(180deg);}
  .mobile-services-list{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
  .mobile-services.open .mobile-services-list{max-height:400px;}
  .mobile-services-list a{display:block;font-size:1rem;font-weight:500;color:#B7C4E0;padding:10px 0;}

  /* ============ HERO + ANIMATED BACKGROUND ============ */
  .hero{
    position:relative;
    background:radial-gradient(120% 100% at 15% 0%,#0E1E3D 0%,var(--navy-950) 55%);
    color:#fff;
    padding:110px 0 120px;
    overflow:hidden;
    isolation:isolate;
  }
  .hero-bg{position:absolute;inset:0;z-index:-2;opacity:.9;}
  .grid-fade{
    position:absolute;inset:0;z-index:-1;
    background-image:linear-gradient(rgba(90,140,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(90,140,255,.08) 1px,transparent 1px);
    background-size:64px 64px;
    -webkit-mask-image:radial-gradient(60% 55% at 50% 30%,#000 0%,transparent 75%);
    mask-image:radial-gradient(60% 55% at 50% 30%,#000 0%,transparent 75%);
  }
  .signal-dot{
    position:absolute;border-radius:50%;background:var(--blue-400);
    box-shadow:0 0 14px 3px rgba(91,157,255,.7);
    animation:drift 14s ease-in-out infinite;
  }
  @keyframes drift{
    0%,100%{transform:translate(0,0);opacity:.55;}
    50%{transform:translate(18px,-26px);opacity:1;}
  }
  .pulse-line{position:absolute;left:0;right:0;bottom:10%;height:200px;z-index:-1;opacity:1;}
  .pulse-path{stroke-dasharray:6 3000;animation:drawline 7s var(--ease) infinite;}
  @keyframes drawline{
    0%{stroke-dashoffset:3000;}
    55%,70%{stroke-dashoffset:0;}
    100%{stroke-dashoffset:-3000;}
  }
  .pulse-dot{animation:travel 7s var(--ease) infinite;}
  @keyframes travel{
    0%{offset-distance:0%;opacity:0;}
    8%{opacity:1;}
    92%{opacity:1;}
    100%{offset-distance:100%;opacity:0;}
  }
  .growth-bars{position:absolute;right:7%;bottom:16%;display:flex;align-items:flex-end;gap:11px;height:130px;z-index:-1;}
  .growth-bars span{
    display:block;width:13px;border-radius:5px 5px 0 0;
    background:linear-gradient(180deg,var(--blue-300),var(--blue-600));
    height:var(--h);transform-origin:bottom;
    animation:growUp 3.4s var(--ease) infinite;
    box-shadow:0 0 16px -2px rgba(91,157,255,.6);
  }
  @keyframes growUp{
    0%{transform:scaleY(.18);opacity:.45;}
    45%,60%{transform:scaleY(1);opacity:1;}
    100%{transform:scaleY(.18);opacity:.45;}
  }
  @media (max-width:820px){.growth-bars{display:none;}}
  .hero-inner{position:relative;text-align:center;margin:0 auto;}
  .hero .eyebrow{color:var(--blue-300);display:inline-flex;align-items:center;gap:8px;justify-content:center;margin-bottom:22px;}
  .hero .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--blue-400);box-shadow:0 0 8px 2px rgba(91,157,255,.8);}
  .hero h1{font-size:clamp(2.3rem,5vw,3.6rem);margin-bottom:22px;color:#fff;}
  .hero h1 em{font-style:normal;background:linear-gradient(120deg,var(--blue-300),var(--blue-400) 60%);-webkit-background-clip:text;background-clip:text;color:transparent;}
  .hero p.lead{font-size:1.1rem;color:#B7C4E0;max-width:620px;margin:0 auto 38px;}
  .hero-ctas{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:64px;}
  .trust-strip{
    display:grid;grid-template-columns:repeat(4,1fr);gap:0;
    border-top:1px solid rgba(255,255,255,.12);padding-top:34px;max-width:820px;margin:0 auto;
  }
  .trust-strip div{text-align:center;border-right:1px solid rgba(255,255,255,.1);}
  .trust-strip div:last-child{border-right:none;}
  .trust-strip strong{display:block;font-family:'Sora',sans-serif;font-size:1.5rem;color:#fff;}
  .trust-strip span{font-size:.78rem;color:var(--slate-400);font-family:'IBM Plex Mono',monospace;letter-spacing:.02em;}

  /* ============ SECTION HEADS ============ */
  .section-head{max-width:640px;margin:0 auto 56px;text-align:center;}
  .section-head .eyebrow{display:block;margin-bottom:14px;}
  .section-head h2{font-size:clamp(1.7rem,3.2vw,2.4rem);margin-bottom:16px;}
  .section-head p{color:var(--slate-500);font-size:1.02rem;}

  /* ============ SERVICES ============ */
  .services{background:var(--ice-50);}
  .service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
  .service-card{
    background:#fff;border:1px solid #E4EBF9;border-radius:var(--radius-lg);
    padding:30px 26px;transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s;
    position:relative;overflow:hidden;
  }
  .service-card::before{
    content:"";position:absolute;inset:0;opacity:0;transition:opacity .4s;
    background:linear-gradient(160deg,rgba(47,111,237,.06),transparent 60%);
  }
  .service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-glow);border-color:transparent;}
  .service-card:hover::before{opacity:1;}
  .service-icon{
    width:48px;height:48px;border-radius:12px;
    background:linear-gradient(135deg,var(--blue-500),var(--blue-600));
    display:flex;align-items:center;justify-content:center;margin-bottom:20px;
  }
  .service-icon svg{width:24px;height:24px;stroke:#fff;}
  .service-card h3{font-size:1.08rem;margin-bottom:10px;position:relative;}
  .service-card p{font-size:.9rem;color:var(--slate-500);margin-bottom:16px;position:relative;}
  .service-card .tag{font-family:'IBM Plex Mono',monospace;font-size:.68rem;color:var(--blue-600);letter-spacing:.08em;text-transform:uppercase;position:relative;}
  .service-card a.learn{display:inline-flex;align-items:center;gap:6px;font-size:.85rem;font-weight:600;color:var(--blue-600);margin-top:14px;position:relative;}
  .service-card a.learn svg{width:14px;height:14px;transition:transform .3s;}
  .service-card a.learn:hover svg{transform:translateX(4px);}

  /* ============ WHY / DIFFERENTIATORS ============ */
  .why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
  .why-card{padding:28px 4px;}
  .why-num{font-family:'IBM Plex Mono',monospace;font-size:.78rem;color:var(--blue-600);margin-bottom:12px;}
  .why-card h3{font-size:1.06rem;margin-bottom:10px;}
  .why-card p{color:var(--slate-500);font-size:.92rem;}

  /* ============ PROCESS ============ */
  .process{background:var(--navy-950);color:#fff;position:relative;overflow:hidden;}
  .process::before{
    content:"";position:absolute;top:-20%;right:-10%;width:520px;height:520px;border-radius:50%;
    background:radial-gradient(circle,rgba(47,111,237,.28),transparent 70%);filter:blur(10px);
  }
  .process .section-head h2{color:#fff;}
  .process .section-head p{color:var(--slate-400);}
  .process-track{position:relative;display:grid;grid-template-columns:repeat(5,1fr);gap:18px;}
  .process-track::before{
    content:"";position:absolute;top:26px;left:5%;right:5%;height:1px;
    background:repeating-linear-gradient(90deg,rgba(255,255,255,.22) 0 8px,transparent 8px 16px);
  }
  .p-step{position:relative;text-align:left;}
  .p-num{
    width:52px;height:52px;border-radius:50%;background:var(--navy-900);border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;font-family:'Sora',sans-serif;font-weight:700;color:var(--blue-300);
    margin-bottom:20px;position:relative;z-index:1;
  }
  .p-step h4{font-size:1rem;color:#fff;margin-bottom:8px;}
  .p-step p{font-size:.85rem;color:var(--slate-400);}

  /* ============ TESTIMONIALS ============ */
  .testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
  .testi-card{
    background:#fff;border:1px solid #E4EBF9;border-radius:var(--radius-lg);padding:30px;
    display:flex;flex-direction:column;gap:18px;
  }
  .stars{display:flex;gap:3px;}
  .stars svg{width:16px;height:16px;fill:var(--blue-500);}
  .testi-card p.quote{font-size:.95rem;color:var(--ink-900);line-height:1.65;}
  .testi-person{display:flex;align-items:center;gap:12px;margin-top:auto;}
  .testi-avatar{
    width:42px;height:42px;border-radius:50%;
    background:linear-gradient(135deg,var(--blue-400),var(--blue-600));
    display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Sora',sans-serif;font-weight:700;font-size:.85rem;
  }
  .testi-person strong{display:block;font-size:.88rem;}
  .testi-person span{font-size:.78rem;color:var(--slate-500);}

  /* ============ FAQ ============ */
  .faq{background:var(--ice-50);}
  .faq-list{max-width:760px;margin:0 auto;}
  .faq-item{border-bottom:1px solid #DCE6FA;}
  .faq-q{
    width:100%;text-align:left;background:none;border:none;cursor:pointer;
    padding:22px 4px;display:flex;justify-content:space-between;align-items:center;gap:20px;
    font-family:'Sora',sans-serif;font-weight:600;font-size:1rem;color:var(--navy-950);
  }
  .faq-q .icon{width:20px;height:20px;flex-shrink:0;position:relative;}
  .faq-q .icon::before,.faq-q .icon::after{content:"";position:absolute;background:var(--blue-600);border-radius:2px;transition:transform .3s var(--ease);}
  .faq-q .icon::before{width:14px;height:2px;top:9px;left:3px;}
  .faq-q .icon::after{width:2px;height:14px;top:3px;left:9px;}
  .faq-item.open .icon::after{transform:rotate(90deg);}
  .faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
  .faq-a p{padding:0 4px 22px;color:var(--slate-500);font-size:.92rem;max-width:640px;}

  /* ============ FINAL CTA ============ */
  .final-cta{
    background:linear-gradient(120deg,var(--navy-950),var(--navy-900) 55%,#0D2148);
    color:#fff;text-align:center;overflow:hidden;
  }
  .final-cta::after{
    content:"";position:absolute;bottom:-30%;left:50%;transform:translateX(-50%);width:700px;height:400px;
    background:radial-gradient(ellipse,rgba(47,111,237,.35),transparent 70%);
  }
  .final-cta h2{color:#fff;font-size:clamp(1.7rem,3.4vw,2.5rem);margin-bottom:16px;position:relative;}
  .final-cta p{color:var(--slate-400);max-width:520px;margin:0 auto 32px;position:relative;}
  .final-cta .hero-ctas{position:relative;}

  /* ============ FOOTER ============ */
  footer{background:var(--navy-950);color:var(--slate-400);padding:80px 0 26px;}
  .foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:56px;border-bottom:1px solid var(--line);}
  .foot-brand .logo{margin-bottom:16px;}
  .foot-brand p{font-size:.88rem;line-height:1.7;max-width:280px;margin-bottom:22px;}
  .socials{display:flex;gap:10px;}
  .socials a{
    width:36px;height:36px;border-radius:50%;border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;transition:background .3s,border-color .3s,transform .3s;
  }
  .socials a svg{width:16px;height:16px;stroke:var(--slate-400);transition:stroke .3s;}
  .socials a:hover{background:var(--blue-600);border-color:var(--blue-600);transform:translateY(-3px);}
  .socials a:hover svg{stroke:#fff;}
  .foot-col h5{font-family:'IBM Plex Mono',monospace;font-size:.74rem;letter-spacing:.1em;text-transform:uppercase;color:#fff;margin-bottom:20px;}
  .foot-col ul li{margin-bottom:12px;}
  .foot-col a{font-size:.87rem;transition:color .25s,padding-left .25s;}
  .foot-col a:hover{color:#fff;padding-left:4px;}
  .foot-contact li{font-size:.87rem;margin-bottom:14px;display:flex;gap:10px;align-items:flex-start;}
  .foot-contact svg{width:16px;height:16px;stroke:var(--blue-400);flex-shrink:0;margin-top:2px;}
  .foot-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:26px;flex-wrap:wrap;gap:14px;}
  .foot-bottom p{font-size:.8rem;}
  .foot-legal{display:flex;gap:22px;}
  .foot-legal a{font-size:.8rem;}
  .foot-legal a:hover{color:#fff;}

  /* ============ RESPONSIVE ============ */
  @media (max-width:1024px){
    .service-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .testi-grid{grid-template-columns:1fr;}
    .process-track{grid-template-columns:repeat(5,1fr);}
    .foot-grid{grid-template-columns:1fr 1fr;}
    .mega-menu{width:640px;}
  }
  @media (max-width:820px){
    .nav-links,.nav-cta .btn-primary{display:none;}
    .hamburger{display:flex;}
    .topbar-contact{display:none;}
    .trust-strip{grid-template-columns:repeat(2,1fr);row-gap:22px;}
    .trust-strip div:nth-child(2){border-right:none;}
    .process-track{grid-template-columns:1fr;gap:34px;}
    .process-track::before{display:none;}
    .section{padding:70px 0;}
  }
  @media (max-width:640px){
    .service-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .foot-grid{grid-template-columns:1fr;gap:36px;}
    .hero{padding:80px 0 80px;}
    .foot-bottom{flex-direction:column;align-items:flex-start;}
  }
  
  
  /* ============ HERO + ANIMATED BACKGROUND ============ */
  .hero{
    position:relative;
    background:radial-gradient(120% 100% at 15% 0%,#0E1E3D 0%,var(--navy-950) 55%);
    color:#fff;
    padding:110px 0 120px;
    overflow:hidden;
    isolation:isolate;
  }
  .hero-bg{position:absolute;inset:0;z-index:-2;opacity:.9;}
  .grid-fade{
    position:absolute;inset:0;z-index:-1;
    background-image:linear-gradient(rgba(90,140,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(90,140,255,.08) 1px,transparent 1px);
    background-size:64px 64px;
    -webkit-mask-image:radial-gradient(60% 55% at 50% 30%,#000 0%,transparent 75%);
    mask-image:radial-gradient(60% 55% at 50% 30%,#000 0%,transparent 75%);
  }
  .signal-dot{
    position:absolute;border-radius:50%;background:var(--blue-400);
    box-shadow:0 0 14px 3px rgba(91,157,255,.7);
    animation:drift 14s ease-in-out infinite;
  }
  @keyframes drift{
    0%,100%{transform:translate(0,0);opacity:.55;}
    50%{transform:translate(18px,-26px);opacity:1;}
  }
  .pulse-line{position:absolute;left:0;right:0;bottom:10%;height:200px;z-index:-1;opacity:1;}
  .pulse-path{stroke-dasharray:6 3000;animation:drawline 7s var(--ease) infinite;}
  @keyframes drawline{
    0%{stroke-dashoffset:3000;}
    55%,70%{stroke-dashoffset:0;}
    100%{stroke-dashoffset:-3000;}
  }
  .pulse-dot{animation:travel 7s var(--ease) infinite;}
  @keyframes travel{
    0%{offset-distance:0%;opacity:0;}
    8%{opacity:1;}
    92%{opacity:1;}
    100%{offset-distance:100%;opacity:0;}
  }
  .growth-bars{position:absolute;right:7%;bottom:16%;display:flex;align-items:flex-end;gap:11px;height:130px;z-index:-1;}
  .growth-bars span{
    display:block;width:13px;border-radius:5px 5px 0 0;
    background:linear-gradient(180deg,var(--blue-300),var(--blue-600));
    height:var(--h);transform-origin:bottom;
    animation:growUp 3.4s var(--ease) infinite;
    box-shadow:0 0 16px -2px rgba(91,157,255,.6);
  }
  @keyframes growUp{
    0%{transform:scaleY(.18);opacity:.45;}
    45%,60%{transform:scaleY(1);opacity:1;}
    100%{transform:scaleY(.18);opacity:.45;}
  }
  @media (max-width:820px){.growth-bars{display:none;}}
  .hero-inner{position:relative;text-align:center;max-width:840px;margin:0 auto;}
  .hero .eyebrow{color:var(--blue-300);display:inline-flex;align-items:center;gap:8px;justify-content:center;margin-bottom:22px;}
  .hero .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--blue-400);box-shadow:0 0 8px 2px rgba(91,157,255,.8);}
  .hero h1{font-size:clamp(2.3rem,5vw,3.6rem);margin-bottom:22px;color:#fff;}
  .hero h1 em{font-style:normal;background:linear-gradient(120deg,var(--blue-300),var(--blue-400) 60%);-webkit-background-clip:text;background-clip:text;color:transparent;}
  .hero p.lead{font-size:1.1rem;color:#B7C4E0;max-width:620px;margin:0 auto 38px;}
  .hero-ctas{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:64px;}
  .trust-strip{
    display:grid;grid-template-columns:repeat(4,1fr);gap:0;
    border-top:1px solid rgba(255,255,255,.12);padding-top:34px;max-width:820px;margin:0 auto;
  }
  .trust-strip div{text-align:center;border-right:1px solid rgba(255,255,255,.1);}
  .trust-strip div:last-child{border-right:none;}
  .trust-strip strong{display:block;font-family:'Sora',sans-serif;font-size:1.5rem;color:#fff;}
  .trust-strip span{font-size:.78rem;color:var(--slate-400);font-family:'IBM Plex Mono',monospace;letter-spacing:.02em;}

  /* ============ SECTION HEADS ============ */
  .section-head{max-width:640px;margin:0 auto 56px;text-align:center;}
  .section-head .eyebrow{display:block;margin-bottom:14px;}
  .section-head h2{font-size:clamp(1.7rem,3.2vw,2.4rem);margin-bottom:16px;}
  .section-head p{color:var(--slate-500);font-size:1.02rem;}

  /* ============ SERVICES ============ */
  .services{background:var(--ice-50);}
  .service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
  .service-card{
    background:#fff;border:1px solid #E4EBF9;border-radius:var(--radius-lg);
    padding:30px 26px;transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s;
    position:relative;overflow:hidden;
  }
  .service-card::before{
    content:"";position:absolute;inset:0;opacity:0;transition:opacity .4s;
    background:linear-gradient(160deg,rgba(47,111,237,.06),transparent 60%);
  }
  .service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-glow);border-color:transparent;}
  .service-card:hover::before{opacity:1;}
  .service-icon{
    width:48px;height:48px;border-radius:12px;
    background:linear-gradient(135deg,var(--blue-500),var(--blue-600));
    display:flex;align-items:center;justify-content:center;margin-bottom:20px;
  }
  .service-icon svg{width:24px;height:24px;stroke:#fff;}
  .service-card h3{font-size:1.08rem;margin-bottom:10px;position:relative;}
  .service-card p{font-size:.9rem;color:var(--slate-500);margin-bottom:16px;position:relative;}
  .service-card .tag{font-family:'IBM Plex Mono',monospace;font-size:.68rem;color:var(--blue-600);letter-spacing:.08em;text-transform:uppercase;position:relative;}
  .service-card a.learn{display:inline-flex;align-items:center;gap:6px;font-size:.85rem;font-weight:600;color:var(--blue-600);margin-top:14px;position:relative;}
  .service-card a.learn svg{width:14px;height:14px;transition:transform .3s;}
  .service-card a.learn:hover svg{transform:translateX(4px);}

  /* ============ WHY / DIFFERENTIATORS ============ */
  .why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
  .why-card{padding:28px 4px;}
  .why-num{font-family:'IBM Plex Mono',monospace;font-size:.78rem;color:var(--blue-600);margin-bottom:12px;}
  .why-card h3{font-size:1.06rem;margin-bottom:10px;}
  .why-card p{color:var(--slate-500);font-size:.92rem;}

  /* ============ PROCESS ============ */
  .process{background:var(--navy-950);color:#fff;position:relative;overflow:hidden;}
  .process::before{
    content:"";position:absolute;top:-20%;right:-10%;width:520px;height:520px;border-radius:50%;
    background:radial-gradient(circle,rgba(47,111,237,.28),transparent 70%);filter:blur(10px);
  }
  .process .section-head h2{color:#fff;}
  .process .section-head p{color:var(--slate-400);}
  .process-track{position:relative;display:grid;grid-template-columns:repeat(5,1fr);gap:18px;}
  .process-track::before{
    content:"";position:absolute;top:26px;left:5%;right:5%;height:1px;
    background:repeating-linear-gradient(90deg,rgba(255,255,255,.22) 0 8px,transparent 8px 16px);
  }
  .p-step{position:relative;text-align:left;}
  .p-num{
    width:52px;height:52px;border-radius:50%;background:var(--navy-900);border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;font-family:'Sora',sans-serif;font-weight:700;color:var(--blue-300);
    margin-bottom:20px;position:relative;z-index:1;
  }
  .p-step h4{font-size:1rem;color:#fff;margin-bottom:8px;}
  .p-step p{font-size:.85rem;color:var(--slate-400);}

  /* ============ TESTIMONIALS ============ */
  .testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
  .testi-card{
    background:#fff;border:1px solid #E4EBF9;border-radius:var(--radius-lg);padding:30px;
    display:flex;flex-direction:column;gap:18px;
  }
  .stars{display:flex;gap:3px;}
  .stars svg{width:16px;height:16px;fill:var(--blue-500);}
  .testi-card p.quote{font-size:.95rem;color:var(--ink-900);line-height:1.65;}
  .testi-person{display:flex;align-items:center;gap:12px;margin-top:auto;}
  .testi-avatar{
    width:42px;height:42px;border-radius:50%;
    background:linear-gradient(135deg,var(--blue-400),var(--blue-600));
    display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Sora',sans-serif;font-weight:700;font-size:.85rem;
  }
  .testi-person strong{display:block;font-size:.88rem;}
  .testi-person span{font-size:.78rem;color:var(--slate-500);}

  /* ============ FAQ ============ */
  .faq{background:var(--ice-50);}
  .faq-list{max-width:760px;margin:0 auto;}
  .faq-item{border-bottom:1px solid #DCE6FA;}
  .faq-q{
    width:100%;text-align:left;background:none;border:none;cursor:pointer;
    padding:22px 4px;display:flex;justify-content:space-between;align-items:center;gap:20px;
    font-family:'Sora',sans-serif;font-weight:600;font-size:1rem;color:var(--navy-950);
  }
  .faq-q .icon{width:20px;height:20px;flex-shrink:0;position:relative;}
  .faq-q .icon::before,.faq-q .icon::after{content:"";position:absolute;background:var(--blue-600);border-radius:2px;transition:transform .3s var(--ease);}
  .faq-q .icon::before{width:14px;height:2px;top:9px;left:3px;}
  .faq-q .icon::after{width:2px;height:14px;top:3px;left:9px;}
  .faq-item.open .icon::after{transform:rotate(90deg);}
  .faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
  .faq-a p{padding:0 4px 22px;color:var(--slate-500);font-size:.92rem;max-width:640px;}

  /* ============ FINAL CTA ============ */
  .final-cta{
    background:linear-gradient(120deg,var(--navy-950),var(--navy-900) 55%,#0D2148);
    color:#fff;text-align:center;position:relative;overflow:hidden;
  }
  .final-cta::after{
    content:"";position:absolute;bottom:-30%;left:50%;transform:translateX(-50%);width:700px;height:400px;
    background:radial-gradient(ellipse,rgba(47,111,237,.35),transparent 70%);
  }
  .final-cta h2{color:#fff;font-size:clamp(1.7rem,3.4vw,2.5rem);margin-bottom:16px;position:relative;}
  .final-cta p{color:var(--slate-400);max-width:520px;margin:0 auto 32px;position:relative;}
  .final-cta .hero-ctas{position:relative;}

  /* ============ FOOTER ============ */
  footer{background:var(--navy-950);color:var(--slate-400);padding:80px 0 26px;}
  .foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:56px;border-bottom:1px solid var(--line);}
  .foot-brand .logo{margin-bottom:16px;}
  .foot-brand p{font-size:.88rem;line-height:1.7;max-width:280px;margin-bottom:22px;}
  .socials{display:flex;gap:10px;}
  .socials a{
    width:36px;height:36px;border-radius:50%;border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;transition:background .3s,border-color .3s,transform .3s;
  }
  .socials a svg{width:16px;height:16px;stroke:var(--slate-400);transition:stroke .3s;}
  .socials a:hover{background:var(--blue-600);border-color:var(--blue-600);transform:translateY(-3px);}
  .socials a:hover svg{stroke:#fff;}
  .foot-col h5{font-family:'IBM Plex Mono',monospace;font-size:.74rem;letter-spacing:.1em;text-transform:uppercase;color:#fff;margin-bottom:20px;}
  .foot-col ul li{margin-bottom:12px;}
  .foot-col a{font-size:.87rem;transition:color .25s,padding-left .25s;}
  .foot-col a:hover{color:#fff;padding-left:4px;}
  .foot-contact li{font-size:.87rem;margin-bottom:14px;display:flex;gap:10px;align-items:flex-start;}
  .foot-contact svg{width:16px;height:16px;stroke:var(--blue-400);flex-shrink:0;margin-top:2px;}
  .foot-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:26px;flex-wrap:wrap;gap:14px;}
  .foot-bottom p{font-size:.8rem;}
  .foot-legal{display:flex;gap:22px;}
  .foot-legal a{font-size:.8rem;}
  .foot-legal a:hover{color:#fff;}

  /* ============ RESPONSIVE ============ */
  @media (max-width:1024px){
    .service-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .testi-grid{grid-template-columns:1fr;}
    .process-track{grid-template-columns:repeat(5,1fr);}
    .foot-grid{grid-template-columns:1fr 1fr;}
    .mega-menu{width:640px;}
  }
  @media (max-width:820px){
    .nav-links,.nav-cta .btn-primary{display:none;}
    .hamburger{display:flex;}
    .topbar-contact{display:none;}
    .trust-strip{grid-template-columns:repeat(2,1fr);row-gap:22px;}
    .trust-strip div:nth-child(2){border-right:none;}
    .process-track{grid-template-columns:1fr;gap:34px;}
    .process-track::before{display:none;}
    .section{padding:70px 0;}
  }
  @media (max-width:640px){
    .service-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .foot-grid{grid-template-columns:1fr;gap:36px;}
    .hero{padding:80px 0 80px;}
    .foot-bottom{flex-direction:column;align-items:flex-start;}
  }

  /* ============ SERVICE PAGE: HIGHLIGHTS BAR ============ */
  .highlights{background:#fff;border-bottom:1px solid #EAEFF9;padding:30px 0;}
  .highlights-label{text-align:center;margin-bottom:18px;}
  .highlights-row{display:flex;flex-wrap:wrap;justify-content:center;gap:12px 30px;}
  .highlight-chip{display:flex;align-items:center;gap:10px;font-family:'Sora',sans-serif;font-size:.86rem;font-weight:600;color:var(--navy-950);}
  .highlight-chip .hi-icon{width:34px;height:34px;border-radius:9px;background:var(--ice-100);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
  .highlight-chip .hi-icon svg{width:17px;height:17px;stroke:var(--blue-600);}

  /* ============ SERVICE PAGE: INTRO ============ */
  .intro-panel{max-width:820px;margin:0 auto;text-align:center;}
  .intro-panel .eyebrow{display:block;margin-bottom:14px;}
  .intro-panel h2{font-size:clamp(1.6rem,3vw,2.2rem);margin-bottom:18px;}
  .intro-panel p{color:var(--slate-500);font-size:1.02rem;line-height:1.75;}

  /* ============ SERVICE PAGE: BREAKDOWN ROWS ============ */
  .breakdown-row{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center;padding:52px 0;border-bottom:1px solid #EAEFF9;}
  .breakdown-row:last-child{border-bottom:none;}
  .breakdown-row.reverse .breakdown-media{order:2;}
  .breakdown-text .eyebrow{display:block;margin-bottom:12px;}
  .breakdown-text h3{font-size:1.5rem;margin-bottom:14px;}
  .breakdown-text p.desc{color:var(--slate-500);margin-bottom:22px;line-height:1.7;}
  .breakdown-list{display:grid;gap:12px;}
  .breakdown-list li{display:flex;gap:10px;align-items:flex-start;font-size:.92rem;color:var(--ink-900);}
  .breakdown-list svg{width:18px;height:18px;stroke:var(--blue-600);flex-shrink:0;margin-top:2px;}
  .breakdown-media{
    background:linear-gradient(150deg,var(--navy-950),var(--navy-800));
    border-radius:var(--radius-lg);padding:38px;color:#fff;position:relative;overflow:hidden;min-height:260px;
    display:flex;flex-direction:column;justify-content:space-between;gap:26px;
  }
  .breakdown-media::before{content:"";position:absolute;top:-30%;right:-20%;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle,rgba(91,157,255,.35),transparent 70%);}
  .breakdown-media .bm-icon{width:56px;height:56px;border-radius:14px;background:linear-gradient(135deg,var(--blue-400),var(--blue-600));display:flex;align-items:center;justify-content:center;position:relative;z-index:1;}
  .breakdown-media .bm-icon svg{width:28px;height:28px;stroke:#fff;}
  .breakdown-media .bm-stat{position:relative;z-index:1;}
  .breakdown-media .bm-stat strong{font-family:'Sora',sans-serif;font-size:2.1rem;display:block;}
  .breakdown-media .bm-stat span{font-family:'IBM Plex Mono',monospace;font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:var(--slate-400);}

  /* ============ SERVICE PAGE: COMPARISON ============ */
  .compare-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:900px;margin:0 auto;}
  .compare-card{border-radius:var(--radius-lg);padding:32px;}
  .compare-card.muted{background:var(--ice-50);border:1px solid #E4EBF9;}
  .compare-card.highlight{background:linear-gradient(150deg,var(--navy-950),var(--navy-800));box-shadow:var(--shadow-glow);}
  .compare-card h3{font-size:1.05rem;margin-bottom:20px;}
  .compare-card.muted h3{color:var(--navy-950);}
  .compare-card.highlight h3{color:#fff;}
  .compare-list{display:grid;gap:14px;}
  .compare-list li{display:flex;gap:10px;align-items:flex-start;font-size:.88rem;line-height:1.5;}
  .compare-list svg{width:16px;height:16px;flex-shrink:0;margin-top:2px;}
  .compare-card.muted .compare-list li{color:var(--slate-500);}
  .compare-card.muted .compare-list svg{stroke:#C0392B;}
  .compare-card.highlight .compare-list li{color:var(--slate-400);}
  .compare-card.highlight .compare-list svg{stroke:var(--blue-400);}

  /* ============ SERVICE PAGE: CHIPS ============ */
  .chip-row{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}
  .chip{padding:9px 18px;border-radius:100px;background:var(--ice-50);border:1px solid #E4EBF9;font-size:.83rem;font-weight:600;color:var(--navy-950);}
  .chip-block{margin-bottom:40px;}
  .chip-block:last-child{margin-bottom:0;}
  .chip-block h4{text-align:center;font-family:'IBM Plex Mono',monospace;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--blue-600);margin-bottom:18px;}

  @media (max-width:900px){
    .breakdown-row{grid-template-columns:1fr;gap:28px;padding:40px 0;}
    .breakdown-row.reverse .breakdown-media{order:0;}
    .compare-grid{grid-template-columns:1fr;}
  }

  /* ============ SPLIT HERO (service pages) ============ */
  .split-hero{background:var(--ice-50);padding:64px 0 80px;overflow:hidden;}
  .split-hero .wrap{display:grid;grid-template-columns:1.05fr 1fr;gap:64px;align-items:center;}
  .split-hero-content .eyebrow{display:block;margin-bottom:18px;}
  .split-hero-content .eyebrow .dot{display:none;}
  .split-hero-content h1{font-size:clamp(2.1rem,4vw,3rem);margin-bottom:20px;color:var(--navy-950);}
  .split-hero-content h1 .accent{color:var(--blue-600);}
  .split-hero-content p.lead{color:var(--slate-500);font-size:1.04rem;max-width:480px;margin-bottom:30px;}
  .split-cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:34px;}
  .split-cta-row .btn-primary{background:var(--navy-950);box-shadow:0 14px 30px -12px rgba(6,11,24,.35);}
  .split-cta-row .btn-primary:hover{background:#0B1A33;}
  .btn-call{background:#fff;border:1px solid #E1E8F5;color:var(--navy-950);display:flex;align-items:center;gap:10px;}
  .btn-call:hover{border-color:var(--blue-400);transform:translateY(-3px);}
  .btn-call svg{width:16px;height:16px;stroke:var(--blue-600);}
  .rating-row{display:flex;align-items:center;gap:12px;}
  .rating-row .stars-inline{display:flex;gap:2px;}
  .rating-row .stars-inline svg{width:15px;height:15px;fill:#F5A623;}
  .rating-row .g-badge{width:24px;height:24px;border-radius:50%;background:#fff;box-shadow:0 2px 8px rgba(11,26,51,.12);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
  .rating-row .g-badge svg{width:14px;height:14px;}
  .rating-text{display:flex;flex-direction:column;line-height:1.3;}
  .rating-text strong{font-size:.88rem;color:var(--navy-950);}
  .rating-text span{font-size:.76rem;color:var(--slate-500);}

  .split-hero-visual{position:relative;}
  .dash-card{
    background:#fff;border-radius:22px;border:1px solid #EAEFF9;
    box-shadow:0 40px 90px -30px rgba(11,26,51,.25);padding:22px;position:relative;
  }
  .dash-topbar{display:flex;align-items:center;gap:8px;margin-bottom:18px;}
  .dash-dot{width:9px;height:9px;border-radius:50%;background:#E1E8F5;}
  .dash-url{
    margin-left:8px;flex:1;background:var(--ice-50);border-radius:8px;padding:6px 12px;
    font-family:'IBM Plex Mono',monospace;font-size:.68rem;color:var(--slate-500);
  }
  .dash-section-title{font-family:'IBM Plex Mono',monospace;font-size:.66rem;letter-spacing:.08em;text-transform:uppercase;color:var(--blue-600);margin-bottom:12px;}
  .rank-row{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-radius:10px;background:var(--ice-50);margin-bottom:8px;}
  .rank-kw{font-size:.82rem;font-weight:600;color:var(--navy-950);}
  .rank-badge{display:flex;align-items:center;gap:5px;font-family:'IBM Plex Mono',monospace;font-size:.72rem;font-weight:600;color:#1E9E63;}
  .rank-badge svg{width:11px;height:11px;stroke:#1E9E63;}
  .dash-chart{display:flex;align-items:flex-end;gap:8px;height:70px;margin:18px 0 6px;padding:0 2px;}
  .dash-chart span{
    flex:1;border-radius:4px 4px 0 0;background:linear-gradient(180deg,var(--blue-300),var(--blue-600));
    height:var(--h);transform-origin:bottom;animation:growUp 3.4s var(--ease) infinite;
  }
  .dash-chart-label{display:flex;justify-content:space-between;font-family:'IBM Plex Mono',monospace;font-size:.64rem;color:var(--slate-500);text-transform:uppercase;letter-spacing:.06em;}

  .float-badge{
    position:absolute;background:#fff;border-radius:14px;padding:14px 18px;
    box-shadow:0 20px 50px -18px rgba(11,26,51,.3);border:1px solid #EAEFF9;
    display:flex;align-items:center;gap:12px;animation:floatY 5s ease-in-out infinite;
  }
  .float-badge.top{top:-24px;right:-18px;animation-delay:.3s;}
  .float-badge.bottom{bottom:-22px;left:-22px;animation-delay:1s;}
  .float-badge .fb-icon{width:36px;height:36px;border-radius:10px;background:var(--ice-100);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
  .float-badge .fb-icon svg{width:18px;height:18px;stroke:var(--blue-600);}
  .float-badge strong{display:block;font-family:'Sora',sans-serif;font-size:.95rem;color:var(--navy-950);}
  .float-badge span{font-size:.7rem;color:var(--slate-500);font-family:'IBM Plex Mono',monospace;text-transform:uppercase;letter-spacing:.04em;}
  @keyframes floatY{0%,100%{transform:translateY(0);}50%{transform:translateY(-9px);}}

  @media (max-width:900px){
    .split-hero .wrap{grid-template-columns:1fr;gap:56px;}
    .split-hero-content p.lead{max-width:none;}
    .split-hero-visual{max-width:440px;margin:0 auto;width:100%;}
    .float-badge.top{top:-16px;right:-10px;padding:10px 14px;}
    .float-badge.bottom{bottom:-16px;left:-10px;padding:10px 14px;}
  }

 /* =========================
   BLOG PAGE
========================= */

.blog-page {
    padding: 80px 20px;
    background: #f7f9fc;
}

.blog-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-page h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 45px;
    color: #0b1a33;
}

/* Blog Grid */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Featured Image */

.blog-card > a {
    display: block;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Content */

.blog-content {
    padding: 25px;
}

.blog-content h2 {
    font-size: 23px;
    line-height: 1.35;
    margin: 0 0 12px;
}

.blog-content h2 a {
    color: #0b1a33;
    text-decoration: none;
}

.blog-content h2 a:hover {
    color: #2f6fed;
}

.post-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.blog-content > a {
    display: inline-block;
    color: #2f6fed;
    font-weight: 600;
    text-decoration: none;
}

.blog-content > a:hover {
    text-decoration: underline;
}

/* Pagination */

.pagination {
    grid-column: 1 / -1;
    margin-top: 30px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border-radius: 6px;
    background: #fff;
    color: #0b1a33;
    text-decoration: none;
    border: 1px solid #e2e6ed;
}

.pagination .current {
    background: #2f6fed;
    color: #fff;
    border-color: #2f6fed;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .blog-page {
        padding: 50px 15px;
    }

    .blog-page h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card img {
        height: 200px;
    }

}
/* ================================
   SINGLE BLOG POST
================================ */

.single-post {
    width: 100%;
    
}

.single-post .post-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0px 20px 0px;
}

/* Blog title */
.single-post .post-content > h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 15px;
}

/* Date */
.single-post .post-meta {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

/* ================================
   ARTICLE CONTENT
================================ */

.single-post .post-body {
    font-size: 18px;
    line-height: 1.75;
    color: #222;
    padding: 20px;
}

/* Paragraphs */
.single-post .post-body p {
    margin: 0 0 22px;
}

/* H2 */
.single-post .post-body h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 45px 0 18px;
    font-weight: 700;
}

/* H3 */
.single-post .post-body h3 {
    font-size: 25px;
    line-height: 1.35;
    margin: 35px 0 15px;
    font-weight: 700;
}

/* H4 */
.single-post .post-body h4 {
    font-size: 21px;
    margin: 30px 0 12px;
}

/* Lists */
.single-post .post-body ul,
.single-post .post-body ol {
    margin: 20px 0 25px;
    padding-left: 30px;
}

.single-post .post-body li {
    margin-bottom: 10px;
}

/* Links */
.single-post .post-body a {
    text-decoration: underline;
}

/* Images */
.single-post .post-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

/* Captions */
.single-post .post-body figcaption {
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Blockquotes */
.single-post .post-body blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    border-left: 4px solid #2f6fed;
    background: #f5f7fa;
}

/* Tables */
.single-post .post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
}

.single-post .post-body th,
.single-post .post-body td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.single-post .post-body th {
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {

    .single-post {
        padding: 40px 18px 70px;
    }

    .single-post .post-content > h1 {
        font-size: 34px;
    }

    .single-post .post-body {
        font-size: 17px;
    }

    .single-post .post-body h2 {
        font-size: 27px;
    }

    .single-post .post-body h3 {
        font-size: 22px;
    }
}

/* =========================================
   AUTHOR BOX
========================================= */

.author-box {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-top: 60px;
    padding: 28px 30px;

    background: #f7f9fc;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
}

/* Author image */

.author-avatar {
    flex: 0 0 100px;
}

.author-avatar img {
    width: 100px;
    height: 100px;

    border-radius: 50%;
    object-fit: cover;

    display: block;
}

/* Author information */

.author-info {
    flex: 1;
}

.author-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    margin-bottom: 5px;
}

.author-name {
    margin: 0 0 8px;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;

    color: #0b1a33;
}

.author-bio {
    margin: 0 0 12px;

    font-size: 16px;
    line-height: 1.6;

    color: #475569;
}

.author-link {
    font-size: 15px;
    font-weight: 600;

    color: #2f6fed;

    text-decoration: none;
}

.author-link:hover {
    text-decoration: underline;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .author-box {
        align-items: flex-start;

        gap: 18px;

        padding: 22px;
    }

    .author-avatar {
        flex: 0 0 70px;
    }

    .author-avatar img {
        width: 70px;
        height: 70px;
    }

    .author-name {
        font-size: 20px;
    }

    .author-bio {
        font-size: 15px;
    }
}
.post-body ul.wp-block-list {
    list-style: disc;
    padding-left: 2rem;
}

.post-body ul.wp-block-list li {
    list-style: inherit;
    margin-bottom: 8px;
}

.post-body ol.wp-block-list {
    list-style: decimal;
    padding-left: 2rem;
}

.post-body ol.wp-block-list li {
    list-style: inherit;
    margin-bottom: 8px;
}

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-container h1 {
    font-size: 100px;
    line-height: 1;
    margin: 0 0 20px;
}

.error-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.error-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.back-home {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}