@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --red: #F03434;
  --red-dark: #d92727;
  --black: #171717;
  --black-soft: #232323;
  --white: #fffdf8;
  --paper: #f2efe8;
  --muted: #77736d;
  --line: rgba(23, 23, 23, 0.17);
  --line-light: rgba(255, 255, 255, 0.22);
  --container: min(1460px, calc(100vw - 48px));
  --header-h: 92px;
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 28px 80px rgba(0, 0, 0, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--black); color: var(--red); }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  transform: translateY(-140%); background: var(--black); color: #fff;
  padding: 12px 16px; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(900px, calc(100vw - 48px)); margin-inline: auto; }
.section { position: relative; padding: clamp(92px, 11vw, 180px) 0; }
.section-sm { position: relative; padding: clamp(70px, 8vw, 120px) 0; }
.section-black { background: var(--black); color: #fff; }
.section-red { background: var(--red); color: var(--black); }
.section-paper { background: var(--paper); }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin: 0 0 28px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-title, .display-title, h1, h2, h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: -.055em;
  line-height: .94;
  margin: 0;
}
.section-title { max-width: 1100px; font-size: clamp(48px, 7.2vw, 124px); }
.section-intro { max-width: 680px; font-size: clamp(18px, 1.65vw, 25px); line-height: 1.45; }
.kicker { color: var(--red); font-weight: 700; }

/* Header */
.site-header {
  position: fixed; z-index: 1200; top: 0; left: 0; width: 100%; height: var(--header-h);
  display: flex; align-items: center; transition: background .35s ease, color .35s ease, transform .5s var(--ease), border-color .35s ease;
  color: var(--black); border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(255, 253, 248, .86); backdrop-filter: blur(16px); border-color: var(--line); }
