:root {
  --ink: #050505;
  --ink-2: #0a0a0c;
  --panel: #121215;
  --panel-2: #18181c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --paper: #f4f2ee;
  --muted: #a8a49b;
  --muted-2: #76736c;
  --orange: #ff5a00;
  --orange-deep: #df3100;
  --orange-glow: rgba(255, 90, 0, 0.5);
  --gold: #ffc33d;
  --gold-soft: #f4a51c;
  --green: #25d366;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 24px 70px rgba(255, 90, 0, 0.2);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1280px;
  --grad-brand: linear-gradient(120deg, var(--orange), var(--gold));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(50% 40% at 88% -5%, rgba(255, 90, 0, 0.16), transparent 60%),
    radial-gradient(45% 38% at 6% 8%, rgba(255, 195, 61, 0.1), transparent 55%),
    radial-gradient(60% 50% at 50% 115%, rgba(255, 90, 0, 0.08), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--orange); color: var(--white); }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; right: 0; left: 0;
  height: 3px;
  z-index: 120;
  transform-origin: right;
  transform: scaleX(0);
  background: var(--grad-brand);
  box-shadow: 0 0 18px var(--orange-glow);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, var(--ink-2), var(--ink));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader img {
  width: min(240px, 56vw);
  height: auto;
  animation: pulseLogo 1.4s ease-in-out infinite alternate;
}
body.loaded .preloader { opacity: 0; visibility: hidden; }
@keyframes pulseLogo {
  from { transform: scale(0.97); filter: drop-shadow(0 0 0 rgba(255, 90, 0, 0)); }
  to { transform: scale(1.03); filter: drop-shadow(0 0 38px rgba(255, 90, 0, 0.5)); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px max(20px, (100% - var(--max)) / 2);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(6, 6, 6, 0.7);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-color: var(--line);
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease);
}
.brand:hover { transform: scale(1.04); }
.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .brand img { height: 42px; }
.site-footer img {
  width: 160px;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a { position: relative; padding: 4px 2px; transition: color 0.25s ease; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link {
  min-height: 44px;
  padding: 9px 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.phone-link:hover { border-color: var(--gold); background: rgba(255, 195, 61, 0.1); transform: translateY(-1px); }
.menu-toggle {
  width: 46px; height: 46px;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  border-radius: 2px; background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Layout helpers */
.section-frame, .section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.section-pad { padding: clamp(80px, 9vw, 140px) 0; }

/* Section head — editorial style */
.section-head {
  position: relative;
  max-width: 880px;
  margin-bottom: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.section-index {
  position: absolute;
  top: 22px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--muted-2);
  letter-spacing: 0.1em;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

/* ===== HERO — Bento ===== */
.hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) 0 50px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.hero-glow {
  position: absolute;
  inset: -10% -20% auto;
  height: 70%;
  z-index: -1;
  background: radial-gradient(45% 60% at 75% 20%, rgba(255, 90, 0, 0.22), transparent 70%),
              radial-gradient(40% 50% at 20% 60%, rgba(255, 195, 61, 0.12), transparent 70%);
  filter: blur(14px);
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
}
.tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: clamp(26px, 3vw, 44px);
  position: relative;
  overflow: hidden;
}
.tile-head {
  grid-column: span 3;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tile-logo {
  grid-column: span 1;
  grid-row: span 1;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(255, 90, 0, 0.16), rgba(255, 195, 61, 0.05)),
    var(--panel);
}
.tile-logo .rec {
  position: absolute;
  top: 14px; left: 16px;
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.tile-logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(255, 90, 0, 0.25));
}
.tile-stat {
  grid-column: span 1;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.tile-stat.alt {
  background:
    linear-gradient(160deg, rgba(255, 195, 61, 0.14), transparent 60%),
    var(--panel);
}
.tile-stat strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tile-stat span { color: var(--muted); font-size: 0.92rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 195, 61, 0.06);
  color: var(--gold);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5.6rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.015em;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .dot { color: var(--orange); }
.hero-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Buttons */
.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 30px;
  border: 1px solid transparent;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn .arrow { font-size: 1.1em; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 14px 36px rgba(255, 90, 0, 0.34);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; right: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: right 0.6s var(--ease);
}
.btn-primary:hover { box-shadow: 0 22px 52px rgba(255, 90, 0, 0.48); }
.btn-primary:hover::after { right: 130%; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(255, 195, 61, 0.08); }

/* ===== Banner image slider ===== */
.banner-section {
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(96px, 12vh, 128px) auto 0;
}
.slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.slides {
  display: flex;
  direction: ltr;
  transition: transform 0.6s var(--ease);
}
.slide {
  min-width: 100%;
  overflow: hidden;
}
.slide picture {
  display: block;
  width: 100%;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.06);
  transition: transform 0.6s var(--ease);
}
/* Ken Burns — slow zoom while the slide is active */
.slide.active img {
  transform: scale(1);
  animation: kenBurns 6s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.slider-arrow:hover {
  background: var(--orange);
  border-color: transparent;
}
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.slider-arrow.prev:hover { transform: translateY(-50%) scale(1.08); }
.slider-arrow.next:hover { transform: translateY(-50%) scale(1.08); }
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.slider-dots button.active {
  width: 26px;
  background: var(--grad-brand);
}
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}
.slider-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--grad-brand);
  box-shadow: 0 0 12px var(--orange-glow);
}
.slider-progress span.run {
  width: 100%;
  transition: width var(--slide-duration, 5000ms) linear;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.about-grid h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.about-text p {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 0 0 18px;
}
.about-quote {
  margin-top: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.about-quote strong { color: var(--white); }
.marker-line {
  display: block;
  width: 96px; height: 9px;
  margin-bottom: 22px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 16px, transparent 16px 27px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.01em;
}
h3, p { margin-top: 0; }

/* ===== Services — feature banner + icon cards ===== */

/* Feature banner (flagship: Growth Partnership) */
.service-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 90, 0, 0.16), rgba(255, 195, 61, 0.05) 55%),
    var(--panel);
}
.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(130deg, var(--orange), var(--gold), var(--orange-deep), var(--gold));
  background-size: 280% 280%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: ringShift 6s linear infinite;
}
@keyframes ringShift { to { background-position: 280% 0; } }
.feature-glow {
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%; height: 140%;
  background: radial-gradient(50% 50% at 70% 30%, rgba(255, 90, 0, 0.3), transparent 70%);
  pointer-events: none;
}
.feature-main { position: relative; }
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: var(--ink);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(255, 90, 0, 0.4);
}
.feature-tag {
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-transform: uppercase;
}
.service-feature h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  font-weight: 900;
}
.feature-main p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 480px;
}
.feature-points {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.96rem;
}
.feature-points li::before {
  content: "";
  width: 9px; height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 12px var(--orange-glow);
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-cta .arrow { transition: transform 0.3s var(--ease); }
.service-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4); }
.service-cta:hover .arrow { transform: translate(3px, -3px); }

