/* ============================================================
   TRIOCOLOR CREATIONS — v3 DESIGN SYSTEM
   Scale:  11 · 13 · 15 · 17 · 20 · 26 · 36 · 48 · 64 · 88px
   Colors: Navy #0B2447 | Orange #F5A000 | Blue #1E8FFF | Teal #00C4D4
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: #0B2447; background: #fff; overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── TOKENS ── */
:root {
  --navy:    #0B2447;
  --orange:  #F5A000;
  --blue:    #1E8FFF;
  --teal:    #00C4D4;
  --white:   #FFFFFF;
  --off:     #F7F9FC;
  --gray:    #6B7280;
  --border:  #E8ECF3;
  --r:       12px;
  --r-lg:    20px;
  --r-xl:    32px;
  --sh:      0 1px 16px rgba(11,36,71,.06);
  --sh-md:   0 4px 32px rgba(11,36,71,.11);
  --sh-lg:   0 12px 56px rgba(11,36,71,.16);
}

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── SECTION LABELS ── */
.label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.label::before { content: '—  '; }
.label--white { color: rgba(255,255,255,.7); }
.label--white::before { color: rgba(255,255,255,.4); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all .22s ease; white-space: nowrap; line-height: 1;
}
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary  { background: var(--navy);   color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: #0d3060; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,36,71,.28); }

.btn--orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--orange:hover { background: #e09200; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,160,0,.36); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--navy); background: var(--off); }

.btn--ghost-sm { background: transparent; color: var(--navy); border: 1.5px solid var(--border); padding: 10px 22px; font-size: 14px; border-radius: 100px; font-weight: 600; transition: all .2s; }
.btn--ghost-sm:hover { border-color: var(--navy); }

.btn--ghost-dark { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost-dark:hover { border-color: var(--navy); background: var(--off); }

.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--light:hover { background: var(--off); transform: translateY(-2px); }

/* Arrow in buttons slides on hover */
.btn svg { transition: transform .2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* ── SERIF EM ── */
em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   HERO — LEFT COPY ADDITIONS
   ════════════════════════════════════════════════════════════ */

/* Checkmarks list */
.hero__checks {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.hero__checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.hchk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,196,212,.15); color: var(--teal);
  font-size: 11px; font-weight: 900; flex-shrink: 0;
}

/* Play video button */
.btn-play {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--navy);
  transition: gap .2s;
}
.btn-play:hover { gap: 16px; }
.btn-play__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); box-shadow: var(--sh-md);
  transition: background .2s, color .2s;
}
.btn-play:hover .btn-play__icon { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Trust strip */
.hero__trust { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.trust-copy { font-size: 13px; color: var(--gray); line-height: 1.5; }
.trust-copy strong { color: var(--navy); display: block; }
.trust-av--d { background: url('Images/Header/arafed-woman-standing-front-table-with-bunch-art-work-it.png') center top/cover no-repeat; }

/* Scroll indicator */
.hero__scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-pill {
  width: 22px; height: 36px; border: 2px solid rgba(11,36,71,.2);
  border-radius: 100px; display: flex; justify-content: center;
  padding: 5px 0; position: relative;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--orange); border-radius: 100px;
  animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateY(0); opacity:1; }
  80%      { transform: translateY(10px); opacity:.3; }
}

/* ════════════════════════════════════════════════════════════
   HERO — RIGHT VISUAL COMPOSITION  (myEdLink style)
   ════════════════════════════════════════════════════════════ */
.hero__visual {
  position: relative;
  width: 100%;
  height: 540px;
  align-self: center;
  flex-shrink: 0;
}

/* Subtle vertical-line grid texture */
.hv-grid-bg {
  position: absolute; inset: -20px;
  background-image: repeating-linear-gradient(
    90deg, rgba(11,36,71,.04) 0, rgba(11,36,71,.04) 1px, transparent 1px, transparent 36px
  );
  pointer-events: none; z-index: 0;
}

/* ── Float animation ── */
@keyframes shapeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ═══ SHAPE BASE ═══ */
.hv-shape {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,36,71,.18);
  animation: shapeFloat 6s ease-in-out infinite;
}

/* ═══ SHAPE 1 — Large teal oval (centre, front) ═══ */
.hv-shape--main {
  width: 330px; height: 390px;
  top: 30px; left: 60px;
  background: url('Images/About Us/TriocolorAboutUs.jpg') center/cover no-repeat;
  z-index: 4;
  animation-delay: 0s;
  flex-direction: column; gap: 14px;
  overflow: hidden;
}
.hv-shape__inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 24px; z-index: 2; position: relative;
}
.hv-logo-img { width: 150px; filter: brightness(0) invert(1); opacity: .95; }
.hv-palette  { display: flex; gap: 7px; }
.hv-palette span {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.55);
}
.hv-shape__label {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9);
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.2); padding: 5px 14px; border-radius: 100px;
}

