  /* ── TOKENS ── */
  :root {
    --blue:      #277fbe;
    --blue-dark: #1a5e8f;
    --blue-light:#e8f2fa;
    --gray:      #5a606c;
    --gray-mid:  #59616b;
    --gray-light:#f0f3f7;
    --pink:      #c0185a;
    --dark:      #1a1a1f;
    --white:     #ffffff;
    --grid-color: rgba(39,127,190,0.07);
    --radius:    10px;
    --font-head:   'Barlow Condensed', sans-serif;
    --font-serif:  'DM Serif Display', serif;
    --font-body:   'Barlow', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── GRID BACKGROUND TEXTURE ── */
  .grid-bg {
    background-color: #f4f7fb;
    background-image:
      linear-gradient(var(--grid-color) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 64px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(39,127,190,0.12);
    transition: box-shadow 0.2s;
    display: flex;
    align-items: center;
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 30px;
    width: auto;
    align-self: flex-start;
  }

  .nav-brand-of {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .nav-brand-of span {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #777;
    line-height: 1;
  }

  .nav-brand-of img {
    height: 11px;
    width: auto;
    align-self: center;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.15s;
  }

  .nav-links a:hover { color: var(--blue); }

  .nav-links a.active { color: var(--blue); font-weight: 600; }

  .nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s !important;
  }

  .nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── SECTION COMMON ── */
  section { padding: 96px 48px; }
  .container { max-width: 1100px; margin: 0 auto; }

  .sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
  }

  .sec-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
  }

  h1 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: 0.01em;
  }

  h2 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.15;
    letter-spacing: 0.01em;
  }

  /* Serif italic accent — carries the visual weight instead of bold */
  h2 em, h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--blue);
  }

  #services h2 em, #cta h2 em {
    color: #7ec6f0;
  }

  h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  p { font-size: 16px; line-height: 1.75; color: var(--gray); }

  /* ── HERO ── */
  #hero {
    padding-top: 96px;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
  }

  .hero-headline { color: var(--dark); }
  .hero-headline .blue { color: var(--blue); }

  .hero-sub {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--blue);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s, transform 0.1s;
  }

  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--blue);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
  }

  .btn-secondary:hover { background: var(--blue-light); }

  /* Hero visual */
  .hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: -160px;
  }

  .hero-visual img {
    width: calc(100% + 160px);
    height: auto;
    display: block;
  }

  .hero-card {
    background: var(--white);
    border: 1.5px solid rgba(39,127,190,0.18);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 40px rgba(39,127,190,0.1);
    position: relative;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--pink);
    border-radius: 0 0 16px 16px;
  }

  .hc-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
  }

  .hc-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 17px;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .hc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
  }

  .hc-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    margin-top: 6px;
  }

  /* Client strip */
  .client-strip {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(39,127,190,0.12);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .cs-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #aaa;
    white-space: nowrap;
  }

  .cs-logos { display: flex; gap: 20px; flex-wrap: wrap; }

  .cs-logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: #bbb;
    letter-spacing: 0.04em;
    transition: color 0.15s;
    cursor: default;
  }

  .cs-logo:hover { color: var(--blue); }

  /* ── SECTION 2: WHAT IS THE WEB INC ── */
  #about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .about-text h2 { color: var(--dark); margin-bottom: 20px; }
  .about-text p { margin-bottom: 16px; }

  .about-differentiators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
  }

  .diff-card {
    background: var(--gray-light);
    border: 1.5px dashed var(--blue);
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .diff-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
  }

  .diff-card p {
    font-size: 13px;
    margin: 0;
    color: var(--gray);
    line-height: 1.55;
  }

  /* ── SECTION 3: SERVICES ── */
  #services {
    background-color: #2e3340;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  #services .sec-eyebrow { color: #6bb8e8; }
  #services .sec-eyebrow::before { background: #6bb8e8; }
  #services h2 { color: var(--white); margin-bottom: 12px; }
  #services > .container > p { color: #9aabb8; max-width: 560px; margin-bottom: 48px; }

  /* ── SERVICES PILLARS ── */
  .svc-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }

  .svc-pillar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .svc-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }

  .svc-blue::before  { background: var(--blue); }
  .svc-pink::before  { background: var(--pink); }
  .svc-teal::before  { background: #5ab0e8; }

  .svc-blue:hover  { background: rgba(39,127,190,0.1);  border-color: rgba(39,127,190,0.3);  transform: translateY(-4px); }
  .svc-pink:hover  { background: rgba(192,24,90,0.1);   border-color: rgba(192,24,90,0.3);   transform: translateY(-4px); }
  .svc-teal:hover  { background: rgba(90,176,232,0.1);  border-color: rgba(90,176,232,0.3);  transform: translateY(-4px); }

  .svc-pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .svc-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .svc-blue .svc-pillar-icon { background: rgba(39,127,190,0.25); }
  .svc-pink .svc-pillar-icon { background: rgba(192,24,90,0.2); }
  .svc-teal .svc-pillar-icon { background: rgba(90,176,232,0.15); }

  .svc-pillar-icon svg {
    width: 22px; height: 22px;
    fill: none; stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
  }

  .svc-blue .svc-pillar-icon svg { stroke: #7ec6f0; }
  .svc-pink .svc-pillar-icon svg { stroke: #e05a8a; }
  .svc-teal .svc-pillar-icon svg { stroke: #5ab0e8; }

  .svc-pillar-num {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    user-select: none;
  }

  .svc-pillar-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    color: #f0f4f8;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .svc-pillar-desc {
    font-size: 13px;
    color: #8fa0b0;
    line-height: 1.65;
    margin-bottom: 0;
  }

  .svc-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 20px;
    margin-top: 24px;
  }

  .svc-pillar-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
  }

  .svc-pillar-list li:last-child { border-bottom: none; }

  .svc-pillar-list li::before {
    content: '→';
    font-size: 11px;
    opacity: 0.35;
    flex-shrink: 0;
  }

  .svc-pillar-cta {
    display: inline-block;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #e05a8a;
    text-decoration: none;
    transition: color 0.15s, gap 0.15s;
    letter-spacing: 0.01em;
  }

  .svc-pillar-cta:hover { color: #f07aaa; }

  /* ── SECTION 4: PHILOSOPHY ── */
  #philosophy { background: var(--white); }

  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .phil-card {
    border-top: 2px solid rgba(39,127,190,0.2);
    padding: 28px 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    transition: border-color 0.2s;
  }

  .phil-card:hover {
    border-color: var(--blue);
  }

  .phil-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 40px;
    color: var(--blue-light);
    line-height: 1;
    user-select: none;
  }

  .phil-card h3 { color: var(--dark); }

  .phil-card p { font-size: 14px; margin: 0; line-height: 1.65; }

  /* Pullquote */
  .pullquote {
    margin-top: 48px;
    background: var(--blue);
    border-radius: var(--radius);
    padding: 40px 48px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
  }

  .pullquote::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 6px;
    background: var(--pink);
  }

  .pq-mark {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 80px;
    color: rgba(255,255,255,0.2);
    line-height: 0.8;
    flex-shrink: 0;
    margin-top: -8px;
  }

  .pq-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(17px, 2.2vw, 22px);
    color: var(--white);
    line-height: 1.55;
  }

  .pq-source {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    font-weight: 500;
  }

  /* ── SECTION 5: VISION ── */
  #vision {
    background: var(--gray-light);
    background-image:
      linear-gradient(var(--grid-color) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  .vision-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .vision-text h2 { color: var(--dark); margin-bottom: 20px; }

  .vision-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }

  .stat-card {
    background: var(--white);
    border: 1.5px solid rgba(39,127,190,0.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.2s;
  }

  .stat-card:hover { box-shadow: 0 4px 16px rgba(39,127,190,0.1); }

  .stat-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .stat-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; }

  .stat-info { flex: 1; }

  .stat-value {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 22px;
    color: var(--dark);
    line-height: 1;
  }

  .stat-label { font-size: 12px; color: var(--gray); margin-top: 2px; }

  /* ── VISION ARTICLES ── */
  .vision-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }

  .va-view-all {
    text-align: right;
    margin-top: 4px;
  }

  .va-view-all a {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.15s;
  }

  .va-view-all a:hover { color: var(--blue-dark); }

  .vision-article {
    background: var(--white);
    border: 1.5px solid rgba(39,127,190,0.15);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }

  .vision-article::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 2px 2px 0 0;
  }

  .va-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
  }

  .va-headline {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 20px;
    color: var(--dark);
    line-height: 1.3;
  }

  .va-excerpt {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
  }

  .va-divider {
    height: 1px;
    background: rgba(39,127,190,0.12);
  }

  .va-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .va-meta-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .va-author {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
  }

  .va-date {
    font-size: 11px;
    color: var(--gray);
  }

  .va-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
  }

  .va-link:hover { color: var(--blue-dark); }

  /* ── SECTION 6: CLIENTS ── */
  #clients { background: var(--white); }

  .clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .client-card {
    border: 1.5px solid #e8e8e4;
    border-radius: var(--radius);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
  }

  .client-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(39,127,190,0.08);
  }

  .client-initial {
    width: 44px;
    height: 44px;
    background: #f0f2f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    color: var(--gray-mid);
  }

  .client-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.25;
  }

  .client-type {
    font-size: 11px;
    color: var(--gray-mid);
    line-height: 1.5;
    text-align: center;
  }

  /* Client grid — 4 cols after removing 2 */
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* CTA placeholder card */
  .client-card--cta {
    border-style: dashed;
    border-color: rgba(39,127,190,0.25);
    background: rgba(39,127,190,0.02);
  }

  .client-card--cta:hover {
    border-color: var(--blue);
    background: var(--blue-light);
  }

  .client-logo-slot {
    width: 44px;
    height: 44px;
    border: 1.5px dashed #ccd4dc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
  }

  .client-logo-slot svg { width: 20px; height: 20px; }

  .client-cta-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.15s;
    margin-top: 4px;
  }

  .client-cta-link:hover { color: var(--blue-dark); }

  /* Unit tab colors — brand units */
  .unit-tab.active-starevo   { background: #c2940f; border-color: #c2940f; color: var(--white); }
  .unit-tab.active-mediaflou { background: #742841; border-color: #742841; color: var(--white); }
  .unit-tab.active-pixelot   { background: #ff5757; border-color: #ff5757; color: var(--white); }

  .tag-starevo   { background: #fdf3dc; color: #c2940f; }
  .tag-mediaflou { background: #f5e8ed; color: #742841; }
  .tag-pixelot   { background: #ffecec; color: #ff5757; }

  /* ── WHITE LABEL ── */
  .wl-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .wl-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 28px;
  }

  .wl-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .wl-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
  }

  .wl-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .wl-point-icon {
    width: 38px;
    height: 38px;
    background: var(--blue-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
  }

  .wl-point-icon svg { width: 18px; height: 18px; }

  .wl-point-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 3px;
  }

  .wl-point-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
  }

  .wl-quote {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(39,127,190,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .wl-quote-mark {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 56px;
    color: var(--blue-light);
    line-height: 0.8;
    flex-shrink: 0;
  }

  .wl-quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--gray-mid);
    line-height: 1.4;
  }

  /* ── SECTION: PARTNERS ── */
  #partners { background: #f7f8fa; border-top: 1px solid #e8eaed; }

  .partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
  }

  .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 56px;
    background: var(--white);
    border: 1.5px solid #e4e7ec;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
    min-width: 220px;
    min-height: 120px;
  }

  .partner-logo:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(39,127,190,0.08);
  }

  .partner-logo-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #aaa;
  }

  .partner-shopify  { color: #96bf48; }
  .partner-hostinger { color: #673de6; }
  .partner-cekat    { color: var(--blue); }

  /* ── SECTION 7: CTA ── */
  #cta {
    background: #1e2330;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--pink);
  }

  #cta h2 { color: var(--white); margin-bottom: 16px; }
  #cta p { color: #8a9ab0; max-width: 480px; margin: 0 auto 36px; }

  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  .btn-white {
    background: var(--white);
    color: var(--blue);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
  }

  .btn-white:hover { background: var(--blue-light); }

  .btn-outline-white {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.15s, color 0.15s;
  }

  .btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

  /* ── SECTION: AEXO DIGITAL ── */
  #aexo {
    background: #f7f8fa;
    border-top: 1px solid #e4e7ec;
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .aexo-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
  }

  .aexo-intro { display: flex; flex-direction: column; gap: 16px; }

  .aexo-logo-text {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 32px;
    color: var(--dark);
    letter-spacing: 0.04em;
  }

  .aexo-logo-text .x { color: var(--pink); }

  .aexo-tagline {
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.7;
    max-width: 420px;
  }

  .aexo-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .aexo-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-mid);
  }

  .aexo-meta-item svg {
    width: 14px; height: 14px;
    stroke: var(--gray-mid); fill: none; stroke-width: 1.8;
    flex-shrink: 0;
  }

  /* Units tabs */
  .units-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 14px;
  }

  .units-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .unit-tab {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid #dde0e6;
    background: transparent;
    color: var(--gray-mid);
    cursor: pointer;
    transition: all 0.18s;
  }

  .unit-tab:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
  }

  .unit-tab.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
  }

  .unit-tab.active-web { background: var(--blue); border-color: var(--blue); color: var(--white); }
  .unit-tab.active-mkt { background: var(--pink); border-color: var(--pink); color: var(--white); }
  .unit-tab.active-gray { background: var(--gray-mid); border-color: var(--gray-mid); color: var(--white); }

  /* Unit detail panel */
  .unit-panel {
    background: var(--white);
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    padding: 24px 28px;
    display: none;
    gap: 12px;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .unit-panel.visible { display: flex; }
  .unit-panel.fade-in { opacity: 1; }

  .unit-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .unit-panel-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 20px;
    color: var(--dark);
  }

  .unit-panel-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
  }

  .tag-web  { background: var(--blue-light); color: var(--blue); }
  .tag-mkt  { background: #fce8f0; color: var(--pink); }
  .tag-tech { background: #eef0f4; color: var(--gray-mid); }

  .unit-panel-desc {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.7;
    margin: 0;
    min-height: calc(14px * 1.7 * 4);
  }

  .unit-panel-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .chip {
    font-size: 11px;
    color: var(--gray-mid);
    border: 1px solid #dde0e6;
    border-radius: 4px;
    padding: 3px 9px;
  }

  .unit-panel-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
  }

  .unit-panel-link:hover { text-decoration: underline; }

  /* ── FOOTER ── */
  footer {
    position: relative;
    background: #0d0d0d;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    overflow: hidden;
  }

  .footer-red-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 38%;
    background: #8f1040;
    clip-path: polygon(56px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
  }

  .footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .footer-aexo-logo {
    height: 22px;
    width: auto;
    align-self: center;
    flex-shrink: 0;
  }

  .footer-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }

  .footer-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-shrink: 0;
    margin-left: 70px;
  }

  .footer-nav a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.15s;
  }

  .footer-nav a:hover { color: rgba(255,255,255,0.8); }

  .footer-divider {
    flex: 1;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
  }

  .footer-year {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .footer-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
  }


  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }

  .fade-up:nth-child(1) { animation-delay: 0.1s; }
  .fade-up:nth-child(2) { animation-delay: 0.2s; }
  .fade-up:nth-child(3) { animation-delay: 0.3s; }
  .fade-up:nth-child(4) { animation-delay: 0.4s; }
  .fade-up:nth-child(5) { animation-delay: 0.5s; }

  /* ── SCROLL REVEAL ── */
  .reveal-ready {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal-ready.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── HERO PARALLAX SMOOTH ── */
  .hero-visual {
    transition: transform 0.08s linear;
  }

  .hero-visual img {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .hero-inner > div:first-child {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* ── MICRO INTERACTIONS ── */
  .diff-card {
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }

  .diff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39,127,190,0.1);
  }

  .stat-card {
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .stat-card:hover {
    transform: translateX(4px);
  }

  .client-card {
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }

  .client-card:hover {
    transform: translateY(-4px);
  }

  .partner-logo {
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }

  .partner-logo:hover {
    transform: translateY(-4px);
  }

  .btn-primary, .btn-secondary, .btn-white, .btn-outline-white {
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  }

  .btn-primary:hover, .btn-white:hover {
    box-shadow: 0 6px 20px rgba(39,127,190,0.25);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    /* ── NAV ── */
    nav { padding: 0 20px; }
    .nav-hamburger { display: flex; }
    .nav-links {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--white);
      border-top: 1px solid rgba(0,0,0,0.08);
      padding: 8px 24px 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      z-index: 50;
    }
    .nav-links.open { display: flex; }
    .nav-links li { list-style: none; }
    .nav-links a {
      display: block;
      padding: 14px 0 !important;
      font-size: 15px !important;
      color: var(--dark) !important;
      font-weight: 500 !important;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      text-decoration: none;
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links a.nav-cta {
      display: block;
      background: var(--blue) !important;
      color: var(--white) !important;
      padding: 13px 20px !important;
      border-radius: var(--radius);
      text-align: center;
      margin-top: 12px;
      font-size: 15px !important;
      border-bottom: none !important;
    }
    /* ── SECTIONS ── */
    section { padding: 64px 20px; }
    .hero-inner, .about-grid, .vision-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { margin-right: 0; justify-content: center; order: -1; }
    .hero-visual img { width: 60%; max-width: 260px; }
    .about-differentiators { margin-top: 0; }
    .wl-top, .aexo-top { grid-template-columns: 1fr; gap: 40px; }
    .svc-pillars { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    /* ── FOOTER ── */
    footer { height: auto; padding: 28px 20px; }
    .footer-red-bg { display: none; }
    .footer-content {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 12px;
    }
    .footer-nav { margin-left: 0; justify-content: center; flex-wrap: wrap; }
    .footer-right { align-items: center; }
    .footer-divider { display: none; }
  }

@media (max-width: 640px) {
  #hero { padding-top: 100px; }
  .hero-title { font-size: clamp(32px, 8vw, 52px) !important; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; text-align: center; justify-content: center; }
  .svc-pillars { margin-top: 32px; }
  .clients-grid { grid-template-columns: 1fr; }
}
