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

:root {
  --navy-950: #030819;
  --navy-900: #071331;
  --navy-800: #0b1e48;
  --navy-700: #13306d;
  --blue-500: #2457c6;
  --orange-500: #ff6614;
  --orange-400: #ff8c3a;
  --orange-300: #ffb077;
  --green: #18b85a;
  --ink: #0a1430;
  --ink-soft: #33405d;
  --muted: #68748c;
  --line: #dfe5ee;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #edf3ff;
  --shadow-sm: 0 12px 34px rgba(6, 19, 52, .08);
  --shadow-md: 0 24px 70px rgba(6, 19, 52, .14);
  --shadow-lg: 0 42px 110px rgba(2, 8, 26, .30);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: min(1240px, calc(100% - 48px));
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Sora", "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--orange-500); color: #fff; }
.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange-500);
  font-weight: 800;
}
.skip-link:focus { transform: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.045em; }
h1 { font-size: clamp(2.75rem, 5.2vw, 4.85rem); line-height: 1.03; }
h2 { font-size: clamp(2.1rem, 3.9vw, 3.55rem); line-height: 1.12; }
h3 { font-size: clamp(1.16rem, 1.7vw, 1.42rem); line-height: 1.25; }
em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(115deg, var(--orange-500), #ffb04f);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-500);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange-500);
}
.eyebrow.light { color: #dce6ff; }
.eyebrow.centered { justify-content: center; }
.section { padding: 112px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.06rem; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(255, 102, 20, .38);
  outline-offset: 4px;
}
.button-primary {
  color: #fff;
  background: linear-gradient(125deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 15px 38px rgba(255, 102, 20, .34);
}
.button-primary:hover { box-shadow: 0 20px 48px rgba(255, 102, 20, .45); }
.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}
.button-ghost:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .11); }
.button-dark { color: #fff; background: var(--navy-900); box-shadow: var(--shadow-sm); }
.button-dark:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.text-link { color: var(--orange-500); font-weight: 800; font-size: .93rem; }
.text-link:hover { color: #d84a00; }

.topbar { color: #cad5f2; background: var(--navy-950); border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; font-size: .74rem; }
.topbar strong { color: #fff; }
.topbar-inner > div { display: flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 700; }
.topbar a:hover { color: #fff; }

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: #fff;
  background: rgba(7, 19, 49, .82);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.header.scrolled { background: rgba(3, 8, 25, .94); box-shadow: 0 14px 40px rgba(0, 0, 0, .22); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { flex: 0 0 auto; }
.brand img { width: 74px; height: 74px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a { color: #dfe6f8; font-size: .82rem; font-weight: 800; white-space: nowrap; transition: color .2s ease; }
.main-nav > a:not(.nav-whatsapp):not(.nav-stock):hover { color: #fff; }
.nav-whatsapp, .nav-stock { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; }
.nav-whatsapp { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.nav-stock { color: #fff !important; background: linear-gradient(125deg, var(--orange-500), var(--orange-400)); box-shadow: 0 10px 28px rgba(255, 102, 20, .24); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(255,255,255,.07); }
.menu-button span { width: 20px; height: 2px; display: block; margin: 4px auto; border-radius: 99px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.menu-button.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 42%, rgba(35, 83, 186, .36), transparent 26%),
    radial-gradient(circle at 15% 15%, rgba(26, 65, 154, .38), transparent 31%),
    linear-gradient(135deg, #030818 0%, #071331 50%, #0a1b41 100%);
}
.hero-grid-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .33;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}
.hero-light { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); }
.hero-light-a { width: 500px; height: 500px; top: -260px; right: -90px; background: rgba(255,102,20,.13); }
.hero-light-b { width: 340px; height: 340px; bottom: -210px; left: 8%; background: rgba(36,87,198,.22); }
.hero-layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr);
  align-items: center;
  gap: 20px;
  padding-top: 55px;
}
.hero-copy { position: relative; z-index: 4; max-width: 670px; padding: 50px 0 70px; }
.hero-copy h1 { max-width: 690px; margin-bottom: 24px; }
.hero-copy > p { max-width: 620px; margin-bottom: 32px; color: #c5d0e9; font-size: clamp(1rem, 1.5vw, 1.13rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }
.hero-proof { display: flex; align-items: stretch; gap: 0; }
.hero-proof > div { min-width: 135px; padding-right: 24px; margin-right: 24px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-proof > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 3px; font-family: var(--display); font-size: 1.32rem; }
.hero-proof span { color: #aab7d3; font-size: .75rem; font-weight: 600; }

.hero-visual { position: relative; min-height: 600px; align-self: end; }
.car-halo {
  position: absolute;
  width: 560px;
  height: 560px;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,81,179,.26), rgba(8,21,54,.02) 65%, transparent 66%);
  box-shadow: inset 0 0 0 65px rgba(255,255,255,.015), inset 0 0 0 130px rgba(255,255,255,.012);
  animation: halo-breathe 5s ease-in-out infinite;
}
.car-shadow {
  position: absolute;
  z-index: 1;
  width: 72%;
  height: 70px;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0,0,0,.8);
  filter: blur(26px);
  opacity: .9;
}
.hero-car {
  position: absolute;
  z-index: 3;
  width: 118%;
  max-width: none;
  left: 50%;
  bottom: 30px;
  transform: translateX(-48%);
  filter: drop-shadow(0 34px 26px rgba(0,0,0,.46));
  height: auto;
  animation: car-float 4.7s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255,255,255,.93);
  box-shadow: 0 22px 55px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}
.floating-card-top { top: 112px; left: -2%; }
.floating-card-bottom { right: -3%; bottom: 94px; }
.floating-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--orange-500); background: #fff0e7; font-weight: 900; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-family: var(--display); font-size: .78rem; }
.floating-card small { margin-top: 2px; color: #768199; font-size: .68rem; }
.hero-services {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #9ba9c9;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-services i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange-500); }

.trust-bar { position: relative; z-index: 7; margin-top: -1px; background: #fff; box-shadow: 0 18px 45px rgba(4,15,43,.06); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { min-height: 150px; display: flex; align-items: flex-start; gap: 16px; padding: 34px 25px; border-right: 1px solid var(--line); }
.trust-grid article:last-child { border-right: 0; }
.trust-number { padding-top: 4px; color: var(--orange-500); font-family: var(--display); font-size: .76rem; font-weight: 800; }
.trust-grid h2 { margin-bottom: 8px; font-size: 1.06rem; letter-spacing: -.025em; }
.trust-grid p { margin-bottom: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }

.story { background: #fff; }
.story-region { background: var(--surface-soft); }
.story-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(55px, 8vw, 110px); }
.story-row-media-first .story-media { order: 1; }
.story-row-media-first .story-content { order: 2; }
.story-content h2 { margin-bottom: 24px; }
.story-content > p { color: var(--muted); font-size: 1.02rem; }
.story-content blockquote {
  margin: 26px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 14px 14px 0;
  color: var(--navy-800);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
}
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0 34px; }
.feature-list > div { display: flex; align-items: flex-start; gap: 11px; }
.feature-list > div > span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; margin-top: 2px; border-radius: 8px; color: var(--orange-500); background: #fff0e7; font-size: .8rem; font-weight: 900; }
.feature-list p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.feature-list strong { color: var(--ink); }
.inline-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.story-media { position: relative; min-height: 560px; }
.media-frame { position: absolute; inset: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media-frame::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(3,8,25,.34), transparent 50%); }
.media-frame::after { content: ""; position: absolute; z-index: -1; width: 80%; height: 80%; border-radius: 50%; background: rgba(255,102,20,.18); filter: blur(55px); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.story-media:hover .media-frame img { transform: scale(1.035); }
.media-frame-right { transform: perspective(1200px) rotateY(-2deg); }
.media-frame-left { transform: perspective(1200px) rotateY(2deg); }
.media-seal {
  position: absolute;
  z-index: 4;
  top: 34px;
  left: -30px;
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 20px 45px rgba(255,102,20,.34);
}
.media-seal strong, .media-seal span { display: block; }
.media-seal strong { font-family: var(--display); font-size: 1.75rem; line-height: 1; }
.media-seal span { margin-top: 6px; font-size: .63rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.media-caption {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(3,8,25,.82);
  backdrop-filter: blur(12px);
  font-size: .75rem;
  font-weight: 700;
}
.media-caption span { color: var(--orange-400); }
.experience-card {
  position: absolute;
  z-index: 4;
  right: -28px;
  bottom: 28px;
  max-width: 220px;
  padding: 20px 22px;
  border-radius: 18px;
  color: #fff;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.experience-card strong, .experience-card span { display: block; }
.experience-card strong { color: var(--orange-400); font-family: var(--display); font-size: 1.25rem; }
.experience-card span { margin-top: 4px; font-size: .78rem; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-grid > div { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.metric-grid strong, .metric-grid span { display: block; }
.metric-grid strong { color: var(--navy-800); font-family: var(--display); font-size: 1.15rem; }
.metric-grid span { margin-top: 4px; color: var(--muted); font-size: .76rem; }

.benefits { position: relative; background: var(--surface-soft); }
.benefits::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 0, rgba(255,102,20,.08), transparent 34%); }
.benefits-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { position: relative; min-height: 330px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 12px 34px rgba(5,18,48,.04); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.benefit-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -100px; bottom: -100px; border-radius: 50%; background: rgba(255,102,20,.07); }
.benefit-card:hover { transform: translateY(-8px); border-color: rgba(255,102,20,.55); box-shadow: var(--shadow-md); }
.benefit-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 17px; color: var(--orange-400); background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); font-size: 1.45rem; }
.benefit-card > span { position: absolute; top: 30px; right: 28px; color: #bec7d7; font-family: var(--display); font-size: .76rem; font-weight: 800; }
.benefit-card h3 { margin-bottom: 14px; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.stock-showcase {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: linear-gradient(135deg, #020718, #071638 54%, #0c2455);
}
.stock-background { position: absolute; inset: 0; opacity: .8; background: radial-gradient(circle at 80% 20%, rgba(255,102,20,.15), transparent 24%), radial-gradient(circle at 15% 90%, rgba(36,87,198,.24), transparent 31%); }
.stock-background::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -190px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: inset 0 0 0 65px rgba(255,255,255,.018), inset 0 0 0 130px rgba(255,255,255,.014); }
.stock-layout { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; }
.stock-copy h2 { max-width: 750px; margin-bottom: 22px; }
.stock-copy > p { max-width: 700px; margin-bottom: 32px; color: #b9c5df; font-size: 1.05rem; }
.stock-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.stock-domain { color: #e3eaff; font-size: .86rem; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.stock-card { padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(255,255,255,.09); box-shadow: var(--shadow-lg); backdrop-filter: blur(20px); }
.stock-card-top { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.stock-card-top span { color: var(--orange-300); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.stock-card-top b { font-family: var(--display); }
.stock-card-list { display: grid; gap: 18px; padding: 24px 0; }
.stock-card-list > div { display: flex; align-items: flex-start; gap: 12px; }
.stock-card-list > div > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: #fff; background: var(--orange-500); font-size: .76rem; font-weight: 900; }
.stock-card-list p, .stock-card-list small { display: block; margin: 0; }
.stock-card-list strong { font-size: .9rem; }
.stock-card-list small { margin-top: 2px; color: #aebbd7; font-size: .72rem; }
.stock-card > a { color: var(--orange-300); font-size: .86rem; font-weight: 800; }

.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .3s ease, box-shadow .3s ease; }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-card > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 40px; border-radius: 12px; color: var(--orange-500); background: #fff0e7; font-family: var(--display); font-size: .8rem; font-weight: 800; }
.process-card h3 { margin-bottom: 12px; }
.process-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }

.sell {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 15% 20%, rgba(36,87,198,.36), transparent 31%), linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.sell::before { content: ""; position: absolute; width: 520px; height: 520px; right: -210px; bottom: -270px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: inset 0 0 0 65px rgba(255,255,255,.012), inset 0 0 0 130px rgba(255,255,255,.01); }
.sell-layout { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.sell-copy h2 { margin-bottom: 22px; }
.sell-copy > p { margin-bottom: 30px; color: #bac6df; font-size: 1.02rem; }
.sell-steps { display: grid; gap: 14px; }
.sell-steps article { display: flex; gap: 18px; padding: 23px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.065); backdrop-filter: blur(12px); transition: transform .25s ease, background .25s ease; }
.sell-steps article:hover { transform: translateX(-7px); background: rgba(255,255,255,.1); }
.sell-steps article > span { color: var(--orange-400); font-family: var(--display); font-size: .82rem; font-weight: 800; }
.sell-steps h3 { margin-bottom: 7px; font-size: 1.02rem; }
.sell-steps p { margin-bottom: 0; color: #abb8d4; font-size: .82rem; }

.clients { overflow: hidden; background: var(--surface-soft); }
.clients-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.clients-header .section-heading { margin-bottom: 38px; }
.carousel-controls { display: flex; gap: 10px; margin-bottom: 40px; }
.carousel-button { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--navy-900); background: #fff; font-size: 1.15rem; font-weight: 900; box-shadow: var(--shadow-sm); transition: background .2s ease, color .2s ease, transform .2s ease; }
.carousel-button:hover { transform: translateY(-2px); color: #fff; background: var(--navy-900); }
.clients-carousel { width: min(1540px, calc(100% - 24px)); margin-left: auto; margin-right: auto; }
.clients-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  padding: 8px 0 24px;
}
.clients-track::-webkit-scrollbar { display: none; }
.clients-track.is-auto-scrolling { scroll-behavior: auto; scroll-snap-type: none; }
.clients-track.is-user-interacting { cursor: grabbing; }
.client-card {
  position: relative;
  flex: 0 0 clamp(250px, 24vw, 350px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 22px;
  scroll-snap-align: start;
  background: #dfe5ee;
  box-shadow: 0 18px 46px rgba(7,19,49,.13);
}
.client-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,8,25,.86), transparent 49%); }
.client-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.client-card:hover img { transform: scale(1.045); }
.client-card-overlay { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; color: #fff; }
.client-card-overlay span, .client-card-overlay strong { display: block; }
.client-card-overlay span { margin-bottom: 6px; color: var(--orange-300); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.client-card-overlay strong { font-family: var(--display); font-size: .92rem; }
.client-summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; margin-top: 22px; padding: 25px 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.stars { color: var(--orange-500); letter-spacing: .16em; }
.client-summary p { margin: 0; color: var(--muted); font-size: .92rem; }
.client-summary a { color: var(--orange-500); font-size: .83rem; font-weight: 800; white-space: nowrap; }

.faq { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 90px; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro h2 { margin-bottom: 20px; }
.faq-intro p { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 17px; background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-list details[open] { border-color: rgba(255,102,20,.46); box-shadow: var(--shadow-sm); }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 21px; list-style: none; color: var(--navy-900); font-family: var(--display); font-size: .95rem; font-weight: 700; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: var(--orange-500); background: #fff0e7; font-family: var(--body); font-size: 1.1rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 21px 22px; color: var(--muted); font-size: .9rem; }

.final-cta { position: relative; overflow: hidden; padding: 112px 0; text-align: center; color: #fff; background: linear-gradient(135deg, #071331, #0d2a64); }
.final-cta-glow { position: absolute; width: 640px; height: 640px; top: -410px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: rgba(255,102,20,.22); filter: blur(18px); }
.final-cta-content { position: relative; max-width: 900px; }
.final-cta-content > span { color: var(--orange-300); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.final-cta h2 { margin: 18px auto; }
.final-cta p { max-width: 650px; margin: 0 auto 30px; color: #c5d0e8; font-size: 1.03rem; }
.final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.footer { padding: 72px 0 24px; color: #aab5cd; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr 1fr; gap: 60px; }
.footer-brand img { width: 112px; height: 112px; object-fit: contain; margin-bottom: 15px; }
.footer-brand p { max-width: 310px; }
.footer h2 { margin-bottom: 16px; color: #fff; font-size: .9rem; letter-spacing: -.01em; }
.footer p, .footer a { display: block; margin-bottom: 9px; font-size: .8rem; line-height: 1.7; }
.footer a:hover { color: #fff; }
.footer-stock { color: var(--orange-300); font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; font-size: .72rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 42px rgba(0,0,0,.25);
  font-size: .82rem;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.32); }
.whatsapp-symbol { font-size: 1.1rem; }
.mobile-conversion-bar { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@keyframes car-float {
  0%, 100% { transform: translateX(-48%) translateY(0); }
  50% { transform: translateX(-48%) translateY(-10px); }
}
@keyframes halo-breathe {
  0%, 100% { opacity: .9; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: .65; transform: translate(-50%, -50%) scale(1.045); }
}

@media (max-width: 1120px) {
  .main-nav { gap: 16px; }
  .main-nav > a { font-size: .76rem; }
  .nav-whatsapp { display: none !important; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(450px, .95fr); }
  .hero-car { width: 124%; }
  .floating-card-top { left: -6%; }
  .floating-card-bottom { right: -4%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .benefits-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stock-layout { gap: 50px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 82px; }
  .topbar { display: none; }
  .header-inner { min-height: 74px; }
  .brand img { width: 66px; height: 66px; }
  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    z-index: 120;
    top: 74px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 92px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(3,8,25,.98);
    box-shadow: 0 28px 80px rgba(0,0,0,.42);
    transform: translateY(-18px) scale(.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav > a { display: flex; min-height: 48px; align-items: center; padding: 11px 14px; border-radius: 12px; font-size: .88rem; }
  .main-nav > a:not(.nav-stock):hover { background: rgba(255,255,255,.07); }
  .nav-whatsapp { display: flex !important; }
  .nav-stock { margin-top: 6px; }

  .hero { min-height: auto; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 0; padding-top: 22px; }
  .hero-copy { max-width: 760px; padding: 56px 0 20px; text-align: center; margin-inline: auto; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .car-halo { width: 480px; height: 480px; }
  .hero-car { width: min(900px, 110%); left: 50%; bottom: 20px; transform: translateX(-50%); animation-name: car-float-tablet; }
  .car-shadow { bottom: 50px; }
  .floating-card-top { top: 80px; left: 5%; }
  .floating-card-bottom { right: 4%; bottom: 90px; }
  .hero-services { gap: 16px; padding: 18px 0; }

  .story-row, .stock-layout, .sell-layout, .faq-layout { grid-template-columns: 1fr; }
  .story-row { gap: 58px; }
  .story-row-media-first .story-media { order: 2; }
  .story-row-media-first .story-content { order: 1; }
  .story-media { min-height: 520px; }
  .media-frame-right, .media-frame-left { transform: none; }
  .media-seal { left: 18px; }
  .experience-card { right: 18px; }
  .stock-layout, .sell-layout { gap: 55px; }
  .faq-layout { gap: 45px; }
  .faq-intro { position: static; }
  .client-summary { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }

  @keyframes car-float-tablet {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-9px); }
  }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 30px, 1240px); }
  body { font-size: 15.5px; padding-bottom: 70px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.25rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading p { font-size: .98rem; }
  .button { width: 100%; min-height: 52px; padding-inline: 18px; }

  .header-inner { min-height: 68px; }
  .brand img { width: 60px; height: 60px; }
  .main-nav { top: 68px; }
  .menu-button { width: 44px; height: 44px; }

  .hero-copy { padding-top: 44px; }
  .hero-copy h1 { margin-bottom: 20px; }
  .hero-copy > p { font-size: .98rem; }
  .hero-actions { display: grid; width: 100%; }
  .hero-proof { width: 100%; justify-content: space-between; }
  .hero-proof > div { min-width: 0; flex: 1; margin-right: 12px; padding-right: 12px; }
  .hero-proof strong { font-size: 1.08rem; }
  .hero-proof span { font-size: .65rem; }
  .hero-visual { min-height: 310px; margin-top: -30px; }
  .car-halo { width: 310px; height: 310px; }
  .hero-car { width: 125%; top: 10px; bottom: auto; }
  .car-shadow { width: 76%; height: 48px; bottom: 28px; filter: blur(19px); }
  .floating-card { min-width: 145px; gap: 8px; padding: 10px 11px; border-radius: 13px; }
  .floating-icon { width: 31px; height: 31px; border-radius: 9px; }
  .floating-card strong { font-size: .68rem; }
  .floating-card small { font-size: .58rem; }
  .floating-card-top { top: 33px; left: 0; }
  .floating-card-bottom { right: 0; bottom: 50px; }
  .hero-services { justify-content: flex-start; gap: 11px; overflow: hidden; white-space: nowrap; font-size: .61rem; letter-spacing: .11em; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: auto; padding: 24px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid article:nth-child(2) { border-bottom: 1px solid var(--line); }
  .trust-grid article:last-child { border-bottom: 0; }
  .trust-grid h2 { font-size: 1rem; }

  .story-row { gap: 42px; }
  .story-media { min-height: 360px; }
  .feature-list, .metric-grid { grid-template-columns: 1fr; }
  .inline-actions { display: grid; width: 100%; }
  .inline-actions .text-link { text-align: center; }
  .media-seal { top: 16px; left: 14px; width: 92px; height: 92px; border-width: 5px; }
  .media-seal strong { font-size: 1.35rem; }
  .media-seal span { font-size: .52rem; }
  .media-caption { left: 14px; right: auto; bottom: 14px; font-size: .67rem; }
  .experience-card { right: 14px; bottom: 14px; max-width: 170px; padding: 15px 16px; }
  .experience-card strong { font-size: 1.05rem; }
  .experience-card span { font-size: .68rem; }

  .benefits-grid, .process-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 280px; }
  .process-card { min-height: 235px; }

  .stock-showcase { padding: 78px 0; }
  .stock-actions { display: grid; }
  .stock-domain { text-align: center; overflow-wrap: anywhere; }
  .stock-card { padding: 23px; }
  .stock-card-top { display: grid; }

  .sell-layout { gap: 42px; }
  .sell-steps article:hover { transform: none; }

  .clients-header { align-items: center; }
  .clients-header .section-heading { margin-bottom: 26px; }
  .carousel-controls { margin-bottom: 28px; }
  .carousel-button { width: 44px; height: 44px; }
  .clients-carousel { width: calc(100% - 15px); margin-left: 15px; margin-right: 0; }
  .clients-track { gap: 13px; padding-right: 15px; }
  .client-card { flex-basis: 79vw; border-radius: 18px; }
  .client-summary { margin-top: 12px; padding: 22px 18px; }

  .faq-list summary { min-height: 66px; padding: 16px; font-size: .87rem; }
  .faq-list details p { padding: 0 16px 18px; font-size: .84rem; }

  .final-cta { padding: 82px 0; }
  .final-actions { display: grid; }

  .footer { padding-top: 55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { display: grid; gap: 8px; }
  .floating-whatsapp { display: none; }
  .mobile-conversion-bar {
    position: fixed;
    z-index: 130;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
    gap: 8px;
    background: rgba(3,8,25,.96);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -14px 35px rgba(0,0,0,.22);
    backdrop-filter: blur(16px);
  }
  .mobile-conversion-bar a { min-height: 52px; display: grid; place-content: center; text-align: center; border-radius: 13px; color: #fff; background: rgba(255,255,255,.08); }
  .mobile-conversion-bar a:last-child { background: var(--green); }
  .mobile-conversion-bar span, .mobile-conversion-bar strong { display: block; line-height: 1.1; }
  .mobile-conversion-bar span { margin-bottom: 4px; color: #c7d1e9; font-size: .61rem; }
  .mobile-conversion-bar a:last-child span { color: #eafff0; }
  .mobile-conversion-bar strong { font-size: .76rem; }
}

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