/* ============================================================
   PIXO Media Production — Cinematic Noir
   Design tokens ported verbatim from the Claude Design source.
   ============================================================ */
:root {
  --bg:        #0A0B0E;
  --bg2:       #0E1015;
  --surfA:     rgba(255,255,255,.055);
  --surfB:     rgba(255,255,255,.03);
  --surfSolid: #14161C;
  --text:      #F0F2F5;
  --muted:     #9BA1AC;
  --hair:      rgba(255,255,255,.10);
  --or1:       #F26B21;   /* primary orange */
  --or2:       #F58C2B;
  --blue:      #2E5BC4;

  --container: 1200px;
  --pad-x:     48px;
  --section-y: 112px;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(120,120,130,.45); border-radius: 8px; }

::selection { background: rgba(242,107,33,.28); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--or1); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
  font: 600 14px/1 'Plus Jakarta Sans';
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding: var(--section-y) 0; }

.band {
  background: var(--bg2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .kenburns, .hero-glow { animation: none !important; }
}

/* ---------- Keyframes ---------- */
@keyframes pixoKenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.13) translate(-1.5%, -1.5%); }
}
@keyframes pixoGlow {
  0%, 100% { opacity: .4;  transform: translate(0, 0); }
  50%      { opacity: .75; transform: translate(2%, -3%); }
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 12px/1 'Plus Jakarta Sans';
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--or1); box-shadow: 0 0 10px rgba(242,107,33,.7);
}
.eyebrow--hero {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hair); border-radius: 999px;
  padding: 9px 17px; letter-spacing: .13em;
  color: #E7C9A8; margin-bottom: 28px;
}
.eyebrow--hero .dot { box-shadow: 0 0 10px rgba(242,107,33,.9); }

.section-title {
  font: 800 46px/1.1 'Plus Jakarta Sans';
  letter-spacing: -.02em; margin: 0; color: #fff;
}
.section-title .muted { color: var(--muted); }
.section-lead {
  font: 400 18px/1.7 'Plus Jakarta Sans';
  color: var(--muted); margin: 0; max-width: 520px;
}
.section-lead--center { margin: 18px auto 0; text-align: center; }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border: none; cursor: pointer;
  border-radius: 12px;
  transition: transform .28s, box-shadow .28s, background .28s, border-color .28s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--or2); outline-offset: 3px; }

.btn-primary {
  color: #fff; background: var(--or1);
  box-shadow: 0 16px 34px -12px rgba(242,107,33,.7);
  padding: 17px 30px; font-size: 15px; line-height: 1;
}
.btn-primary:hover {
  transform: translateY(-3px); background: #ff7d33;
  box-shadow: 0 22px 44px -12px rgba(242,107,33,.85);
}

/* header CTA — smaller pill */
.btn-nav {
  padding: 12px 22px; font-size: 14px; border-radius: 11px;
  box-shadow: 0 10px 24px -10px rgba(242,107,33,.7);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(242,107,33,.85);
}

/* small solid button (service CTA card) */
.btn-sm {
  padding: 14px 24px; font-size: 14px; border-radius: 11px; line-height: 1;
  box-shadow: none;
}
.btn-sm:hover { transform: translateY(-2px); box-shadow: none; }

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--hair);
  padding: 16px 30px; font-size: 15px; line-height: 1;
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.09);
}

.btn-dark {
  color: #fff; background: #0A0B0E;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.5);
  padding: 18px 34px; font-size: 16px; line-height: 1;
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px -12px rgba(0,0,0,.6);
}

.btn-lg { /* hero + cta primary use the .btn-primary defaults; keep hook for tuning */ }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: color-mix(in srgb, var(--bg) 68%, transparent);
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 15px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand img { height: 38px; width: auto; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font: 500 14.5px/1 'Plus Jakarta Sans';
  color: var(--muted); cursor: pointer; transition: color .25s;
}
.nav-link:hover { color: var(--text); }

/* mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; border: 1px solid var(--hair); border-radius: 11px;
  background: rgba(255,255,255,.04); cursor: pointer;
  padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--text); transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px var(--pad-x) 22px;
  border-top: 1px solid var(--hair);
}
.mobile-nav[hidden] { display: none; }
.mobile-link {
  font: 600 16px/1 'Plus Jakarta Sans'; color: var(--text);
  padding: 14px 6px; border-bottom: 1px solid var(--hair);
}
.mobile-nav .btn { margin-top: 12px; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 660px; overflow: hidden;
  display: flex; align-items: center;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.kenburns {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  /* Keeps the lens + desk in frame on wide viewports; the copy sits over
     the darker studio side on the left. */
  object-position: 62% 62%;
  animation: pixoKenburns 28s ease-in-out infinite alternate;
}
.hero-scrim { position: absolute; inset: 0; pointer-events: none; }
/* Holds the left side dark enough for the headline, then clears off almost
   entirely so the right of the hero art reads at full contrast. */
.hero-scrim--x {
  background: linear-gradient(90deg,
    rgba(10,11,14,.94) 0%,
    rgba(10,11,14,.84) 34%,
    rgba(10,11,14,.40) 58%,
    rgba(10,11,14,.06) 82%,
    rgba(10,11,14,0) 100%);
}
.hero-scrim--y {
  background: linear-gradient(0deg,
    rgba(10,11,14,.78) 0%,
    rgba(10,11,14,0) 26%);
}
.hero-glow {
  position: absolute; top: -10%; right: -6%;
  width: 520px; height: 520px; pointer-events: none;
  background: radial-gradient(circle, rgba(242,107,33,.30), rgba(242,107,33,0) 62%);
  animation: pixoGlow 13s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: 660px; }
.hero-title {
  font: 800 68px/1.03 'Plus Jakarta Sans';
  letter-spacing: -.025em; margin: 0 0 22px; color: #fff;
}
.hero-title .accent { color: var(--or1); }
.hero-sub {
  font: 400 19px/1.6 'Plus Jakarta Sans';
  color: #C7CBD2; margin: 0 0 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 64px; align-items: center;
}
.about-copy .section-title { margin: 0 0 24px; }
.about-copy .section-lead { margin: 0; }

.about-actions { margin-top: 38px; }

.stats { display: flex; gap: 48px; margin-top: 44px; }
.stat-num {
  font: 800 42px/1 'Plus Jakarta Sans';
  color: var(--or1); letter-spacing: -.02em;
}
.stat-label {
  font: 500 14px/1.4 'Plus Jakarta Sans';
  color: var(--muted); margin-top: 9px;
}

