:root {
  --bg: #121212;
  --bg-2: #1a1a1a;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.88);
  --grad: linear-gradient(135deg, #e63946 0%, #ff6b35 45%, #ffb347 100%);
  --grad-h: linear-gradient(90deg, #e63946, #ff8a00, #ffb347);
  --grad-v: linear-gradient(180deg, #e63946, #ff6b35);
  --grad-box: linear-gradient(160deg, #c1121f 0%, #e85d04 40%, #ff6b35 70%, #f4a261 100%);
  --font: "Montserrat", system-ui, sans-serif;
  --max: 1200px;
  --radius: 12px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
}

.text-grad {
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease, box-shadow 0.4s ease;
}
.header.header--hidden { transform: translateY(-110%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}
.header.is-scrolled .header-inner {
  padding: 0.75rem 2rem;
}
.header.is-scrolled {
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 40px rgba(230, 57, 70, 0.08);
}
.header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.9) 0%, transparent 100%);
}
.logo {
  position: relative;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.logo-text {
  color: var(--text);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, letter-spacing 0.35s ease;
}
.logo:hover .logo-text {
  transform: scale(1.04);
  letter-spacing: 0.02em;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-glow {
  position: absolute;
  inset: -8px -16px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.45), transparent 70%);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  z-index: 0;
  animation: logoPulse 3s ease-in-out infinite;
}
.logo:hover .logo-glow { opacity: 1; }
.logo--lg { font-size: 2.5rem; display: block; margin-bottom: 2rem; }
.logo--lg .logo-text { color: #fff; -webkit-text-fill-color: #fff; }
.nav {
  position: relative;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav a:not(.nav-cta) {
  position: relative;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-h);
  background-size: 200% 100%;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), left 0.35s ease;
  border-radius: 2px;
  animation: gradientShift 4s ease infinite;
}
.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta).is-active::after {
  width: 70%;
  left: 15%;
}
.nav a:not(.nav-cta):hover,
.nav a:not(.nav-cta).is-active {
  color: #fff;
  background: rgba(255, 107, 53, 0.08);
}
.nav-indicator {
  position: absolute;
  bottom: 2px;
  height: 2px;
  background: var(--grad-h);
  background-size: 200% 100%;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
}
.nav.has-active .nav-indicator { opacity: 1; }
.nav-cta {
  margin-left: 0.75rem;
  padding: 0.55rem 1.2rem !important;
  font-size: 0.8rem !important;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease, width 0.35s ease;
}
.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-3px); }
.btn-grad {
  background: linear-gradient(90deg, #e63946, #ff6b35, #ffb347, #ff6b35, #e63946);
  background-size: 300% 100%;
  color: #fff;
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.35);
  animation: gradientShift 6s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s ease;
}
.btn-shine:hover::before { left: 150%; }
.btn-outline-glow {
  background: transparent !important;
  border: 2px solid rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  animation: none;
}
.btn-outline-glow:hover {
  background: rgba(255, 107, 53, 0.12) !important;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background: var(--bg);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: clamp(1rem, 8vw, 6rem);
}
.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.hero h1 span { display: block; }
.brand-gradient {
  margin: 0 0 1.25rem;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-desc {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Decorative 3D / grid */
.hero-deco {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  pointer-events: none;
  z-index: 1;
}
.hero-deco--left { left: 0; }
.hero-deco--right { right: 0; }
.grid-panel {
  position: absolute;
  width: 180px;
  height: 220px;
  background:
    linear-gradient(135deg, rgba(198, 18, 31, 0.6), rgba(18, 18, 18, 0.9)),
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(255,255,255,0.08) 18px, rgba(255,255,255,0.08) 19px),
    repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255,255,255,0.08) 18px, rgba(255,255,255,0.08) 19px);
  transform: perspective(400px) rotateY(-12deg) rotateX(8deg);
  border: 1px solid rgba(255, 120, 80, 0.2);
}
.hero-deco--left .grid-panel { bottom: 15%; left: 5%; }
.hero-deco--right .grid-panel { top: 20%; right: 8%; transform: perspective(400px) rotateY(12deg) rotateX(-5deg); }
.grid-panel--tilt {
  position: absolute;
  top: 10%;
  left: 45%;
  opacity: 0.5;
  z-index: 0;
}

