/* ===== VARIABLES & RESET ===== */
:root {
  --red: #FA133A;
  --black: #070708;
  --gray: #D6D7D7;
  --white: #ffffff;
  --red-dark: #c8102e;
  --muted: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Syne', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

/* grain overlay */
body::after {
  content:'';
  position:fixed;
  inset:0;
  z-index:9000;
  pointer-events:none;
  opacity:0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:200px 200px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity:0;
  transform:translateY(48px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; }
.d2 { transition-delay:.2s; }
.d3 { transition-delay:.3s; }
.d4 { transition-delay:.4s; }

/* ===== BUTTONS ===== */
.btn {
  display:inline-block;
  padding:.85rem 1.8rem;
  font-family:var(--font-body);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  border:none;
  transition: background .25s, transform .25s, color .25s, border-color .25s;
  white-space:nowrap;
}
.btn-red { background:var(--red); color:#fff; }
.btn-red:hover { background:var(--red-dark); transform:translateY(-2px); }
.btn-ghost { background:transparent; color:rgba(255,255,255,.65); border:1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { color:#fff; border-color:rgba(255,255,255,.6); transform:translateY(-2px); }
.btn-dark { background:transparent; color:var(--black); border:1px solid rgba(7,7,8,.3); }
.btn-dark:hover { background:rgba(7,7,8,.08); transform:translateY(-2px); }
.btn-wpp {
  display:inline-flex; align-items:center; gap:10px;
  margin-top:1.5rem;
  margin-bottom:1.5rem;
  padding:12px 22px;
  border-radius:100px;
  border:1.5px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.85);
  font-family:var(--font-body);
  font-size:.9rem;
  font-weight:500;
  cursor:pointer;
  text-decoration:none;
  transition:background .25s, border-color .25s, transform .25s;
}
.btn-wpp:hover { background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.35); transform:translateY(-2px); }
.btn-wpp__icon {
  display:flex; align-items:center; justify-content:center;
  width:30px; height:30px; border-radius:50%;
  background:#25D366;
  flex-shrink:0;
}

/* ===== SECTION UTILITIES ===== */
.wrap { max-width:1380px; margin:0 auto; width:100%; }
section { padding:7rem 2.5rem; }
.sec-label {
  display:flex; align-items:center; gap:1rem;
  font-size:.65rem; font-weight:700; letter-spacing:.25em;
  text-transform:uppercase; color:var(--red);
  margin-bottom:3rem;
}
.sec-label::after { content:''; width:40px; height:1px; background:var(--red); }

/* ===== NAVBAR ===== */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:1.6rem 2.5rem;
  display:flex; align-items:center; justify-content:space-between;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background:rgba(7,7,8,.93);
  backdrop-filter:blur(18px);
  padding:1rem 2.5rem;
  border-bottom:1px solid var(--border);
}
.nav-logo img { height:44px; width:auto; }
.nav-links { display:flex; align-items:center; gap:2.5rem; list-style:none; }
.nav-links a {
  font-size:.75rem; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; color:rgba(255,255,255,.6);
  transition:color .25s;
}
.nav-links a:hover { color:#fff; }
.nav-links .nav-cta {
  color:#fff; background:var(--red); padding:.45rem 1.1rem;
}
.nav-links .nav-cta:hover { background:var(--red-dark); }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; padding:4px;
}
.hamburger span { display:block; width:22px; height:1.5px; background:#fff; transition:all .3s; }

/* ===== MOBILE MENU ===== */
.mob-menu {
  display:none; position:fixed; inset:0; z-index:99;
  background:var(--black); flex-direction:column;
  justify-content:center; align-items:center; gap:3rem;
}
.mob-menu.open { display:flex; }
.mob-menu a {
  font-family:var(--font-display); font-size:3.5rem;
  letter-spacing:-.02em; color:#fff; transition:color .25s;
}
.mob-menu a:hover { color:var(--red); }
.mob-close {
  position:absolute; top:1.5rem; right:2.5rem;
  font-family:var(--font-display); font-size:2.5rem;
  color:#fff; background:none; border:none; cursor:pointer;
  line-height:1;
}

/* ===== HERO ===== */
.hero {
  min-height:100vh; padding:8rem 2.5rem 5rem;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
.hero-topline {
  position:absolute; top:0; left:0; right:0;
  height:1px; background:var(--red);
  transform:scaleX(0); transform-origin:left;
  animation: drawline 1s cubic-bezier(.16,1,.3,1) .15s forwards;
}
@keyframes drawline { to { transform:scaleX(1); } }

.hero-inner { position:relative; }

.hero-side {
  position:absolute; right:0; top:50%; transform:translateY(-50%) rotate(90deg);
  font-size:.6rem; letter-spacing:.3em; text-transform:uppercase;
  color:rgba(255,255,255,.18); white-space:nowrap;
  pointer-events:none;
}

.hero-hl { overflow:hidden; line-height:.92; }

.hero-red {
  display:block;
  font-family:var(--font-display);
  font-size:clamp(5.5rem,20vw,22rem);
  color:var(--red); letter-spacing:-.02em;
  opacity:0; transform:translateY(100%);
  animation: slideup .85s cubic-bezier(.16,1,.3,1) .35s forwards;
}
.hero-white {
  display:block;
  font-family:var(--font-display);
  font-size:clamp(3.8rem,14vw,15rem);
  color:#fff; letter-spacing:-.02em;
  opacity:0; transform:translateY(100%);
}
.hero-white.l2 { animation: slideup .85s cubic-bezier(.16,1,.3,1) .5s forwards; }
.hero-white.l3 { animation: slideup .85s cubic-bezier(.16,1,.3,1) .65s forwards; }

@keyframes slideup {
  to { opacity:1; transform:translateY(0); }
}

.hero-rule {
  width:56px; height:2px; background:var(--red);
  margin:2rem 0;
  opacity:0; animation:fadein .5s ease .95s forwards;
}
@keyframes fadein { to { opacity:1; } }

.hero-bottom {
  display:flex; align-items:flex-start; gap:4rem;
  opacity:0; transform:translateY(20px);
  animation:fadeup .8s cubic-bezier(.16,1,.3,1) 1.1s forwards;
}
@keyframes fadeup { to { opacity:1; transform:translateY(0); } }

.hero-sub {
  flex:1; max-width:400px;
  font-size:.975rem; line-height:1.75;
  color:rgba(255,255,255,.55);
}
.hero-ctas { display:flex; flex-direction:column; gap:.65rem; }

.scroll-hint {
  position:absolute; bottom:2.5rem; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  opacity:0; animation:fadein .5s ease 1.7s forwards;
}
.scroll-hint span {
  font-size:.6rem; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.3);
}
.scroll-line {
  width:1px; height:36px;
  background:linear-gradient(to bottom, var(--red), transparent);
  animation:bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { opacity:.5; transform:scaleY(1); }
  50% { opacity:1; transform:scaleY(.7) translateY(-4px); }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 9rem 2.5rem;
}
.sp-hl {
  font-family: var(--font-display);
  font-size: clamp(3rem,8vw,7rem);
  line-height: .9; letter-spacing: -.02em;
  margin-bottom: 1.75rem;
}
.sp-hl span { color: var(--red); }

.sp-intro {
  font-size: 1.05rem; line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 560px;
  margin-bottom: 7rem;
  padding-left: 1rem;
  border-left: 2px solid var(--red);
}

/* Carousel */
.sp-carousel {
  position: relative;
  overflow: hidden;
}
.sp-track {
  display: flex;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

/* Case study rows (social proof list) */
.sp-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  margin-bottom: 9rem;
}
.sp-case:last-child { margin-bottom: 0; }
.sp-case-rev .sp-case-visual { order: 2; }
.sp-case-rev .sp-case-text  { order: 1; }

/* Generic carousel slide */
.sp-slide {
  flex: 0 0 100%;
  min-width: 100%;
  opacity: .25;
  transition: opacity .6s cubic-bezier(.16,1,.3,1);
}
.sp-slide.is-active { opacity: 1; }

/* Problem carousel overrides */
.problem .sp-slide {
  padding: 4rem 0 2rem;
  border-bottom: none;
  margin-bottom: 0;
}
.problem .sp-carousel { margin-top: 0; }
.problem .sp-controls { margin-top: 2.5rem; }

/* Carousel controls */
.sp-controls {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sp-arrow {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.sp-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.sp-arrow:disabled {
  opacity: .25;
  cursor: not-allowed;
  pointer-events: none;
}
.sp-dots {
  display: flex;
  gap: .55rem;
  align-items: center;
}
.sp-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.sp-dot:hover { background: rgba(255,255,255,.4); }
.sp-dot.active {
  background: var(--red);
  width: 36px;
  border-radius: 5px;
}
.sp-counter {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255,255,255,.55);
  font-family: var(--font-body);
  min-width: 70px;
  text-align: center;
}
.sp-counter #spCurrent { color: var(--red); }
.sp-counter-sep { color: rgba(255,255,255,.2); margin: 0 .15em; }
.sp-counter-total { color: rgba(255,255,255,.3); }

/* TEXT SIDE */
.sp-case-text { display: flex; flex-direction: column; align-items: flex-start; }

.sp-tag-row {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.5rem;
}
.sp-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  border: 1px solid var(--red); padding: .35rem .85rem;
}
.sp-tag-stat {
  display: inline-block;
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .85rem;
  background: rgba(255,255,255,.03);
}
.sp-tag-stat strong { color: #fff; font-weight: 800; }
.sp-tag-soon {
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.02);
}

.sp-logo-line { margin-bottom: 1.25rem; }
.sp-inline-logo {
  height: 36px; width: auto;
  opacity: .85;
}

.sp-name {
  font-family: var(--font-display);
  font-size: clamp(3rem,7vw,6rem);
  line-height: .9; letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.sp-name-firm {
  font-size: clamp(1.8rem,3.6vw,3.2rem);
  line-height: 1;
}

.sp-desc {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.sp-result {
  font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  padding-left: 1rem; border-left: 2px solid var(--red);
  margin-bottom: 2rem; line-height: 1.55;
  max-width: 460px;
}

/* VISUAL SIDE */
.sp-case-visual {
  display: flex; justify-content: center;
  position: relative;
}

/* Big logo card (CVRS, PresupAI) */
.sp-card-big {
  width: 100%;
  max-width: 420px;
  min-height: 480px;
  background: linear-gradient(155deg, #0e0e10 0%, #141416 60%, #0c0c0e 100%);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  padding: 2.25rem 2rem 2.5rem;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.55);
}
.sp-card-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--red);
}
.sp-card-big::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 48px; height: 2px;
  background: rgba(255,255,255,.15);
}
.sp-card-top-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2.5rem;
}
.sp-card-eyebrow {
  font-size: .58rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.sp-card-eyebrow-r { color: var(--red); }

.sp-card-logo-wrap {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  margin: 1rem 0 2.5rem;
  min-height: 130px;
}
.sp-card-logo-firm {
  max-height: 130px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: .85rem 1.25rem;
  border-radius: 3px;
}
.sp-card-logo-app {
  max-height: 130px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
}
.sp-card-txt-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem,7vw,5.5rem);
  line-height: .95; letter-spacing: -.02em;
  color: rgba(255,255,255,.18);
  text-align: center;
}

.sp-card-stat {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
}
.sp-stat-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem,6.5vw,5.5rem);
  line-height: .9; letter-spacing: -.03em;
  color: var(--red);
}
.sp-stat-num span {
  font-size: .35em;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  margin-left: .15em;
}
.sp-stat-text {
  font-size: clamp(2.5rem,4.5vw,3.8rem);
  color: rgba(255,255,255,.6);
  letter-spacing: -.02em;
}
.sp-stat-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .5rem;
}