/* Icon-card grid (8 services) */
.service-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255, 90, 0, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.svc:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 195, 61, 0.4);
  box-shadow: var(--shadow-glow);
}
.svc:hover::before { opacity: 1; }
.svc > * { position: relative; }
.svc-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 195, 61, 0.08);
  color: var(--gold);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc:hover .svc-icon {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--ink);
  transform: rotate(-6deg) scale(1.05);
}
.svc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.svc-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--muted-2);
}
.svc-tag {
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-transform: uppercase;
  text-align: left;
}
.svc h3 {
  margin: 0 0 14px;
  font-size: 1.24rem;
  line-height: 1.3;
}
.svc ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}
.svc li { display: flex; gap: 8px; margin: 7px 0; }
.svc li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 10px;
  flex: 0 0 auto;
  background: var(--grad-brand);
  border-radius: 999px;
}

/* ===== Why ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 195, 61, 0.34);
  background: rgba(255, 195, 61, 0.05);
}
.why-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-item h3 { margin: 26px 0 0; font-size: 1.22rem; line-height: 1.35; }

/* ===== Founder / Leadership ===== */
.founder-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(255, 90, 0, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}
.founder-card + .founder-card { margin-top: 18px; }
.founder-card.reverse {
  grid-template-columns: 1.15fr 0.85fr;
  background:
    radial-gradient(60% 90% at 0% 0%, rgba(255, 195, 61, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}
.founder-card.reverse .founder-photo { order: 2; }
.founder-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 0.6s var(--ease);
}
.founder-card:hover .founder-photo img { transform: scale(1.04); }
.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.5), transparent 45%);
  pointer-events: none;
}
.founder-rec {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.founder-info { text-align: left; }
.founder-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}
.founder-info h3 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
}
.founder-info p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.founder-tags li {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 195, 61, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.founder-tags li:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(255, 195, 61, 0.12);
}