.about-photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9);
}
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card {
  background: linear-gradient(180deg, var(--surfA), var(--surfB));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--hair); border-radius: 18px;
  padding: 34px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 26px 60px -36px rgba(0,0,0,.85);
  transition: transform .38s var(--ease), border-color .38s, box-shadow .38s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(242,107,33,.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.09) inset, 0 40px 80px -34px rgba(0,0,0,.95);
}
.card-rule {
  height: 3px; width: 44px; border-radius: 2px; margin-bottom: 26px;
  background: linear-gradient(90deg, var(--or1), var(--or2));
}
.card-title { font: 700 23px/1.25 'Plus Jakarta Sans'; margin: 0 0 14px; color: #fff; }
.card-text  { font: 400 15px/1.65 'Plus Jakarta Sans'; color: var(--muted); margin: 0; }
.card-text--bright { color: #D8DCE2; }

.card--cta {
  background: linear-gradient(135deg, rgba(242,107,33,.18), rgba(46,91,196,.12));
  border: 1px solid rgba(242,107,33,.28);
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: none;
}
.card--cta:hover {
  transform: translateY(-6px);
  border-color: rgba(242,107,33,.28);
  box-shadow: 0 40px 80px -34px rgba(242,107,33,.4);
}
.card--cta .card-title { line-height: 1.3; }
.card--cta .card-text { margin-bottom: 24px; }
.card-cta-btn { align-self: flex-start; }

/* ============================================================
   WHY PIXO
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: linear-gradient(180deg, var(--surfA), var(--surfB));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--hair); border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
  transition: transform .38s var(--ease), border-color .38s;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(242,107,33,.4); }
.feature .card-rule { width: 40px; margin-bottom: 22px; }
.feature-title { font: 700 19px/1.3 'Plus Jakarta Sans'; margin: 0 0 10px; color: #fff; }
.feature-text  { font: 400 14px/1.6 'Plus Jakarta Sans'; color: var(--muted); margin: 0; }

/* ============================================================
   SHOWREEL — video players
   ============================================================ */
.showreel-grid {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
}
.video-card {
  position: relative; margin: 0;
  width: 340px; max-width: 100%; aspect-ratio: 9 / 16;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--hair); background: #000;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9);
}
.video-el {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; background: #000;
}
.video-play {
  position: absolute; inset: 0; margin: auto;
  width: 76px; height: 76px; display: grid; place-items: center;
  border: none; border-radius: 50%; cursor: pointer;
  background: rgba(242,107,33,.92);
  box-shadow: 0 16px 40px -10px rgba(242,107,33,.7);
  transition: transform .25s, background .25s, opacity .3s;
}
.video-play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
.video-play:hover { transform: scale(1.08); background: #ff7d33; }
.video-play:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.video-dur {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  font: 600 12px/1 'Plus Jakarta Sans'; color: #fff;
  background: rgba(10,11,14,.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 6px 9px; border-radius: 7px; border: 1px solid var(--hair);
  transition: opacity .3s;
}
.video-card.is-playing .video-play { opacity: 0; pointer-events: none; }
.video-card.is-playing .video-dur  { opacity: 0; }
.video-card.is-playing .video-cap  { opacity: 0; }

.video-cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font: 600 13px/1 'Plus Jakarta Sans'; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.9);
  transition: opacity .3s;
}
/* Landscape clip sits on its own row, matching the width of the pair above. */
.video-card--wide { width: 708px; aspect-ratio: 16 / 9; }

/* ============================================================
   SUCCESS PARTNERS
   ============================================================ */
.partners-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.partner {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--hair);
  background: var(--surfSolid);
  transition: transform .38s var(--ease), border-color .38s, box-shadow .38s;
}
.partner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: .82; filter: saturate(.9);
  transition: opacity .38s, filter .38s, transform .5s var(--ease);
}
.partner:hover {
  transform: translateY(-5px);
  border-color: rgba(242,107,33,.45);
  box-shadow: 0 28px 56px -28px rgba(0,0,0,.9);
}
.partner:hover img { opacity: 1; filter: none; transform: scale(1.04); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #F26B21, #F58C2B 55%, #F7A94A);
}
.cta-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 82% 18%, rgba(255,255,255,.32), rgba(255,255,255,0) 45%);
}
.cta-inner {
  position: relative; max-width: 900px; margin: 0 auto;
  padding: 112px 48px; text-align: center;
}
.cta-title {
  font: 800 52px/1.08 'Plus Jakarta Sans';
  letter-spacing: -.02em; color: #1a1206; margin: 0 0 20px;
}
.cta-sub {
  font: 400 19px/1.6 'Plus Jakarta Sans';
  color: rgba(26,18,6,.82); margin: 0 auto 34px; max-width: 640px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; }
.contact-title { margin: 0 0 30px; font-size: 42px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-key {
  font: 600 12px/1 'Plus Jakarta Sans'; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 7px;
}
.contact-val { font: 600 17px/1 'Plus Jakarta Sans'; color: var(--text); transition: color .25s; }
.contact-val:hover { color: var(--or2); }

.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.social {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 14px/1 'Plus Jakarta Sans'; color: var(--text);
  border: 1px solid var(--hair); background: rgba(255,255,255,.04);
  padding: 10px 15px 10px 12px; border-radius: 999px;
  transition: transform .25s, border-color .25s, background .25s, color .25s;
}
.social svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--muted); transition: color .25s; }
.social:hover {
  transform: translateY(-2px);
  border-color: rgba(242,107,33,.5);
  background: rgba(242,107,33,.1);
}
.social:hover svg { color: var(--or2); }
.social:focus-visible { outline: 2px solid var(--or2); outline-offset: 3px; }