/* ═══ SHAPE 2 — Orange circle (top-right, behind main) ═══ */
.hv-shape--tr {
  width: 210px; height: 210px;
  top: 0; right: 0;
  background: linear-gradient(135deg, #F5A000 0%, #FFD166 100%);
  z-index: 3;
  animation-delay: -2s;
}

/* ═══ SHAPE 4 — Navy analytics card (bottom-left) ═══ */
.hv-shape--bl {
  width: 248px; height: 210px;
  bottom: 0; left: 0;
  background: linear-gradient(145deg, #0B1F42 0%, #0f2d5e 100%);
  border-radius: 18px;           /* override .hv-shape's 50% */
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0; padding: 14px;
  z-index: 4;
  animation-delay: -4s;
}

/* Chart container — holds arrow + bars */
.hbl-chart {
  position: relative;
  width: 100%;
  height: 118px;
}


/* Bars row */
.hbl-bars {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; align-items: flex-end;
  gap: 5px; height: 80px;
}
.hbl-bar-wrap {
  flex: 1; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  gap: 3px;
}
.hbl-bar {
  width: 100%;
  background: rgba(255,255,255,.18);
  border-radius: 4px 4px 0 0;
  flex-shrink: 0;
}
.hbl-bar--hi { background: linear-gradient(to top, #1E8FFF, #60CBFF); }
.hbl-bar-wrap span {
  font-size: 7px; font-weight: 600;
  color: rgba(255,255,255,.38); white-space: nowrap; flex-shrink: 0;
}
.hbl-bar-wrap--hi span { color: rgba(255,255,255,.9); font-weight: 700; }

/* Stat label */
.hbl-stat {
  font-size: 13px; font-weight: 800;
  color: #5BC5FF; letter-spacing: -.01em;
  margin-top: 10px; white-space: nowrap;
}

/* Search pill */
.hbl-pill {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; width: 100%;
  margin-top: 7px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px; padding: 6px 10px;
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.82); white-space: nowrap;
}

/* ═══ ARCH — Gold (bottom-right, tallest element, behind main) ═══ */
.hv-arch {
  position: absolute;
  width: 310px; height: 460px;    /* tallest — fills right side */
  bottom: 0; right: 0;
  background: linear-gradient(160deg, rgba(245,160,0,.82) 0%, rgba(255,202,64,.75) 100%),
              url('Images/About Us/TriocolorAboutUs1.jpg') center/cover no-repeat;
  border-radius: 155px 155px 0 0; /* arch = rounded top, flat bottom */
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(245,160,0,.35);
  z-index: 2;                      /* behind main circle */
  animation: shapeFloat 6s ease-in-out infinite;
  animation-delay: -1s;
}
.hv-arch__body {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  position: relative; z-index: 2; margin-top: -40px;
}
.hv-arch__arrow svg { filter: drop-shadow(0 3px 10px rgba(0,0,0,.12)); }
.hv-arch__stat { text-align: center; }
.hv-arch__stat strong {
  display: block; font-size: 32px; font-weight: 900;
  color: #fff; letter-spacing: -.04em; line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.hv-arch__stat span {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.75);
  text-transform: uppercase; letter-spacing: .1em;
}

/* Dotted overlay on shapes */
.hv-dots-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.3) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none; z-index: 1;
}
.hv-dots-grid--sm { background-size: 10px 10px; }

/* ═══ Floating service icon badges ═══ */
.hv-icon-badge {
  position: absolute; z-index: 6;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  box-shadow: var(--sh-md);
  animation: badgeFloat 4s ease-in-out infinite;
  white-space: nowrap;
}
.hv-icon-badge--design { top: 14px; left: 8px;    background: #fff;        color: var(--orange); animation-delay: 0s; }
.hv-icon-badge--seo    { top: 200px; right: 185px; background: var(--navy); color: #fff;          animation-delay: -.8s; }
.hv-icon-badge--star   { bottom: 55px; left: 215px; background: #fff;       color: var(--navy);   animation-delay: -1.6s; }

/* ═══ Review card ═══ */
.hv-review-card {
  position: absolute; z-index: 6;
  top: 210px; left: 170px;
  background: #fff; border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-md); min-width: 170px;
  animation: badgeFloat 5s ease-in-out infinite;
  animation-delay: -2.5s;
}
.hv-review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: url('Images/Header/woman-wearing-glasses-that-says-i-love-you.png') center top/cover no-repeat;
  border: 2px solid rgba(30,143,255,.2);
}
.hv-review-card__name  { font-size: 12px; font-weight: 700; color: var(--navy); }
.hv-review-card__stars { font-size: 11px; color: var(--orange); letter-spacing: 1px; }
.hv-review-card__text  { font-size: 11px; color: var(--gray); }

/* ═══ Curved dashed arrow ═══ */
.hv-curved-arr {
  position: absolute; z-index: 5;
  top: 290px; left: 45px;
  width: 90px; opacity: 0;
  transition: opacity .3s;
}
.hv-curved-arr.drawn { opacity: 1; }
.hv-curved-arr .arr-path { stroke-dasharray: 130; stroke-dashoffset: 130; }
.hv-curved-arr .arr-head { stroke-dasharray:  40; stroke-dashoffset:  40; }
.hv-curved-arr.drawn .arr-path { animation: drawStroke 1.2s ease .4s forwards; }
.hv-curved-arr.drawn .arr-head { animation: drawStroke .5s ease 1.5s forwards; }

/* ═══ Sparkles ═══ */
.hv-sparkle {
  position: absolute; z-index: 6; font-weight: 900; line-height: 1;
  animation: sparkle 2.4s ease-in-out infinite;
}
.hv-sp--a { font-size: 22px; color: var(--orange); top: 10px;    right: 220px; animation-delay: 0s; }
.hv-sp--b { font-size: 15px; color: var(--teal);   top: 160px;   right: 310px; animation-delay: -.7s; }
.hv-sp--c { font-size: 18px; color: var(--blue);   bottom: 225px; left: 30px;  animation-delay: -1.4s; font-style: normal; }
@keyframes sparkle {
  0%,100% { transform: scale(1)   rotate(0deg);  opacity: .7; }
  50%      { transform: scale(1.5) rotate(20deg); opacity: 1; }
}

/* ═══ Decorative dots ═══ */
.hv-dot {
  position: absolute; border-radius: 50%; z-index: 5;
  animation: dotPop 3s ease-in-out infinite;
}
.hv-dot--a { width: 13px; height: 13px; background: var(--orange); bottom: 235px; left: 55px;   animation-delay: 0s; }
.hv-dot--b { width:  9px; height:  9px; background: var(--blue);   top:  55px;    left: 40px;   animation-delay: -.6s; }
.hv-dot--c { width: 11px; height: 11px; background: var(--teal);   bottom: 150px; right: 310px; animation-delay: -1.2s; }
.hv-dot--d { width:  8px; height:  8px; background: var(--orange); top: 310px;    right: 315px; animation-delay: -1.9s; }

/* ── DRAWN ARROW ANIMATION ── */
.arr-path { stroke-dasharray: 160; stroke-dashoffset: 160; }
.arr-head  { stroke-dasharray:  40; stroke-dashoffset:  40; }
.drawing .arr-path { animation: drawStroke 1s ease forwards; }
.drawing .arr-head { animation: drawStroke .5s ease forwards; animation-delay: .85s; }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }

/* ── HERO PORTRAIT ── */
.hero__portrait {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  z-index: 1;
}
.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease calc(var(--delay, 0s)), transform .6s ease calc(var(--delay, 0s));
}
.reveal.in { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--sh-md); }

.nav__inner { display: flex; align-items: center; height: 72px; gap: 40px; }
.nav__logo img { height: 38px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--gray); transition: color .18s; }
.nav__links a:hover, .nav__links a.active { color: var(--navy); }

.nav__cta { margin-left: 8px; padding: 10px 22px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px; z-index: 210; position: relative; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .25s ease; }