.iso-blocks {
  position: absolute;
  bottom: 12%;
  left: 8%;
  width: 140px;
  height: 120px;
}
.iso-blocks::before,
.iso-blocks::after {
  content: "";
  position: absolute;
  background: var(--grad-box);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.iso-blocks::before {
  width: 70px; height: 28px;
  bottom: 0; left: 0;
  transform: skewX(-30deg);
}
.iso-blocks::after {
  width: 70px; height: 50px;
  bottom: 28px; left: 20px;
  transform: skewX(-30deg) translateY(-10px);
}

.iso-corner {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--grad-box);
  bottom: 10%;
  right: 6%;
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 100% 0, 100% 100%, 0 100%);
  filter: drop-shadow(6px 6px 0 rgba(0,0,0,0.4));
}
.iso-corner--sm { width: 70px; height: 70px; bottom: 5%; right: 3%; }
.iso-corner--feedback { bottom: 0; right: 0; width: 120px; height: 120px; }

.iso-stairs {
  width: 160px;
  height: 140px;
  position: relative;
}
.iso-stairs::before,
.iso-stairs::after,
.iso-stairs {
  background: var(--grad-box);
}
.iso-stairs {
  clip-path: polygon(0 100%, 0 60%, 30% 60%, 30% 30%, 60% 30%, 60% 0, 100% 0, 100% 100%);
  background: var(--grad-box);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.25);
}
.iso-stairs--sm { width: 80px; height: 70px; flex-shrink: 0; }

.squiggle {
  position: absolute;
  width: 70px;
  height: 50px;
  opacity: 0.9;
}
.hero-deco--right .squiggle { top: 18%; right: 25%; }
.squiggle--sm { position: relative; margin-top: 1rem; }

/* Sections */
.section {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-dim);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

/* Why */
.why-layout .section-title { max-width: 700px; }
.why-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item p { margin: 0; color: var(--text-dim); font-size: 0.95rem; }
.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.check-icon::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* Vision Mission */
.vm-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.vm-title-block {
  background: var(--grad-v);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  min-height: 200px;
}
.vm-title-block h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.vm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 0.5rem;
}
.vm-col h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.vm-col p { margin: 0; color: var(--text-dim); font-size: 0.95rem; }
.accent-line {
  border: none;
  height: 2px;
  background: #ff6b35;
  margin: 0 0 0.5rem;
  width: 60px;
}

