/* ================================================================
   PRIME TIPS — BRIGHT / PLAYFUL THEME
   Palette pulled from the Prime Tips logo: deep navy, a royal-blue
   to cyan gradient, and a warm orange spark accent.
   Typography: Baloo 2 (rounded display) + Inter (body)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Backgrounds */
  --bg:           #FBF8F3;
  --bg-surface:   #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-card-hover:#FFFDF9;
  --bg-elevated:  #F4F0E7;

  /* Borders */
  --border:       rgba(27, 42, 74, 0.12);
  --border-soft:  rgba(27, 42, 74, 0.08);
  --border-hover: rgba(47, 95, 222, 0.45);

  /* Text */
  --text:         #16233F;
  --text-soft:    #55647F;
  --text-muted:   #8894A8;

  /* Accent — Royal blue (from logo) */
  --accent:       #2F5FDE;
  --accent-light: #5B8CF0;
  --accent-glow:  rgba(47, 95, 222, 0.28);
  --accent-subtle:rgba(47, 95, 222, 0.08);
  --accent-mid:   rgba(47, 95, 222, 0.22);

  /* Secondary — Cyan sparkle + Orange spark (from logo) */
  --teal:         #FF7A3D;
  --teal-subtle:  rgba(255, 122, 61, 0.12);
  --cyan:         #2BB4D8;
  --navy:         #16233F;

  /* Playful chip colors — used for service icons, work icons, and
     process numbers so each one reads as its own small moment,
     the way the accent chips do in the brief's reference. */
  --chip-blue:    #2F5FDE;
  --chip-blue-bg: rgba(47, 95, 222, 0.12);
  --chip-orange:  #FF7A3D;
  --chip-orange-bg: rgba(255, 122, 61, 0.14);
  --chip-teal:    #159C87;
  --chip-teal-bg: rgba(21, 156, 135, 0.12);
  --chip-violet:  #7B5CE8;
  --chip-violet-bg: rgba(123, 92, 232, 0.12);
  --chip-pink:    #E8598B;
  --chip-pink-bg: rgba(232, 89, 139, 0.12);

  /* Radius — friendlier, rounder cards */
  --r:    20px;
  --r-sm: 12px;
  --r-lg: 32px;

  /* Shadow — soft, warm-tinted for a light background */
  --shadow-sm:  0 4px 16px rgba(22, 35, 63, 0.07);
  --shadow:     0 16px 40px rgba(22, 35, 63, 0.10);
  --shadow-lg:  0 32px 70px rgba(22, 35, 63, 0.14);
  --glow:       0 0 0 4px rgba(255, 122, 61, 0.16);

  /* Fonts */
  --display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --body:    'Inter', sans-serif;
  --mono:    'JetBrains Mono', monospace;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 15% -10%, rgba(47,95,222,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 110%, rgba(255,122,61,0.05) 0%, transparent 55%);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--text);
}
p  { margin: 0 0 1em; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Accessibility ──────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff; padding: 10px 16px;
  border-radius: 0 0 8px 0; z-index: 300; font-weight: 600;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--body); font-weight: 500; font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(47,95,222,0.4);
}
.btn-primary:hover {
  background: #5a52ee;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(47,95,222,0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border-soft);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}
.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost-light:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}
.btn-sm  { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg  { padding: 15px 32px; font-size: 1rem; }
.btn-whatsapp { gap: 9px; }
.btn-whatsapp svg { flex-shrink: 0; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.16,.8,.28,1), transform .75s cubic-bezier(.16,.8,.28,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── Eyebrow / Labels ───────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-light); margin: 0 0 14px; font-weight: 500;
}
.eyebrow-light { color: rgba(129,140,248,0.8); }
.gallery-brand-link { color: var(--accent); }
.gallery-brand-link:hover { text-decoration: underline; }
.section-sub {
  max-width: 520px;
  color: var(--text-soft); font-size: 1.05rem; line-height: 1.7;
}