/* Hamburger → X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  height: 100vh; min-height: 1000px;
  display: flex; flex-direction: column;
  padding-top: 72px;
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, #f5f9ff 0%, #edf2ff 30%, #f2ecff 60%, #fff6ec 85%, #edfcff 100%);
}

/* Orb background */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: orbFloat 14s ease-in-out infinite;
}
.orb--1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(100,140,255,.22) 0%, transparent 70%); top: -160px; right: 0;   animation-delay: 0s; }
.orb--2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,150,255,.18) 0%, transparent 70%); top: 40%; left: -100px; animation-delay: -5s; }
.orb--3 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(245,160,0,.14) 0%, transparent 70%);  bottom: 5%; right: 18%; animation-delay: -9s; }
.orb--4 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(0,196,212,.16) 0%, transparent 70%);  top: 20%; left: 32%;  animation-delay: -3s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-26px) scale(1.04); }
  66%      { transform: translate(-16px,18px) scale(.97); }
}

/* Geometric accents */
.geo--tri  { position: absolute; width: 100px; height: 100px; top: 22%; right: 14%; opacity: .06; background: var(--navy); clip-path: polygon(50% 0%,0% 100%,100% 100%); animation: spin 20s linear infinite; }
.geo--ring { position: absolute; border-radius: 50%; animation: spin linear infinite; }
.geo--ring-a { width: 220px; height: 220px; border: 2px solid rgba(30,143,255,.12); bottom: 18%; left: 6%;  animation-duration: 28s; }
.geo--ring-b { width: 140px; height: 140px; border: 2px solid rgba(245,160,0,.14);  top: 14%;   right: 32%; animation-duration: 18s; animation-direction: reverse; }
.geo--dot { position: absolute; border-radius: 50%; animation: dotPop 3.2s ease-in-out infinite; }
.geo--dot-a { width: 12px; height: 12px; background: rgba(245,160,0,.55);  top: 24%; right: 30%; animation-delay: 0s; }
.geo--dot-b { width:  8px; height:  8px; background: rgba(30,143,255,.55); top: 58%; right: 12%; animation-delay: -.8s; }
.geo--dot-c { width: 10px; height: 10px; background: rgba(0,196,212,.55);  top: 12%; left: 20%;  animation-delay: -1.6s; }
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes dotPop  { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.8);opacity:1} }

/* Hero layout */
.hero__inner {
  flex: 1; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 32px;
  padding-top: 48px; padding-bottom: 48px;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; color: var(--gray);
  letter-spacing: .04em; margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,160,0,.2);
  animation: dotPop 2s ease-in-out infinite;
}

/* Hero title */
.hero__title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--navy); margin-bottom: 22px;
}
.hero__title-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 18px; font-weight: 400; color: var(--gray);
  line-height: 1.75; max-width: 460px; margin-bottom: 40px;
}

/* Hero CTAs */
.hero__ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; position: relative; margin-bottom: 44px; }
.hero-arrow {
  position: absolute; left: -56px; bottom: -18px;
  width: 72px; opacity: 0; transform: rotate(-8deg);
  transition: opacity .3s;
}
.hero-arrow.show { opacity: 1; }

/* Trust strip */
.hero__trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid #fff; margin-right: -10px;
}
.trust-av--a { background: url('Images/Header/woman-wearing-glasses-that-says-i-love-you.png') center top/cover no-repeat; }
.trust-av--b { background: url('Images/Header/arafed-woman-standing-front-table-with-bunch-art-work-it.png') center top/cover no-repeat; }
.trust-av--c { background: url('Images/Header/woman-wearing-glasses-that-says-i-love-you.png') center top/cover no-repeat; }
.trust-text { font-size: 13px; color: var(--gray); margin-left: 18px; }
.trust-text strong { color: var(--navy); }

/* Floating cards */
.hv-card {
  position: absolute; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 20px 22px; box-shadow: var(--sh-md);
  animation: cardFloat 5s ease-in-out infinite;
}
.hv-card--main { top: 30px; right: 20px; width: 220px; animation-delay: 0s; }
.hv-card--seo  { bottom: 60px; left: 0;   width: 200px; animation-delay: -2s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hv-card__label { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.hv-card__preview--brand {
  height: 80px; border-radius: var(--r); margin-bottom: 12px;
  background: linear-gradient(135deg,rgba(11,36,71,.07),rgba(30,143,255,.1));
  display: flex; align-items: center; justify-content: center;
}
.hv-card__preview--brand img { opacity: .7; }
.hv-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hv-tag { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.hv-tag--orange { background: rgba(245,160,0,.12); color: var(--orange); }
.hv-tag--blue   { background: rgba(30,143,255,.12); color: var(--blue); }
.hv-meta-text { font-size: 11px; color: var(--gray); }
.hv-stat { font-size: 12px; font-weight: 700; color: var(--navy); }

/* Mini bar chart */
.hv-bars { display: flex; align-items: flex-end; gap: 5px; height: 64px; margin-bottom: 12px; }
.hv-bar { flex: 1; background: rgba(11,36,71,.1); border-radius: 4px 4px 0 0; transition: height .4s; }
.hv-bar--accent { background: linear-gradient(to top, var(--blue), var(--teal)); }

/* Rating badge */
.hv-badge {
  position: absolute; top: 40%; left: 20px;
  background: var(--navy); color: #fff;
  border-radius: var(--r); padding: 12px 16px;
  text-align: center; box-shadow: var(--sh-lg);
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: -3.5s;
}
.hv-badge__stars { font-size: 14px; color: var(--orange); margin-bottom: 4px; }
.hv-badge__label { font-size: 10px; opacity: .6; }

/* Inter-card arrow */
.hv-arrow--1 { position: absolute; top: 50%; left: 52%; width: 40px; }

/* Hero stats strip */
.hero__stats {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(11,36,71,.08);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
}
.hero__stats-inner {
  display: flex; align-items: center; gap: 0;
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
}
.hstat { display: flex; flex-direction: column; gap: 4px; padding: 24px 40px 24px 0; }
.hstat:first-child { padding-left: 0; }
.hstat__n {
  font-size: 34px; font-weight: 900; letter-spacing: -.04em;
  line-height: 1; color: var(--navy);
}
.hstat__n sup { font-size: 18px; color: var(--orange); vertical-align: super; }
.hstat__l { font-size: 12px; font-weight: 500; color: var(--gray); }
.hstat__div { width: 1px; height: 36px; background: var(--border); margin-right: 40px; }


/* ════════════════════════════════════════════════════════════
   LOGOS / TRUSTED-BY STRIP
   ════════════════════════════════════════════════════════════ */
.logos {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}
.logos__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}
.logos__label-wrap {
  flex-shrink: 0;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--border);
  align-self: stretch;
  display: flex;
  align-items: center;
}
.logos__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gray); white-space: nowrap;
}
.logos__track-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.logos__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-scroll 28s linear infinite;
}
.logos__track:hover { animation-play-state: paused; }
.logos__item {
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(11,36,71,.22);
  white-space: nowrap; transition: color .2s;
  cursor: default; padding: 0 4px;
}
.logos__item:hover { color: var(--navy); }
.logos__dot {
  color: rgba(11,36,71,.15);
  font-size: 10px;
  padding: 0 20px;
  flex-shrink: 0;
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   PROCESS  — horizontal connected flow
   ════════════════════════════════════════════════════════════ */
.process {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3f1ff 0%, #eaf0ff 60%, #f0f8ff 100%);
  position: relative; overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(30,143,255,.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(0,196,212,.06) 0%, transparent 50%);
  pointer-events: none;
}

.process__header { text-align: center; margin-bottom: 48px; }
.process__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; letter-spacing: -.03em; color: var(--navy);
  margin-bottom: 12px; margin-top: 8px;
}
.process__sub { font-size: 16px; color: var(--gray); max-width: 500px; margin: 0 auto; line-height: 1.7; }