.contact-card {
  background: linear-gradient(180deg, var(--surfA), var(--surfB));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hair); border-radius: 20px; padding: 36px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 30px 70px -40px rgba(0,0,0,.9);
}
.contact-card-title {
  font: 700 24px/1.25 'Plus Jakarta Sans'; color: #fff; margin: 0 0 10px;
}
.contact-card-text {
  font: 400 15px/1.65 'Plus Jakarta Sans'; color: var(--muted); margin: 0 0 28px;
}
.contact-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-action {
  display: flex; align-items: center; gap: 13px;
  padding: 15px 18px; border-radius: 13px;
  border: 1px solid var(--hair); background: rgba(255,255,255,.04);
  transition: transform .28s var(--ease), border-color .28s, background .28s;
}
.contact-action:hover {
  transform: translateY(-3px);
  border-color: rgba(242,107,33,.5);
  background: rgba(242,107,33,.09);
}
.contact-action:focus-visible { outline: 2px solid var(--or2); outline-offset: 3px; }
.contact-action-icon {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: var(--text);
  transition: background .28s, color .28s;
}
.contact-action-icon svg { width: 16px; height: 16px; }
.contact-action:hover .contact-action-icon { background: rgba(242,107,33,.16); color: var(--or2); }
.contact-action-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-action-label { font: 600 16px/1.2 'Plus Jakarta Sans'; color: #fff; }
.contact-action-sub {
  font: 400 13px/1.35 'Plus Jakarta Sans'; color: var(--muted);
  overflow-wrap: anywhere;
}
.contact-action-arrow {
  margin-left: auto; flex: 0 0 auto;
  font: 400 18px/1 'Plus Jakarta Sans'; color: var(--muted);
  transition: transform .28s var(--ease), color .28s;
}
.contact-action:hover .contact-action-arrow { transform: translateX(4px); color: var(--or2); }

/* WhatsApp keeps its own brand tint so it reads as the primary route. */
.contact-action--whatsapp {
  border-color: rgba(37,211,102,.34);
  background: rgba(37,211,102,.08);
}
.contact-action--whatsapp .contact-action-icon { background: rgba(37,211,102,.16); color: #25D366; }
.contact-action--whatsapp:hover {
  border-color: rgba(37,211,102,.6);
  background: rgba(37,211,102,.14);
}
.contact-action--whatsapp:hover .contact-action-icon { background: rgba(37,211,102,.24); color: #25D366; }
.contact-action--whatsapp:hover .contact-action-arrow { color: #25D366; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--hair); }
.footer-inner {
  padding: 34px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-inner img { height: 30px; width: auto; }
.footer-copy { font: 400 13px/1 'Plus Jakarta Sans'; color: var(--muted); }

/* ============================================================
   404
   ============================================================ */
.notfound { display: grid; place-items: center; min-height: 62vh; }
.notfound-actions { margin: 34px 0 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-y: 92px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-title    { font-size: 56px; }
  .section-title { font-size: 40px; }
  .cta-title     { font-size: 44px; }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .video-card--wide { width: 100%; max-width: 708px; }
}

@media (max-width: 820px) {
  :root { --section-y: 80px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-photo  { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { height: auto; min-height: 600px; padding: 120px 0 84px; }
  .hero-title { font-size: 48px; }
  .stats { gap: 36px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  /* Copy runs full-width here, so veil the hero art top-to-bottom
     instead of left-to-right. */
  .hero-scrim--x {
    background: linear-gradient(180deg,
      rgba(10,11,14,.90) 0%,
      rgba(10,11,14,.74) 55%,
      rgba(10,11,14,.60) 100%);
  }
}

@media (max-width: 560px) {
  :root { --pad-x: 22px; --section-y: 64px; }
  .header-inner { padding: 13px var(--pad-x); }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .video-cap { font-size: 12px; }
  .hero { min-height: 560px; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .section-title { font-size: 32px; }
  .contact-title { font-size: 34px; }
  .cta-inner { padding: 72px 28px; }
  .cta-title { font-size: 34px; }
  .cta-sub, .hero-actions .btn { font-size: 16px; }
  .stats { flex-wrap: wrap; gap: 28px 40px; }
  .stat-num { font-size: 38px; }
  .contact-card { padding: 26px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .btn-lg { padding: 16px 26px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 35px; }
}