/* ── Pill badge ─────────────────────────────────────────────── */
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(47,95,222,0.12);
  border: 1px solid rgba(47,95,222,0.3);
  border-radius: 999px;
  padding: 7px 16px 7px 16px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.pill-badge .arrow { color: var(--accent-light); font-style: normal; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,243,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(22,35,63,0.08);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(47,95,222,0.5);
  transition: box-shadow .2s ease, transform .2s ease;
}
.logo:hover .logo-mark {
  box-shadow: 0 6px 24px rgba(47,95,222,0.7);
  transform: scale(1.05);
}
.logo-mark svg { color: #fff; }
.logo-text {
  font-family: var(--display); font-weight: 700; font-size: 1.25rem;
  letter-spacing: -0.02em; color: var(--text);
}
.nav-links {
  display: none; gap: 36px; margin-left: 16px;
  font-size: 0.92rem; font-weight: 400; color: var(--text-soft);
}
.nav-links a { transition: color .2s ease; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent-light);
  transform: scaleX(0); transition: transform .25s ease;
  transform-origin: left;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-inner .btn-primary { margin-left: auto; display: none; }
.nav-toggle {
  margin-left: auto;
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.nav-toggle:hover { border-color: var(--border-hover); background: var(--bg-elevated); }
.nav-toggle span {
  width: 18px; height: 1.5px; background: var(--text-soft); border-radius: 2px;
  transition: background .2s ease;
}
.nav-toggle:hover span { background: var(--text); }

.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 28px 24px;
}
.nav-mobile a {
  padding: 13px 0; font-weight: 400; font-size: 1rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-soft);
  transition: color .2s ease;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin-top: 16px; }
.nav-mobile.open { display: flex; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-inner .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 88px 0 64px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px circle at var(--mx,70%) var(--my,20%), rgba(47,95,222,0.14), transparent 60%);
  transition: background .3s ease;
}
/* Animated grid lines */
.hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(47,95,222,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,95,222,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
}
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 60px; z-index: 1;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 64px; align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
}

/* Staggered entrance animations */
.hero-copy > * {
  opacity: 0;
  animation: heroRise .7s cubic-bezier(.16,.8,.28,1) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .14s; }
.hero-copy > *:nth-child(3) { animation-delay: .23s; }
.hero-copy > *:nth-child(4) { animation-delay: .32s; }
.hero-copy > *:nth-child(5) { animation-delay: .41s; }
.hero-copy > *:nth-child(6) { animation-delay: .50s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.35em;
  line-height: 1.05;
  color: var(--text);
}
.hero h1 .h1-accent {
  background: linear-gradient(135deg, var(--accent-light) 0%, #a5b4fc 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-soft);
  max-width: 480px; line-height: 1.75;
}
.hero-tagline {
  font-size: 0.96rem; color: var(--text-muted);
  max-width: 460px; line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 16px; margin-top: -4px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 36px; }
.hero-channels {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--text-muted);
}
.hero-channels span {
  padding: 8px 0;
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
  transition: color .2s ease;
}
.hero-channels span:hover { color: var(--accent-light); }

/* Hero chart card */
.hero-chart {
  opacity: 0;
  animation: heroFade .9s ease forwards .38s;
  position: relative;
}
.hero-illustration {
  position: absolute;
  top: -64px; right: -28px;
  width: 240px; height: auto;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero-illustration { width: 170px; top: -40px; right: -14px; }
}
.chart-card { position: relative; z-index: 1; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(22,35,63,0.03);
  padding: 24px 24px 16px;
  position: relative; overflow: hidden;
}
.chart-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-mid), transparent);
}
.chart-card-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.chart-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: chartDotPulse 2s ease-in-out infinite;
}
@keyframes chartDotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--teal); }
  50%       { box-shadow: 0 0 14px var(--teal); }
}
.chart-label {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em;
  color: var(--text-muted);
}
.chart-svg { width: 100%; height: auto; display: block; }
.chart-axis { stroke: var(--border-soft); stroke-width: 1; }
.chart-grid { stroke: rgba(22,35,63,0.07); stroke-width: 1; stroke-dasharray: 3 6; }
.chart-point { fill: var(--teal); }
#chartPath {
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: draw 1.8s ease forwards .5s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart-foot {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.04em;
  color: var(--text-muted); padding: 10px 2px 2px;
}
.chart-caption {
  font-size: 0.88rem; color: var(--text-muted);
  max-width: 300px; margin: 16px 4px 0; line-height: 1.6;
}