.process__row {
  display: flex; align-items: flex-start; gap: 0;
}

.pstep-arr {
  flex-shrink: 0; width: 56px;
  display: flex; align-items: center; justify-content: center;
  padding-top: 28px; opacity: .35;
}
.pstep-arr svg { width: 28px; height: 28px; }

.pstep {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 20px 28px;
  background: #fff; border-radius: var(--r-xl);
  border: 1.5px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 28px rgba(11,36,71,.07);
  position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pstep:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

.pstep__num {
  position: absolute; top: 14px; right: 16px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  color: rgba(11,36,71,.18); text-transform: uppercase;
}

.pstep__icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.pstep:nth-child(1) .pstep__icon { background: linear-gradient(135deg, rgba(245,160,0,.15), rgba(245,160,0,.05)); }
.pstep:nth-child(3) .pstep__icon { background: linear-gradient(135deg, rgba(30,143,255,.15), rgba(30,143,255,.05)); }
.pstep:nth-child(5) .pstep__icon { background: linear-gradient(135deg, rgba(0,196,212,.15), rgba(0,196,212,.05)); }
.pstep:nth-child(7) .pstep__icon { background: linear-gradient(135deg, rgba(11,36,71,.1), rgba(11,36,71,.05)); }

.pstep__label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 6px;
}
.pstep:nth-child(1) .pstep__label { color: var(--orange); }
.pstep:nth-child(3) .pstep__label { color: var(--blue); }
.pstep:nth-child(5) .pstep__label { color: var(--teal); }
.pstep:nth-child(7) .pstep__label { color: var(--navy); }

.pstep__title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -.02em; }
.pstep__desc  { font-size: 13px; color: var(--gray); line-height: 1.65; }

