/* Growmarck — site styles (extracted & SEO-optimised from single-page build) */

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

    :root {
      --green: #43c642;
      --green-dark: #35a832;
      --blue: #1635c4;
      --blue-mid: #1e70d8;
      --blue-dark: #1028a8;
      --bg:  #f5f7ff;
      --bg2: #edf0ff;
      --bg3: #ffffff;
      --text: #0d1640;
      --muted: #4a5578;
      --border: rgba(22,53,196,0.12);
      --radius: 16px;
      --brand-gradient: linear-gradient(135deg, #1635c4 0%, #1a8fd4 50%, #43c642 100%);
      --card-shadow: 0 4px 24px rgba(22,53,196,0.08);
      --card-shadow-lg: 0 16px 48px rgba(22,53,196,0.14);
    }

    html { scroll-behavior: auto; }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── CURSOR ── */
    .cursor-dot {
      position: fixed; top: 0; left: 0; z-index: 99999;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green);
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: width .15s, height .15s, background .15s;
      mix-blend-mode: normal;
    }
    .cursor-ring {
      position: fixed; top: 0; left: 0; z-index: 99998;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid rgba(26,53,196,0.6);
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: width .3s ease, height .3s ease, border-color .3s, background .3s;
    }
    .cursor-ring.hovering {
      width: 60px; height: 60px;
      border-color: var(--green);
      background: rgba(26,53,196,0.06);
    }
    .cursor-ring.clicking {
      width: 24px; height: 24px;
      background: rgba(26,53,196,0.15);
    }

    /* ── GRAIN ── */
    .grain {
      position: fixed; inset: 0; z-index: 9990;
      pointer-events: none; opacity: 0.035;
      animation: grain-move 0.4s steps(1) infinite;
    }
    .grain::before {
      content: '';
      position: absolute; inset: -100%;
      width: 300%; height: 300%;
      background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
      background-size: 200px 200px;
    }
    @keyframes grain-move {
      0%   { transform: translate(0, 0); }
      10%  { transform: translate(-3%, -2%); }
      20%  { transform: translate(2%, 3%); }
      30%  { transform: translate(-1%, 1%); }
      40%  { transform: translate(3%, -3%); }
      50%  { transform: translate(-2%, 2%); }
      60%  { transform: translate(1%, -1%); }
      70%  { transform: translate(-3%, 3%); }
      80%  { transform: translate(2%, -2%); }
      90%  { transform: translate(-1%, 3%); }
      100% { transform: translate(0, 0); }
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 7%;
      background: rgba(245,247,255,0);
      backdrop-filter: blur(0px);
      border-bottom: 1px solid transparent;
      transition: background .4s, backdrop-filter .4s, border-color .4s;
    }
    nav.scrolled {
      background: rgba(245,247,255,0.95);
      backdrop-filter: blur(20px);
      border-color: var(--border);
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px;
      color: var(--text); text-decoration: none;
    }
    .logo span {
      background: var(--brand-gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    nav ul { list-style: none; display: flex; gap: 34px; }
    nav ul a {
      text-decoration: none; color: var(--muted); font-size: 0.9rem;
      font-weight: 500; transition: color .2s; 
    }
    nav ul a:hover { color: var(--green); }
    .nav-cta {
      background: var(--blue); color: #fff;
      padding: 10px 24px; border-radius: 50px;
      font-weight: 700; font-size: 0.85rem;
      text-decoration: none; transition: background .2s, transform .2s;
       display: inline-block;
    }
    .nav-cta:hover { background: var(--blue-dark); }
    .nav-wa {
      display: flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 50%;
      background: #25D366;
      text-decoration: none; 
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 0 16px rgba(37,211,102,0.3);
      flex-shrink: 0;
    }
    .nav-wa:hover { background: #1da851; transform: translateY(-2px) scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,0.5); }
    .nav-wa svg { width: 20px; height: 20px; }
    .nav-right { display: flex; align-items: center; gap: 10px; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 140px 7% 100px;
      position: relative; overflow: hidden;
      background: linear-gradient(160deg, #f0f4ff 0%, #e8f0ff 40%, #f0fff4 100%);
    }
    #particleCanvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
    }
    .hero-content { position: relative; z-index: 1; }

    .hero-orb {
      position: absolute; border-radius: 50%;
      pointer-events: none; filter: blur(80px); opacity: 0;
    }
    .hero-orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(22,53,196,0.15), transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    .hero-orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(67,198,66,0.10), transparent 70%);
      top: 20%; right: 10%;
    }
    .hero-orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(30,112,216,0.09), transparent 70%);
      bottom: 20%; left: 5%;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(22,53,196,0.10); border: 1px solid rgba(22,53,196,0.25);
      color: var(--text); padding: 8px 20px; border-radius: 50px;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; margin-bottom: 32px;
      position: relative; overflow: hidden;
    }
    .hero-badge::after {
      content: '';
      position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(67,198,66,0.12), transparent);
      animation: badge-shimmer 3s ease infinite 2s;
    }
    @keyframes badge-shimmer {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    .badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--green); flex-shrink: 0;
      animation: pulse-dot 2s ease infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .4; transform: scale(1.6); }
    }

    h1.hero-title {
      font-size: clamp(2.6rem, 6.5vw, 5rem);
      font-weight: 900; line-height: 1.08;
      letter-spacing: -2px; margin-bottom: 26px;
      overflow: hidden;
    }
    h1.hero-title .word { display: inline-block; overflow: hidden; margin-right: 0.25em; }
    h1.hero-title .char { display: inline-block; }
    h1.hero-title em {
      font-style: normal;
      background: var(--brand-gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      max-width: 560px; color: var(--muted); font-size: 1.05rem;
      margin: 0 auto 48px;
    }
    .hero-btns {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      margin-bottom: 72px;
    }

    .btn-primary {
      background: var(--brand-gradient); color: #fff;
      padding: 16px 38px; border-radius: 50px; font-weight: 800;
      font-size: 0.95rem; text-decoration: none; display: inline-block;
      box-shadow: 0 0 40px rgba(22,53,196,0.35);
       position: relative; overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute; inset: 0; border-radius: 50px;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      opacity: 0; transition: opacity .3s;
    }
    .btn-primary:hover::after { opacity: 1; }
    .btn-outline {
      border: 1.5px solid rgba(22,53,196,0.25); color: var(--blue);
      padding: 16px 38px; border-radius: 50px; font-weight: 600;
      font-size: 0.95rem; text-decoration: none; display: inline-block;
      
      background: rgba(22,53,196,0.04);
      transition: border-color .3s, background .3s;
    }
    .btn-outline:hover { border-color: rgba(22,53,196,0.5); background: rgba(22,53,196,0.08); }

    .hero-stats {
      display: flex; gap: 56px; justify-content: center;
      flex-wrap: wrap;
    }
    .stat { text-align: center; }
    .stat-num {
      font-size: 2.2rem; font-weight: 900;
      background: var(--brand-gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
    }
    .stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 3px; letter-spacing: 0.5px; }
    .stat-divider {
      width: 1px; background: var(--border); align-self: stretch;
    }

    /* ── SECTION BASE ── */
    section { padding: 110px 7%; }
    .section-tag {
      display: inline-block; color: var(--green); font-size: 0.72rem;
      font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
      margin-bottom: 14px;
    }
    h2 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 900; letter-spacing: -1px; margin-bottom: 14px;
    }
    h2 .word { display: inline-block; overflow: hidden; margin-right: 0.2em; }
    h2 .char { display: inline-block; }
    .section-sub { color: var(--muted); max-width: 520px; font-size: 1rem; }

    /* ── ABOUT ── */
    #about { background: var(--bg2); }
    .about-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center; max-width: 1100px; margin: 0 auto;
    }
    .about-visual {
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .about-ring {
      width: 280px; height: 280px; border-radius: 50%;
      border: 1px solid rgba(26,53,196,0.15);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .about-ring::before {
      content: ''; position: absolute; inset: -18px; border-radius: 50%;
      border: 1px dashed rgba(26,53,196,0.1);
      animation: spin-slow 20s linear infinite;
    }
    .about-ring::after {
      content: ''; position: absolute; inset: -36px; border-radius: 50%;
      border: 1px dashed rgba(26,53,196,0.06);
      animation: spin-slow 35s linear infinite reverse;
    }
    @keyframes spin-slow { to { transform: rotate(360deg); } }
    .about-inner-circle {
      width: 200px; height: 200px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(22,53,196,0.08), rgba(67,198,66,0.06));
      border: 1.5px solid rgba(22,53,196,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 4.5rem;
      box-shadow: 0 8px 32px rgba(22,53,196,0.10);
    }
    .orbit-dot {
      position: absolute; width: 10px; height: 10px; border-radius: 50%;
      background: var(--brand-gradient); box-shadow: 0 0 12px rgba(22,53,196,0.6);
    }
    .orbit-dot-1 { top: -5px; left: 50%; transform: translateX(-50%); animation: orbit1 6s linear infinite; }
    .orbit-dot-2 { bottom: -5px; right: 10px; animation: orbit2 9s linear infinite; }
    @keyframes orbit1 {
      0%   { top: -5px; left: 50%; }
      25%  { top: 50%; left: 100%; }
      50%  { top: 100%; left: 50%; }
      75%  { top: 50%; left: -5px; }
      100% { top: -5px; left: 50%; }
    }
    @keyframes orbit2 {
      0%   { bottom: -5px; right: 10px; }
      50%  { bottom: 10px; right: -5px; }
      100% { bottom: -5px; right: 10px; }
    }
    .about-text p { color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
    .about-pills {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
    }
    .pill {
      background: rgba(26,53,196,0.07); border: 1px solid rgba(26,53,196,0.18);
      color: var(--green); padding: 6px 16px; border-radius: 50px;
      font-size: 0.8rem; font-weight: 600;
      transition: background .3s, border-color .3s, transform .3s;
      
    }
    .pill:hover { background: rgba(26,53,196,0.14); transform: translateY(-2px); }

    /* ── SERVICES ── */
    #services { background: var(--bg); }
    .services-header { max-width: 1100px; margin: 0 auto 56px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px; max-width: 1100px; margin: 0 auto;
    }
    .service-card {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 32px 28px;
      
      transition: border-color .3s, box-shadow .3s;
      transform-style: preserve-3d;
      will-change: transform;
    }
    .service-card:hover {
      border-color: rgba(26,53,196,0.35);
      box-shadow: var(--card-shadow-lg);
    }
    .service-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(26,53,196,0.08); border: 1px solid rgba(26,53,196,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 20px;
      transition: transform .3s, background .3s;
    }
    .service-card:hover .service-icon {
      transform: scale(1.1) translateZ(10px);
      background: rgba(26,53,196,0.15);
    }
    .service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .service-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

    /* ── APPROACH ── */
    #approach { background: var(--bg2); }
    .approach-inner { max-width: 1100px; margin: 0 auto; }
    .approach-steps {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px; margin-top: 56px; position: relative;
    }
    .approach-steps::before {
      content: '';
      position: absolute; top: 52px; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(26,53,196,0.2), transparent);
    }
    .step {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 32px 24px; text-align: center;
      
      transition: border-color .3s, box-shadow .3s;
      transform-style: preserve-3d;
    }
    .step:hover {
      border-color: rgba(26,53,196,0.4);
      box-shadow: var(--card-shadow-lg);
    }
    .step-num {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--brand-gradient); color: #fff;
      font-weight: 900; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 0 20px rgba(22,53,196,0.4);
    }
    .step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .step p { color: var(--muted); font-size: 0.85rem; }

    /* ── WHY ── */
    #why { background: var(--bg); }
    .why-inner { max-width: 1100px; margin: 0 auto; }
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px; margin-top: 56px;
    }
    .why-card {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px 24px;
      display: flex; align-items: flex-start; gap: 18px;
      
      transition: border-color .3s, box-shadow .3s;
      transform-style: preserve-3d;
    }
    .why-card:hover {
      border-color: rgba(26,53,196,0.4);
      box-shadow: var(--card-shadow-lg);
    }
    .why-icon {
      width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
      background: rgba(26,53,196,0.08); border: 1px solid rgba(26,53,196,0.18);
      display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
      transition: transform .3s, background .3s;
    }
    .why-card:hover .why-icon { transform: scale(1.1); background: rgba(26,53,196,0.15); }
    .why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
    .why-card p { color: var(--muted); font-size: 0.84rem; line-height: 1.55; }

    /* ── INDUSTRIES ── */
    #industries { background: var(--bg2); }
    .ind-inner { max-width: 1100px; margin: 0 auto; }
    .ind-list {
      display: flex; flex-wrap: wrap; gap: 14px; margin-top: 48px;
    }
    .ind-item {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 12px; padding: 14px 24px;
      font-size: 0.92rem; font-weight: 600;
      display: flex; align-items: center; gap: 10px;
      
      transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
    }
    .ind-item:hover {
      border-color: rgba(26,53,196,0.4);
      background: rgba(26,53,196,0.06);
      transform: translateY(-3px);
      box-shadow: var(--card-shadow);
    }
    .ind-item span { font-size: 1.2rem; }

    /* ── TRUST ── */
    #trust { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 90px 7%; }
    .trust-inner { max-width: 1100px; margin: 0 auto; }
    .trust-numbers {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .trust-num-card {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 30px 20px; text-align: center;
      
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .trust-num-card:hover {
      border-color: rgba(26,53,196,0.4); transform: translateY(-4px);
      box-shadow: var(--card-shadow-lg);
    }
    .trust-big {
      font-size: 2.6rem; font-weight: 900; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      letter-spacing: -1.5px; line-height: 1;
    }
    .trust-label { color: var(--muted); font-size: 0.8rem; margin-top: 8px; }
    .trust-badges {
      display: flex; flex-wrap: wrap; gap: 14px;
      margin-top: 48px; align-items: center; justify-content: center;
    }
    .trust-badge {
      display: flex; align-items: center; gap: 10px;
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 12px; padding: 14px 22px;
      font-size: 0.84rem; font-weight: 600;
      transition: border-color .3s, transform .3s;
      
    }
    .trust-badge:hover { border-color: rgba(26,53,196,0.3); transform: translateY(-2px); }
    .trust-badge span { font-size: 1.2rem; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--bg); }
    .testi-inner { max-width: 1100px; margin: 0 auto; }
    .testi-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px; margin-top: 56px;
    }
    .testi-card {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 32px 28px;
      display: flex; flex-direction: column; gap: 20px;
      
      transition: border-color .3s, box-shadow .3s;
      transform-style: preserve-3d;
      position: relative; overflow: hidden;
    }
    .testi-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
      opacity: 0; transition: opacity .3s;
    }
    .testi-card:hover { border-color: rgba(26,53,196,0.35); box-shadow: var(--card-shadow-lg); }
    .testi-card:hover::before { opacity: 1; }
    .testi-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }
    .testi-quote {
      color: var(--text); font-size: 0.93rem; line-height: 1.8;
      font-style: italic; flex: 1;
    }
    .testi-quote::before {
      content: '\201C'; color: var(--blue-mid);
      font-size: 2rem; font-style: normal; line-height: 0;
      vertical-align: -0.5rem; margin-right: 4px;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
    .testi-avatar {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      background: var(--brand-gradient);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.95rem; color: #fff;
    }
    .testi-name { font-weight: 700; font-size: 0.92rem; }
    .testi-role { color: var(--muted); font-size: 0.76rem; margin-top: 2px; }
    .testi-tag {
      display: inline-block; background: rgba(26,53,196,0.08);
      border: 1px solid rgba(26,53,196,0.2); color: var(--green);
      font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
      border-radius: 50px; letter-spacing: 0.5px; margin-top: 4px;
    }

    /* ── DELIVERABLES ── */
    #deliverables { background: var(--bg2); }
    .del-inner { max-width: 1100px; margin: 0 auto; }
    .del-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px; margin-top: 56px;
    }
    .del-card {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 32px 20px; text-align: center;
      
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .del-card:hover {
      border-color: rgba(26,53,196,0.4); transform: translateY(-5px);
      box-shadow: var(--card-shadow-lg);
    }
    .del-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; transition: transform .3s; }
    .del-card:hover .del-icon { transform: scale(1.15) rotate(-5deg); }
    .del-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--text); line-height: 1.4; }

    /* ── CTA ── */
    #cta {
      background: linear-gradient(135deg, rgba(26,53,196,0.07) 0%, var(--bg2) 60%);
      border-top: 1px solid var(--border);
      text-align: center; padding: 130px 7%;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute; width: 800px; height: 800px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,53,196,0.06), transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      pointer-events: none;
    }
    #cta > * { position: relative; z-index: 1; }
    #cta h2 { font-size: clamp(2rem, 5vw, 3.8rem); margin-bottom: 16px; }
    #cta p { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; }
    .contact-links {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; flex-wrap: wrap; margin-top: 28px;
    }
    .contact-chip {
      display: flex; align-items: center; gap: 10px;
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 50px; padding: 13px 26px; font-size: 0.9rem;
      color: var(--text); text-decoration: none; 
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .contact-chip:hover {
      border-color: rgba(26,53,196,0.4); transform: translateY(-3px);
      box-shadow: var(--card-shadow);
    }
    .contact-chip .chip-icon { color: var(--green); }
    .wa-chip { border-color: rgba(37,211,102,0.25); }
    .wa-chip:hover { border-color: #25D366; background: rgba(37,211,102,0.06); }
    .wa-chip .chip-icon { color: #25D366; }

    /* ── WA FLOAT ── */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      display: flex; align-items: center; gap: 12px;
      background: #25D366; color: #fff;
      padding: 14px 22px; border-radius: 50px;
      font-weight: 700; font-size: 0.88rem;
      text-decoration: none; 
      box-shadow: 0 8px 32px rgba(37,211,102,0.4);
      transition: transform .3s, box-shadow .3s;
      transform: translateY(20px);
    }
    .wa-float:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 16px 48px rgba(37,211,102,0.55);
    }
    .wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
    .wa-pulse {
      position: absolute; inset: -4px; border-radius: 50px;
      border: 2px solid rgba(37,211,102,0.5);
      animation: wa-ring 2s ease infinite 1.5s;
    }
    @keyframes wa-ring {
      0% { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(1.25); opacity: 0; }
    }

    /* ── FOOTER ── */
    footer {
      background: #0d1640; border-top: 1px solid rgba(255,255,255,0.06);
      padding: 32px 7%; text-align: center;
      color: rgba(255,255,255,0.5); font-size: 0.82rem;
    }
    footer strong { color: #43c642; }

    /* ── SCROLL PROGRESS ── */
    .scroll-progress {
      position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9999;
      background: transparent;
    }
    .scroll-progress-bar {
      height: 100%; width: 0%;
      background: var(--brand-gradient);
      transition: width .1s linear;
    }

    /* ── WA MOCKUP ── */
    #wa-demo { background: var(--bg); overflow: hidden; }
    .wa-demo-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .wa-demo-text .section-sub { max-width: 460px; }
    .wa-features { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
    .wa-feature {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .wa-feature-icon {
      width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
      background: rgba(26,53,196,0.08); border: 1px solid rgba(26,53,196,0.18);
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .wa-feature-text strong { display: block; font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
    .wa-feature-text span { color: var(--muted); font-size: 0.82rem; }

    /* Phone frame */
    .phone-wrap {
      display: flex; justify-content: center; align-items: center;
      position: relative;
    }
    .phone-wrap::before {
      content: '';
      position: absolute; width: 280px; height: 500px; border-radius: 48px;
      background: radial-gradient(ellipse, rgba(26,53,196,0.12) 0%, transparent 70%);
      filter: blur(30px); z-index: 0;
    }
    .phone-frame {
      width: 290px; border-radius: 44px;
      background: #111b21;
      border: 8px solid #1c2530;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 40px 80px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.06);
      overflow: hidden; position: relative; z-index: 1;
    }
    /* status bar */
    .phone-status {
      background: #1f2c34; padding: 8px 20px 6px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .phone-time { font-size: 0.7rem; font-weight: 700; color: #e9edef; }
    .phone-icons { font-size: 0.65rem; color: #e9edef; display: flex; gap: 4px; align-items: center; }
    /* notch */
    .phone-notch {
      width: 80px; height: 20px; background: #111b21;
      border-radius: 0 0 14px 14px;
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      z-index: 10;
    }
    /* WA header */
    .wa-header {
      background: #1f2c34; padding: 10px 14px;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .wa-back { color: #00a884; font-size: 1rem; }
    .wa-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--brand-gradient);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.78rem; color: #0d1640; flex-shrink: 0;
    }
    .wa-header-info { flex: 1; }
    .wa-header-info h4 { font-size: 0.82rem; font-weight: 700; color: #e9edef; line-height: 1.2; }
    .wa-online { font-size: 0.68rem; color: #00a884; }
    .wa-header-icons { color: #8696a0; font-size: 0.9rem; display: flex; gap: 14px; }
    /* chat body */
    .wa-messages {
      background: #0d1418; padding: 12px 10px;
      height: 390px; overflow-y: auto;
      display: flex; flex-direction: column; gap: 5px;
      scrollbar-width: none;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E");
    }
    .wa-messages::-webkit-scrollbar { display: none; }
    /* date pill */
    .wa-date {
      text-align: center; margin: 4px 0;
    }
    .wa-date span {
      background: #182229; color: #8696a0;
      font-size: 0.65rem; padding: 3px 10px; border-radius: 6px;
    }
    /* bubbles */
    .chat-item { opacity: 1; }
    .wa-msg {
      max-width: 83%; padding: 7px 10px 5px;
      font-size: 0.76rem; line-height: 1.45; position: relative;
      word-break: break-word;
    }
    .wa-msg.received {
      background: #1f2c34; color: #e9edef;
      align-self: flex-start; border-radius: 0 8px 8px 8px;
    }
    .wa-msg.sent {
      background: #005c4b; color: #e9edef;
      align-self: flex-end; border-radius: 8px 0 8px 8px;
    }
    .wa-msg-meta {
      display: flex; justify-content: flex-end; align-items: center;
      gap: 3px; margin-top: 3px;
    }
    .wa-msg-time { font-size: 0.6rem; color: rgba(233,237,239,0.5); }
    .wa-ticks { font-size: 0.65rem; color: #53bdeb; }
    /* typing indicator */
    .wa-typing-wrap { align-self: flex-start; }
    .wa-typing {
      background: #1f2c34; border-radius: 0 8px 8px 8px;
      padding: 10px 14px; display: inline-flex; align-items: center; gap: 4px;
    }
    .tdot {
      width: 6px; height: 6px; border-radius: 50%; background: #8696a0;
      animation: tdot-bounce 1.2s ease infinite;
    }
    .tdot:nth-child(2) { animation-delay: 0.2s; }
    .tdot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes tdot-bounce {
      0%,60%,100% { transform: translateY(0); opacity: 0.5; }
      30% { transform: translateY(-5px); opacity: 1; }
    }
    /* wa input */
    .wa-input-bar {
      background: #1f2c34; padding: 8px 10px;
      display: flex; align-items: center; gap: 8px;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .wa-input-box {
      flex: 1; background: #2a3942; border-radius: 20px;
      padding: 7px 14px; font-size: 0.73rem; color: #8696a0;
    }
    .wa-send {
      width: 32px; height: 32px; border-radius: 50%;
      background: #00a884; display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; flex-shrink: 0;
    }
    /* emoji quick reply */
    .wa-emoji-row { font-size: 0.9rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-visual { display: none; }
    }
    @media (max-width: 768px) {
      nav ul { display: none; }
      h1.hero-title { font-size: 2.3rem; letter-spacing: -1px; }
      .hero-stats { gap: 28px; }
      .cursor-dot, .cursor-ring { display: none; }
      body { cursor: auto; }
      a, button { cursor: pointer; }
    }
  
/* ═══════════════════════════════════════════════════════════════════════════
   MULTI-PAGE COMPONENTS  (added for SEO multi-page rebuild)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Neutralise the old bare-<nav> fixed rule for the new header structure */
.site-header .nav-menu { position: static; inset: auto; padding: 0; background: none;
  backdrop-filter: none; border: 0; display: block; }

:root { --header-h: 72px; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { padding-top: var(--header-h); }

/* ── Header / Nav ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  background: rgba(245,247,255,0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(245,247,255,0.97); border-color: var(--border);
  box-shadow: 0 2px 20px rgba(22,53,196,0.06); }
.nav-inner { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 7%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem;
  font-weight: 800; letter-spacing: -0.5px; color: var(--text); text-decoration: none; }
.logo-img { height: 34px; width: auto; }
.logo .logo-text span { background: var(--brand-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; }
.nav-menu ul { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; color: var(--muted); font-size: 0.92rem; font-weight: 600;
  transition: color .2s; white-space: nowrap; }
.nav-menu a:hover, .nav-menu li.active > a { color: var(--blue); }
.nav-menu .has-drop { position: relative; }
.nav-menu .drop { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--card-shadow-lg);
  padding: 10px; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transition: .25s; }
.nav-menu .has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu .drop a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 0.85rem; color: var(--text); }
.nav-menu .drop a:hover { background: var(--bg2); color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 10px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(13,22,64,0.4); opacity: 0; visibility: hidden;
  transition: .3s; z-index: 999; }
.nav-backdrop.show { opacity: 1; visibility: visible; }

@media (max-width: 940px) {
  .site-header .nav-menu { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: #fff; box-shadow: -8px 0 40px rgba(22,53,196,0.14); padding: 90px 28px 28px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); z-index: 1001; overflow-y: auto; }
  .site-header .nav-menu.open { transform: translateX(0); }
  .nav-menu ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-menu li > a { display: block; padding: 12px 8px; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav-menu .drop { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    border: 0; grid-template-columns: 1fr; padding: 0 0 8px 12px; min-width: 0; display: block; }
  .nav-menu .drop a { padding: 8px; }
  .burger { display: flex; }
  .nav-right .nav-cta { display: none; }   /* redundant on mobile; available in hero + menu */
  body.nav-open { overflow: hidden; }
  /* Prominent CTA inside the slide-in menu */
  .nav-menu .menu-cta { display: block; margin-top: 16px; text-align: center; background: var(--blue);
    color: #fff !important; padding: 13px; border-radius: 50px; font-weight: 700; }
  .nav-menu .menu-cta:hover { background: var(--blue-dark); }
}
.nav-menu .menu-cta { display: none; }

/* ── Breadcrumbs ── */
.crumbs { max-width: 1280px; margin: 0 auto; padding: 14px 7% 0; font-size: 0.8rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin: 0 8px; opacity: 0.5; }

/* ── Page hero (inner pages) ── */
.page-hero { padding: 60px 7% 54px; text-align: center; position: relative;
  background: radial-gradient(1200px 400px at 50% -20%, var(--bg2), var(--bg)); }
.page-hero .inner { max-width: 860px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; }
.page-hero h1 .grad { background: var(--brand-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.08rem; color: var(--muted); max-width: 680px; margin: 0 auto 26px; }
.page-hero .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Generic content prose ── */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 40px 0 14px; letter-spacing: -0.5px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.lead { font-size: 1.15rem; color: var(--text); font-weight: 500; }

/* ── Stats band ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px;
  margin: 40px auto 0; text-align: center; }
.stat-num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; background: var(--brand-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-lbl { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 30px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item[open] { box-shadow: var(--card-shadow); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--blue); transition: .3s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; color: var(--muted); line-height: 1.75; }
.faq-a p { margin: 0 0 10px; }

/* ── Simple card grid (services/locations/industries reuse) ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.icard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  text-decoration: none; color: var(--text); display: block; transition: transform .25s, box-shadow .25s, border-color .25s; }
.icard:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); border-color: rgba(22,53,196,0.28); }
.icard .ic { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.icard h3 { font-size: 1.12rem; margin-bottom: 8px; }
.icard p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.icard .go { color: var(--blue); font-weight: 700; font-size: 0.85rem; margin-top: 14px; display: inline-block; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--text); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.post-card .thumb { aspect-ratio: 16/9; background: var(--brand-gradient); display: flex; align-items: flex-end;
  padding: 18px; color: #fff; font-weight: 700; font-size: 1.05rem; }
.post-card .pc-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .pc-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: .5px; color: var(--green); text-transform: uppercase; }
.post-card h3 { font-size: 1.08rem; line-height: 1.3; }
.post-card p { color: var(--muted); font-size: 0.9rem; margin: 0; flex: 1; }
.post-meta { color: var(--muted); font-size: 0.78rem; }
.article { max-width: 760px; margin: 0 auto; }
.article-hero { max-width: 820px; margin: 0 auto; padding: 10px 0 30px; }
.article-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 16px; }
.article-hero .post-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.toc { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 26px 0; }
.toc b { display: block; margin-bottom: 8px; font-size: 0.9rem; }
.toc ul { margin: 0 0 0 18px; color: var(--blue); }
.toc a { color: var(--blue); text-decoration: none; }

/* ── Reveal (progressive; visible by default) ── */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-reveal [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-reveal [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; max-width: 1100px; margin: 40px auto 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--bg2); display: grid;
  place-items: center; flex: none; font-size: 1.1rem; }
.info-row b { display: block; }
.info-row a, .info-row span { color: var(--muted); }
.form .field { margin-bottom: 16px; }
.form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form input, .form select, .form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 10px; font: inherit; background: #fff; color: var(--text); }
.form textarea { min-height: 120px; resize: vertical; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ── Footer (expanded) ── */
.site-footer { background: var(--text); color: #cdd5f0; padding: 60px 7% 30px; margin-top: 20px; }
.footer-top { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: #9aa6d4; font-size: 0.9rem; margin: 14px 0; max-width: 320px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: #9aa6d4; text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.site-footer a:hover { color: var(--green); }
.fsocial { display: flex; gap: 12px; margin-top: 8px; }
.fsocial a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: grid; place-items: center; }
.fsocial a:hover { background: var(--green); }
.fsocial svg { width: 18px; height: 18px; }
.footer-bottom { max-width: 1280px; margin: 30px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: #8b97c9; }

/* WhatsApp floating button (kept, simplified) */
.wa-fab { position: fixed; bottom: 22px; right: 22px; z-index: 900; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { transform: scale(1.08); }