/* ── Brand strip ────────────────────────────────────────────── */
.brand-strip {
  padding: 20px 0 24px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.brand-strip-label {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  margin: 0 0 20px; text-align: center;
}
.brand-strip-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.brand-strip-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-strip-row {
  display: flex; flex-wrap: nowrap; justify-content: flex-start;
  gap: 14px 36px; padding: 0 18px;
}
.brand-strip-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-weight: 400; font-size: 0.9rem;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}
.brand-strip-item:hover { color: var(--text); transform: translateY(-2px); }

/* ── Stats strip ────────────────────────────────────────────── */
.stats {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
}
.stats-grid {
  display: grid; gap: 2px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  padding: 32px 28px; text-align: center;
  border-right: 1px solid var(--border-soft);
  position: relative;
  transition: background .3s ease;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--accent-subtle); }
.stat-number {
  font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1;
  color: var(--accent-light);
  display: block; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 400; line-height: 1.5;
}

/* ── Work grid ──────────────────────────────────────────────── */
.work { padding: 100px 0; }
.section-head-row { margin-bottom: 0; }
.work h2, .services h2, .process h2, .about h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700; margin-top: 0;
}
.work-grid {
  display: grid; gap: 20px; margin-top: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,.8,.28,1), border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.work-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r);
  box-shadow: inset 0 0 0 1px var(--border-hover);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.work-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: var(--shadow), var(--glow); }
.work-card:hover::after { opacity: 1; }
.work-card-cover { aspect-ratio: 1/1; background: var(--bg-elevated); position: relative; overflow: hidden; }
.work-card-cover img, .work-card-cover-ph { transition: transform .6s cubic-bezier(.16,.8,.28,1); }
.work-card:hover .work-card-cover img,
.work-card:hover .work-card-cover-ph { transform: scale(1.07); }
.work-card-cover-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 500; font-size: 1.6rem;
  color: var(--text-muted); background: var(--bg-elevated);
}
.cover-track {
  display: flex; width: 100%; height: 100%;
  transition: transform .8s cubic-bezier(.65,0,.35,1);
}
.cover-slide { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.cover-dots {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.cover-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background .3s ease, transform .3s ease;
}
.cover-dot.active { background: #fff; transform: scale(1.35); }
.work-card-body { padding: 18px 22px 22px; }
.work-card-body h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--text); font-family: var(--body); font-weight: 600; }

/* Our Work — 2 large cards linking to the Ad Campaigns / Content
   & Creative gallery pages. */
.our-work { padding: 100px 0; }
.our-work h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700; margin-top: 0;
}
.our-work-grid {
  display: grid; gap: 24px; margin-top: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .our-work-grid { grid-template-columns: 1fr 1fr; } }
.our-work-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,.8,.28,1), border-color .3s ease, box-shadow .3s ease;
}
.our-work-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r);
  box-shadow: inset 0 0 0 1px var(--border-hover);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.our-work-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: var(--shadow), var(--glow); }
.our-work-card:hover::after { opacity: 1; }
.our-work-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--chip-orange-bg); color: var(--chip-orange);
  margin-bottom: 22px;
}
.our-work-card:nth-child(2) .our-work-icon {
  background: var(--chip-blue-bg); color: var(--chip-blue);
}
.our-work-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text); font-family: var(--body); font-weight: 600; }
.our-work-card p { color: var(--text-muted); font-size: 0.98rem; margin: 0 0 20px; max-width: 380px; }
.our-work-link { font-weight: 600; color: var(--accent); font-size: 0.95rem; }
.our-work-card:hover .our-work-link { text-decoration: underline; }

