:root {
    --sky: #e8f4fd;
    --blue-soft: #cce8f8;
    --blue-main: #1a6fc4;
    --blue-dark: #0d4a8f;
    --cyan: #00b8d9;
    --mint-mid: #38c9a8;
    --off-white: #f4f9ff;
    --grey-light: #e8eef6;
    --text-dark: #0c1f3d;
    --text-body: #2d4a6e;
    --text-light: #6b89ad;
    --accent-violet: #a78bfa;
    --accent-coral: #ff6b6b;
    --accent-gold: #ffc947;
    --radius: 20px;
    --shadow: 0 8px 40px rgba(26,111,196,0.11);
    --shadow-lg: 0 20px 80px rgba(26,111,196,0.17);
    --grad: linear-gradient(135deg, #1a6fc4, #00b8d9);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
  body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    background: var(--off-white);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  body::before {
    content:'';
    position:fixed; inset:0;
    background:
      radial-gradient(ellipse 80% 60% at 10% 10%, rgba(144,202,249,0.16) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 90% 20%, rgba(56,201,168,0.10) 0%, transparent 55%),
      radial-gradient(ellipse 50% 60% at 50% 90%, rgba(167,139,250,0.07) 0%, transparent 60%);
    pointer-events:none; z-index:0;
  }

  /* ── GRADIENT TEXT ── */
  .grad-text {
    background: linear-gradient(135deg, #1a6fc4 0%, #00b8d9 50%, #38c9a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .grad-text-warm {
    background: linear-gradient(135deg, #1a6fc4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ── HEADINGS ── */
  h1,h2,h3 { font-family:'Inter',sans-serif; font-weight:700; color:var(--text-dark); line-height:1.2; }
  h1 { font-weight:700; }
  h2 { font-weight:700; }
  p { color: var(--text-body); font-weight:400; }

  /* ── NAV ── */
  nav {
    position:fixed; top:0; left:0; right:0; z-index:1000;
    padding:0 5%; height:72px;
    display:flex; align-items:center; justify-content:space-between;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(26,111,196,0.08);
    transition:box-shadow 0.3s;
    overflow:visible;
  }
  nav.scrolled { box-shadow:0 4px 30px rgba(26,111,196,0.12); }
  .nav-logo { display:flex; align-items:center; gap:10px; cursor:pointer; text-decoration:none; }
  .nav-logo img { height:104px; width:auto;  filter:drop-shadow(0 2px 8px rgba(26,111,196,0.15)); }
  .nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
  .nav-links a {
    font-size:0.87rem; font-weight:500; color:var(--text-body);
    text-decoration:none; padding:7px 13px; border-radius:10px;
    transition:all 0.2s; cursor:pointer;
  }
  .nav-links a:hover { background:var(--blue-soft); color:var(--blue-main); }
  .has-sub { position:relative; }
  .has-sub > a::after { content:' ▾'; font-size:0.68rem; }
  .sub-menu {
    display:none; position:absolute; top:100%; left:0;
    background:white; border-radius:14px; box-shadow:var(--shadow-lg);
    min-width:260px; padding:8px; padding-top:16px; z-index:200; border:1px solid var(--grey-light);
  }
  .has-sub:hover .sub-menu { display:block; }
  /* transparent bridge covers the visual gap so hover is never lost */
  .has-sub::after {
    content:'';
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:12px;
    background:transparent;
  }
  .sub-menu a { display:block; padding:9px 14px; border-radius:8px; font-size:0.83rem; }
  .nav-cta {
    background: var(--grad) !important;
    color:white !important; padding:9px 22px !important;
    border-radius:50px !important; font-weight:600 !important;
    box-shadow:0 4px 20px rgba(26,111,196,0.28);
    transition:transform 0.2s, box-shadow 0.2s !important;
  }
  .nav-cta:hover { transform:translateY(-2px) !important; box-shadow:0 8px 30px rgba(26,111,196,0.4) !important; }

  /* ── PAGES ── */
  .page { display:none; min-height:100vh; padding-top:72px; position:relative; z-index:1; }
  .page.active { display:block; }

  /* ── HERO ── */
  .hero {
    min-height:calc(100vh - 72px);
    display:grid; grid-template-columns:1fr 1fr;
    align-items:center; padding:60px 5% 40px; gap:60px;
    position:relative; overflow:hidden;
  }
  .hero-text { animation:fadeSlideUp 0.9s ease both; }
  .hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    background:linear-gradient(135deg,rgba(26,111,196,0.07),rgba(56,201,168,0.07));
    border:1px solid rgba(26,111,196,0.14); padding:6px 16px;
    border-radius:50px; font-size:0.76rem; font-weight:600;
    color:var(--blue-main); letter-spacing:0.5px; text-transform:uppercase; margin-bottom:22px;
  }
  .hero-badge::before { content:'●'; color:var(--mint-mid); font-size:0.6rem; animation:pulse 2s infinite; }
  .hero h1 { font-size:clamp(2.3rem,4vw,3.5rem); margin-bottom:18px; }
  .hero-sub { font-size:1rem; line-height:1.75; max-width:480px; margin-bottom:34px; }
  .hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
  .blob { position:absolute; border-radius:50%; filter:blur(80px); opacity:0.3; pointer-events:none; }
  .blob-1 { width:400px; height:400px; background:var(--blue-soft); top:-100px; right:-100px; }
  .blob-2 { width:300px; height:300px; background:var(--mint-mid); bottom:-50px; right:200px; opacity:0.15; }

  /* ── BUTTONS ── */
  .btn-primary {
    background:linear-gradient(135deg,var(--blue-main),var(--blue-dark));
    color:white; border:none; padding:13px 28px; border-radius:50px;
    font-size:0.9rem; font-weight:600; cursor:pointer;
    box-shadow:0 6px 25px rgba(26,111,196,0.32);
    transition:transform 0.25s cubic-bezier(.34,1.4,.64,1),box-shadow 0.25s; font-family:'Inter',sans-serif;
    text-decoration:none; display:inline-block;
  }
  .btn-primary:hover { transform:translateY(-4px) scale(1.04); box-shadow:0 14px 40px rgba(26,111,196,0.48); }
  .btn-secondary {
    background:white; color:var(--blue-main);
    border:2px solid rgba(26,111,196,0.18); padding:11px 26px;
    border-radius:50px; font-size:0.9rem; font-weight:600; cursor:pointer;
    transition:all 0.3s cubic-bezier(.34,1.2,.64,1); font-family:'Inter',sans-serif; text-decoration:none; display:inline-block;
  }
  .btn-secondary:hover { border-color:var(--blue-main); background:var(--sky); transform:translateY(-3px); box-shadow:0 8px 24px rgba(26,111,196,0.18); }

  /* ── ORBIT SYSTEM ── */
  .orbit-system { position:relative; width:480px; height:480px; animation:fadeIn 1.2s ease both 0.3s; margin:auto; flex-shrink:0; }

  /* ── ORBIT CENTER LOGO ── */
  .orbit-core {
    position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:124px; height:124px;
    border-radius:50%;
    background:linear-gradient(145deg,#0a3a7a 0%,#1a6fc4 45%,#00c4e8 100%);
    display:flex; align-items:center; justify-content:center; flex-direction:column;
    box-shadow:
      0 0 0 3px rgba(255,255,255,0.18),
      0 0 0 7px rgba(26,111,196,0.22),
      0 0 0 14px rgba(0,184,217,0.10),
      0 0 55px rgba(26,111,196,0.48),
      0 0 110px rgba(0,196,232,0.22);
    z-index:10; overflow:hidden;
    animation:orbitCorePulse 3s ease-in-out infinite;
  }
  @keyframes orbitCorePulse {
    0%,100% { box-shadow:0 0 0 3px rgba(255,255,255,0.18),0 0 0 7px rgba(26,111,196,0.22),0 0 0 14px rgba(0,184,217,0.10),0 0 55px rgba(26,111,196,0.48),0 0 110px rgba(0,196,232,0.22); }
    50% { box-shadow:0 0 0 3px rgba(255,255,255,0.28),0 0 0 10px rgba(26,111,196,0.30),0 0 0 20px rgba(0,184,217,0.14),0 0 70px rgba(26,111,196,0.60),0 0 140px rgba(0,196,232,0.30); }
  }
  .orbit-core::before {
    content:'';
    position:absolute; top:-10px; left:-10px;
    width:60%; height:55%;
    background:radial-gradient(circle,rgba(255,255,255,0.30) 0%,transparent 70%);
    border-radius:50%; pointer-events:none;
  }
  .orbit-core-icon { display:flex; align-items:center; justify-content:center; position:relative; z-index:2; }
  .orbit-core-text { display:none; }

  /* === ORBIT RINGS — ring width 200/320/440, dots centred ON line === */
  .orbit-ring {
    position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    border:1.5px solid rgba(26,111,196,0.18);
  }
  /* Different speeds: ring1=10s, ring2=18s(reverse), ring3=28s */
  .orbit-ring-1 { width:200px; height:200px; animation:rotateOrbit 10s linear infinite; }
  .orbit-ring-2 { width:320px; height:320px; animation:rotateOrbit 18s linear infinite reverse; }
  .orbit-ring-3 { width:440px; height:440px; animation:rotateOrbit 28s linear infinite; }

  /* dot-wrap: origin at ring centre, translateX = ring-radius → dot centre lands ON ring */
  .dot-wrap {
    position:absolute; top:50%; left:50%;
    width:0; height:0;
  }
  /* dot-inner: radius 24px → margin -24px centres it on the ring line */
  .dot-inner {
    position:absolute;
    width:48px; height:48px;
    margin-top:-24px; margin-left:-24px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    flex-direction:column; gap:2px;
    box-shadow:0 4px 18px rgba(26,111,196,0.28);
    cursor:pointer; color:white; font-weight:700;
    border:2px solid rgba(255,255,255,0.30);
    transition:transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
  }
  .dot-inner:hover {
    transform:scale(1.6) !important;
    box-shadow:0 10px 38px rgba(26,111,196,0.65);
    z-index:50;
  }
  .dot-inner span { font-size:1.1rem; display:block; line-height:1; }
  .dot-inner label { font-size:0.44rem; font-weight:700; letter-spacing:0.4px; white-space:nowrap; display:block; cursor:pointer; margin-top:1px; }

  /* Ring 1 — radius=100px (half of 200) → translateX(100px), dot 48px → margin-left:-24px */
  .r1 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(100px); }
  .r1 .dot-wrap:nth-child(1) .dot-inner { animation:counterRotate1 10s linear infinite; background:linear-gradient(135deg,#1a6fc4,#00b8d9); }
  .r1 .dot-wrap:nth-child(2) { transform:rotate(180deg) translateX(100px); }
  .r1 .dot-wrap:nth-child(2) .dot-inner { animation:counterRotate1 10s linear infinite; background:linear-gradient(135deg,#38c9a8,#00b8d9); }

  /* Ring 2 — radius=160px (half of 320) → translateX(160px) */
  .r2 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(160px); }
  .r2 .dot-wrap:nth-child(1) .dot-inner { animation:counterRotate2 18s linear infinite; background:linear-gradient(135deg,#a78bfa,#60a5fa); }
  .r2 .dot-wrap:nth-child(2) { transform:rotate(120deg) translateX(160px); }
  .r2 .dot-wrap:nth-child(2) .dot-inner { animation:counterRotate2 18s linear infinite; background:linear-gradient(135deg,#ffc947,#ff6b6b); }
  .r2 .dot-wrap:nth-child(3) { transform:rotate(240deg) translateX(160px); }
  .r2 .dot-wrap:nth-child(3) .dot-inner { animation:counterRotate2 18s linear infinite; background:linear-gradient(135deg,#38c9a8,#1a6fc4); }

  /* Ring 3 — radius=220px (half of 440) → translateX(220px), dots 40px → margin-left:-20px */
  .r3 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(220px); }
  .r3 .dot-wrap:nth-child(1) .dot-inner { animation:counterRotate3 28s linear infinite; background:linear-gradient(135deg,#ff6b6b,#ffc947); width:40px;height:40px;margin-top:-20px;margin-left:-20px;border-radius:50%; }
  .r3 .dot-wrap:nth-child(2) { transform:rotate(90deg) translateX(220px); }
  .r3 .dot-wrap:nth-child(2) .dot-inner { animation:counterRotate3 28s linear infinite; background:linear-gradient(135deg,#0d4a8f,#1a6fc4); width:40px;height:40px;margin-top:-20px;margin-left:-20px;border-radius:50%; }
  .r3 .dot-wrap:nth-child(3) { transform:rotate(180deg) translateX(220px); }
  .r3 .dot-wrap:nth-child(3) .dot-inner { animation:counterRotate3 28s linear infinite; background:linear-gradient(135deg,#a78bfa,#7c3aed); width:40px;height:40px;margin-top:-20px;margin-left:-20px;border-radius:50%; }
  .r3 .dot-wrap:nth-child(4) { transform:rotate(270deg) translateX(220px); }
  .r3 .dot-wrap:nth-child(4) .dot-inner { animation:counterRotate3 28s linear infinite; background:linear-gradient(135deg,#38c9a8,#0891b2); width:40px;height:40px;margin-top:-20px;margin-left:-20px;border-radius:50%; }

  /* ── STATS BAR ── */
  .stats-bar {
    background:white; border-radius:var(--radius); box-shadow:var(--shadow);
    padding:36px 5%; margin:0 5% 60px;
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
    border:1px solid var(--grey-light);
  }
  .stat-item { text-align:center; padding:16px 10px; position:relative; }
  .stat-item:not(:last-child)::after {
    content:''; position:absolute; right:0; top:20%; bottom:20%;
    width:1px; background:var(--grey-light);
  }
  .stat-num { font-family:'Inter',sans-serif; font-size:2.6rem; font-weight:800; line-height:1; margin-bottom:5px; }
  .stat-label { font-size:0.82rem; color:var(--text-light); font-weight:400; }

  /* ── SECTIONS ── */
  section { padding:70px 5%; }
  .section-tag {
    display:block; width:fit-content; max-width:100%; font-size:0.71rem; font-weight:600;
    letter-spacing:1.5px; text-transform:uppercase; color:var(--cyan); margin-bottom:10px;
  }
  [style*="text-align:center"] > .section-tag { margin-left:auto; margin-right:auto; }
  .section-title { font-size:clamp(1.7rem,3vw,2.4rem); margin-bottom:14px; }
  .section-sub { font-size:0.96rem; line-height:1.75; max-width:560px; margin-bottom:46px; }

  /* ── CARDS ── */
  .cards-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:22px; }
  .cards-grid:not([style]) { grid-template-columns:repeat(3,1fr); max-width:1080px; margin-left:auto; margin-right:auto; }
  .card {
    background:white; border-radius:var(--radius); padding:30px 26px;
    border:1px solid var(--grey-light); box-shadow:var(--shadow);
    transition:transform 0.35s cubic-bezier(.34,1.2,.64,1),box-shadow 0.35s,border-color 0.3s; position:relative; overflow:hidden;
  }
  .card::before {
    content:''; position:absolute; top:0; left:0; right:0;
    height:3px; background:linear-gradient(90deg,var(--blue-main),var(--cyan));
    opacity:0; transition:opacity 0.3s;
  }
  .card:hover { transform:translateY(-8px) scale(1.02); box-shadow:0 24px 70px rgba(26,111,196,0.22); border-color:rgba(26,111,196,0.2); }
  .card:hover::before { opacity:1; }

  /* ── HEADING GRADIENT BACKGROUNDS ── */
  .section-title {
    background: linear-gradient(120deg, rgba(200,230,255,0.6) 0%, rgba(180,255,235,0.4) 50%, rgba(220,240,255,0.6) 100%);
    padding: 5px 16px 7px;
    border-radius: 10px;
    display: inline-block;
  }

  /* ── ENHANCED CARD HOVER ── */
  .card-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:16px; transition: transform 0.3s; }
  .card:hover .card-icon { transform: scale(1.12) rotate(-3deg); }
  .card h3 { font-family:'Inter',sans-serif; font-size:1.05rem; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
  .card p { font-size:0.86rem; line-height:1.65; }

  /* ── TESTIMONIAL MARQUEE ── */
  .testimonials-marquee-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0 20px;
  }
  .testimonials-marquee-wrap::before,
  .testimonials-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .testimonials-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--sky), transparent);
  }
  .testimonials-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--sky), transparent);
  }
  .testimonials-marquee {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
  }
  .testimonials-marquee:hover { animation-play-state: paused; }
  .testimonials-marquee .testimonial {
    width: 320px;
    flex-shrink: 0;
  }
  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── TESTIMONIALS GRID (legacy, kept for other pages) ── */
  .testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:22px; }
  .testimonial {
    background:white; border-radius:var(--radius); padding:26px;
    border:1px solid var(--grey-light); box-shadow:var(--shadow); position:relative;
    transition: transform 0.3s cubic-bezier(.34,1.2,.64,1), box-shadow 0.3s;
  }
  .testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .testimonial::before {
    content:'"'; position:absolute; top:-8px; left:18px;
    font-size:5rem; font-family:'Inter',sans-serif; color:var(--blue-soft); line-height:1;
  }
  .testimonial-text { font-size:0.88rem; line-height:1.72; margin-bottom:18px; font-style:italic; }
  .testimonial-author { display:flex; align-items:center; gap:11px; }
  .author-avatar { width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.1rem; font-weight:700; color:white; font-family:'Inter',sans-serif; }
  .author-name { font-weight:600; font-size:0.88rem; color:var(--text-dark); }
  .author-role { font-size:0.76rem; color:var(--text-light); }
  .stars { color:#ffc947; font-size:0.78rem; margin-bottom:3px; }

  /* ── TECH TAG HOVER ── */
  .tech-tag:hover { background: var(--blue-soft); transform: translateY(-2px); }

  /* ── SERVICE HERO ── */
  .service-hero {
    background:linear-gradient(135deg,var(--blue-main),var(--blue-dark));
    border-radius:22px; padding:56px; color:white; margin-bottom:56px;
    position:relative; overflow:hidden;
  }
  .service-hero::after { content:''; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%; border:1px solid rgba(255,255,255,0.09); }
  .service-hero h1 { font-size:2.2rem; margin-bottom:14px; color:white; }
  .service-hero .page-h1, .about-hero .page-h1 { font-size:2.2rem; margin-bottom:14px; color:white; font-weight:700; line-height:1.2; position:relative; z-index:1; }
  .service-hero p { font-size:0.96rem; color:white !important; opacity:1; max-width:600px; }

  /* ── PROCESS STEPS ── */
  .process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
  .process-steps::after { content:''; position:absolute; top:32px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,var(--blue-main),var(--cyan)); }
  .process-step { text-align:center; padding:18px; position:relative; z-index:1; }
  .step-num { width:62px; height:62px; border-radius:50%; background:var(--grad); color:white; font-family:'Inter',sans-serif; font-weight:800; font-size:1.7rem; line-height:1; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; box-shadow:0 6px 20px rgba(26,111,196,0.28); }
  .step-title { font-family:'Inter',sans-serif; font-weight:700; font-size:0.92rem; margin-bottom:5px; color:var(--text-dark); }
  .step-desc { font-size:0.8rem; line-height:1.55; }

  /* ── TECH TAGS ── */
  .tech-tags { display:flex; flex-wrap:wrap; gap:9px; margin-top:18px; }
  .tech-tag { background:var(--sky); border:1px solid rgba(26,111,196,0.14); color:var(--blue-main); padding:5px 13px; border-radius:50px; font-size:0.78rem; font-weight:500; }

  /* ── PROJECTS ── */
  .projects-list { display:flex; flex-direction:column; gap:16px; }
  .project-card {
    background:white; border-radius:var(--radius); padding:24px;
    border:1px solid var(--grey-light); box-shadow:var(--shadow);
    display:grid; grid-template-columns:auto 1fr auto; gap:18px; align-items:center;
    transition:transform 0.3s cubic-bezier(.34,1.2,.64,1), box-shadow 0.3s, border-color 0.3s;
  }
  .project-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(26,111,196,0.2); }
  .project-num { width:46px; height:46px; border-radius:13px; background:var(--grad); color:white; font-family:'Inter',sans-serif; font-weight:800; font-size:1rem; display:flex; align-items:center; justify-content:center; }
  .project-title { font-family:'Inter',sans-serif; font-size:1rem; font-weight:700; margin-bottom:3px; color:var(--text-dark); }
  .project-desc { font-size:0.84rem; }
  .project-badge { padding:5px 13px; border-radius:50px; font-size:0.73rem; font-weight:600; white-space:nowrap; }
  .badge-done { background:rgba(56,201,168,0.10); color:var(--mint-mid); }
  .badge-ongoing { background:rgba(255,201,71,0.10); color:#d97706; }
  .badge-international { background:rgba(26,111,196,0.08); color:var(--blue-main); }

  /* ── ABOUT PAGE ── */
  .about-hero {
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
    border-radius: 22px; padding: 60px 56px; color: white; margin-bottom: 56px;
    position: relative; overflow: hidden;
  }
  .about-hero::before { content:''; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; border:1px solid rgba(255,255,255,0.08); }
  .about-hero::after  { content:''; position:absolute; left:-50px; bottom:-50px; width:200px; height:200px; border-radius:50%; border:1px solid rgba(255,255,255,0.06); }
  .about-hero h1 { font-size:2.4rem; color:white; margin-bottom:12px; position:relative; z-index:1; }
  .about-hero p  { font-size:1rem; color:rgba(255,255,255,0.88); max-width:620px; line-height:1.8; position:relative; z-index:1; }

  .vm-grid { display:grid; grid-template-columns:1fr; gap:28px; margin-bottom:56px; }
  .vm-card {
    border-radius: var(--radius); padding: 40px 36px;
    position: relative; overflow: hidden;
    border: 1px solid var(--grey-light); box-shadow: var(--shadow);
  }
  .vm-card-vision { background: linear-gradient(135deg, #eaf6ff 0%, #d4f0fb 100%); }
  .vm-card-mission { background: linear-gradient(135deg, #e8fff8 0%, #d0f7ed 100%); }
  .vm-icon { font-size: 2.8rem; margin-bottom: 16px; display:block; }
  .vm-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-main); margin-bottom: 8px; }
  .vm-card h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
  .vm-card p  { font-size: 0.92rem; line-height: 1.78; color: var(--text-body); }
  .vm-card-mission .vm-label { color: var(--mint-mid); }

  .why-us-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:56px; }
  .why-card {
    background:white; border-radius:var(--radius); padding:28px 24px;
    border:1px solid var(--grey-light); box-shadow:var(--shadow);
    text-align:center; transition: transform 0.3s, box-shadow 0.3s;
  }
  .why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
  .why-card .why-icon { font-size:2rem; margin-bottom:12px; display:block; }
  .why-card h3 { font-size:1rem; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
  .why-card p  { font-size:0.84rem; line-height:1.65; }

  .portfolio-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:22px; margin-bottom:56px; }
  .portfolio-card {
    background:white; border-radius:var(--radius); padding:28px 24px;
    border:1px solid var(--grey-light); box-shadow:var(--shadow);
    border-left: 4px solid var(--blue-main);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .portfolio-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
  .portfolio-card-header { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
  .portfolio-flag { font-size:1.5rem; }
  .portfolio-country { font-size:0.72rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--blue-main); }
  .portfolio-card h3 { font-size:1rem; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
  .portfolio-card p  { font-size:0.84rem; line-height:1.65; margin-bottom:12px; }
  .portfolio-tags { display:flex; flex-wrap:wrap; gap:6px; }
  .portfolio-tag { background:var(--sky); color:var(--blue-main); font-size:0.72rem; font-weight:600; padding:3px 10px; border-radius:50px; border:1px solid rgba(26,111,196,0.12); }

  .timeline { position:relative; padding-left:32px; margin-bottom:56px; }
  .timeline::before { content:''; position:absolute; left:10px; top:0; bottom:0; width:2px; background:linear-gradient(to bottom, var(--blue-main), var(--cyan)); }
  .timeline-item { position:relative; margin-bottom:32px; }
  .timeline-dot { position:absolute; left:-26px; top:4px; width:14px; height:14px; border-radius:50%; background:var(--grad); box-shadow:0 0 0 3px rgba(26,111,196,0.18); }
  .timeline-year { font-size:0.72rem; font-weight:700; letter-spacing:1.5px; color:var(--blue-main); text-transform:uppercase; margin-bottom:4px; }
  .timeline-item h3 { font-size:1rem; font-weight:700; color:var(--text-dark); margin-bottom:5px; }
  .timeline-item p  { font-size:0.86rem; line-height:1.65; }

  .global-presence { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-bottom:48px; }
  .country-card { background:white; border-radius:14px; padding:20px 12px; text-align:center; border:1px solid var(--grey-light); box-shadow:var(--shadow); }
  .country-card .flag { font-size:2rem; margin-bottom:8px; display:block; }
  .country-card .cname { font-size:0.82rem; font-weight:700; color:var(--text-dark); }
  .country-card .ctype { font-size:0.72rem; color:var(--text-light); }

  /* ── CONTACT ── */
  .contact-wrap { max-width:760px; margin:0 auto; }
  .contact-email-card {
    background:white; border-radius:var(--radius); padding:50px 44px;
    border:1px solid var(--grey-light); box-shadow:var(--shadow-lg); text-align:center; margin-bottom:40px;
  }
  .contact-email-card .email-icon { font-size:3rem; margin-bottom:18px; }
  .contact-email-card h3 { font-family:'Inter',sans-serif; font-size:1.4rem; font-weight:700; color:var(--text-dark); margin-bottom:10px; }
  .contact-email-card p { font-size:0.92rem; margin-bottom:28px; max-width:480px; margin-left:auto; margin-right:auto; }
  .email-btn {
    display:inline-flex; align-items:center; gap:10px;
    background:var(--grad); color:white;
    padding:15px 36px; border-radius:50px;
    font-size:0.96rem; font-weight:600;
    text-decoration:none; font-family:'Inter',sans-serif;
    box-shadow:0 6px 25px rgba(26,111,196,0.32);
    transition:transform 0.2s, box-shadow 0.2s;
  }
  .email-btn:hover { transform:translateY(-3px); box-shadow:0 10px 35px rgba(26,111,196,0.42); }
  .contact-details-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
  .contact-detail-card { background:white; border-radius:var(--radius); padding:22px; border:1px solid var(--grey-light); box-shadow:var(--shadow); text-align:center; }
  .contact-detail-card .icon { font-size:1.6rem; margin-bottom:8px; }
  .contact-detail-card strong { display:block; font-family:'Inter',sans-serif; font-size:0.85rem; font-weight:700; color:var(--text-dark); margin-bottom:4px; }
  .contact-detail-card span { font-size:0.82rem; }

  /* ── BI CHART ── */
  .bi-chart-demo { background:white; border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); border:1px solid var(--grey-light); }
  .bar-chart { display:flex; align-items:flex-end; gap:10px; height:150px; margin-top:14px; }
  .bar-group { display:flex; align-items:flex-end; gap:4px; flex:1; }
  .bar { flex:1; border-radius:6px 6px 0 0; }
  .bar-a { background:linear-gradient(to top,var(--blue-main),var(--cyan)); }
  .bar-b { background:linear-gradient(to top,var(--mint-mid),rgba(56,201,168,0.35)); }

  /* ── FOOTER ── */
  footer { background:var(--text-dark); color:white; padding:56px 5% 28px; margin-top:70px; }
  .footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:46px; margin-bottom:46px; }
  .footer-brand .logo-wrap { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
  .footer-brand .logo-wrap img { height:92px; width:auto; }
  .footer-brand p { font-size:0.83rem; color:rgba(255,255,255,0.5); line-height:1.7; max-width:280px; }
  .footer-col h4 { font-family:'Inter',sans-serif; font-size:0.82rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px; color:rgba(255,255,255,0.38); }
  .footer-col a { display:block; font-size:0.83rem; color:rgba(255,255,255,0.6); text-decoration:none; margin-bottom:9px; transition:color 0.2s; cursor:pointer; }
  .footer-col a:hover { color:var(--cyan); }
  .footer-bottom { border-top:1px solid rgba(255,255,255,0.07); padding-top:22px; display:flex; justify-content:space-between; align-items:center; }
  .footer-bottom p { font-size:0.78rem; color:rgba(255,255,255,0.32); }

  /* ── ANIMATIONS ── */
  @keyframes rotateOrbit { from { transform:translate(-50%,-50%) rotate(0deg); } to { transform:translate(-50%,-50%) rotate(360deg); } }
  /* counter-rotate so dots always face up — match ring speeds */
  @keyframes counterRotate1 { from { transform:rotate(0deg); } to { transform:rotate(-360deg); } }
  @keyframes counterRotate2 { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
  @keyframes counterRotate3 { from { transform:rotate(0deg); } to { transform:rotate(-360deg); } }
  @keyframes fadeSlideUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

  .animate-up { animation:fadeSlideUp 0.7s ease both; }
  .animate-up-2 { animation:fadeSlideUp 0.7s ease 0.15s both; }
  .animate-up-3 { animation:fadeSlideUp 0.7s ease 0.3s both; }

  /* ══════════════════════════════════════════
     RESPONSIVE — MOBILE FIRST
  ══════════════════════════════════════════ */

  /* Hamburger menu button */
  .nav-hamburger {
    display:none; flex-direction:column; gap:5px; cursor:pointer;
    background:none; border:none; padding:8px; z-index:1100;
  }
  .nav-hamburger span {
    display:block; width:24px; height:2.5px;
    background:var(--text-dark); border-radius:2px;
    transition:transform 0.3s, opacity 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity:0; }
  .nav-hamburger.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

  /* Tablet ≤ 1024px */
  @media(max-width:1024px){
    .hero { gap:30px; }
    /* Scale orbit to 80%: 480→384, rings 200→160, 320→256, 440→352 */
    .orbit-system { width:384px; height:384px; }
    .orbit-ring-1 { width:160px; height:160px; }
    .orbit-ring-2 { width:256px; height:256px; }
    .orbit-ring-3 { width:352px; height:352px; }
    /* radii: 80, 128, 176 */
    .r1 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(80px); }
    .r1 .dot-wrap:nth-child(2) { transform:rotate(180deg) translateX(80px); }
    .r2 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(128px); }
    .r2 .dot-wrap:nth-child(2) { transform:rotate(120deg) translateX(128px); }
    .r2 .dot-wrap:nth-child(3) { transform:rotate(240deg) translateX(128px); }
    .r3 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(176px); }
    .r3 .dot-wrap:nth-child(2) { transform:rotate(90deg) translateX(176px); }
    .r3 .dot-wrap:nth-child(3) { transform:rotate(180deg) translateX(176px); }
    .r3 .dot-wrap:nth-child(4) { transform:rotate(270deg) translateX(176px); }
    .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
    .process-steps { grid-template-columns:repeat(2,1fr); }
    .process-steps::after { display:none; }
    .cards-grid:not([style]) { grid-template-columns:repeat(2,1fr); max-width:720px; }
  }

  /* Mobile ≤ 768px */
  @media(max-width:768px){
    /* Nav mobile */
    nav { height:64px; padding:0 4%; }
    .nav-logo img { height:80px; margin-top:10px; }
    .nav-hamburger { display:flex; }
    .nav-links {
      display:flex; flex-direction:column; align-items:flex-start;
      position:fixed; top:64px; left:0; right:0;
      background:rgba(255,255,255,0.98); backdrop-filter:blur(20px);
      padding:20px 5% 28px; gap:4px;
      border-bottom:1px solid var(--grey-light);
      box-shadow:0 12px 40px rgba(26,111,196,0.14);
      transform:translateY(-110%); opacity:0;
      transition:transform 0.35s cubic-bezier(.34,1.2,.64,1), opacity 0.3s;
      z-index:999;
    }
    .nav-links.open { transform:translateY(0); opacity:1; }
    .nav-links li { width:100%; }
    .nav-links a { display:block; padding:11px 14px; font-size:0.96rem; border-radius:10px; }
    .nav-cta { display:inline-block !important; margin-top:8px; text-align:center; }
    .has-sub > a::after { float:right; }
    .sub-menu { position:static; box-shadow:none; border:none; background:var(--sky); margin-top:4px; border-radius:12px; }
    .has-sub:hover .sub-menu { display:block; }

    /* Hero */
    .page { padding-top:64px; }
    .hero {
      grid-template-columns:1fr; text-align:center;
      padding:30px 4% 20px; gap:30px;
      min-height:calc(100vh - 64px);
    }
    .hero h1 { font-size:clamp(1.8rem,7vw,2.6rem); }
    .hero-sub { margin:0 auto 24px; font-size:0.9rem; }
    .hero-btns { justify-content:center; flex-wrap:wrap; gap:10px; }
    .hero-btns a { width:100%; max-width:260px; text-align:center; }

    /* Orbit — 58% scale: 480→280, rings 200→116, 320→186, 440→256 */
    .orbit-system { width:280px; height:280px; }
    .orbit-core { width:80px; height:80px; }
    .orbit-ring-1 { width:116px; height:116px; }
    .orbit-ring-2 { width:186px; height:186px; }
    .orbit-ring-3 { width:256px; height:256px; }
    /* dot 38px → margin -19px; radii: 58, 93, 128 */
    .dot-inner { width:36px; height:36px; margin-top:-18px; margin-left:-18px; }
    .dot-inner span { font-size:0.85rem; }
    .dot-inner label { display:none; }
    .r1 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(58px); }
    .r1 .dot-wrap:nth-child(2) { transform:rotate(180deg) translateX(58px); }
    .r2 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(93px); }
    .r2 .dot-wrap:nth-child(2) { transform:rotate(120deg) translateX(93px); }
    .r2 .dot-wrap:nth-child(3) { transform:rotate(240deg) translateX(93px); }
    .r3 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(128px); }
    .r3 .dot-wrap:nth-child(2) { transform:rotate(90deg) translateX(128px); }
    .r3 .dot-wrap:nth-child(3) { transform:rotate(180deg) translateX(128px); }
    .r3 .dot-wrap:nth-child(4) { transform:rotate(270deg) translateX(128px); }
    .r3 .dot-wrap .dot-inner { width:30px; height:30px; margin-top:-15px; margin-left:-15px; }

    /* Sections */
    section { padding:40px 4%; }
    .section-title { font-size:clamp(1.4rem,5vw,1.9rem); }

    /* Stats */
    .stats-bar { grid-template-columns:repeat(2,1fr); margin:0 4% 40px; padding:24px 4%; }
    .stat-num { font-size:2rem; }

    /* Cards */
    .cards-grid:not([style]) { grid-template-columns:1fr; max-width:420px; }
    .card { padding:22px 18px; }

    /* About grid */
    section > div[style*="grid-template-columns:1fr 1fr"] {
      display:block !important;
    }
    div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns:1fr !important;
    }
    div[style*="grid-template-columns:repeat(3,1fr)"] {
      grid-template-columns:1fr !important;
    }
    div[style*="grid-template-columns:1fr 1fr;gap:14px"] {
      grid-template-columns:1fr 1fr !important;
    }

    /* Process steps */
    .process-steps { grid-template-columns:1fr; gap:16px; }
    .process-steps::after { display:none; }

    /* Footer */
    footer { padding:40px 4% 20px; margin-top:40px; }
    .footer-grid { grid-template-columns:1fr; gap:28px; }
    .footer-brand .logo-wrap img { height:70px; }
    .footer-bottom { flex-direction:column; gap:8px; text-align:center; }

    /* Contact */
    .contact-details-grid { grid-template-columns:1fr; }
    .contact-email-card { padding:32px 20px; }

    /* Service hero */
    .service-hero { padding:36px 20px; margin-bottom:36px; }
    .service-hero h1 { font-size:clamp(1.4rem,5vw,2rem); }
    .service-hero .page-h1, .about-hero .page-h1 { font-size:clamp(1.4rem,5vw,2rem); }

    /* BI chart */
    .bi-chart-demo { padding:18px; }

    /* Projects */
    .project-card { grid-template-columns:auto 1fr; }
    .project-card > .project-badge { grid-column:1/-1; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns:1fr; }

    /* Paperless grid in HIMS */
    div[style*="grid-template-columns:repeat(auto-fit,minmax(200px,1fr))"] {
      grid-template-columns:1fr !important;
    }
  }

  /* Small phones ≤ 480px */
  @media(max-width:480px){
    .nav-logo img { height:64px; margin-top:6px; }
    .hero h1 { font-size:1.7rem; }
    .stats-bar { grid-template-columns:1fr 1fr; padding:18px; }
    .stat-num { font-size:1.7rem; }
    /* ≤480 — 48% scale: rings 96/154/211 */
    .orbit-system { width:230px; height:230px; }
    .orbit-core { width:62px; height:62px; }
    .orbit-ring-1 { width:96px; height:96px; }
    .orbit-ring-2 { width:154px; height:154px; }
    .orbit-ring-3 { width:211px; height:211px; }
    /* radii: 48, 77, 105 — dots 28px → margin -14px */
    .dot-inner { width:28px; height:28px; margin-top:-14px; margin-left:-14px; }
    .dot-inner span { font-size:0.7rem; }
    .r1 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(48px); }
    .r1 .dot-wrap:nth-child(2) { transform:rotate(180deg) translateX(48px); }
    .r2 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(77px); }
    .r2 .dot-wrap:nth-child(2) { transform:rotate(120deg) translateX(77px); }
    .r2 .dot-wrap:nth-child(3) { transform:rotate(240deg) translateX(77px); }
    .r3 .dot-wrap:nth-child(1) { transform:rotate(0deg) translateX(105px); }
    .r3 .dot-wrap:nth-child(2) { transform:rotate(90deg) translateX(105px); }
    .r3 .dot-wrap:nth-child(3) { transform:rotate(180deg) translateX(105px); }
    .r3 .dot-wrap:nth-child(4) { transform:rotate(270deg) translateX(105px); }
    .r3 .dot-wrap .dot-inner { width:24px; height:24px; margin-top:-12px; margin-left:-12px; }
    .section-title { font-size:1.35rem; }
    .btn-primary, .btn-secondary { padding:11px 20px; font-size:0.85rem; }
    .hero-btns a { max-width:220px; }
  }

  /* ═══ SCROLL TO TOP BUTTON ═══ */
  #scrollTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-main), var(--cyan));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26,111,196,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
    z-index: 9999;
  }
  #scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  #scrollTopBtn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 28px rgba(26,111,196,0.6);
  }
  #scrollTopBtn svg {
    width: 22px;
    height: 22px;
    fill: white;
  }
  #scrollTopBtn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transition: opacity 0.2s;
  }
  #scrollTopBtn:active::after { opacity: 0.15; }

  /* ═══ CONTACT FORM BUTTON ═══ */
  .contact-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(26,111,196,0.4);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: cfPulse 2.5s ease-in-out infinite;
  }
  @keyframes cfPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(26,111,196,0.4); }
    50% { box-shadow: 0 6px 32px rgba(26,111,196,0.7), 0 0 0 8px rgba(26,111,196,0.08); }
  }
  .contact-form-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 36px rgba(26,111,196,0.6);
    animation: none;
    color: white;
    text-decoration: none;
  }
  .contact-form-btn svg { width: 26px; height: 26px; stroke: white; fill: none; flex-shrink: 0; }
  .contact-form-btn span { line-height: 1.2; }
  .contact-form-btn small { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.78rem; opacity: 0.9; }

  /* ═══ GREETING SECTION ═══ */
  .greeting-card {
    background: linear-gradient(135deg, rgba(26,111,196,0.06), rgba(0,184,217,0.06));
    border: 1.5px solid rgba(26,111,196,0.15);
    border-radius: var(--radius);
    padding: 36px 40px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
  }
  .greeting-card::before {
    content: '❝';
    position: absolute;
    top: -12px;
    left: 24px;
    font-size: 5rem;
    color: var(--blue-main);
    opacity: 0.08;
    line-height: 1;
    font-family: Georgia, serif;
  }
  .greeting-card .greeting-tag {
    display: inline-block;
    background: var(--blue-main);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .greeting-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .greeting-card p {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 10px;
  }
  .greeting-card .greeting-sig {
    margin-top: 18px;
    font-size: 0.88rem;
    color: var(--blue-main);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
  }

  /* ═══ CUSTOM CURSOR — small rich gradient glow ═══ */
  #cursorGlow {
    position: fixed;
    top: 0; left: 0;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
                rgba(0,184,217,0.30) 0%,
                rgba(26,111,196,0.20) 34%,
                rgba(56,201,168,0.10) 60%,
                transparent 74%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    will-change: transform;
    filter: blur(3px);
    mix-blend-mode: multiply;
    transition: opacity .3s ease;
  }
  /* Hide custom cursor on touch / small screens (no mouse) */
  @media (hover: none), (max-width: 768px) {
    #cursorGlow { display: none !important; }
  }
  @media (prefers-reduced-motion: reduce) {
    #cursorGlow { display: none !important; }
  }

  /* ═══ COOKIE CONSENT BANNER ═══ */
  #cookieBanner {
    position: fixed;
    left: 50%; bottom: 22px;
    transform: translateX(-50%) translateY(140%);
    width: min(720px, calc(100% - 32px));
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border: 1px solid var(--grey-light);
    box-shadow: var(--shadow-lg);
    border-radius: 18px;
    padding: 20px 24px;
    z-index: 10000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    opacity: 0;
    transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .45s ease;
  }
  #cookieBanner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
  #cookieBanner p { flex: 1 1 280px; font-size: 0.88rem; color: var(--text-body); margin: 0; line-height: 1.6; }
  #cookieBanner p a { color: var(--blue-main); text-decoration: underline; }
  #cookieBanner .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  #cookieBanner button {
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem;
    border-radius: 999px; padding: 10px 22px; cursor: pointer; border: none; transition: all .2s ease;
  }
  #cookieBanner .cookie-accept { background: var(--grad); color: #fff; }
  #cookieBanner .cookie-accept:hover { box-shadow: 0 6px 20px rgba(26,111,196,0.35); transform: translateY(-1px); }
  #cookieBanner .cookie-reject { background: var(--grey-light); color: var(--text-dark); }
  #cookieBanner .cookie-reject:hover { background: var(--blue-soft); }
  @media (max-width: 560px) { #cookieBanner .cookie-actions { width: 100%; } #cookieBanner button { flex: 1; } }

  /* ════ PRODUCTS PAGE — PRODUCT SHOWCASE ════ */
  .prod-stack { display:flex; flex-direction:column; gap:28px; max-width:1080px; margin:0 auto; }
  .prod-row {
    display:grid; grid-template-columns:0.92fr 1.08fr;
    background:white; border:1px solid var(--grey-light); border-radius:24px;
    box-shadow:var(--shadow); overflow:hidden; position:relative;
    transition:transform 0.4s cubic-bezier(.34,1.2,.64,1), box-shadow 0.4s;
  }
  .prod-row:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
  .prod-row::before { content:''; position:absolute; left:0; top:0; bottom:0; width:5px; background:var(--accent); z-index:3; }
  .prod-row.flip .prod-visual { order:2; }
  .prod-row.flip::before { left:auto; right:0; }

  .prod-visual {
    position:relative; padding:48px 40px; background:var(--accent); color:white;
    display:flex; flex-direction:column; justify-content:center; gap:16px; overflow:hidden;
  }
  .prod-visual::after {
    content:''; position:absolute; width:280px; height:280px; border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
    top:-70px; right:-70px; pointer-events:none;
  }
  .prod-watermark { position:absolute; right:-6px; bottom:-30px; font-size:8.5rem; opacity:0.13; line-height:1; pointer-events:none; }
  .prod-badge-icon {
    width:72px; height:72px; border-radius:20px; background:rgba(255,255,255,0.16);
    display:flex; align-items:center; justify-content:center; font-size:2.3rem;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,0.28); position:relative; z-index:2;
  }
  .prod-name { font-family:'Inter',sans-serif; font-weight:800; font-size:1.85rem; letter-spacing:0.4px; line-height:1; color:#fff; position:relative; z-index:2; }
  .prod-cat { font-size:0.74rem; text-transform:uppercase; letter-spacing:1.6px; color:rgba(255,255,255,0.82); font-weight:600; position:relative; z-index:2; }
  .prod-metric {
    display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.24); padding:7px 15px; border-radius:50px;
    font-size:0.76rem; font-weight:600; width:fit-content; position:relative; z-index:2;
  }

  .prod-content { padding:40px 42px; display:flex; flex-direction:column; justify-content:center; }
  .prod-content h3 { font-family:'Inter',sans-serif; font-size:1.4rem; font-weight:700; color:var(--text-dark); margin-bottom:12px; }
  .prod-content > p { font-size:0.95rem; line-height:1.7; margin-bottom:20px; }
  .prod-chips { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
  .prod-chip { font-size:0.77rem; font-weight:600; color:var(--text-body); background:var(--off-white); border:1px solid var(--grey-light); padding:6px 13px; border-radius:50px; }
  .prod-chip::before { content:'●'; color:var(--accent-solid); font-size:0.5rem; margin-right:7px; vertical-align:middle; }
  .prod-link {
    align-self:flex-start; display:inline-flex; align-items:center; gap:8px;
    font-family:'Inter',sans-serif; font-weight:700; font-size:0.9rem;
    color:var(--accent-solid); cursor:pointer; transition:gap 0.25s ease; background:none; border:none; padding:0;
  }
  .prod-link:hover { gap:14px; }

  .prod-cta {
    max-width:1080px; margin:50px auto 0;
    background:linear-gradient(135deg,var(--blue-dark),var(--blue-main));
    border-radius:24px; padding:44px 48px; display:flex; align-items:center;
    justify-content:space-between; gap:28px; flex-wrap:wrap; position:relative; overflow:hidden;
  }
  .prod-cta::after { content:''; position:absolute; width:340px; height:340px; border-radius:50%; background:radial-gradient(circle, rgba(0,196,232,0.32), transparent 70%); top:-130px; right:-70px; pointer-events:none; }
  .prod-cta-text { position:relative; z-index:2; }
  .prod-cta h3 { color:#fff; font-family:'Inter',sans-serif; font-size:1.5rem; font-weight:800; margin-bottom:6px; }
  .prod-cta p { color:rgba(255,255,255,0.84); font-size:0.92rem; max-width:520px; }
  .prod-cta .btn-secondary { background:#fff; border-color:#fff; position:relative; z-index:2; white-space:nowrap; }

  @media(max-width:860px){
    .prod-row, .prod-row.flip { grid-template-columns:1fr; }
    .prod-row.flip .prod-visual { order:0; }
    .prod-visual { padding:36px 30px; }
    .prod-content { padding:32px 28px; }
    .prod-cta { flex-direction:column; align-items:flex-start; padding:36px 30px; }
  }

/* ===== Mobile submenu: animated chevron + tap-to-expand (desktop hover unchanged) ===== */
.sub-toggle{
  display:none; background:none; border:0; padding:0; margin:0; cursor:pointer;
  -webkit-tap-highlight-color:transparent; width:36px; height:36px;
  align-items:center; justify-content:center; border-radius:50%; flex:0 0 auto;
  transition:background .2s ease, transform .2s ease;
}
.sub-toggle .chev{
  width:18px; height:18px; fill:none; stroke:var(--blue-main);
  stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round;
  transition:transform .42s cubic-bezier(.34,1.45,.5,1);
}
.has-sub.open > .sub-toggle .chev{ transform:rotate(180deg); }
.sub-toggle:active{ background:var(--blue-soft); transform:scale(.88); }

@media (max-width:768px){
  .sub-toggle{ display:inline-flex; }
  .has-sub > a::after{ content:none; }                 /* drop the little ▾, use the chevron */
  .has-sub{ display:flex; flex-wrap:wrap; align-items:center; }
  .has-sub > a{ flex:1 1 auto; }
  .has-sub > .sub-menu{ flex:1 1 100%; }
  .sub-menu{
    display:block !important; max-height:0; overflow:hidden; opacity:0;
    padding-top:0; padding-bottom:0; margin-top:0; transform:translateY(-6px);
    transition:max-height .45s cubic-bezier(.34,1.06,.5,1), opacity .3s ease,
               transform .3s ease, padding .3s ease, margin .3s ease;
  }
  .has-sub.open > .sub-menu{
    max-height:560px; opacity:1; transform:translateY(0);
    padding-top:6px; padding-bottom:6px; margin-top:6px;
  }
  /* staggered reveal of the child links */
  .sub-menu a{ opacity:0; transform:translateX(-10px); transition:opacity .3s ease, transform .35s ease; }
  .has-sub.open > .sub-menu a{ opacity:1; transform:translateX(0); }
  .has-sub.open > .sub-menu a:nth-child(1){ transition-delay:.05s; }
  .has-sub.open > .sub-menu a:nth-child(2){ transition-delay:.09s; }
  .has-sub.open > .sub-menu a:nth-child(3){ transition-delay:.13s; }
  .has-sub.open > .sub-menu a:nth-child(4){ transition-delay:.17s; }
  .has-sub.open > .sub-menu a:nth-child(5){ transition-delay:.21s; }
  .has-sub.open > .sub-menu a:nth-child(6){ transition-delay:.25s; }
}
@media (prefers-reduced-motion: reduce){
  .sub-toggle .chev, .sub-menu, .sub-menu a{ transition:none !important; }
}