@media (max-width: 900px) {
  .process__row { flex-wrap: wrap; gap: 16px; }
  .pstep { flex: 1 1 calc(50% - 8px); }
  .pstep-arr { display: none; }
}
@media (max-width: 520px) {
  .pstep { flex: 1 1 100%; }
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US  — two-column (Growim-style)
   ════════════════════════════════════════════════════════════ */
.why { padding: 96px 0; background: #fff; }
.why__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Left copy */
.why__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; letter-spacing: -.03em; color: var(--navy);
  margin-bottom: 16px; margin-top: 8px; line-height: 1.15;
}
.why__lead {
  font-size: 16px; color: var(--gray); line-height: 1.75;
  max-width: 440px; margin-bottom: 36px;
}

.why__feats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 40px;
}
.why-feat {
  display: flex; gap: 14px; align-items: flex-start;
}
.why-feat__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-feat:nth-child(1) .why-feat__icon { background: rgba(245,160,0,.1); }
.why-feat:nth-child(2) .why-feat__icon { background: rgba(30,143,255,.1); }
.why-feat:nth-child(3) .why-feat__icon { background: rgba(0,196,212,.1); }
.why-feat:nth-child(4) .why-feat__icon { background: rgba(11,36,71,.07); }
.why-feat__body h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-feat__body p  { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* Right visual */
.why__visual {
  position: relative; height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.why__bg-circle {
  width: 360px; height: 360px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,143,255,.09) 0%, rgba(0,196,212,.12) 100%);
  border: 2px solid rgba(30,143,255,.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.why__bg-circle-inner {
  width: 280px; height: 280px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,143,255,.06) 0%, rgba(0,196,212,.09) 100%);
  border: 2px solid rgba(30,143,255,.07);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.why-stat { text-align: center; }
.why-stat__n {
  font-size: 38px; font-weight: 900; letter-spacing: -.04em; line-height: 1;
  color: var(--navy);
}
.why-stat__n sup { font-size: 20px; color: var(--orange); }
.why-stat__l { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }

/* Floating badges */
.why__badge {
  position: absolute; background: #fff;
  border-radius: var(--r); padding: 12px 18px;
  box-shadow: var(--sh-md); z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  animation: badgeFloat 4s ease-in-out infinite;
}
.why__badge span { font-size: 18px; }
.why__badge--a { top: 30px;   left: 0;    animation-delay: 0s; }
.why__badge--b { bottom: 40px; right: 0;  animation-delay: -2s; }
.why__badge--c { top: 44%;    right: -10px; animation-delay: -1s; }

@media (max-width: 900px) {
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__visual { height: 320px; }
  .why__bg-circle { width: 280px; height: 280px; }
  .why__bg-circle-inner { width: 210px; height: 210px; }
  .why-stat__n { font-size: 28px; }
}

/* ════════════════════════════════════════════════════════════
   BRAND DNA
   ════════════════════════════════════════════════════════════ */
.dna { padding: 96px 0; background: #fff; position: relative; overflow: hidden; }
.dna::before {
  content: ''; position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,143,255,.04) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

.dna__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.dna__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; letter-spacing: -.035em;
  line-height: 1.1; margin-bottom: 20px; color: var(--navy);
}
.dna__lead { font-size: 17px; color: var(--gray); line-height: 1.8; }

/* Central canvas */
.dna__canvas {
  position: relative; display: flex; justify-content: center;
  margin-bottom: 64px; min-height: 300px;
}
.dna-arr { position: absolute; pointer-events: none; opacity: 0; transition: opacity .3s; }
.dna-arr.drawn { opacity: 1; }
.dna-arr--a { top: 0;    left:  calc(50% - 280px); width: 60px; transform: rotate(16deg); }
.dna-arr--b { top: 0;    right: calc(50% - 280px); width: 60px; transform: rotate(-16deg) scaleX(-1); }
.dna-arr--c { bottom: 0; right: calc(50% - 260px); width: 80px; transform: rotate(-8deg); }

.dna-tri-wrap { position: relative; width: 300px; height: 275px; }
.dna-tri-svg  { width: 100%; height: 100%; }

/* Triangle faces */
.tf { transition: opacity .3s; }
.tf:hover { opacity: 1 !important; }
.tf--o { opacity: .84; }
.tf--b { opacity: .84; }
.tf--t { opacity: .84; }

/* Cursor animation */
.cursor-g { animation: cursorBob 2.6s ease-in-out infinite; transform-origin: 14px 14px; }
@keyframes cursorBob {
  0%,100% { transform: translate(136px,120px) scale(1); }
  50%      { transform: translate(136px,120px) scale(1.1); }
}

/* Pulse rings */
.pr { opacity: 0; transform-origin: 150px 135px; }
.pr-1 { animation: pulse 2.6s ease-out infinite; }
.pr-2 { animation: pulse 2.6s ease-out .55s infinite; }
.pr-3 { animation: pulse 2.6s ease-out 1.1s infinite; }
@keyframes pulse {
  0%   { opacity: .5; transform: scale(.4); }
  100% { opacity: 0;  transform: scale(2.2); }
}

/* Corner node labels */
.dna-node {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: var(--navy);
  background: #fff; padding: 7px 14px; border-radius: 100px;
  border: 1.5px solid var(--border); box-shadow: var(--sh);
  white-space: nowrap;
}
.dna-node__pip { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dna-node--top { top: -14px;   left: 50%; transform: translateX(-50%); }
.dna-node--bl  { bottom: 18px; left:  -68px; }
.dna-node--br  { bottom: 18px; right: -68px; }

/* Pillars */
.dna__pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar {
  border-radius: var(--r-lg); border: 1.5px solid var(--border);
  overflow: hidden; background: #fff;
  transition: box-shadow .25s, transform .25s;
  cursor: default;
}
.pillar:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.pillar__accent { height: 5px; }
.pillar__top { display: flex; align-items: center; justify-content: space-between; padding: 28px 28px 0; }
.pillar__num  { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: .1em; }
.pillar__arrow {
  width: 34px; height: 34px; border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all .22s;
}
.pillar:hover .pillar__arrow { background: var(--navy); border-color: var(--navy); color: #fff; transform: rotate(-45deg); }
.pillar__arrow svg { width: 16px; height: 16px; }
.pillar__title {
  font-size: 20px; font-weight: 800; letter-spacing: -.015em;
  line-height: 1.25; padding: 20px 28px 12px; color: var(--navy);
}
.pillar__desc { font-size: 14px; color: var(--gray); line-height: 1.75; padding: 0 28px 28px; }


/* ════════════════════════════════════════════════════════════
   ABOUT INTRO — editorial two-column
   ════════════════════════════════════════════════════════════ */
.abt-intro { padding: 96px 0; background: #fff; overflow: hidden; }

.abt-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left copy */
.abt-intro__copy { position: relative; }

.abt-deco {
  position: absolute;
  top: 0; right: 0;
  display: flex; align-items: flex-start; gap: 5px;
}
.abt-deco__sq { border-radius: 3px; }
.abt-deco__sq--a { width: 24px; height: 24px; background: var(--orange); }
.abt-deco__sq--b { width: 16px; height: 16px; background: var(--navy); margin-top: 6px; }

.abt-heading-row {
  display: flex;
  gap: 22px;
  align-items: stretch;
  padding-right: 56px; /* keep away from deco squares */
}

.abt-accent-line {
  width: 3px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 2px;
  align-self: stretch;
}

.abt-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.abt-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 420px;
}

/* Right visual */
.abt-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  align-items: end;
}

.abt-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.abt-photo--a {
  height: 310px;
  background: url('Images/About Us/TriocolorAboutUs.jpg') center/cover no-repeat;
}
.abt-photo--b {
  height: 230px;
  background: url('Images/About Us/TriocolorAboutUs1.jpg') center/cover no-repeat;
}

/* Circular rotating stamp */
.abt-stamp {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 112px; height: 112px;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  box-shadow: 0 6px 32px rgba(11,36,71,.14);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}

.abt-stamp__ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: var(--navy);
  animation: spin 14s linear infinite;
}

.abt-stamp__icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,160,0,.35);
}

@media (max-width: 900px) {
  .abt-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .abt-heading-row { padding-right: 48px; }
}
@media (max-width: 480px) {
  .abt-photo--a { height: 200px; }
  .abt-photo--b { height: 150px; }
  .abt-stamp { width: 86px; height: 86px; }
  .abt-stamp__icon { width: 32px; height: 32px; }
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services { padding-top: 96px; }
.services__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.services__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; letter-spacing: -.035em;
  line-height: 1.1; color: var(--navy);
}

/* Alternating service rows */
.svc-row { padding: 80px 0; }
.svc-row--light { background: var(--off); }
.svc-row--dark  { background: var(--navy); }
.svc-row__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}
.svc-row__inner--flip > :first-child { order: 2; }
.svc-row__inner--flip > :last-child  { order: 1; }

.svc-row__kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.svc-num { font-size: 13px; font-weight: 700; color: var(--gray); letter-spacing: .06em; }
.svc-num--light { color: rgba(255,255,255,.4); }
.svc-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
}
.svc-tag--orange { background: rgba(245,160,0,.14); color: var(--orange); }
.svc-tag--blue   { background: rgba(30,143,255,.16); color: var(--blue); }

.svc-row__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.15; margin-bottom: 18px; color: var(--navy);
}
.svc-row__title--light { color: #fff; }
.svc-row__desc { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.svc-row__desc--light { color: rgba(255,255,255,.6); }

.svc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.svc-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--navy); }
.svc-list--light li { color: rgba(255,255,255,.85); }
.svc-list__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.svc-row__cta { align-self: flex-start; }