/* ── Services ───────────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--bg-surface); position: relative; }
.services::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-muted); padding: 5px 12px; border-radius: 6px;
  transition: color .2s ease, border-color .2s ease;
}
.chip:hover { color: var(--accent-light); border-color: var(--border-hover); }

.services-layout {
  display: flex; flex-direction: column; align-items: center;
  gap: 52px; margin-top: 60px;
}
@media (min-width: 860px) {
  .services-layout { flex-direction: row; align-items: flex-start; gap: 64px; }
  .orbit-ring-wrap { flex: 0 0 auto; }
}

/* Orbit */
.orbit-ring-wrap { position: relative; }
.orbit-ring { position: relative; width: 320px; height: 320px; }
.orbit-ring::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(47,95,222,0.2);
}
.orbit-ring::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 136px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left center;
  transform: rotate(var(--active-angle, -90deg));
  opacity: 0.5;
  transition: transform .45s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
}
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(47,95,222,0.1), 0 0 0 24px rgba(47,95,222,0.05);
  animation: orbitCenterPulse 3.5s ease-in-out infinite;
}
.orbit-center::before {
  content: "";
  position: absolute; inset: -12px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), var(--teal), var(--accent));
  opacity: 0.18; z-index: -1;
  animation: orbitSpin 10s linear infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitCenterPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(47,95,222,0.1), 0 0 0 24px rgba(47,95,222,0.05); }
  50%       { box-shadow: 0 0 0 16px rgba(47,95,222,0.15), 0 0 0 32px rgba(47,95,222,0.03); }
}
.orbit-center-mark { color: #fff; background: none; border-radius: 0; }
.orbit-node {
  position: absolute; top: 50%; left: 50%;
  width: 72px; height: 72px; margin: -36px 0 0 -36px;
  border-radius: 14px;
  background: var(--bg-card); border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  padding: 8px; cursor: pointer;
  transform: rotate(var(--angle, 0deg)) translate(136px) rotate(calc(-1 * var(--angle, 0deg)));
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.orbit-node.orbit-float { animation: orbitFloat 4.5s ease-in-out infinite; animation-delay: var(--float-delay, 0s); }
@keyframes orbitFloat {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -5px; }
}
.orbit-node-tag {
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.02em;
  text-align: center; color: var(--text-muted); line-height: 1.3;
  transition: color .3s ease;
}
.orbit-node.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 4px rgba(47,95,222,0.15), 0 12px 28px -14px rgba(47,95,222,0.4);
  transform: rotate(var(--angle, 0deg)) translate(136px) rotate(calc(-1 * var(--angle, 0deg))) scale(1.1);
  animation: orbitNodePulse 2.5s ease-in-out infinite;
}
.orbit-node:nth-child(2).active { border-color: var(--chip-orange); background: var(--chip-orange-bg); box-shadow: 0 0 0 4px rgba(255,122,61,0.18), 0 12px 28px -14px rgba(255,122,61,0.4); }
.orbit-node:nth-child(2).active .orbit-node-tag { color: var(--chip-orange); }
.orbit-node:nth-child(3).active { border-color: var(--chip-teal); background: var(--chip-teal-bg); box-shadow: 0 0 0 4px rgba(21,156,135,0.18), 0 12px 28px -14px rgba(21,156,135,0.4); }
.orbit-node:nth-child(3).active .orbit-node-tag { color: var(--chip-teal); }
.orbit-node:nth-child(4).active { border-color: var(--chip-violet); background: var(--chip-violet-bg); box-shadow: 0 0 0 4px rgba(123,92,232,0.18), 0 12px 28px -14px rgba(123,92,232,0.4); }
.orbit-node:nth-child(4).active .orbit-node-tag { color: var(--chip-violet); }
.orbit-node:nth-child(5).active { border-color: var(--chip-pink); background: var(--chip-pink-bg); box-shadow: 0 0 0 4px rgba(232,89,139,0.18), 0 12px 28px -14px rgba(232,89,139,0.4); }
.orbit-node:nth-child(5).active .orbit-node-tag { color: var(--chip-pink); }
@keyframes orbitNodePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47,95,222,0.15), 0 12px 28px -14px rgba(47,95,222,0.4); }
  50%       { box-shadow: 0 0 0 9px rgba(47,95,222,0.07), 0 12px 28px -14px rgba(47,95,222,0.4); }
}
.orbit-node.active .orbit-node-tag { color: var(--accent-light); }