.site-header.header-dark { color: #fff; }
.site-header.header-dark.scrolled { color: var(--black); }
.header-inner { width: var(--container); margin: auto; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 30px; }
.logo { display: block; width: 154px; height: 48px; position: relative; }
.logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(20px, 2.2vw, 42px); font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 5px; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; border: 1px solid currentColor; border-radius: 999px; padding: 4px; font-size: 12px; font-weight: 700; }
.lang-switch a { min-width: 34px; text-align: center; padding: 5px 8px; border-radius: 999px; }
.lang-switch a { color: currentColor; }
.lang-switch a.active { background: var(--black); color: #fff; }
.header-dark .lang-switch a.active { background: #fff; color: var(--black); }
.site-header.scrolled .lang-switch a.active { background: var(--black); color: #fff; }
.menu-toggle {
  width: 50px; height: 50px; border: 0; border-radius: 50%; background: var(--black); color: #fff;
  display: grid; place-items: center; cursor: pointer; transition: transform .3s var(--ease), background .3s;
}
.menu-toggle:hover { transform: scale(1.06) rotate(4deg); }
.header-dark .menu-toggle { background: #fff; color: var(--black); }
.site-header.scrolled .menu-toggle { background: var(--black); color: #fff; }
.menu-toggle span, .menu-toggle span::before { display: block; width: 18px; height: 2px; background: currentColor; transition: transform .4s var(--ease); }
.menu-toggle span { position: relative; transform: translateY(-3px); }
.menu-toggle span::before { content: ""; position: absolute; transform: translateY(7px); }
body.menu-open .menu-toggle span { transform: rotate(45deg); }
body.menu-open .menu-toggle span::before { transform: rotate(90deg); }

/* Full menu */
.menu-panel { position: fixed; z-index: 1150; inset: 0; background: var(--red); color: var(--black); clip-path: inset(0 0 100% 0); transition: clip-path .85s var(--ease); }
body.menu-open .menu-panel { clip-path: inset(0 0 0 0); }
.menu-panel-inner { width: var(--container); height: 100%; margin: auto; padding-top: calc(var(--header-h) + 55px); padding-bottom: 45px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; }
.menu-links { list-style: none; padding: 0; margin: 0; counter-reset: nav; }
.menu-links li { overflow: hidden; border-bottom: 1px solid rgba(23,23,23,.3); }
.menu-links a { display: flex; align-items: baseline; gap: 18px; padding: 13px 0; font-family: "Space Grotesk"; font-size: clamp(46px, 6.5vw, 102px); letter-spacing: -.065em; line-height: .96; transform: translateY(110%); transition: transform .8s var(--ease); }
.menu-links a::before { counter-increment: nav; content: "0" counter(nav); font-family: "Manrope"; font-size: 11px; letter-spacing: .08em; }
body.menu-open .menu-links a { transform: translateY(0); }
body.menu-open .menu-links li:nth-child(2) a { transition-delay: .06s; }
body.menu-open .menu-links li:nth-child(3) a { transition-delay: .12s; }
body.menu-open .menu-links li:nth-child(4) a { transition-delay: .18s; }
body.menu-open .menu-links li:nth-child(5) a { transition-delay: .24s; }
.menu-meta { align-self: end; border-top: 1px solid rgba(23,23,23,.3); padding-top: 24px; }
.menu-meta p { margin: 0 0 20px; }
.menu-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.menu-socials a { border: 1px solid var(--black); padding: 9px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; }

/* Buttons */
.btn { --btn-bg: var(--black); --btn-fg: #fff; position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 58px; padding: 0 24px 0 28px; border: 1px solid var(--btn-bg); border-radius: 999px; background: var(--btn-bg); color: var(--btn-fg); overflow: hidden; font-weight: 700; cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s; }
.btn::before { content: ""; position: absolute; z-index: -1; inset: -1px; background: var(--red); transform: translateY(105%); transition: transform .55s var(--ease); }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--black); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.btn-light { --btn-bg: #fff; --btn-fg: var(--black); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--black); border-color: var(--black); }
.btn-outline::before { background: var(--black); }
.btn-outline:hover { color: #fff; }
.btn .arrow { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: currentColor; }
.btn .arrow svg { width: 13px; color: var(--btn-bg); }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.link-arrow span { transition: transform .35s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* Hero */
.hero { min-height: 100svh; padding: calc(var(--header-h) + 62px) 0 42px; display: flex; align-items: flex-end; background: var(--red); overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: radial-gradient(rgba(23,23,23,.45) .8px, transparent .8px); background-size: 8px 8px; mask-image: linear-gradient(to bottom, transparent, #000 35%, #000); }
.hero-grid { position: relative; z-index: 2; width: var(--container); margin: auto; display: grid; grid-template-columns: 1fr minmax(300px, .34fr); gap: 4vw; align-items: end; }
.hero-title { max-width: 1120px; font-size: clamp(66px, 10vw, 176px); text-transform: uppercase; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; }
.hero-title .outline { color: transparent; -webkit-text-stroke: 2px var(--black); }
.hero-side { padding-bottom: 12px; }
.hero-side p { margin: 0 0 28px; font-size: clamp(17px, 1.35vw, 22px); line-height: 1.48; }
.hero-meta { grid-column: 1 / -1; margin-top: 35px; padding-top: 24px; border-top: 1px solid rgba(23,23,23,.36); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.hero-meta .scroll-cue { display: flex; align-items: center; gap: 12px; }
.scroll-dot { width: 34px; height: 34px; border: 1px solid var(--black); border-radius: 50%; position: relative; }
.scroll-dot::after { content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--black); left: 50%; top: 7px; transform: translateX(-50%); animation: scrollDot 1.7s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translate(-50%,0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(-50%,15px); opacity: 0; } }
.hero-reel { position: absolute; right: -8vw; top: 11vh; width: clamp(220px, 28vw, 470px); aspect-ratio: 1; border: 1px solid rgba(23,23,23,.28); border-radius: 50%; opacity: .32; animation: spin 25s linear infinite; }
.hero-reel::before, .hero-reel::after { content: ""; position: absolute; inset: 16%; border: inherit; border-radius: inherit; }
.hero-reel::after { inset: 38%; background: var(--black); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Marquee */
.marquee { overflow: hidden; background: var(--black); color: #fff; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.marquee-track { width: max-content; display: flex; align-items: center; padding: 18px 0; animation: marquee 28s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 26px; padding-right: 26px; font-family: "Space Grotesk"; font-size: clamp(24px, 2.6vw, 46px); font-weight: 600; letter-spacing: -.04em; }
.marquee-item::after { content: "✦"; color: var(--red); font-size: .75em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Story */
.story-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; align-items: start; }
.story-sticky { position: sticky; top: calc(var(--header-h) + 50px); }
.story-number { font-family: "Space Grotesk"; font-size: clamp(120px, 20vw, 330px); letter-spacing: -.1em; line-height: .72; color: var(--red); }
.story-copy h2 { font-size: clamp(50px, 7vw, 112px); margin-bottom: 50px; }
.story-copy p { font-size: clamp(19px, 1.75vw, 26px); max-width: 820px; margin: 0 0 28px; }
.story-visual { margin-top: 70px; position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--black); border-radius: var(--radius); box-shadow: var(--shadow); }
.story-visual img { width: 100%; height: 120%; object-fit: cover; transform: translateY(-8%); filter: saturate(.7) contrast(1.08); }
.story-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(240,52,52,.08), transparent 45%, rgba(0,0,0,.38)); }
.visual-label { position: absolute; z-index: 2; left: 22px; bottom: 22px; color: #fff; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: 9px 13px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }

/* Service stack */
.service-stack-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 80px; }
.service-stack { display: grid; gap: 26px; }
.service-card { position: sticky; top: calc(var(--header-h) + 14px); height: min(620px, calc(100svh - var(--header-h) - 28px)); min-height: 470px; border-radius: 30px; overflow: hidden; background: var(--paper); color: var(--black); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 -12px 40px rgba(0,0,0,.14); }
.service-card:nth-child(even) { background: var(--red); }
.service-card-inner { height: 100%; min-height: 0; display: grid; grid-template-columns: 1.05fr .95fr; }
.service-card-copy { padding: clamp(30px, 4.2vw, 64px); display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.service-index { font-family: "Space Grotesk"; font-size: 14px; font-weight: 700; letter-spacing: .1em; }
.service-card h3 { font-size: clamp(44px, 5.1vw, 82px); max-width: 700px; }
.service-card p { max-width: 600px; font-size: clamp(17px, 1.25vw, 21px); }
.service-card-media { position: relative; overflow: hidden; min-height: 0; background: #2a2a2a; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.12); transition: transform 1.2s var(--ease), filter .7s; }
.service-card:hover .service-card-media img { transform: scale(1.045); filter: grayscale(.2) contrast(1.08); }
.service-card-media::after { content: ""; position: absolute; inset: 0; border-left: 1px solid rgba(23,23,23,.16); background: linear-gradient(to top, rgba(0,0,0,.38), transparent 45%); }

/* Process */
.process-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; }
.process-title { position: sticky; top: calc(var(--header-h) + 55px); align-self: start; }
.process-title h2 { font-size: clamp(55px, 8vw, 132px); }
.process-list { border-top: 1px solid var(--line-light); }
.process-step { display: grid; grid-template-columns: 76px 1fr; gap: 28px; padding: 38px 0; border-bottom: 1px solid var(--line-light); }
.process-step .num { color: var(--red); font-family: "Space Grotesk"; font-size: 14px; font-weight: 700; }
.process-step h3 { font-size: clamp(32px, 4vw, 62px); margin-bottom: 14px; }
.process-step p { margin: 0; color: rgba(255,255,255,.72); max-width: 680px; font-size: 18px; }

/* Industries */
.industries-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; margin-bottom: 70px; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.industry-card { background: var(--white); min-height: 235px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; transition: background .45s var(--ease), color .45s; }
.industry-card:hover { background: var(--red); }
.industry-card .icon { width: 48px; height: 48px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; }
.industry-card .icon svg { width: 20px; height: 20px; display: block; }
.industry-card h3 { font-size: clamp(27px, 2.7vw, 45px); }
.industry-card small { text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 700; }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: start; }
.why-copy h2 { font-size: clamp(52px, 7vw, 112px); margin-bottom: 36px; }
.why-copy p { font-size: clamp(19px, 1.5vw, 24px); }
.why-list { border-top: 1px solid rgba(23,23,23,.35); }
.why-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(23,23,23,.35); font-family: "Space Grotesk"; font-size: clamp(25px, 3vw, 48px); letter-spacing: -.045em; }
.why-item span:last-child { font-family: "Manrope"; font-size: 13px; letter-spacing: .08em; }

/* Locations strip */
.locations-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 50px; }
.locations-cloud a { border: 1px solid currentColor; border-radius: 999px; padding: 13px 19px; font-weight: 700; transition: background .35s, color .35s, transform .35s var(--ease); }
.locations-cloud a:hover { background: var(--red); border-color: var(--red); color: var(--black); transform: translateY(-3px); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: start; }
.faq-title { position: sticky; top: calc(var(--header-h) + 45px); }
.faq-title h2 { font-size: clamp(53px, 7.4vw, 118px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; border: 0; background: transparent; padding: 28px 0; display: grid; grid-template-columns: 1fr 40px; gap: 20px; text-align: left; cursor: pointer; font-family: "Space Grotesk"; font-size: clamp(22px, 2.2vw, 34px); letter-spacing: -.035em; }
.faq-icon { width: 36px; height: 36px; border: 1px solid currentColor; border-radius: 50%; position: relative; transition: transform .45s var(--ease), background .3s; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; width: 14px; height: 2px; background: currentColor; left: 10px; top: 16px; }
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .6s var(--ease); }
.faq-answer-inner { padding: 0 70px 30px 0; color: var(--muted); font-size: 18px; }

/* CTA */
.cta-section { background: var(--red); color: var(--black); overflow: hidden; }
.cta-inner { min-height: 72vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; position: relative; }
.cta-inner h2 { max-width: 1200px; font-size: clamp(62px, 10.2vw, 168px); text-transform: uppercase; margin-bottom: 45px; }
.cta-ring { position: absolute; right: -8vw; top: 8%; width: min(44vw, 620px); aspect-ratio: 1; border: 1px solid rgba(23,23,23,.28); border-radius: 50%; }
.cta-ring::before, .cta-ring::after { content: ""; position: absolute; border: inherit; border-radius: inherit; }
.cta-ring::before { inset: 16%; }
.cta-ring::after { inset: 35%; background: var(--black); }

/* Footer */
.site-footer { background: var(--black); color: #fff; padding: 80px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; padding-bottom: 65px; }
.footer-brand .logo { width: 240px; height: 72px; margin-bottom: 30px; }
.footer-brand .logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 560px; color: rgba(255,255,255,.68); font-size: 18px; }
.footer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.footer-col h3 { font-family: "Manrope"; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 24px; }
.footer-col a, .footer-col span { display: block; margin: 0 0 11px; color: rgba(255,255,255,.78); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); padding-top: 25px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 12px; color: rgba(255,255,255,.52); }
.footer-legal { display: flex; gap: 20px; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; z-index: 1050; right: 22px; bottom: 22px; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.22); transition: transform .35s var(--ease); }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.06); }
.whatsapp-float svg { width: 30px; }

/* Inner pages */
.page-hero { min-height: 75svh; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 95px) 0 70px; background: var(--red); position: relative; overflow: hidden; }
.page-hero.dark { background: var(--black); color: #fff; }
.page-hero .hero-kicker { font-size: 12px; text-transform: uppercase; font-weight: 700; letter-spacing: .14em; margin-bottom: 25px; }
.page-hero h1 { max-width: 1320px; font-size: clamp(62px, 9.2vw, 158px); text-transform: uppercase; }
.page-hero p { max-width: 760px; font-size: clamp(18px, 1.6vw, 25px); margin: 35px 0 0; }
.page-hero .hero-line { position: absolute; right: -10%; bottom: -15%; width: 55vw; aspect-ratio: 1; border: 1px solid currentColor; opacity: .15; border-radius: 50%; }
.breadcrumbs { position: absolute; top: calc(var(--header-h) + 18px); left: 50%; transform: translateX(-50%); width: var(--container); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: .5; }

.content-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; align-items: start; }
.content-aside { position: sticky; top: calc(var(--header-h) + 35px); }
.content-aside .big-index { font-family: "Space Grotesk"; font-size: clamp(92px, 12vw, 190px); line-height: .8; color: var(--red); letter-spacing: -.1em; }
.prose { max-width: 880px; }
.prose h2 { font-size: clamp(42px, 5vw, 78px); margin: 0 0 28px; }
.prose h3 { font-size: clamp(28px, 3vw, 48px); margin: 55px 0 20px; }
.prose p { font-size: 19px; margin: 0 0 25px; }
.prose ul { margin: 0 0 30px; padding-left: 20px; }
.prose li { margin: 10px 0; font-size: 18px; }
.prose .lead { font-size: clamp(23px, 2.3vw, 34px); line-height: 1.35; }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 55px; }
.feature-item { background: var(--white); padding: 30px; min-height: 185px; }
.feature-item .num { color: var(--red); font-size: 12px; font-weight: 700; }
.feature-item h3 { margin: 30px 0 12px; font-size: 27px; }
.feature-item p { font-size: 15px; margin: 0; color: var(--muted); }

.media-banner { position: relative; min-height: 62vh; overflow: hidden; background: #202020; }
.media-banner img { position: absolute; width: 100%; height: 120%; object-fit: cover; top: -10%; filter: grayscale(.7) contrast(1.1); }
.media-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.55), transparent 60%); }
.media-banner-copy { position: relative; z-index: 2; min-height: 62vh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 55px; color: #fff; }
.media-banner-copy h2 { max-width: 900px; font-size: clamp(48px, 6vw, 96px); }

.service-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.service-link-card { min-height: 280px; padding: 28px; border: 1px solid var(--line); background: var(--white); display: flex; flex-direction: column; justify-content: space-between; transition: background .35s, transform .35s var(--ease); }
.service-link-card:hover { background: var(--red); transform: translateY(-6px); }
.service-link-card h3 { font-size: 34px; }
.service-link-card span { font-size: 13px; font-weight: 700; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; align-items: start; }
.contact-details { position: sticky; top: calc(var(--header-h) + 35px); }
.contact-details h2 { font-size: clamp(44px, 5vw, 76px); margin-bottom: 35px; }
.contact-detail { border-top: 1px solid var(--line); padding: 20px 0; }
.contact-detail small { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; color: var(--muted); margin-bottom: 7px; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 13px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background-color: transparent; color: var(--black); padding: 17px 15px; outline: none; transition: border .25s, background .25s; }
.form-field select { min-height: 58px; padding-right: 48px; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='m6 8 4 4 4-4' stroke='%23171717' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 18px; }
.form-field select::-ms-expand { display: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); background: #fff; }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.form-check input { margin-top: 5px; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }
.form-status { grid-column: 1/-1; display: none; padding: 15px; font-weight: 700; }
.form-status.success { display: block; background: #d7f6df; color: #125c25; }
.form-status.error { display: block; background: #ffe0e0; color: #8a1717; }
.hp-field { position: absolute !important; left: -9999px !important; }

/* Legal */
.legal-doc { max-width: 900px; }
.legal-doc h2 { font-size: 42px; margin: 55px 0 20px; }
.legal-doc h3 { font-size: 28px; margin: 35px 0 15px; }
.legal-doc p, .legal-doc li { font-size: 17px; }

/* Reveal animations */
.motion-ready [data-reveal] { opacity: 0; transform: translateY(42px); }
.motion-ready [data-reveal="left"] { transform: translateX(-45px); }
.motion-ready [data-reveal="right"] { transform: translateX(45px); }
.motion-ready [data-reveal="scale"] { transform: scale(.94); }
.motion-ready .hero-title .line > span { transform: translateY(115%); }
.motion-ready .hero-side, .motion-ready .hero-meta { opacity: 0; transform: translateY(28px); }
.page-loader { position: fixed; z-index: 5000; inset: 0; background: var(--black); color: #fff; display: grid; place-items: center; transform-origin: top; }
.loader-mark { width: min(380px, 65vw); text-align: center; }
.loader-mark img { width: 100%; }
.loader-line { height: 2px; background: rgba(255,255,255,.18); margin-top: 24px; overflow: hidden; }
.loader-line span { display: block; height: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; }

/* Cursor */
.custom-cursor { position: fixed; z-index: 6000; pointer-events: none; width: 14px; height: 14px; border-radius: 50%; background: var(--red); mix-blend-mode: difference; transform: translate(-50%,-50%); transition: width .25s, height .25s, opacity .25s; }
.custom-cursor.active { width: 45px; height: 45px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .motion-ready [data-reveal], .motion-ready .hero-title .line > span, .motion-ready .hero-side, .motion-ready .hero-meta { opacity: 1; transform: none; }
  .page-loader, .custom-cursor { display: none !important; }
}

@media (max-width: 1100px) {
  :root { --header-h: 78px; --container: min(100% - 32px, 1460px); }
  .header-inner { grid-template-columns: 160px 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { grid-column: 3; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { max-width: 650px; }
  .story-grid, .process-layout, .faq-layout, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .story-sticky, .process-title, .faq-title, .content-aside, .contact-details { position: relative; top: auto; }
  .story-number { font-size: 150px; }
  .service-card-inner { grid-template-columns: 1fr; }
  .service-card-media { min-height: 370px; }
  .service-card { position: relative; top: auto; min-height: 0; }
  .industries-head, .why-grid, .footer-top { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .service-links-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-panel-inner { grid-template-columns: 1fr; }
  .menu-meta { display: none; }
}

@media (max-width: 720px) {
  :root { --container: calc(100vw - 26px); --radius: 18px; }
  .section { padding: 90px 0; }
  .section-sm { padding: 70px 0; }
  .site-header { height: 72px; }
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .logo { width: 128px; height: 42px; }
  .logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
  .lang-switch { display: flex; padding: 3px; font-size: 11px; }
  .lang-switch a { min-width: 30px; padding: 4px 6px; }
  .menu-toggle { width: 44px; height: 44px; }
  .menu-panel-inner { padding-top: 115px; }
  .menu-links a { font-size: clamp(43px, 14vw, 70px); }
  .hero { padding-top: 115px; min-height: 100svh; }
  .hero-title { font-size: clamp(54px, 17vw, 94px); }
  .hero-title .outline { -webkit-text-stroke-width: 1.2px; }
  .hero-meta { align-items: flex-end; }
  .hero-meta > span:last-child { display: none; }
  .hero-reel { width: 70vw; opacity: .16; top: 18vh; }
  .story-copy h2 { font-size: 50px; }
  .service-stack-head { display: block; }
  .service-stack-head .btn { margin-top: 25px; }
  .service-card h3 { font-size: 42px; }
  .service-card-copy { min-height: 0; padding: 30px 24px 34px; gap: 55px; }
  .service-card { height: auto; min-height: 0; }
  .service-card-inner { height: auto; }
  .service-card-media { min-height: 300px; aspect-ratio: 4 / 3; }
  .process-step { grid-template-columns: 45px 1fr; gap: 14px; }
  .industry-grid, .feature-list, .service-links-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 190px; }
  .why-item { font-size: 26px; }
  .faq-answer-inner { padding-right: 0; }
  .cta-inner { min-height: 68vh; }
  .cta-inner h2 { font-size: clamp(54px, 16vw, 95px); }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal { flex-wrap: wrap; }
  .page-hero { min-height: 70svh; padding-bottom: 45px; }
  .page-hero h1 { font-size: clamp(50px, 15vw, 88px); }
  .breadcrumbs { top: 92px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field.full, .form-check, .form-note, .form-status { grid-column: 1; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .custom-cursor { display: none; }
}


/* v1.1 fixes */
.btn-outline .arrow { background: var(--black); color: #fff; }
.btn-outline .arrow svg { color: currentColor; }
.btn-outline:hover .arrow { background: #fff; color: var(--black); }
.motion-ready [data-reveal] { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }
.motion-ready .hero-title .line > span,
.motion-ready .hero-side,
.motion-ready .hero-meta { transition: opacity .85s var(--ease), transform 1s var(--ease); }
.motion-ready.page-entered .hero-title .line > span,
.motion-ready.page-entered .hero-side,
.motion-ready.page-entered .hero-meta { opacity: 1; transform: none; }
.motion-ready.page-entered .hero-title .line:nth-child(2) > span { transition-delay: .08s; }
.motion-ready.page-entered .hero-title .line:nth-child(3) > span { transition-delay: .16s; }
.motion-ready.page-entered .hero-side { transition-delay: .18s; }
.motion-ready.page-entered .hero-meta { transition-delay: .26s; }
.page-loader { transition: opacity .45s ease, visibility .45s ease; }
.page-loader.is-dismissing { opacity: 0; visibility: hidden; }
@media (max-height: 720px) and (min-width: 1101px) {
  .service-card { min-height: 430px; }
  .service-card-copy { padding: 28px 38px; }
  .service-card h3 { font-size: clamp(40px, 4.5vw, 66px); }
  .service-card p { margin: 12px 0 18px; }
}
@media (max-width: 720px) {
  .header-actions { gap: 8px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; -webkit-text-fill-color: var(--black); }
  .form-field select { border-radius: 0; background-color: transparent; }
  .page-loader { display: none !important; }
  .industry-card .icon { font-family: inherit; }
}