/* Coming soon */
.sp-coming .sp-card-big { filter: grayscale(1); opacity: .65; }
.sp-coming .sp-name { color: rgba(255,255,255,.75); }
.sp-coming .sp-desc { color: rgba(255,255,255,.4); }
.sp-coming-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 3;
  pointer-events: none;
}
.sp-coming-stamp span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: .25em;
  color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.45);
  padding: .55rem 1.75rem;
  background: rgba(7,7,8,.7);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  text-transform: uppercase;
}

/* GastIA chat mockup */
.mck-chat {
  display: flex; flex-direction: column; gap: .45rem;
  margin-bottom: 1rem;
}
.mck-msg {
  font-size: .55rem; line-height: 1.4;
  padding: .55rem .7rem;
  border-radius: 8px;
  max-width: 85%;
}
.mck-msg-user {
  background: rgba(180,130,255,.18);
  color: rgba(255,255,255,.9);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.mck-msg-bot {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  display: flex; align-items: center; gap: .4rem;
}
.mck-msg-bot strong { color: var(--red); font-weight: 700; }
.mck-bot-tag {
  font-size: .42rem; font-weight: 800; letter-spacing: .1em;
  background: var(--red); color: #fff;
  padding: .12rem .35rem; border-radius: 2px;
  text-transform: uppercase;
}

/* ===== PROBLEM ===== */
.problem { background:var(--black); border-top:1px solid var(--border); }

.problem-intro {
  font-family:var(--font-display);
  font-size:clamp(2.5rem,6vw,5rem);
  line-height:1; letter-spacing:-.02em;
  color:rgba(255,255,255,.1);
  margin-bottom:5rem;
}
.problem-intro em { color:#fff; font-style:normal; }

.problem-list { border-top:1px solid var(--border); }
.problem-item {
  display:grid; grid-template-columns:80px 1fr;
  gap:2rem; align-items:start;
  padding:3rem 0;
  border-bottom:1px solid var(--border);
  transition:border-color .3s;
}
.problem-item:hover { border-bottom-color:rgba(250,19,58,.25); }
.p-num {
  font-size:.65rem; font-weight:700; letter-spacing:.15em;
  color:var(--red); padding-top:.5rem;
}
.p-title {
  font-family:var(--font-display);
  font-size:clamp(2.2rem,6vw,5.5rem);
  line-height:.9; letter-spacing:-.02em;
  margin-bottom:.85rem;
}
.p-desc {
  font-size:.95rem; line-height:1.65;
  color:rgba(255,255,255,.45); max-width:480px;
}

/* ===== PROCESS ===== */
.process { background:var(--black); border-top:1px solid var(--border); }
.process-hl {
  font-family:var(--font-display);
  font-size:clamp(2.5rem,7vw,6.5rem);
  line-height:.9; letter-spacing:-.02em;
  margin-bottom:5rem;
}

.steps {
  display:grid; grid-template-columns:repeat(4,1fr);
  position:relative;
}
.steps::before {
  content:''; position:absolute;
  top:2rem; left:1.5rem; right:1.5rem;
  height:1px;
  background:linear-gradient(to right, var(--red) 0%, rgba(250,19,58,.15) 100%);
}
.step { padding:5.5rem 1.5rem 0; position:relative; }
.step::before {
  content:''; position:absolute;
  top:calc(2rem - 4px); left:1.5rem;
  width:9px; height:9px; border-radius:50%;
  background:var(--red);
  border:2px solid var(--black);
  box-shadow:0 0 0 2px var(--red);
}
.step-bg-num {
  position:absolute; top:4rem; left:1rem;
  font-family:var(--font-display);
  font-size:5rem; line-height:1;
  color:rgba(255,255,255,.05); pointer-events:none;
}
.step-name {
  font-family:var(--font-display);
  font-size:1.7rem; letter-spacing:-.01em;
  margin-bottom:.65rem; position:relative; z-index:1;
}
.step-desc {
  font-size:.85rem; line-height:1.65;
  color:rgba(255,255,255,.4); position:relative; z-index:1;
}

/* ===== PHONE MOCKUP (reused in social proof) ===== */
.phone-wrap { width:100%; max-width:280px; margin:0 auto; }
.phone-frame {
  background:#0e0e10;
  border:2px solid rgba(255,255,255,.1);
  border-radius:38px; padding:14px;
  box-shadow:0 40px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
  transform:rotate(-3deg);
}
.phone-notch {
  width:72px; height:20px;
  background:#0e0e10; border-radius:0 0 12px 12px;
  margin:0 auto 10px;
  border:1px solid rgba(255,255,255,.06); border-top:none;
}
.phone-screen {
  border-radius:24px; overflow:hidden;
  aspect-ratio:9/19; position:relative;
}
.screen-gastia { background:linear-gradient(155deg,#0f0f1a,#1a0a20,#100816); }
.mck { padding:1.2rem .85rem; height:100%; }
.mck-hd { display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem; }
.mck-t { font-size:.6rem; font-weight:700; letter-spacing:.1em; }
.mck-dot { width:5px; height:5px; border-radius:50%; background:var(--red); }
.mck-bar {
  height:5px; border-radius:3px; margin-bottom:.4rem;
  background:rgba(255,255,255,.07);
}
.mck-card {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
  border-radius:7px; padding:.6rem;
  margin-bottom:.6rem;
}
.mck-card-t {
  font-size:.48rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:rgba(255,255,255,.4);
  margin-bottom:.4rem;
}
@keyframes pulse { 0%,100%{opacity:.35} 50%{opacity:.9} }

/* ===== CONTACT ===== */
.contact { background:var(--black); border-top:1px solid var(--border); }
.contact-layout { display:grid; grid-template-columns:1fr 1.3fr; gap:6rem; align-items:start; }
.contact-left h2 {
  font-family:var(--font-display);
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:.9; letter-spacing:-.02em;
  margin-bottom:1.75rem;
}
.contact-left h2 span { color:var(--red); }
.contact-left p {
  font-size:.95rem; line-height:1.7;
  color:rgba(255,255,255,.45); max-width:360px;
}

.form { display:flex; flex-direction:column; gap:.85rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:.85rem; }
.fg { display:flex; flex-direction:column; gap:.35rem; }
.fg label {
  font-size:.65rem; font-weight:700; letter-spacing:.15em;
  text-transform:uppercase; color:rgba(255,255,255,.35);
}
.fg input, .fg select {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  color:#fff; padding:.8rem 1rem;
  font-family:var(--font-body); font-size:.9rem;
  outline:none; transition:border-color .25s;
  appearance:none; -webkit-appearance:none;
}
.fg input:focus, .fg select:focus { border-color:var(--red); }
.fg select {
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23FA133A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center;
  padding-right:2.5rem; cursor:pointer;
}
.fg select option { background:#111; color:#fff; }

.form-submit {
  background:var(--red); color:#fff; border:none;
  padding:.9rem 2.2rem;
  font-family:var(--font-body); font-size:.82rem;
  font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; align-self:flex-start;
  transition:background .25s, transform .25s;
  margin-top:.25rem;
}
.form-submit:hover { background:var(--red-dark); transform:translateY(-2px); }

.contact-logo {
  width:100%; max-width:320px;
  margin:2.5rem auto 0; display:block; opacity:.12;
}

.form-success {
  display:none; text-align:center; padding:3rem 2rem;
  border:1px solid rgba(250,19,58,.25);
}
.success-icon {
  width:44px; height:44px; border:1.5px solid var(--red); border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem;
}
.form-success h3 {
  font-family:var(--font-display); font-size:2.2rem;
  margin-bottom:.6rem;
}
.form-success p { font-size:.9rem; color:rgba(255,255,255,.45); line-height:1.6; }

/* ===== FOOTER ===== */
footer {
  background:rgba(255,255,255,.015);
  border-top:1px solid var(--border);
  padding:2.5rem 2.5rem;
}
.footer-inner {
  max-width:1380px; margin:0 auto;
  display:flex; align-items:center;
  justify-content:space-between; gap:2rem;
}
.footer-logo img { height:26px; width:auto; }
.footer-mid { display:flex; align-items:center; gap:1.75rem; }
.footer-email {
  font-size:.8rem; color:rgba(255,255,255,.45);
  transition:color .25s;
}
.footer-email:hover { color:#fff; }
.footer-ig {
  width:34px; height:34px; border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .25s, background .25s; flex-shrink:0;
}
.footer-ig:hover { border-color:var(--red); background:rgba(250,19,58,.1); }
.footer-legal { font-size:.65rem; color:rgba(255,255,255,.18); letter-spacing:.04em; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .steps { grid-template-columns:repeat(2,1fr); }
  .steps::before { display:none; }
  .step { padding-top:1.5rem; }
  .step::before { display:none; }
}

@media (max-width:860px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }

  .hero-side { display:none; }
  .hero-bottom { flex-direction:column; gap:2rem; }
  .hero-ctas { flex-direction:row; }

  .social-proof { padding:6rem 1.5rem; }
  .sp-intro { margin-bottom:4rem; }
  .sp-case {
    grid-template-columns:1fr;
    gap:3rem;
  }
  .sp-slide { padding:.5rem 0; }
  .sp-card-big { max-width:340px; min-height:auto; padding:2rem 1.75rem 2.25rem; }
  .sp-card-logo-wrap { min-height:110px; margin:.75rem 0 2rem; }
  .sp-controls { gap:1rem; margin-top:3rem; }
  .sp-arrow { width:44px; height:44px; }

  .contact-layout { grid-template-columns:1fr; gap:3rem; }
  .contact-left p { max-width:100%; }

  .footer-mid { flex-wrap:wrap; justify-content:center; }
}

@media (max-width:600px) {
  section { padding:5rem 1.25rem; }
  .hero { padding:7rem 1.25rem 4.5rem; }
  .nav { padding:1.4rem 1.25rem; }
  .nav.scrolled { padding:.9rem 1.25rem; }

  .hero-ctas { flex-direction:column; }
  .steps { grid-template-columns:1fr; }

  .form-row { grid-template-columns:1fr; }

  .footer-inner { padding:0; }
  footer { padding:2rem 1.25rem; }
}