.orbit-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 34px;
  min-height: 230px;
  width: 100%; max-width: 520px;
  box-shadow: var(--shadow-sm);
  animation: orbitDetailFade .5s ease;
  position: relative; overflow: hidden;
  flex: 1 1 auto;
}
.orbit-detail::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
@keyframes orbitDetailFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.orbit-index {
  font-family: var(--mono); font-size: 0.78rem; color: var(--accent-light);
  letter-spacing: 0.08em; display: block; margin-bottom: 12px;
}
.orbit-detail h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text); }
.orbit-detail p { color: var(--text-soft); margin: 0 0 4px; font-size: 0.97rem; line-height: 1.7; }
.orbit-explore {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-weight: 500; font-size: 0.9rem;
  color: var(--accent-light);
  transition: gap .2s ease;
}
.orbit-explore:hover { gap: 10px; }
.tag-row-lg .chip { font-size: 0.75rem; padding: 6px 14px; }
.service-tag-lg { font-size: 0.78rem; padding: 7px 14px; margin-bottom: 16px; }

.service-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em;
  color: var(--accent-light); background: var(--accent-subtle);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
  border: 1px solid var(--border);
}

/* ── Highlights ─────────────────────────────────────────────── */
.highlights { padding: 80px 0; }
.highlight-grid {
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 760px) { .highlight-grid { grid-template-columns: repeat(3, 1fr); } }
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 30px 28px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-mid), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.highlight-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-sm), var(--glow); }
.highlight-card:hover::before { opacity: 1; }
.highlight-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent-subtle);
  border: 1px solid var(--border);
  color: var(--accent-light);
  font-size: 1.15rem; margin-bottom: 16px;
}
.highlight-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--body); font-weight: 600; }
.highlight-card p  { color: var(--text-soft); font-size: 0.92rem; margin: 0; line-height: 1.7; }

/* ── Process ────────────────────────────────────────────────── */
.process { padding: 100px 0; background: var(--bg-surface); position: relative; }
.process::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.process::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.process-list { list-style: none; margin: 48px 0 0; padding: 0; max-width: 700px; }
.process-list li {
  display: flex; gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  transition: background .2s ease;
}
.process-list li:last-child { border-bottom: 1px solid var(--border-soft); }
.process-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-family: var(--mono); font-weight: 600;
  font-size: 0.85rem; flex-shrink: 0;
  letter-spacing: 0.02em;
  background: var(--chip-blue-bg); color: var(--chip-blue);
}
.process-list li:nth-child(2) .process-num { background: var(--chip-orange-bg); color: var(--chip-orange); }
.process-list li:nth-child(3) .process-num { background: var(--chip-teal-bg); color: var(--chip-teal); }
.process-list li:nth-child(4) .process-num { background: var(--chip-violet-bg); color: var(--chip-violet); }
.process-list li:nth-child(5) .process-num { background: var(--chip-pink-bg); color: var(--chip-pink); }
.process-list h3 { font-size: 1.08rem; margin-bottom: 8px; font-family: var(--body); font-weight: 600; }
.process-list p  { color: var(--text-soft); margin: 0; font-size: 0.95rem; line-height: 1.7; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid; gap: 20px; margin-top: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 28px 26px;
  position: relative; overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.testimonial-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-mid), transparent);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.testimonial-quote {
  font-size: 2rem; color: var(--accent-light); line-height: 1;
  margin-bottom: 14px; font-family: var(--display); font-weight: 400;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.96rem; color: var(--text-soft);
  line-height: 1.75; margin: 0 0 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--accent-light); flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 0.9rem; font-weight: 500; color: var(--text); margin: 0; }
.testimonial-brand { font-size: 0.8rem; color: var(--text-muted); margin: 0; font-family: var(--mono); }