.core-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}
.core-title {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}
.growth-arrow { width: 48px; height: 48px; opacity: 0.9; }
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.core-tile {
  padding: 1.5rem 1.25rem;
  border-radius: 4px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.core-tile p {
  margin: 0.5rem 0 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.tile-grad { background: var(--grad-box); }
.tile-dark {
  background: transparent;
  border: 1px solid rgba(255, 107, 53, 0.35);
}
.tile-icon { font-size: 1.5rem; opacity: 0.9; }
.iso-dots {
  width: 60px;
  height: 40px;
  margin-top: 2rem;
  background: radial-gradient(circle, #ff6b35 8px, transparent 8px);
  background-size: 24px 24px;
  opacity: 0.6;
}

/* Services */
.services-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.grad-box {
  list-style: none;
  margin: 0;
  padding: 1.5rem 1.25rem;
  background: var(--grad-box);
  border-radius: var(--radius);
  min-height: 180px;
}
.grad-box li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #fff;
}
.deco-square {
  position: absolute;
  top: 2rem;
  right: 10%;
  width: 60px;
  height: 60px;
  background: var(--grad);
  transform: rotate(15deg);
  opacity: 0.8;
}

/* Brandformance detail */
.detail-split { display: grid; gap: 2rem; }
.detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.quote {
  font-style: italic;
  color: var(--text-dim);
  margin-top: 0.5rem;
}
.brand-story { font-size: 1.1rem; margin: 1rem 0; }
.pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.pill {
  background: #fff;
  color: #121212;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

/* Performance */
.perf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.perf-sub {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.perf-text p { color: var(--text-dim); font-size: 0.95rem; }
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.metric {
  background: var(--grad-box);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  min-height: 80px;
}
.metric-lg {
  grid-row: span 2;
  min-height: 170px;
  font-size: 1rem;
  align-items: flex-end;
  padding-bottom: 1.5rem;
}
.metric-wide {
  grid-column: span 2;
}

/* Strategy */
.strategy-layout { position: relative; }
.strategy-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.strategy-list { display: flex; flex-direction: column; gap: 1rem; }
.grad-pill {
  background: var(--grad-box);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}
.grad-box-lg {
  background: var(--grad-box);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 280px;
  text-align: right;
}
.grad-box-lg p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
}
.grad-box-lg strong { display: block; font-size: 1.5rem; margin-top: 0.25rem; }
#strategy .squiggle { position: absolute; left: 35%; bottom: 25%; }
#strategy .iso-corner { position: absolute; right: 2%; bottom: 5%; }

/* Process */
.process-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.process-intro {
  color: var(--text-dim);
  max-width: 520px;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 0.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.flow-step {
  width: 18%;
  min-width: 160px;
  text-align: center;
  position: relative;
}
.flow-step.top { align-self: flex-start; }
.flow-step.bottom { align-self: flex-end; margin-top: 3rem; }
.flow-arc {
  width: 100%;
  height: 80px;
  border: 8px solid transparent;
  border-top-color: #ff6b35;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(180deg, rgba(230,57,70,0.3), transparent);
  margin-bottom: 0.75rem;
}
.flow-step.bottom .flow-arc {
  border-top: none;
  border-bottom: 8px solid #ff6b35;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.flow-step p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  line-height: 1.35;
}
.formula-bar {
  background: var(--grad-box);
  padding: 1.25rem 2rem;
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: #fff;
  margin: 0 0 1rem;
  border-radius: 4px;
}
.process-tagline {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

/* Feedback */
.feedback-layout .section-title { margin-bottom: 2rem; }
.feedback-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.feedback-highlight {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
.feedback-left p,
.feedback-right p {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.feedback-left footer,
.feedback-right footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.feedback-right {
  position: relative;
  padding-left: 1.5rem;
}
.feedback-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--grad-v);
  border-radius: 3px;
}
.stars {
  color: #ffd700;
  font-size: 1.25rem;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}
.feedback-right .squiggle { position: relative; margin-bottom: 1rem; }

/* Contact */
.contact-section { padding-bottom: 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}
.contact-form-grad {
  background: var(--grad-box);
  padding: 2rem;
  border-radius: 8px;
  display: grid;
  gap: 1rem;
}
.contact-form-grad label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}
.contact-form-grad input,
.contact-form-grad textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: #121212;
}
.contact-form-grad textarea { resize: vertical; min-height: 100px; }
.contact-text h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.contact-text .text-grad {
  font-size: 1rem;
  font-weight: 500;
  -webkit-text-fill-color: unset;
  background: none;
  color: #ff8a00;
}
.deco-dots {
  display: flex;
  gap: 12px;
  margin-top: 3rem;
  justify-content: flex-end;
}
.deco-dots span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
  background: var(--bg);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-cols h4 {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  color: #fff;
}
.footer-cols ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-cols a {
  color: var(--text-dim);
  text-decoration: none;
}
.footer-cols a:hover { color: #ff8a00; }
.footer-cols li { margin-bottom: 0.35rem; }

/* Responsive */
@media (max-width: 1024px) {
  .vm-top, .core-section, .services-cols, .perf-layout,
  .strategy-body, .feedback-cols, .contact-layout,
  .footer-cols { grid-template-columns: 1fr; }
  .vm-content { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: repeat(2, 1fr); }
  .why-body { grid-template-columns: 1fr; }
  .detail-cols { grid-template-columns: 1fr; }
  .flow-step { width: 45%; min-width: 140px; }
  .hero-deco { opacity: 0.4; }
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    display: none;
    border: 1px solid rgba(255,107,53,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    gap: 0.25rem;
    animation: navSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .nav.open { display: flex; }
  .nav a:not(.nav-cta) { padding: 0.75rem 1rem; }
  .nav-indicator { display: none; }
  .menu-btn { display: flex; }
  .why-grid, .pill-grid, .metrics-grid { grid-template-columns: 1fr; }
  .metric-lg { grid-row: auto; min-height: 80px; }
  .metric-wide { grid-column: auto; }
  .flow-step { width: 100%; margin-top: 0 !important; }
  .hero-inner { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-deco { display: none; }
  .bg-orbs { opacity: 0.35; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
}

/* ========== ANIMATIONS ========== */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes logoPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35); }
  50% { box-shadow: 0 4px 32px rgba(255, 107, 53, 0.55); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes squiggleDraw {
  0% { stroke-dashoffset: 120; }
  100% { stroke-dashoffset: 0; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}
@keyframes flowPulse {
  0%, 100% { border-color: #ff6b35; filter: brightness(1); }
  50% { border-color: #ffb347; filter: brightness(1.2); }
}
@keyframes metricPop {
  0% { transform: scale(0.85); opacity: 0; }
  70% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}
@keyframes fadeOutLoader {
  to { opacity: 0; visibility: hidden; }
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOutLoader 0.6s ease 0.8s forwards;
}
.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 107, 53, 0.2);
  border-top-color: #ff6b35;
  border-radius: 50%;
  animation: spinLoader 0.8s linear infinite;
}
body.is-loaded .page-loader { display: none; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 300;
  background: var(--grad-h);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.7);
  transition: width 0.08s linear;
}

/* Background orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbDrift 18s ease-in-out infinite;
}
.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #e63946, transparent 70%);
  top: -10%; left: -5%;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #ff6b35, transparent 70%);
  top: 40%; right: -8%;
  animation-delay: -6s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ffb347, transparent 70%);
  bottom: 10%; left: 30%;
  animation-delay: -12s;
}

main { position: relative; z-index: 1; }

/* Hero animations */
.hero-glow {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.15), transparent 65%);
  animation: orbDrift 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-deco--left .iso-blocks { animation: floatRotate 5s ease-in-out infinite; }
.hero-deco--right .iso-corner { animation: floatY 4.5s ease-in-out infinite 0.5s; }
.hero-deco--right .grid-panel { animation: floatRotate 6s ease-in-out infinite 1s; }
.hero-deco .squiggle path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: squiggleDraw 2s ease forwards 0.8s;
}
.brand-gradient {
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}
.reveal-line,
.reveal-up,
.reveal-scale {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-line { display: block; }
.reveal-scale { transform: scale(0.9) translateY(20px); }
body.is-loaded .reveal-line,
body.is-loaded .reveal-up,
body.is-loaded .reveal-scale {
  animation: revealIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s * var(--i, 0) + 0.3s);
}
body.is-loaded .reveal-scale {
  animation-name: revealScale;
}
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealScale {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.reveal-section .reveal-up,
.reveal-section .reveal-scale,
.reveal-section .section-title {
  opacity: 0;
  transform: translateY(32px);
}
.reveal-section.is-visible .reveal-up,
.reveal-section.is-visible .reveal-scale,
.reveal-section.is-visible .section-title {
  animation: revealIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.1s * var(--i, 0));
}
.reveal-section.is-visible .reveal-scale {
  animation-name: revealScale;
}
.reveal-section.is-visible .section-title {
  animation-delay: 0s;
}

/* Hover lift */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.25);
}
.grad-box, .grad-pill, .metric, .vm-title-block {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.grad-box:hover, .metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(230, 57, 70, 0.3);
}
.metric.reveal-scale.is-visible,
.reveal-section.is-visible .metric.reveal-scale {
  animation: metricPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.15s * var(--i, 0));
}
.flow-arc {
  animation: flowPulse 3s ease-in-out infinite;
}
.flow-step:nth-child(2) .flow-arc { animation-delay: 0.5s; }
.flow-step:nth-child(3) .flow-arc { animation-delay: 1s; }
.flow-step:nth-child(4) .flow-arc { animation-delay: 1.5s; }
.flow-step:nth-child(5) .flow-arc { animation-delay: 2s; }
.stars-animate span,
.stars-animate {
  display: inline-block;
  animation: starTwinkle 1.5s ease-in-out infinite;
}
.check-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-item:hover .check-icon,
.service-col:hover .check-icon {
  transform: scale(1.15) rotate(5deg);
}
.pill {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.deco-square {
  animation: floatRotate 8s ease-in-out infinite;
}
.formula-bar {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
.contact-form-grad label {
  transition: transform 0.3s ease;
}
.contact-form-grad input:focus,
.contact-form-grad textarea:focus {
  transform: scale(1.01);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.35);
}
.deco-dots span {
  animation: floatY 3s ease-in-out infinite;
}
.deco-dots span:nth-child(2) { animation-delay: 0.4s; }
.deco-dots span:nth-child(3) { animation-delay: 0.8s; }
.text-grad {
  background-size: 200% auto;
}
.reveal-section.is-visible .text-grad {
  animation: gradientShift 4s ease infinite;
}
.iso-stairs { animation: floatY 5s ease-in-out infinite; }
#strategy .squiggle path,
#feedback .squiggle path,
.why-visual .squiggle path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}
.reveal-section.is-visible .squiggle path {
  animation: squiggleDraw 1.5s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .page-loader { display: none; }
  .reveal-line, .reveal-up, .reveal-scale { opacity: 1; transform: none; }
}