/* ===== Portfolio ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-bar button {
  min-height: 46px;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-bar button:hover { border-color: var(--line-strong); }
.filter-bar button.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--ink);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 300px;
  width: 100%;
  padding: 26px;
  text-align: left;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.2)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px);
  opacity: 0.92;
  transition: opacity 0.35s var(--ease);
}
.work-card > * { position: relative; }
.work-card.has-poster {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 0, 0.5);
  box-shadow: var(--shadow-glow);
}
.work-card:hover::before { opacity: 0.74; }
.work-card.has-poster:hover::before { opacity: 0.55; }
.work-label {
  width: fit-content;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
}
.work-card h3 { margin: 0 0 8px; font-size: 1.5rem; line-height: 1.22; }
.work-card p, .timeline-step p, .contact-card p { color: var(--muted); }
.work-play {
  position: absolute;
  top: 24px; left: 24px;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-size: 0.85rem;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.work-card:hover .work-play,
.work-card.has-video .work-play { transform: scale(1); opacity: 1; }
.work-card.has-video .work-play {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--ink);
}

/* ===== Process — vertical timeline ===== */
.timeline {
  display: grid;
  gap: 14px;
  position: relative;
}
.timeline-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 26px clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 50px);
  align-items: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.timeline-step:hover {
  transform: translateX(8px);
  border-color: rgba(255, 195, 61, 0.32);
  background: rgba(255, 195, 61, 0.04);
}
.step-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-body h3 { margin: 0 0 4px; font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.step-body p { margin: 0; font-size: 1.05rem; }

/* ===== CTA ===== */
.cta-band {
  position: relative;
  margin-block: 30px;
  padding: clamp(48px, 8vw, 100px) clamp(28px, 5vw, 80px);
  border: 1px solid rgba(255, 195, 61, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(55% 120% at 88% 8%, rgba(255, 90, 0, 0.26), transparent 60%),
    radial-gradient(50% 100% at 8% 92%, rgba(255, 195, 61, 0.14), transparent 60%),
    var(--panel);
  overflow: hidden;
  text-align: center;
}
.cta-inner { max-width: 760px; margin-inline: auto; }
.cta-band .section-kicker { justify-content: center; }
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.cta-band .hero-actions { justify-content: center; }

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}
.contact-form, .contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(26px, 4vw, 40px);
}
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--white); font-weight: 700; font-size: 0.95rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form select option { color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 195, 61, 0.14);
}
.contact-card h3 { font-size: 1.45rem; margin-bottom: 18px; }
.hidden-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.form-message { border-radius: var(--radius-sm); padding: 15px 17px; font-weight: 700; }
.form-message p { margin: 0; }
.form-message.success { background: rgba(37, 211, 102, 0.14); border: 1px solid rgba(37, 211, 102, 0.35); }
.form-message.error { background: rgba(255, 90, 0, 0.14); border: 1px solid rgba(255, 90, 0, 0.4); }
.contact-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #05130a;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.42);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.floating-whatsapp svg { width: 31px; height: 31px; }
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulseRing 2.2s ease-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.08); box-shadow: 0 18px 50px rgba(37, 211, 102, 0.55); }
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Footer */
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 80px auto 0;
  padding: 48px 0 52px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 30px;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 156px; margin-bottom: 18px; }
.site-footer p { color: var(--muted); max-width: 440px; }
.site-footer nav, .socials { display: flex; align-items: start; gap: 12px; flex-wrap: wrap; }
.site-footer nav { flex-direction: column; }
.site-footer nav a { color: var(--muted); transition: color 0.25s ease; }
.site-footer nav a:hover { color: var(--white); }
.socials a {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { color: var(--white); border-color: var(--gold); background: rgba(255, 195, 61, 0.1); transform: translateY(-3px); }
.copyright {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.9rem;
}
.credit-sep { margin: 0 6px; opacity: 0.6; }
.credit-link {
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.25s ease;
}
.credit-link:hover { opacity: 0.8; }

/* Modal */
.work-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.work-modal.open { opacity: 1; visibility: visible; }
.modal-panel {
  width: min(640px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s var(--ease);
}
.work-modal.open .modal-panel { transform: translateY(0) scale(1); }
.modal-panel button {
  position: absolute;
  top: 14px; left: 14px;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.3rem;
  transition: background 0.25s ease;
}
.modal-panel button:hover { background: rgba(255, 90, 0, 0.25); }
.modal-reel {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.45), rgba(255, 195, 61, 0.22)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0 12px, transparent 12px 24px),
    var(--ink);
}
.modal-reel.has-video { background: #000; }
.modal-reel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-panel h3 { font-size: 1.6rem; margin: 0 0 8px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 80px; right: 16px; left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(6, 6, 6, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s var(--ease);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 14px 10px; }
  .menu-toggle { display: grid; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-head { grid-column: span 2; grid-row: span 1; }
  .tile-logo { grid-column: span 2; min-height: 220px; }
  .tile-logo img { max-width: 280px; }

  .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .founder-card, .founder-card.reverse { grid-template-columns: 1fr; }
  .founder-card.reverse .founder-photo { order: 0; }
  .founder-photo img { aspect-ratio: 4 / 3; }

  .service-grid-new { grid-template-columns: repeat(2, 1fr); }
  .service-feature { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 14px; }
  .brand { width: 120px; }
  .phone-link { display: none; }
  .section-frame, .section-pad, .site-footer, .hero {
    width: min(100% - 28px, var(--max));
  }
  .hero { padding-top: 116px; }
  .bento, .service-grid-new, .why-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .tile-head, .tile-logo, .tile-stat { grid-column: auto; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .hero-actions, .filter-bar { flex-direction: column; }
  .btn, .filter-bar button { width: 100%; }
  .work-card { min-height: auto; }
  .feature-points { grid-template-columns: 1fr; }
  .service-cta { width: 100%; justify-content: center; }
  .timeline-step { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .timeline-step:hover { transform: none; }
  .site-footer { grid-template-columns: 1fr; }
  .floating-whatsapp { left: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
