
/* ── TOKENS ── */
:root {
  --white:   #FFFFFF;
  --black:   #0D0D0D;
  --gray:    #6B6B6B;
  --light:   #F5F5F5;
  --border:  #E8E8E8;
  --orange:  #F97316;
  --yellow:  #FBBF24;
  --grad:    linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --grad-r:  linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
  --f: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}
.nav-logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.nav-logo-dot {
  width: 10px; height: 10px;
  background: var(--grad);
  border-radius: 50%;
  margin-left: 3px;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.nav-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
  align-self: flex-end;
  padding-bottom: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--grad);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 9rem 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* large background circle — the signature element */
.hero-circle {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 45vw, 680px);
  aspect-ratio: 1;
  background: var(--grad);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.hero-left { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

h1.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h1.hero-headline .accent { 
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 42ch;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--grad);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.35);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--border);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* Hero right: floating cards mockup */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hv-main {
  background: var(--black);
  border-radius: 24px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.hv-main-dot {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 180px; height: 180px;
  background: var(--grad);
  border-radius: 50%;
  opacity: 0.5;
}
.hv-main h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.hv-main h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hv-main p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  position: relative; z-index: 1;
  line-height: 1.6;
}
.hv-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  margin-top: 1.5rem;
  text-decoration: none;
  position: relative; z-index: 1;
}

.hv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.hv-card {
  background: var(--light);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hv-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hv-card-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
}
.hv-card-sub {
  font-size: 0.72rem;
  color: var(--gray);
}

/* float badge */
.hv-badge {
  position: absolute;
  top: -1rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.hv-badge-dot {
  width: 8px; height: 8px;
  background: var(--grad);
  border-radius: 50%;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--black);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}
.ticker-dot {
  width: 6px; height: 6px;
  background: var(--grad);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 4rem;
  background: var(--light);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-title .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.svc-card-wide {
  grid-column: span 1;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.3);
}
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}

/* ── WHY US ── */
.why {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--light);
}
.why-card.dark {
  background: var(--black);
  color: white;
}
.why-card.orange {
  background: var(--grad);
  color: white;
}
.why-card:nth-child(even) { margin-top: 1.5rem; }
.why-card-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.why-card.dark .why-card-num,
.why-card.orange .why-card-num { color: white; }
.why-card.light-card .why-card-num {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-card-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.4rem;
  opacity: 0.7;
}

.why-text {}
.why-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.why-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(251,191,36,0.12));
  border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.why-item-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── WORK ── */
.work {
  padding: 6rem 4rem;
  background: var(--light);
}
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.view-all:hover { gap: 0.7rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.work-card:nth-child(1) { grid-column: 1 / 8; aspect-ratio: 16/10; }
.work-card:nth-child(2) { grid-column: 8 / 13; aspect-ratio: 4/5; }
.work-card:nth-child(3) { grid-column: 1 / 5; aspect-ratio: 4/5; }
.work-card:nth-child(4) { grid-column: 5 / 13; aspect-ratio: 16/9; }

.work-card-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card-bg { transform: scale(1.06); }

.wc1 { background: linear-gradient(135deg, #1c1c1c 0%, #2d1b00 100%); }
.wc2 { background: linear-gradient(135deg, #0f0f0f 0%, #1a0a00 50%, #f97316 200%); }
.wc3 { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); }
.wc4 { background: linear-gradient(135deg, #18181b 0%, #27272a 100%); }

.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.75));
}
.work-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  color: white;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.work-card:hover .work-card-info { opacity: 1; transform: translateY(0); }
.work-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}
.work-name {
  font-size: 1.2rem;
  font-weight: 800;
}
.work-pill {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ── PROCESS ── */
.process {
  padding: 6rem 4rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  z-index: 0;
}
.p-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.p-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 0 0 6px white, 0 0 0 7px rgba(249,115,22,0.2);
}
.p-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.p-step p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── TESTIMONIAL ── */
.testimonials {
  padding: 6rem 4rem;
  background: var(--black);
  color: white;
}
.testimonials .section-eyebrow { color: var(--yellow); }
.testimonials .section-eyebrow::before { background: var(--grad); }
.testimonials .section-title { color: white; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.08); }
.testi-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.star {
  width: 14px; height: 14px;
  background: var(--grad);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testi-quote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; }
.testi-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }

/* ── CTA ── */
.cta-section {
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(249,115,22,0.08), transparent);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 16ch;
  margin: 0 auto;
}
.cta-section h2 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section p {
  font-size: 1.05rem;
  color: var(--gray);
  margin: 1.5rem auto 0;
  max-width: 40ch;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ── CLIENTS ── */
.clients {
  padding: 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.clients-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.client-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--black);
  opacity: 0.2;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.client-name:hover { opacity: 0.6; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: white;
  padding: 3.5rem 4rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 0.75rem;
}
.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}
.footer-logo-dot {
  width: 8px; height: 8px;
  background: var(--grad);
  border-radius: 50%;
  margin-left: 3px;
  margin-bottom: 3px;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 30ch; margin-top: 0.75rem; line-height: 1.65; }

.footer-links-group {}
.footer-links-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-list a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-links-list a:hover { color: var(--orange); }

.footer-socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  color: white;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--grad); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

.svc-desc {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.svc-card--highlight {
  border: 2px solid rgba(249,115,22,0.35);
  background: linear-gradient(135deg, rgba(249,115,22,0.04), rgba(251,191,36,0.06));
  position: relative;
}
.svc-card--highlight::after {
  content: 'NEW';
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--grad);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

/* ── DIGITAL MARKETING ── */
.digmkt {
  padding: 6rem 4rem;
  background: var(--light);
}
.digmkt-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.digmkt-intro {
  font-size: 1rem;
  color: var(--gray);
  max-width: 46ch;
  line-height: 1.7;
  margin-top: 1rem;
}
.digmkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.dm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.dm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(249,115,22,0.1);
}
.dm-card--dark {
  background: var(--black);
  border-color: var(--black);
  color: white;
}
.dm-card--dark .dm-desc { color: rgba(255,255,255,0.55); }
.dm-card--dark .dm-list li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
.dm-card--orange {
  background: var(--grad);
  border-color: transparent;
  color: white;
}
.dm-card--orange .dm-desc { color: rgba(255,255,255,0.8); }
.dm-card--orange .dm-list li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.25); }
.dm-card--orange .dm-icon { background: rgba(255,255,255,0.2); }
.dm-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(249,115,22,0.12),rgba(251,191,36,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.dm-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.dm-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.dm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dm-list li {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.45rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dm-list li::before {
  content: '→';
  color: var(--orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.dm-card--dark .dm-list li::before,
.dm-card--orange .dm-list li::before { color: var(--yellow); }

/* Results banner */
.digmkt-results {
  margin-top: 3rem;
  background: var(--black);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.dr-item { text-align: center; }
.dr-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.dr-lbl {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.35rem;
  font-weight: 500;
}
.dr-div {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .digmkt { padding-left: 2rem; padding-right: 2rem; }
  .digmkt-header { flex-direction: column; align-items: flex-start; }
  .digmkt-grid { grid-template-columns: 1fr; }
  .digmkt-results { flex-wrap: wrap; gap: 1.5rem; }
  .dr-div { display: none; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SEO HERO CARD ── */
.seo-hero-card {
  background: var(--black);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.seo-hero-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.seo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.seo-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: seoPulse 1.8s ease-in-out infinite;
}
.seo-headline {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1rem;
}
.seo-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-sub {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  max-width: 42ch;
}
.seo-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.seo-stat { text-align: center; }
.seo-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.seo-stat-lbl {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
  white-space: nowrap;
}
.seo-stat-div {
  width: 1px; height: 2.5rem;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.seo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}
.seo-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* SERP screen */
.seo-hero-right { position: relative; }
.seo-screen {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.seo-screen-bar {
  background: #F1F1F1;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid #E0E0E0;
}
.seo-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.seo-dot.r { background: #FF5F57; }
.seo-dot.y { background: #FEBC2E; }
.seo-dot.g { background: #28C840; }
.seo-url {
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  color: #666;
  margin-left: 0.5rem;
  font-family: monospace;
}
.seo-results { padding: 0.75rem; display: flex; flex-direction: column; gap: 0; }
.seo-result {
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  position: relative;
}
.seo-result--you {
  background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(251,191,36,0.04));
  border: 1px solid rgba(249,115,22,0.25);
  margin: 0.25rem 0;
}
.seo-result--ad { opacity: 0.5; }
.seo-result--dim { opacity: 0.4; }
.seo-ad-pill {
  display: inline-block;
  border: 1px solid #999;
  color: #555;
  font-size: 0.6rem;
  padding: 0.08rem 0.35rem;
  border-radius: 3px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.seo-rank-badge {
  position: absolute;
  top: 0.7rem; right: 0.75rem;
  background: var(--grad);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}
.seo-rank-num {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 0.15rem;
}
.seo-r-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a0dab;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.seo-r-title.muted { color: #888; font-weight: 500; }
.seo-r-url { font-size: 0.68rem; color: #0d7a0d; margin-bottom: 0.2rem; }
.accent-url { font-weight: 600; }
.seo-r-desc {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.seo-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.seo-chip {
  background: #f0f0f0;
  border-radius: 100px;
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  color: #444;
  font-weight: 500;
}
.seo-kw-pill {
  position: absolute;
  bottom: -0.75rem; left: -1.5rem;
  background: white;
  border-radius: 100px;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.seo-kw-vol {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.25rem;
}

/* pillbox */
.seo-pillbox {
  background: var(--light);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.seo-pillbox-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}
.seo-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.seo-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
}
.seo-pill-item svg { color: var(--orange); flex-shrink: 0; }

@keyframes seoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
@media (max-width: 1024px) {
  .seo-hero-card { grid-template-columns: 1fr; padding: 2rem; }
  .seo-hero-right { display: none; }
  .seo-pillbox { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .seo-stats-row { flex-wrap: wrap; gap: 1rem; }
  .seo-stat-div { display: none; }
}

/* ── ANIMATIONS ── */
.hero-left { animation: fadeUp 0.8s 0.1s both; }
.hero-right { animation: fadeUp 0.8s 0.3s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .hero, .why, .services, .work, .process, .testimonials, .cta-section, .clients, footer { padding-left: 2rem; padding-right: 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 8rem; }
  .hero-right { display: none; }
  .hero-circle { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .work-card:nth-child(1), .work-card:nth-child(2),
  .work-card:nth-child(3), .work-card:nth-child(4) { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .clients { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── WordPress scroll animations ── */
.wedo-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.wedo-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contact form shortcode styles ── */
.wedo-contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 600px; margin: 0 auto; }
.wcf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wedo-contact-form input,
.wedo-contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: #0D0D0D;
  background: #FAFAFA;
  transition: border-color 0.2s;
}
.wedo-contact-form input:focus,
.wedo-contact-form textarea:focus { outline: none; border-color: #F97316; background: #fff; }
.wcf-success { color: #0d7a0d; font-weight: 600; font-size: 0.95rem; margin-top: 0.5rem; }

/* ════════════════════════════════════════════
   INNER PAGES — Shared + Per-Page Styles
   ════════════════════════════════════════════ */

/* Active nav link */
.nav-active { color: var(--orange) !important; opacity: 1 !important; }

/* ── Page Hero ── */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.page-hero--dark {
  background: var(--black);
}
.page-hero--dark .page-hero-eyebrow { color: var(--yellow); }
.page-hero--dark .page-hero-title   { color: white; }
.page-hero--dark .page-hero-sub     { color: rgba(255,255,255,0.5); }

.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  display: inline-block;
}
.page-hero-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.page-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 54ch;
}
.accent-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-blob {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Shared inner section styles ── */
.section-eyebrow-inner {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.inner-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0;
}
.accent-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inner-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
}

/* ── Inner CTA ── */
.inner-cta {
  padding: 7rem 4rem;
  background: var(--black);
  color: white;
  text-align: center;
}
.inner-cta h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: white;
  margin-bottom: 1rem;
}
.inner-cta p { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }
.inner-cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; }

/* ════════════════
   ABOUT PAGE
   ════════════════ */
.about-mission {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.am-text {}
.am-text .inner-section-title { margin-bottom: 1.5rem; }
.am-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.am-stat {
  background: var(--light);
  border-radius: 12px;
  padding: 1.25rem;
}
.am-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.am-lbl { display: block; font-size: 0.78rem; color: var(--gray); margin-top: 0.3rem; font-weight: 500; }

.am-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.am-card {
  border-radius: 16px;
  padding: 1.75rem;
}
.am-card:nth-child(even) { margin-top: 1.5rem; }
.am-card--orange { background: var(--grad); color: white; }
.am-card--dark   { background: var(--black); color: white; }
.am-card--light  { background: var(--light); color: var(--black); }
.am-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.am-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.am-card p  { font-size: 0.82rem; line-height: 1.6; opacity: 0.7; }
.am-card--light p { opacity: 1; color: var(--gray); }

.about-values {
  padding: 6rem 4rem;
  background: var(--light);
}
.about-values .inner-section-title { margin-bottom: 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.value-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(249,115,22,0.1); }
.value-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: var(--f);
}
.value-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.value-item p  { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

.about-team { padding: 6rem 4rem; }
.about-team .inner-section-title { margin-bottom: 3rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.25s var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.25rem;
}
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.team-role { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 0.75rem; }
.team-bio  { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ════════════════
   SERVICES PAGE
   ════════════════ */
.svc-block { padding: 5rem 4rem; }
.svc-block--dark { background: var(--black); color: white; }
.svc-block--dark .svc-block-tag  { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.3); color: var(--yellow); }
.svc-block--dark .svc-block-title { color: white; }
.svc-block--dark .svc-block-lead  { color: rgba(255,255,255,0.55); }
.svc-block--dark .svc-block-list-title { color: rgba(255,255,255,0.4); }
.svc-block--dark .svc-block-list li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }

.svc-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-block-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.svc-block-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.svc-block-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--black);
}
.svc-block-lead { font-size: 0.98rem; line-height: 1.75; color: var(--gray); margin-bottom: 2rem; }

.svc-block-list-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.svc-block-list { list-style: none; }
.svc-block-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.svc-block-list li::before { content: '→'; color: var(--orange); font-size: 0.8rem; }

.svc-block-badge {
  margin-top: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.svc-badge-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-badge-lbl { font-size: 0.8rem; color: var(--gray); }

.inner-process { padding: 6rem 4rem; background: var(--light); }
.inner-process .inner-section-title { margin-bottom: 3rem; }
.inner-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ips {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
}
.ips-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}
.ips h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.ips p  { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }

/* ════════════════
   PORTFOLIO PAGE
   ════════════════ */
.portfolio-section { padding: 4rem 4rem 6rem; }
.port-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.port-filter {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--f);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.port-filter:hover,
.port-filter.active {
  background: var(--grad);
  border-color: transparent;
  color: white;
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.port-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.port-card-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease);
}
.port-card:hover .port-card-bg { transform: scale(1.06); }
.port-emoji { font-size: 5rem; }
.port-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.72));
}
.port-pill {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
}
.port-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.port-card:hover .port-card-info { opacity: 1; transform: translateY(0); }
.port-year  { font-size: 0.68rem; color: var(--yellow); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.port-title { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 0.4rem; }
.port-result {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--yellow);
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.port-testimonials {
  background: var(--black);
  padding: 5rem 4rem;
}
.port-testimonials .inner-section-title { margin-bottom: 3rem; }
.port-testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.port-testi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}
.port-testi strong { display: block; margin-top: 1rem; color: var(--yellow); font-size: 0.8rem; }

/* ════════════════
   CAREERS PAGE
   ════════════════ */
.careers-perks { padding: 6rem 4rem; }
.careers-perks .inner-section-title { margin-bottom: 3rem; }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.perk-card {
  background: var(--light);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.perk-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(249,115,22,0.1); }
.perk-icon { font-size: 2rem; margin-bottom: 1rem; }
.perk-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.perk-card p  { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

.careers-roles { padding: 6rem 4rem; background: var(--light); }
.careers-roles .inner-section-title { margin-bottom: 3rem; }
.role-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.25s;
}
.role-card:hover { box-shadow: 0 8px 32px rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.25); }
.role-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 1.5rem; }
.role-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.role-dept {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(251,191,36,0.1));
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(249,115,22,0.2);
}
.role-type {
  background: var(--light);
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.role-loc { font-size: 0.78rem; color: var(--gray); align-self: center; }
.role-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.6rem; }
.role-desc  { font-size: 0.88rem; color: var(--gray); line-height: 1.65; max-width: 60ch; }
.role-req { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.role-req-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.75rem; }
.role-req ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.role-req li {
  background: var(--light);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--black);
  padding: 0.3rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.role-req li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 0.7rem; }

.careers-open-app { padding: 6rem 4rem; text-align: center; }
.open-app-inner { max-width: 500px; margin: 0 auto; }
.open-app-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.open-app-inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; }
.open-app-inner p  { font-size: 0.98rem; color: var(--gray); line-height: 1.7; margin-bottom: 2rem; }

/* ════════════════
   CONTACT PAGE
   ════════════════ */
.contact-section { padding: 5rem 4rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info-body  { font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.cd-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(251,191,36,0.1));
  border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.2rem; }
.cd-value { font-size: 0.9rem; font-weight: 500; color: var(--black); text-decoration: none; }
a.cd-value:hover { color: var(--orange); }

.contact-socials-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.75rem; }
.contact-social-links { display: flex; gap: 0.6rem; }
.csocial {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.csocial:hover { background: var(--grad); border-color: transparent; color: white; }
.csocial span { font-size: 0.75rem; }

.contact-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.ct-item { text-align: center; }
.ct-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ct-lbl { display: block; font-size: 0.72rem; color: var(--gray); margin-top: 0.25rem; font-weight: 500; }

/* Contact Form */
.contact-form-wrap { background: var(--light); border-radius: 20px; padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-field label { font-size: 0.8rem; font-weight: 700; color: var(--black); }
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--f);
  font-size: 0.9rem;
  color: var(--black);
  background: white;
  transition: border-color 0.2s;
  appearance: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { outline: none; border-color: var(--orange); }

.cf-budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cf-budget-opt {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.cf-budget-opt input { display: none; }
.cf-budget-opt:has(input:checked) {
  background: var(--grad);
  border-color: transparent;
  color: white;
}

.cf-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.cf-privacy { font-size: 0.75rem; color: var(--gray); text-align: center; }
.wcf-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.85rem; margin-bottom: 1rem; }
.wcf-thanks { text-align: center; padding: 3rem 2rem; }
.wcf-thanks-icon { font-size: 3rem; margin-bottom: 1rem; }
.wcf-thanks h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.wcf-thanks p  { color: var(--gray); line-height: 1.7; }

.contact-faq { padding: 6rem 4rem; background: var(--light); }
.contact-faq .inner-section-title { margin-bottom: 3rem; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.faq-item {
  background: white;
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(249,115,22,0.08); }
.faq-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; }
.faq-item p  { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ── Inner page responsive ── */
@media (max-width: 1024px) {
  .page-hero { padding: 8rem 2rem 4rem; }
  .about-mission, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .am-visual, .svc-block-inner { grid-template-columns: 1fr; }
  .svc-block { padding: 4rem 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid, .perks-grid { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .port-testi-row { grid-template-columns: 1fr; }
  .inner-process-steps { grid-template-columns: 1fr 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .inner-cta { padding: 5rem 2rem; }
  .contact-section, .contact-faq, .portfolio-section, .careers-perks, .careers-roles, .careers-open-app, .about-values, .about-team, .about-mission { padding-left: 2rem; padding-right: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .role-header { flex-direction: column; }
}

/* ════════════════════════════════
   ADDITIONAL INNER-PAGE SECTIONS
   ════════════════════════════════ */

/* ── About: Journey Timeline ── */
.about-journey { padding: 6rem 4rem; background: var(--light); }
.about-journey .inner-section-title { margin-bottom: 3.5rem; }
.journey-track {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.journey-track::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--yellow));
}
.journey-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}
.journey-item:last-child { padding-bottom: 0; }
.journey-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
  border: 3px solid var(--light);
  box-shadow: 0 0 0 2px var(--orange);
}
.journey-year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.journey-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.journey-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; max-width: 60ch; }

/* ── Services: Quick Jump nav ── */
.svc-quickjump {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 4rem 3rem;
  margin-top: -1rem;
}
.svc-quickjump a {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s;
}
.svc-quickjump a:hover {
  background: var(--grad);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* ── Services: Pricing ── */
.svc-pricing { padding: 6rem 4rem; background: var(--light); }
.svc-pricing .inner-section-title { margin-bottom: 0.75rem; }
.svc-pricing-sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 50ch;
  margin: 0 auto 3.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(249,115,22,0.1); }
.pricing-card--featured {
  background: var(--black);
  border-color: var(--black);
  color: white;
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.pricing-card--featured .pricing-tier { color: var(--yellow); }
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.pricing-price span { font-size: 1.2rem; font-weight: 600; opacity: 0.5; }
.pricing-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}
.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pricing-list li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-list li::before { content: '✓'; color: var(--orange); font-weight: 700; }
.pricing-card--featured .pricing-list li::before { color: var(--yellow); }
.pricing-card .btn-primary,
.pricing-card .btn-secondary { width: 100%; justify-content: center; }

/* ── Portfolio: Stats banner ── */
.port-stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem 4rem;
  flex-wrap: wrap;
}
.psb-item { text-align: center; }
.psb-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.psb-lbl { display: block; font-size: 0.78rem; color: var(--gray); margin-top: 0.3rem; font-weight: 500; }
.psb-div { width: 1px; height: 2.5rem; background: var(--border); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-journey, .svc-pricing { padding-left: 2rem; padding-right: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; order: -1; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .svc-quickjump { padding: 0 2rem 2rem; }
  .port-stats-banner { padding: 2rem; gap: 1.5rem; }
  .psb-div { display: none; }
  .journey-track { padding-left: 1rem; }
}