/* ── About ──────────────────────────────────────────────────── */
.about { padding: 100px 0; }
.about-grid { display: grid; gap: 56px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.about p { color: var(--text-soft); font-size: 1.02rem; max-width: 500px; line-height: 1.75; }
.about-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.about-points li {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 20px 22px; display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.about-points li:hover { border-color: var(--border-hover); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.about-points strong { font-family: var(--body); color: var(--text); font-size: 0.97rem; font-weight: 600; }
.about-points span   { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.banner {
  padding: 80px 0;
  background: var(--bg-surface);
  position: relative; overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(47,95,222,0.1), transparent 60%);
}
.banner::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.banner-inner {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 28px;
}
.banner h2 {
  color: var(--text); max-width: 540px;
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0;
}
.banner-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── CTA / Contact ──────────────────────────────────────────── */
.cta { background: var(--bg-surface); color: var(--text); padding: 100px 0; position: relative; }
.cta::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cta h2 { color: var(--text); font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 640px; }
.cta-sub { color: var(--text-soft); max-width: 480px; font-size: 1.05rem; line-height: 1.75; }
.cta-inner { display: flex; flex-direction: column; }

.contact-form { max-width: 580px; margin-top: 28px; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  color: var(--text);
  font-family: var(--body); font-size: 0.95rem;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47,95,222,0.15);
  background: var(--bg-elevated);
}
.contact-form textarea { margin-bottom: 18px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
}
.logo-footer .logo-mark { background: var(--bg-elevated); border: 1px solid var(--border-soft); }
.logo-footer .logo-mark svg { color: var(--accent-light); }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 0.9rem; color: var(--text-muted); }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--accent-light); }
.footer-copy { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ── Placeholder chips ──────────────────────────────────────── */
.ph-chip {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  font-family: var(--mono); font-weight: 500; font-size: 0.85rem;
  width: 40px; height: 40px; flex-shrink: 0;
}
.ph-chip-sm { width: 28px; height: 28px; font-size: 0.66rem; border-radius: 7px; }
.real-img { object-fit: cover; }
.real-img.ph-chip-sm,
.real-img.brand-logo-lg {
  object-fit: contain;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  box-sizing: border-box;
}
.real-img.ph-chip-sm { padding: 3px; }
.real-img.brand-logo-lg { padding: 9px; }

/* ── WhatsApp float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }

/* ── Brand detail page ──────────────────────────────────────── */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 32px 0 0; color: var(--text-muted);
  font-size: 0.9rem; font-weight: 400;
  transition: color .2s ease, gap .2s ease;
}
.back-link:hover { color: var(--accent-light); gap: 10px; }
.brand-page { padding-bottom: 100px; }
.brand-hero { display: flex; align-items: center; gap: 20px; margin: 36px 0 44px; }
.brand-logo-lg { width: 64px; height: 64px; border-radius: 14px; font-size: 1.2rem; }
.brand-hero h1 { margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.brand-about { max-width: 640px; margin-bottom: 44px; }
.brand-about p:last-child { color: var(--text-soft); font-size: 1.02rem; line-height: 1.75; }
.brand-links { margin-bottom: 52px; }
.link-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-soft); border-radius: 999px;
  padding: 10px 20px; font-weight: 500; font-size: 0.88rem; color: var(--text-soft);
  transition: border-color .2s ease, color .2s ease, transform .2s ease, background .2s ease;
  background: var(--bg-card);
}
.link-chip svg { flex-shrink: 0; }
.link-chip:hover { border-color: var(--border-hover); color: var(--accent-light); transform: translateY(-2px); background: var(--accent-subtle); }
.brand-gallery { margin-bottom: 52px; }
.gallery-grid {
  display: grid; gap: 14px; margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid-wide { grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery-grid-wide { grid-template-columns: 1fr 1fr; } }
.gallery-item {
  display: block; width: 100%; padding: 0; margin: 0;
  border: 1px solid var(--border-soft); border-radius: var(--r-sm);
  background: none; cursor: pointer; overflow: hidden;
  aspect-ratio: 4/3;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.gallery-grid-wide .gallery-item { aspect-ratio: 16/10; }
.gallery-item:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4,7,15,0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  backdrop-filter: blur(12px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-soft); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-soft); font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
.brand-missing { padding: 80px 0; text-align: center; }
.brand-missing h1 { margin-bottom: 12px; }

/* ── Service tile (service detail page) ─────────────────────── */
.service-tile {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--r); padding: 28px 26px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service-tile:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.service-tile h3 { font-size: 1.12rem; margin-bottom: 8px; font-family: var(--body); font-weight: 600; }
.service-tile p { color: var(--text-soft); margin: 0; font-size: 0.95rem; }