/* Service visual canvases */
.svc-canvas {
  border-radius: var(--r-xl); position: relative;
  overflow: hidden; box-shadow: var(--sh-lg);
  min-height: 340px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.svc-canvas--design {
  background: linear-gradient(145deg, #f0f5ff, #e8f0fe);
  border: 1.5px solid var(--border); padding: 40px;
}
.svc-canvas--seo { background: linear-gradient(145deg,#0B2447,#0d3060); padding: 40px; }

.sc-layer--logo { display: flex; align-items: center; justify-content: center; }

.sc-chip {
  background: #fff; border-radius: 100px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--sh);
  color: var(--navy);
}
.sc-chip--type { font-size: 18px; font-weight: 800; gap: 10px; }
.sc-chip--type span { font-size: 12px; font-weight: 600; color: var(--gray); }
.chip-swatch { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; }

/* SEO canvas */
.seo-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; width: 100%; }
.seo-bar {
  flex: 1; background: rgba(255,255,255,.15); border-radius: 6px 6px 0 0;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 6px;
}
.seo-bar span { font-size: 9px; color: rgba(255,255,255,.4); font-weight: 600; }
.seo-bar--hi { background: linear-gradient(to top, var(--blue), var(--teal)); }
.seo-bar--hi span { color: rgba(255,255,255,.8); }

.seo-label {
  font-size: 18px; font-weight: 800; color: #fff; text-align: center;
  background: linear-gradient(135deg,var(--blue),var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-rank {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08); padding: 6px 14px; border-radius: 100px;
}

/* Canvas arrows */
.sc-arrow { position: absolute; pointer-events: none; }
.sc-arrow--2 { top: 20px; left: 20px; width: 48px; }

/* Mini service cards */
.svc-mini-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  padding: 40px 0 96px;
}
.svc-mini {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.svc-mini:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.svc-mini__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-mini__icon svg { width: 22px; height: 22px; }
.svc-mini__icon--orange { background: rgba(245,160,0,.12); color: var(--orange); }
.svc-mini__icon--blue   { background: rgba(30,143,255,.12); color: var(--blue); }
.svc-mini__icon--teal   { background: rgba(0,196,212,.12);  color: var(--teal); }
.svc-mini__title { font-size: 16px; font-weight: 700; color: var(--navy); }
.svc-mini__desc  { font-size: 14px; color: var(--gray); line-height: 1.65; }


/* ════════════════════════════════════════════════════════════
   WORKS
   ════════════════════════════════════════════════════════════ */
.works { padding-bottom: 80px; overflow: hidden; }

/* Marquee */
.works-marquee { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; margin-bottom: 40px; }
.works-marquee__track { display: flex; align-items: center; gap: 48px; width: max-content; animation: marquee 24s linear infinite; }
.wm-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 9vw, 104px);
  font-weight: 900; font-style: italic;
  color: transparent; -webkit-text-stroke: 2px var(--navy);
  white-space: nowrap; letter-spacing: -.03em;
}
.wm-star { font-size: 44px; color: var(--orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.works__subhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }

/* Works editorial grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 220px;
  gap: 16px;
}
.wg-item { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; }
.wg-item--a { grid-column: 1 / 8;  grid-row: 1; }
.wg-item--b { grid-column: 8 / 13; grid-row: 1; }
.wg-item--c { grid-column: 1 / 5;  grid-row: 2; }
.wg-item--d { grid-column: 5 / 9;  grid-row: 2; }
.wg-item--e { grid-column: 9 / 13; grid-row: 2; }

.wg-item__img { width: 100%; height: 100%; transition: transform .5s ease; }
.wg-item:hover .wg-item__img { transform: scale(1.06); }

.wg-item__img--1 { background: url('Images/Portfolio/Copy of FA_SkinCode_Brochure_TriFold_A4-01 (1).jpg') center/cover no-repeat; }
.wg-item__img--2 { background: url('Images/Portfolio/WR_Brochure_TriFold_Radiance-01.jpg') center/cover no-repeat; }
.wg-item__img--3 { background: url('Images/Portfolio/BrochureDesign - Web Closeu copy.jpg') center/cover no-repeat; }
.wg-item__img--4 { background: url('Images/Portfolio/TravelFlyer.jpg') center/cover no-repeat; }
.wg-item__img--5 { background: url('Images/Portfolio/Meeka_Freshmilk_FA.jpg') center/cover no-repeat; }

.wg-item__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(11,36,71,.9) 0%, transparent 100%);
  color: #fff; display: flex; flex-direction: column; gap: 6px;
  transform: translateY(8px); opacity: 0; transition: all .32s ease;
}
.wg-item:hover .wg-item__overlay { transform: translateY(0); opacity: 1; }
.wg-item__cat {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
}
.wg-item__title { font-size: 15px; font-weight: 700; line-height: 1.3; flex: 1; }
.wg-item__arrow { font-size: 22px; align-self: flex-end; transition: transform .2s; }
.wg-item:hover .wg-item__arrow { transform: translate(3px,-3px); }


/* ════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy); padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-band__bg { position: absolute; inset: 0; pointer-events: none; }
.cband-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.cband-orb--a { width: 400px; height: 400px; background: rgba(30,143,255,.25);  top: -100px; right: 5%; }
.cband-orb--b { width: 300px; height: 300px; background: rgba(245,160,0,.2); bottom: -80px; left: 10%; }

.cta-band__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.cta-band__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 12px;
}
.cta-band__title em { color: var(--orange); }
.cta-band__sub { font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 32px; }

.cta-band__stats { display: flex; align-items: center; gap: 40px; }
.cbstat { display: flex; flex-direction: column; gap: 6px; }
.cbstat__n {
  font-size: 56px; font-weight: 900; color: #fff;
  letter-spacing: -.05em; line-height: 1;
}
.cbstat__n sup { font-size: 24px; color: var(--orange); vertical-align: super; }
.cbstat__l { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; }
.cbstat__sep { width: 1px; height: 64px; background: rgba(255,255,255,.1); }


/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing { padding: 96px 0; background: var(--off); }
.pricing__head { text-align: center; margin-bottom: 44px; }
.pricing__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900; letter-spacing: -.035em; line-height: 1.1; margin-bottom: 14px;
}
.pricing__sub { font-size: 15px; color: var(--gray); }
.pricing__sub a { color: var(--blue); font-weight: 600; }
.pricing__sub a:hover { text-decoration: underline; }

.pricing__toggle {
  display: flex; justify-content: center;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 4px; width: fit-content; margin: 0 auto 52px;
}
.ptoggle {
  padding: 10px 28px; border-radius: 100px; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer;
  background: none; color: var(--gray); transition: all .2s;
}
.ptoggle.active { background: var(--navy); color: #fff; }

.pricing__plans { display: none; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing__plans.active { display: grid; }

.pcard {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 36px 32px; position: relative;
  transition: box-shadow .25s, transform .25s;
}
.pcard:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.pcard--featured { border-color: var(--navy); box-shadow: var(--sh-md); }
.pcard--featured:hover { box-shadow: var(--sh-lg); }

.pcard__popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.pcard__tier  { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.pcard__price { font-size: 16px; font-weight: 600; color: var(--gray); }
.pcard__price strong { font-size: 48px; font-weight: 900; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.pcard__period { font-size: 12px; color: var(--gray); margin-bottom: 24px; }
.pcard__div { height: 1px; background: var(--border); margin-bottom: 24px; }

.pcard__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pcard__list li { font-size: 14px; font-weight: 500; padding-left: 20px; position: relative; }
.pcard__list li::before { position: absolute; left: 0; font-size: 12px; }
.pcard__list li.on  { color: var(--navy); }
.pcard__list li.on::before  { content: '✓'; color: var(--teal); font-weight: 700; }
.pcard__list li.off { color: var(--gray); opacity: .45; }
.pcard__list li.off::before { content: '✗'; color: var(--gray); }

.pcard__btn { width: 100%; justify-content: center; }

.pricing__note {
  display: flex; align-items: center; gap: 10px;
  background: rgba(30,143,255,.07); border: 1.5px solid rgba(30,143,255,.16);
  border-radius: 12px; padding: 14px 20px;
  font-size: 13px; color: var(--navy); margin-top: 28px;
}
.pricing__note svg { color: var(--blue); flex-shrink: 0; }


/* ════════════════════════════════════════════════════════════
   ABOUT / TEAM
   ════════════════════════════════════════════════════════════ */
.about { padding: 96px 0; background: #fff; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Visual grid */
.av-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.av-block { border-radius: var(--r-lg); border: 1.5px solid var(--border); }
.av-block--a {
  grid-column: 1 / 3; height: 220px;
  background: linear-gradient(to top, rgba(11,36,71,.55) 0%, transparent 55%),
              url('Images/Studio/Ourstudio.jpg') center/cover no-repeat;
  position: relative;
}
.av-block--a::after { content: 'Our Studio · KL'; position: absolute; bottom: 16px; left: 20px; font-size: 12px; color: #fff; font-weight: 600; }
.av-block--b { height: 160px; background: url('Images/Studio/Ourstudio1.jpg') center/cover no-repeat; }
.av-block--c { height: 160px; background: url('Images/Studio/Ourstudio2.jpg') center/cover no-repeat; }

.av-badge {
  position: absolute; bottom: -16px; right: -20px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  box-shadow: var(--sh-md);
}
.av-badge svg { color: var(--orange); }
.av-badge strong { color: var(--orange); }

/* Copy */
.about__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 20px;
}
.about__desc { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }

/* Tabs */
.about__tabs {
  display: flex; gap: 0; margin-bottom: 20px; margin-top: 28px;
  border: 1.5px solid var(--border); border-radius: 100px;
  padding: 4px; width: fit-content;
}
.atab {
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600; border: none;
  background: none; color: var(--gray); cursor: pointer; transition: all .2s;
}
.atab.active { background: var(--navy); color: #fff; }

.atab-content { display: none; }
.atab-content.active { display: block; }
.atab-content p { font-size: 14px; color: var(--gray); line-height: 1.75; }


/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq { padding: 96px 0; background: var(--off); }
.faq__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900; letter-spacing: -.035em; line-height: 1.1; margin-bottom: 16px;
}
.faq__sub { font-size: 14px; color: var(--gray); }
.faq__sub a { color: var(--blue); font-weight: 600; }
.faq__sub a:hover { text-decoration: underline; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; font-size: 15px; font-weight: 600; color: var(--navy); text-align: left;
}
.faq-arr { font-size: 20px; color: var(--orange); flex-shrink: 0; transition: transform .22s; }
.faq-item.active .faq-arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p { font-size: 14px; color: var(--gray); line-height: 1.75; padding-bottom: 20px; }


/* ════════════════════════════════════════════════════════════
   THANK-YOU MARQUEE
   ════════════════════════════════════════════════════════════ */
.ty-marquee { background: var(--navy); padding: 18px 0; overflow: hidden; }
.ty-track { display: flex; gap: 52px; width: max-content; animation: marquee 22s linear infinite; }
.ty-track span {
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); white-space: nowrap;
}


/* ════════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════════ */
.blog { padding: 96px 0; background: #fff; }
.blog__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.blog__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.15;
}

/* Editorial blog grid */
.blog-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }

.blog-featured {
  border: 1.5px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
  transition: box-shadow .25s, transform .25s; background: #fff;
}
.blog-featured:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.blog-featured__img {
  height: 260px;
  background: url('Images/Blog/LogoDesign.jpg') center/cover no-repeat;
}
.blog-featured__body { padding: 28px; }
.blog-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; display: inline-block; margin-bottom: 12px;
}
.blog-tag--design { background: rgba(245,160,0,.12); color: var(--orange); }
.blog-tag--seo    { background: rgba(30,143,255,.12); color: var(--blue); }
.blog-tag--brand  { background: rgba(0,196,212,.12);  color: var(--teal); }
.blog-featured__title { font-size: 22px; font-weight: 800; letter-spacing: -.015em; line-height: 1.25; margin-bottom: 12px; }
.blog-featured__exc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.blog-featured__meta { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.bf-arrow { color: var(--orange); font-size: 16px; transition: transform .2s; }
.blog-featured:hover .bf-arrow { transform: translate(3px,-3px); }

.blog-sm-col { display: flex; flex-direction: column; gap: 20px; }
.blog-sm {
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: grid; grid-template-columns: 120px 1fr;
  transition: box-shadow .2s, transform .2s; background: #fff;
}
.blog-sm:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.blog-sm__img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.blog-sm__img--2 { background-image: url('Images/Blog/SEO.jpg'); }
.blog-sm__img--3 { background-image: url('Images/Blog/DesignSEO.jpg'); }
.blog-sm__body { padding: 20px; }
.blog-sm__title { font-size: 15px; font-weight: 700; line-height: 1.35; margin-bottom: 12px; }
.blog-sm__meta { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.blog-sm:hover .bf-arrow { transform: translate(3px,-3px); }


/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact { padding: 96px 0; background: var(--navy); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,143,255,.15) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.contact::after {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,160,0,.1) 0%, transparent 70%);
  bottom: -80px; left: -80px; pointer-events: none;
}
.contact__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }

