/* ─── TOKENS ─── */
    :root {
      --blue:        #000ed1;
      --blue-dk:     #0009a0;
      --blue-lt:     #e8eaff;
      --blue-mid:    rgba(0,14,209,.08);
      --cyan:        #00d4ff;
      --dark:        #07080f;
      --dark2:       #0e1020;
      --dark3:       #161829;
      --ink:         #1c1f3a;
      --mid:         #3d4266;
      --muted:       #7b80a8;
      --light:       #f5f6ff;
      --border:      rgba(0,14,209,.13);
      --white:       #ffffff;
      --r:           12px;
      --r-lg:        20px;
      --shadow:      0 8px 40px rgba(0,14,209,.10);
      --shadow-lg:   0 24px 64px rgba(0,14,209,.16);
      --ease:        cubic-bezier(.4,0,.2,1);
      --t:           .3s var(--ease);
      --ff-head:     'Syne', sans-serif;
      --ff-body:     'DM Sans', sans-serif;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--ff-body); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--white); overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ─── TYPE ─── */
    h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.18; }
    h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
    h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
    h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
    p  { color: var(--mid); }

    /* ─── LAYOUT ─── */
    .wrap     { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .wrap-sm  { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
    .sec      { padding: 96px 0; }
    .sec-sm   { padding: 60px 0; }

    /* ─── GRID ─── */
    .g2  { display: grid; grid-template-columns: 1fr 1fr;    gap: 48px; align-items: center; }
    .g3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
    .g4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
    .g2s { display: grid; grid-template-columns: 1.1fr 1fr;  gap: 60px; align-items: start; }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 15px 34px; border-radius: 9px;
      font-family: var(--ff-head); font-weight: 600; font-size: .94rem;
      letter-spacing: .025em; transition: var(--t);
    }
    .btn-pri { background: var(--blue); color: #fff; box-shadow: 0 4px 22px rgba(0,14,209,.34); }
    .btn-pri:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 10px 34px rgba(0,14,209,.44); }
    .btn-out { border: 2px solid var(--blue); color: var(--blue); }
    .btn-out:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
    .btn-ghost { border: 1.5px solid rgba(255,255,255,.28); color: rgba(255,255,255,.88); padding: 15px 30px; border-radius: 9px; font-family: var(--ff-head); font-weight: 600; font-size: .94rem; transition: var(--t); }
    .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); }

    /* ─── BADGE ─── */
    .badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--blue-lt); color: var(--blue);
      padding: 6px 16px; border-radius: 50px;
      font-size: .78rem; font-weight: 700; font-family: var(--ff-head);
      letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
    }
    .badge::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }
    .badge-dark { background: rgba(0,14,209,.25); color: var(--cyan); }
    .badge-dark::before { background: var(--cyan); }

    /* ─── SEC HEADER ─── */
    .sh { text-align: center; margin-bottom: 60px; }
    .sh p { max-width: 580px; margin: 14px auto 0; font-size: 1.03rem; }
    .sh-left { text-align: left; }
    .sh-left p { margin-left: 0; }

    /* ════════════════════════════════
       HEADER / NAV
    ════════════════════════════════ */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border); transition: var(--t);
    }
    header.scrolled { box-shadow: 0 4px 28px rgba(0,14,209,.09); }
    .hdr { display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .logo { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 800; color: var(--dark); display: flex; align-items: center; gap: 3px; }
    .logo span { color: var(--blue); }
    .logo-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; margin-left: 2px; }
    .hnav { display: flex; align-items: center; gap: 6px; }
    .hnav a { font-family: var(--ff-head); font-size: .88rem; font-weight: 500; color: var(--mid); padding: 7px 13px; border-radius: 6px; transition: var(--t); }
    .hnav a:hover, .hnav a.cur { color: var(--blue); background: var(--blue-lt); }
    .ham { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; }
    .ham span { height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }

    /* ════════════════════════════════
       HERO
    ════════════════════════════════ */
    .hero {
      padding: 148px 0 90px;
      background: var(--dark2);
      position: relative; overflow: hidden;
    }
    /* animated mesh blobs */
    .hero::before {
      content: '';
      position: absolute; top: -180px; right: -180px;
      width: 680px; height: 680px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,14,209,.38) 0%, transparent 68%);
      animation: drift 12s ease-in-out infinite alternate;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -200px; left: -120px;
      width: 560px; height: 560px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 68%);
      animation: drift2 15s ease-in-out infinite alternate;
    }
    @keyframes drift  { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,30px) scale(1.06); } }
    @keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(-30px,40px); } }

    .hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
    .hero-content { color: #fff; }

    /* breadcrumb */
    .bc { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 20px; flex-wrap: wrap; }
    .bc a { color: rgba(255,255,255,.55); transition: var(--t); }
    .bc a:hover { color: var(--cyan); }
    .bc .sep { opacity: .4; }
    .bc .cur { color: var(--cyan); font-weight: 600; }

    .hero h1 { color: #fff; margin-bottom: 22px; }
    .hero h1 em { font-style: normal; color: var(--cyan); }
    .hero-desc { font-size: 1.06rem; color: rgba(255,255,255,.68); margin-bottom: 38px; max-width: 520px; }
    .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
    .hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .hero-pill {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.7); padding: 6px 14px; border-radius: 50px;
      font-size: .78rem; font-family: var(--ff-head); font-weight: 500;
    }

    /* Hero visual — WP dashboard mockup */
    .hero-visual { position: relative; }
    .wp-mockup {
      background: #1e2030; border-radius: 14px;
      overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.6);
      border: 1px solid rgba(255,255,255,.06);
    }
    .wp-bar {
      background: #191b2a; padding: 10px 16px;
      display: flex; align-items: center; gap: 8px;
    }
    .wp-dot { width: 11px; height: 11px; border-radius: 50%; }
    .wp-dot:nth-child(1) { background: #ff5f57; }
    .wp-dot:nth-child(2) { background: #febc2e; }
    .wp-dot:nth-child(3) { background: #28c840; }
    .wp-url-bar {
      flex: 1; background: rgba(255,255,255,.07); border-radius: 5px;
      padding: 4px 12px; font-size: .72rem; color: rgba(255,255,255,.5);
      font-family: monospace; margin-left: 8px;
    }
    .wp-body { display: flex; }
    .wp-sidebar {
      width: 64px; background: #23283d; padding: 16px 8px;
      display: flex; flex-direction: column; gap: 14px; align-items: center;
    }
    .wp-sb-item { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .85rem; opacity: .55; transition: var(--t); cursor: pointer; }
    .wp-sb-item:hover, .wp-sb-item.act { background: rgba(0,14,209,.5); opacity: 1; }
    .wp-sb-logo { font-family: var(--ff-head); font-weight: 800; font-size: .7rem; color: #fff; letter-spacing: -.02em; text-align: center; line-height: 1; }
    .wp-content { flex: 1; padding: 16px; }
    .wp-top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .wp-page-title { font-family: var(--ff-head); font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.85); }
    .wp-add-btn { background: var(--blue); color: #fff; font-size: .68rem; padding: 4px 10px; border-radius: 4px; font-family: var(--ff-head); font-weight: 600; }
    .wp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
    .wp-stat { background: rgba(255,255,255,.05); border-radius: 7px; padding: 10px; }
    .wp-stat-n { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 800; color: #fff; }
    .wp-stat-l { font-size: .62rem; color: rgba(255,255,255,.4); }
    .wp-stat-bar { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; margin-top: 6px; overflow: hidden; }
    .wp-stat-fill { height: 100%; border-radius: 2px; background: var(--blue); }
    .wp-posts { display: flex; flex-direction: column; gap: 7px; }
    .wp-post { background: rgba(255,255,255,.04); border-radius: 6px; padding: 8px 10px; display: flex; align-items: center; justify-content: space-between; }
    .wp-post-t { font-size: .68rem; color: rgba(255,255,255,.7); font-weight: 500; }
    .wp-post-s { font-size: .6rem; padding: 2px 7px; border-radius: 3px; font-weight: 600; font-family: var(--ff-head); }
    .s-pub { background: rgba(0,200,100,.15); color: #00c864; }
    .s-dft { background: rgba(255,185,0,.12); color: #ffb900; }
    .s-rev { background: rgba(0,14,209,.2); color: var(--cyan); }

    /* floating badges on hero */
    .fl {
      position: absolute; background: rgba(255,255,255,.95);
      border-radius: 10px; padding: 9px 14px;
      box-shadow: 0 8px 28px rgba(0,0,0,.28);
      font-size: .74rem; font-weight: 700; font-family: var(--ff-head);
      white-space: nowrap; z-index: 5;
    }
    .fl1 { top: -18px; right: -22px; color: var(--blue); }
    .fl2 { bottom: -16px; left: -24px; color: #16a34a; }
    .fl3 { top: 42%; right: -30px; color: #d97706; }

    /* ════════════════════════════════
       TRUST BAR
    ════════════════════════════════ */
    .trust { background: var(--light); border-bottom: 1px solid var(--border); padding: 32px 0; }
    .trust-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
    .trust-label { font-family: var(--ff-head); font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
    .trust-items { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
    .trust-item { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: var(--muted); opacity: .6; transition: var(--t); }
    .trust-item:hover { opacity: 1; color: var(--blue); }

    /* ════════════════════════════════
       INTRO / VALUE PROP
    ════════════════════════════════ */
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .intro-img {
      background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
      border-radius: var(--r-lg); padding: 40px;
      display: flex; flex-direction: column; gap: 16px;
      border: 1px solid rgba(255,255,255,.06);
      box-shadow: var(--shadow-lg);
    }
    .code-block { background: rgba(0,0,0,.4); border-radius: 10px; padding: 20px; font-family: 'Courier New', monospace; font-size: .78rem; line-height: 1.9; }
    .kw  { color: #c792ea; }
    .fn  { color: var(--cyan); }
    .str { color: #c3e88d; }
    .cm  { color: rgba(255,255,255,.3); }
    .hl  { color: var(--blue); background: rgba(0,14,209,.2); padding: 0 4px; border-radius: 3px; }
    .tag { color: #f78c6c; }
    .attr { color: #addb67; }

    .intro-features { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
    .intro-feat { display: flex; gap: 14px; align-items: flex-start; }
    .feat-icon { width: 44px; height: 44px; background: var(--blue-lt); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: var(--t); }
    .intro-feat:hover .feat-icon { background: var(--blue); }
    .feat-txt h4 { font-family: var(--ff-head); font-size: .95rem; margin-bottom: 3px; }
    .feat-txt p  { font-size: .86rem; }

    /* ════════════════════════════════
       SERVICES OFFERED
    ════════════════════════════════ */
    .services-sec { background: var(--light); }
    .svc-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 36px 28px;
      transition: var(--t); position: relative; overflow: hidden;
    }
    .svc-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--blue); transform: scaleX(0); transform-origin: left; transition: var(--t);
    }
    .svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(0,14,209,.25); }
    .svc-card:hover::after { transform: scaleX(1); }
    .svc-num { font-family: var(--ff-head); font-size: 2.8rem; font-weight: 800; color: var(--blue-lt); line-height: 1; margin-bottom: 12px; letter-spacing: -.04em; }
    .svc-card:hover .svc-num { color: rgba(0,14,209,.15); }
    .svc-icon { font-size: 2rem; margin-bottom: 14px; }
    .svc-card h3 { margin-bottom: 12px; }
    .svc-card > p { font-size: .9rem; margin-bottom: 20px; }
    .svc-bullets { display: flex; flex-direction: column; gap: 8px; }
    .svc-bullet { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--mid); }
    .svc-bullet::before { content: '→'; color: var(--blue); font-weight: 700; font-size: .8rem; flex-shrink: 0; }

    /* ════════════════════════════════
       PROCESS / HOW WE WORK
    ════════════════════════════════ */
    .process-steps { display: flex; flex-direction: column; gap: 0; }
    .step {
      display: grid; grid-template-columns: 80px 1fr;
      gap: 32px; align-items: flex-start;
      padding: 36px 0; border-bottom: 1px solid var(--border);
      transition: var(--t);
    }
    .step:last-child { border-bottom: none; }
    .step:hover { padding-left: 8px; }
    .step-num-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
    .step-num {
      width: 60px; height: 60px; border-radius: 14px;
      background: var(--blue-lt); border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-head); font-weight: 800; font-size: 1.1rem; color: var(--blue);
      transition: var(--t); flex-shrink: 0;
    }
    .step:hover .step-num { background: var(--blue); color: #fff; border-color: var(--blue); }
    .step-line { width: 2px; flex: 1; background: var(--border); min-height: 24px; margin-top: 8px; }
    .step:last-child .step-line { display: none; }
    .step-body { padding-top: 12px; }
    .step-body h3 { margin-bottom: 10px; }
    .step-body p { font-size: .92rem; }
    .step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .step-tag { background: var(--blue-mid); color: var(--blue); padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; font-family: var(--ff-head); }

    /* ════════════════════════════════
       TECH STACK
    ════════════════════════════════ */
    .tech-sec { background: var(--dark); }
    .tech-sec h2, .tech-sec .sh p { color: #fff; }
    .tech-sec .sh p { color: rgba(255,255,255,.55); }
    .tech-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
    .tech-card {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--r); padding: 24px 16px; text-align: center;
      transition: var(--t); cursor: default;
    }
    .tech-card:hover { background: rgba(0,14,209,.2); border-color: rgba(0,14,209,.5); transform: translateY(-4px); }
    .tech-logo { font-size: 2rem; margin-bottom: 10px; }
    .tech-name { font-family: var(--ff-head); font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.75); }
    .tech-desc { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 4px; }

    /* ════════════════════════════════
       WHY CHOOSE US
    ════════════════════════════════ */
    .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .why-card {
      border: 1px solid var(--border); border-radius: var(--r-lg);
      padding: 32px; transition: var(--t); background: var(--white);
    }
    .why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(0,14,209,.3); }
    .why-icon { width: 56px; height: 56px; background: var(--blue-lt); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; transition: var(--t); }
    .why-card:hover .why-icon { background: var(--blue); }
    .why-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
    .why-card p { font-size: .88rem; }

    /* ════════════════════════════════
       PORTFOLIO / CASE STUDIES
    ════════════════════════════════ */
    .case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
    .case-card {
      border-radius: var(--r-lg); overflow: hidden;
      border: 1px solid var(--border); transition: var(--t);
      background: var(--white);
    }
    .case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
    .case-thumb {
      height: 190px; display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; position: relative; overflow: hidden;
    }
    .case-thumb .overlay {
      position: absolute; inset: 0;
      background: rgba(0,14,209,.75); opacity: 0; transition: var(--t);
      display: flex; align-items: center; justify-content: center;
    }
    .case-card:hover .overlay { opacity: 1; }
    .overlay-txt { color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: .9rem; }
    .case-body { padding: 24px; }
    .case-type { font-size: .73rem; font-weight: 700; font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 8px; }
    .case-card h3 { margin-bottom: 10px; font-size: 1rem; }
    .case-card p { font-size: .84rem; margin-bottom: 16px; }
    .case-results { display: flex; gap: 16px; flex-wrap: wrap; }
    .case-result { background: var(--blue-lt); color: var(--blue); padding: 4px 10px; border-radius: 5px; font-size: .74rem; font-weight: 700; font-family: var(--ff-head); }
    .cb1 { background: linear-gradient(135deg, #000ed1, #0009a0); }
    .cb2 { background: linear-gradient(135deg, #0e1020, #1a1d2e); }
    .cb3 { background: linear-gradient(135deg, #0a0c20, #000ed1); }
    .cb4 { background: linear-gradient(135deg, #1a1d2e, #2d3080); }
    .cb5 { background: linear-gradient(135deg, #000ed1, #00d4ff); }
    .cb6 { background: linear-gradient(135deg, #07080f, #3d4266); }

    /* ════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════ */
    .testi-sec { background: var(--light); }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .testi-card {
      background: var(--white); border-radius: var(--r-lg);
      padding: 32px; box-shadow: var(--shadow); transition: var(--t);
      position: relative;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .testi-quote { font-size: 4.5rem; line-height: .5; color: var(--blue); opacity: .15; font-family: serif; position: absolute; top: 22px; right: 22px; }
    .stars { color: #f59e0b; font-size: .95rem; margin-bottom: 14px; }
    .testi-card p { font-size: .92rem; font-style: italic; margin-bottom: 24px; line-height: 1.75; }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .ava { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 700; font-size: .88rem; color: #fff; flex-shrink: 0; }
    .an { font-family: var(--ff-head); font-weight: 700; font-size: .9rem; color: var(--ink); }
    .at { font-size: .78rem; color: var(--muted); }

    /* ════════════════════════════════
       PRICING
    ════════════════════════════════ */
    .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
    .pc {
      border: 2px solid var(--border); border-radius: var(--r-lg);
      padding: 40px 32px; transition: var(--t); background: var(--white);
    }
    .pc:hover:not(.pc-feat) { box-shadow: var(--shadow-lg); border-color: var(--blue); transform: translateY(-6px); }
    .pc-feat { background: var(--blue); border-color: var(--blue); transform: scale(1.04); box-shadow: var(--shadow-lg); }
    .pc-pop {
      display: block; text-align: center;
      background: var(--cyan); color: var(--dark); padding: 5px 0;
      font-size: .74rem; font-weight: 700; font-family: var(--ff-head);
      text-transform: uppercase; letter-spacing: .07em;
      margin: -40px -32px 32px; border-radius: var(--r-lg) var(--r-lg) 0 0;
    }
    .pc-name { font-family: var(--ff-head); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 10px; }
    .pc-feat .pc-name { color: rgba(255,255,255,.7); }
    .pc-price { font-family: var(--ff-head); font-size: 3rem; font-weight: 800; color: var(--ink); line-height: 1; }
    .pc-feat .pc-price { color: #fff; }
    .pc-period { font-size: .82rem; color: var(--muted); margin-bottom: 28px; }
    .pc-feat .pc-period { color: rgba(255,255,255,.55); }
    .pc-desc { font-size: .85rem; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
    .pc-feat .pc-desc { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.15); }
    .pc-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
    .pc-feat-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .86rem; color: var(--mid); }
    .pc-feat .pc-feat-row { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.82); }
    .pc-feat-row:last-child { border-bottom: none; }
    .pc-chk { color: var(--blue); font-weight: 700; font-size: .9rem; flex-shrink: 0; }
    .pc-feat .pc-chk { color: var(--cyan); }
    .pc-x { color: var(--muted); }

    /* ════════════════════════════════
       FAQ
    ════════════════════════════════ */
    .faq-sec { background: var(--light); }
    .faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; background: var(--white); }
    .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-family: var(--ff-head); font-weight: 600; font-size: .93rem; color: var(--ink); transition: var(--t); }
    .faq-q:hover { background: var(--blue-lt); color: var(--blue); }
    .faq-q.open { background: var(--blue); color: #fff; }
    .faq-ico { font-size: 1.1rem; transition: var(--t); }
    .faq-q.open .faq-ico { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: all .35s var(--ease); }
    .faq-a.open { max-height: 300px; }
    .faq-a-inner { padding: 20px 24px; }
    .faq-a-inner p { font-size: .9rem; }

    /* ════════════════════════════════
       STATS STRIP
    ════════════════════════════════ */
    .stats-strip { background: var(--blue); padding: 52px 0; }
    .stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
    .stat-n { font-family: var(--ff-head); font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
    .stat-l { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: 6px; }

    /* ════════════════════════════════
       CTA
    ════════════════════════════════ */
    .cta-sec { background: var(--dark); position: relative; overflow: hidden; }
    .cta-sec::before {
      content: ''; position: absolute; top: -120px; right: -120px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,14,209,.35) 0%, transparent 65%);
    }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; z-index: 2; }
    .cta-text h2 { color: #fff; }
    .cta-text h2 em { font-style: normal; color: var(--cyan); }
    .cta-text p { color: rgba(255,255,255,.6); margin-top: 10px; max-width: 500px; font-size: 1.02rem; }
    .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
    .trust-note { font-size: .78rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 6px; }

    /* ════════════════════════════════
       NEWSLETTER
    ════════════════════════════════ */
    .news-sec { background: var(--dark2); border-top: 1px solid rgba(255,255,255,.06); }
    .news-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
    .news-text h3 { color: #fff; font-size: 1.4rem; }
    .news-text p { color: rgba(255,255,255,.5); margin-top: 6px; }
    .news-form { display: flex; gap: 10px; flex-wrap: wrap; }
    .news-inp { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: 14px 20px; border-radius: 8px; font-family: var(--ff-body); font-size: .94rem; min-width: 270px; outline: none; transition: var(--t); }
    .news-inp::placeholder { color: rgba(255,255,255,.38); }
    .news-inp:focus { border-color: var(--blue); background: rgba(0,14,209,.1); }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer { background: var(--dark); padding: 68px 0 0; border-top: 1px solid rgba(255,255,255,.05); }
    .ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .ft-logo { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 3px; margin-bottom: 14px; }
    .ft-logo span { color: var(--blue); }
    .ft-desc { font-size: .87rem; color: rgba(255,255,255,.42); margin-bottom: 22px; line-height: 1.7; }
    .socials { display: flex; gap: 8px; }
    .soc { width: 36px; height: 36px; border-radius: 7px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; font-size: .84rem; color: rgba(255,255,255,.5); transition: var(--t); }
    .soc:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
    .ft-col h4 { font-family: var(--ff-head); font-size: .82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 18px; }
    .ft-col a { display: block; color: rgba(255,255,255,.45); font-size: .85rem; padding: 4px 0; transition: var(--t); }
    .ft-col a:hover { color: var(--cyan); padding-left: 5px; }
    .ft-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .ft-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
    .ft-bottom a { color: var(--cyan); }

    /* ════════════════════════════════
       SCROLL ANIMATIONS
    ════════════════════════════════ */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ════════════════════════════════
       CONTACT FORM (inline)
    ════════════════════════════════ */
    .quote-sec { background: var(--light); }
    .quote-inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px; align-items: start; }
    .form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 42px; box-shadow: var(--shadow); }
    .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .fg { margin-bottom: 20px; }
    .fg label { display: block; font-family: var(--ff-head); font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .05em; }
    .fc { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--ff-body); font-size: .94rem; color: var(--ink); outline: none; transition: var(--t); background: var(--white); }
    .fc:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,14,209,.07); }
    .fc::placeholder { color: var(--muted); }
    textarea.fc { resize: vertical; min-height: 120px; }

    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 1024px) {
      .tech-grid { grid-template-columns: repeat(4,1fr); }
      .ft-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .g2, .intro-grid, .hero-inner, .g2s, .why-grid, .testi-grid, .pricing-grid, .case-grid, .quote-inner, .cta-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .g3, .g4 { grid-template-columns: repeat(2,1fr); }
      .stats-row { grid-template-columns: repeat(2,1fr); }
      .tech-grid { grid-template-columns: repeat(3,1fr); }
      .pc-feat { transform: scale(1); }
    }
    @media (max-width: 640px) {
      .g3, .g4, .tech-grid { grid-template-columns: 1fr; }
      .hnav { display: none; }
      .hnav.open { display: flex; flex-direction: column; align-items: flex-start; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px; z-index: 899; gap: 4px; }
      .ham { display: flex; }
      .cta-actions { width: 100%; }
      .form-row2 { grid-template-columns: 1fr; }
    }