.contact__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 36px;
}
.contact__title em { color: var(--orange); }

.contact__info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.cinfo {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.75); transition: color .18s;
}
.cinfo:hover { color: #fff; }
.cinfo__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); flex-shrink: 0;
}

.cinfo--whatsapp .cinfo__icon {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.35);
  color: #25d366;
}
.cinfo--whatsapp:hover .cinfo__icon {
  background: rgba(37,211,102,.3);
}
.cinfo--whatsapp { color: rgba(255,255,255,.85); }

.contact__socials { display: flex; gap: 10px; }
.csoc {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.csoc svg { width: 17px; height: 17px; }
.csoc:hover { border-color: var(--orange); color: var(--orange); }

/* Form */
.contact__form {
  background: #fff; border-radius: var(--r-xl); padding: 44px;
  display: flex; flex-direction: column; gap: 20px; box-shadow: var(--sh-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-g { display: flex; flex-direction: column; gap: 7px; }
.form-g label { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; }
.form-g input,
.form-g select,
.form-g textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 15px; font-family: 'Inter', sans-serif; color: var(--navy);
  outline: none; transition: border-color .18s; background: #fff;
}
.form-g input:focus, .form-g select:focus, .form-g textarea:focus { border-color: var(--navy); }
.form-g input::placeholder, .form-g textarea::placeholder { color: var(--gray); opacity: .6; }


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer { background: #080f1e; color: #fff; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 80px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer__tag  { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 28px; }
.footer__socials { display: flex; gap: 10px; }
.fsoc {
  width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .18s;
}
.fsoc svg { width: 15px; height: 15px; }
.fsoc:hover { border-color: var(--orange); color: var(--orange); }

.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.fcol h5 {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 20px;
}
.fcol ul { display: flex; flex-direction: column; gap: 12px; }
.fcol a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .18s; }
.fcol a:hover { color: #fff; }

.footer__bottom { padding: 20px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer__bottom-inner p { font-size: 12px; color: rgba(255,255,255,.22); }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .about__inner { gap: 48px; }
  .dna__pillars { gap: 16px; }
}

@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }
  .wg-item--a { grid-column: 1 / 3; grid-row: 1; }
  .wg-item--b { grid-column: 1;     grid-row: 2; }
  .wg-item--c { grid-column: 2;     grid-row: 2; }
  .wg-item--d { grid-column: 1;     grid-row: 3; }
  .wg-item--e { grid-column: 2;     grid-row: 3; }
  .wg-item__overlay { opacity: 1; transform: translateY(0); }
  .svc-mini-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav__inner { gap: 16px; }

  /* Desktop nav hidden; CTA hidden */
  .nav__links, .nav__cta { display: none; }

  /* Mobile dropdown menu */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(11,36,71,.12);
    padding: 8px 0 20px;
    z-index: 199;
    animation: menuSlide .22s ease;
  }
  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav__links.open li { border-bottom: 1px solid var(--border); }
  .nav__links.open li:last-child { border-bottom: none; }
  .nav__links.open a {
    display: block;
    padding: 15px 32px;
    font-size: 16px; font-weight: 600; color: var(--navy);
  }
  .nav__links.open a:hover,
  .nav__links.open a.active { background: var(--off); color: var(--navy); }

  /* CTA inside open menu */
  .nav__links.open + .nav__cta,
  .nav__links.open ~ .nav__cta { display: none; }

  .hero { min-height: auto; padding-bottom: 0; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 48px; gap: 48px; }
  .hero__visual { height: 380px; }
  .hv-shape--main  { width: 190px; height: 230px; top: 10px; left: 50px; }
  .hv-shape--tr    { width: 130px; height: 130px; }
  .hv-shape--bl    { width: 188px; height: 160px; padding: 10px; border-radius: 14px; }
  .hbl-chart       { height: 88px; }
  .hbl-bars        { height: 60px; }
  .hbl-stat        { font-size: 11px; margin-top: 7px; }
  .hbl-pill        { font-size: 8px; padding: 4px 8px; margin-top: 5px; }
  .hv-arch         { width: 200px; height: 250px; border-radius: 100px 100px 0 0; }
  .hv-icon-badge   { display: none; }
  .hv-review-card  { bottom: 160px; left: 155px; }
  .hero-arrow { display: none; }
  .hero__stats-inner { flex-wrap: wrap; gap: 0; }
  .hstat { padding: 20px 24px 20px 0; }
  .hstat__div { display: none; }

  .dna__pillars { grid-template-columns: 1fr; }
  .dna-arr { display: none; }
  .dna-node--bl { left: -48px; font-size: 11px; }
  .dna-node--br { right: -48px; font-size: 11px; }

  .services__header { flex-direction: column; align-items: flex-start; }
  .svc-row__inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-row__inner--flip > :first-child { order: 1; }
  .svc-row__inner--flip > :last-child  { order: 2; }
  .svc-mini-row { grid-template-columns: 1fr; padding-bottom: 80px; }

  .works-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .wg-item--a, .wg-item--b, .wg-item--c, .wg-item--d, .wg-item--e { grid-column: 1; grid-row: auto; height: 220px; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .pricing__plans { grid-template-columns: 1fr; }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .av-badge { right: 0; }

  .faq__inner { grid-template-columns: 1fr; gap: 40px; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-sm { grid-template-columns: 100px 1fr; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 28px 24px; }

  .logos__inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 0 20px; }
  .logos__label-wrap { border-right: none; padding-right: 0; margin-right: 0; align-self: auto; border-bottom: 1px solid var(--border); padding-bottom: 12px; width: 100%; }
  .logos__track-wrap { width: 100%; -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%); }

  .why__feats { grid-template-columns: 1fr; }
  .why__badge--c { display: none; }

  /* Hide small hero deco shapes on mobile */
  .hdeco--ring-a, .hdeco--ring-b,
  .hdeco--rect-a, .hdeco--rect-b,
  .hdeco--dots, .hdeco--sq-a, .hdeco--sq-b { display: none; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { grid-template-columns: repeat(2,1fr); }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .footer__cols { grid-template-columns: 1fr; }
  .hstat__n { font-size: 26px; }
  .dna__pillars { gap: 12px; }
  .pricing__toggle { width: 100%; }
  .ptoggle { flex: 1; text-align: center; }
}
