:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --orange: #FF6A00;
  --orange-hover: #E05A00;
  --orange-glow: rgba(255, 106, 0, 0.12);
  --white: #FFFFFF;
  --muted: #777777;
  --border: #222222;
  --whatsapp: #25D366;
  --header-h: 82px;
  --max: 1280px;
  --pad: 24px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

::selection {
  color: var(--bg);
  background: var(--orange);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.container {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.section-heading h2,
.section-copy h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 0.95;
}

.section-heading p,
.section-copy p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px var(--orange-glow);
}

.btn--orange {
  color: var(--bg);
  background: var(--orange);
  border-color: var(--orange);
}

.btn--orange:hover,
.btn--orange:focus-visible {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.btn--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}

.btn--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  color: var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
}

.loader-bar {
  position: absolute;
  top: calc(50% + 70px);
  width: min(260px, 70vw);
  height: 3px;
  overflow: hidden;
  background: var(--border);
}

.loader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform-origin: left;
  animation: loaderFill 1.4s ease forwards;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: clamp(140px, 15vw, 198px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(255, 106, 0, 0.08));
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus-visible {
  color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-book {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--bg);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 103;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.is-active span {
  background: var(--orange);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 102;
  display: grid;
  place-items: center;
  padding: 96px 24px 36px;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__links {
  display: grid;
  gap: 18px;
  text-align: center;
}

.mobile-menu__links .nav-link {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.4rem, 16vw, 5rem);
  font-weight: 900;
  line-height: 0.86;
}

.mobile-menu__socials {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-h);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 106, 0, 0.03) 40px, rgba(255, 106, 0, 0.03) 41px);
}

.hero__grid {
  display: grid;
  gap: 42px;
  padding-block: 56px 118px;
}

.label-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 106, 0, 0.55);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.04);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 0;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.95;
}

.hero-title span {
  display: block;
}

.hero-title__orange {
  color: var(--orange);
}

.hero-services {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-line {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 800ms ease forwards;
}

.hero-line:nth-child(2) {
  animation-delay: 100ms;
}

.hero-line:nth-child(3) {
  animation-delay: 200ms;
}

.hero-line:nth-child(4) {
  animation-delay: 300ms;
}

.hero__visual {
  position: relative;
  min-height: 340px;
  animation-delay: 400ms;
}

.car-placeholder {
  position: relative;
  display: grid;
  height: clamp(320px, 58vw, 520px);
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.28), transparent 48%),
    radial-gradient(circle at 76% 28%, rgba(255, 106, 0, 0.22), transparent 28%),
    var(--surface);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  animation: floatVisual 4s ease-in-out infinite;
}

.car-placeholder::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 35% 36%, transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px);
}

.car-placeholder span {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badge--est {
  left: -8px;
  bottom: 26px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  transform: rotate(-15deg);
}

.hero-badge--stat {
  top: 24px;
  right: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-badge--stat span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 2px;
  height: 38px;
  background: linear-gradient(var(--orange), transparent);
  animation: cueBounce 1.4s ease-in-out infinite;
}

.marquee-strip {
  overflow: hidden;
  background: var(--orange);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-group i {
  width: 9px;
  height: 9px;
  background: var(--white);
  transform: rotate(45deg);
}

.about {
  background: linear-gradient(180deg, var(--bg), #0c0c0c);
}

.about__layout {
  display: grid;
  gap: 36px;
}

.stats-grid {
  display: grid;
  gap: 14px;
}

.stat-card,
.founder-card,
.service-shell,
.contact-info,
.contact-form,
.feedback-box,
.testimonial-shell,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.stat-card {
  padding: 24px;
  border-top: 3px solid var(--orange);
}

.stat-card strong {
  display: block;
  color: var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.4rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.stat-card span {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.founder-card {
  display: grid;
  gap: 20px;
  padding: 26px;
  margin-top: 38px;
  border-color: rgba(255, 106, 0, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.08), transparent 55%),
    var(--surface);
}

.founder-card h3 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
}

.founder-card__intro span {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 106, 0, 0.42);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-card p {
  margin: 0;
  color: var(--muted);
}

.founder-card strong {
  color: var(--white);
}

.services {
  background: var(--surface);
}

.service-shell {
  display: grid;
  overflow: hidden;
}

.service-tabs {
  display: flex;
  gap: 12px;
  padding: 18px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
}

.service-tab {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-tab.active,
.service-tab:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.service-panel {
  display: grid;
  gap: 24px;
  padding: 24px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-panel.is-changing {
  opacity: 0;
  transform: translateX(18px);
}

.service-panel h3 {
  margin: 0;
  font-size: clamp(3rem, 11vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.service-panel p {
  color: var(--muted);
}

.service-panel h4 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.service-panel ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.service-panel li {
  color: var(--white);
}

.service-panel li::before {
  color: var(--orange);
  content: "-> ";
}

.service-panel__image {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.32), transparent 52%),
    var(--surface-2);
}

.service-panel__image span {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.work {
  background: var(--bg);
}

.compare-grid {
  display: grid;
  gap: 18px;
}

.compare-card {
  position: relative;
  height: 310px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  background: var(--surface);
}

.compare-before,
.compare-after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.compare-before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent),
    #2a2a2a;
}

.compare-after {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.38), transparent),
    #101010;
  clip-path: inset(0 0 0 var(--position));
}

.compare-before span,
.compare-after span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-label--before {
  left: 16px;
  color: var(--muted);
}

.compare-label--after {
  right: 16px;
  color: var(--orange);
}

.compare-handle {
  position: absolute;
  top: 0;
  left: var(--position);
  z-index: 4;
  width: 44px;
  height: 100%;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
}

.compare-handle::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  content: "";
  background: var(--orange);
  transform: translateX(-50%);
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--bg);
  transform: translate(-50%, -50%);
}

.compare-handle span::before {
  color: var(--orange);
  content: "<>";
  font-weight: 900;
}

.projects-block {
  margin-top: 76px;
}

.projects-title {
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 8vw, 4rem);
  line-height: 0.95;
}

.projects-viewport {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
}

.projects-viewport::-webkit-scrollbar {
  display: none;
}

.projects-viewport.is-dragging {
  cursor: grabbing;
}

.projects-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 4px 24px 12px;
  animation: projectsScroll 42s linear infinite;
}

.projects-viewport:hover .projects-track,
.projects-viewport.is-dragging .projects-track {
  animation-play-state: paused;
}

.project-card {
  position: relative;
  flex: 0 0 300px;
  height: 400px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.3), transparent 54%),
    var(--surface-2);
}

.project-card::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "VIEW";
  color: var(--orange);
  background: rgba(0, 0, 0, 0.68);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--bg);
  background: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h4,
.project-card p {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
}

.project-card h4 {
  bottom: 48px;
  margin: 0;
  font-size: 2.1rem;
  line-height: 0.92;
}

.project-card p {
  bottom: 18px;
  margin: 0;
  color: var(--muted);
}

.work-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.process {
  background: var(--surface);
}

.process-line {
  display: none;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}

.process-step span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--bg);
  background: var(--orange);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.brands {
  padding: 76px 0;
  overflow: hidden;
  background: var(--bg);
}

.brand-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
}

.brand-marquee + .brand-marquee {
  border-top: 0;
}

.brand-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
  animation: brandLeft 36s linear infinite;
}

.brand-marquee--right div {
  animation-name: brandRight;
}

.brand-marquee span {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.brand-marquee span:hover {
  color: var(--orange);
}

.brand-marquee i {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.testimonials {
  background: var(--bg);
}

.testimonial-shell {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 6vw, 58px);
  overflow: hidden;
}

.testimonial-shell::before {
  position: absolute;
  top: 10px;
  left: 28px;
  color: rgba(255, 106, 0, 0.16);
  content: "\"";
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18rem;
  font-weight: 900;
  line-height: 0.8;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 58px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--orange);
}

.testimonial-slide blockquote {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 4vw, 2.4rem);
  font-style: italic;
  line-height: 1.25;
}

.testimonial-slide p {
  margin: 26px 0 0;
  color: var(--white);
  font-weight: 900;
}

.testimonial-slide span {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.testimonial-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--border);
  transition: background 180ms ease, transform 180ms ease;
}

.testimonial-dots button.active {
  background: var(--orange);
  transform: scale(1.3);
}

.contact {
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.06), transparent 240px),
    var(--surface);
}

.contact-layout {
  display: grid;
  gap: 18px;
}

.contact-info,
.contact-form,
.feedback-box {
  padding: 24px;
}

.whatsapp-cta {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: var(--bg);
  background: var(--whatsapp);
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-cta svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.info-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.info-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.info-list span {
  display: block;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-list p,
.info-list a {
  margin: 4px 0 0;
  color: var(--white);
}

.map-wrap iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-2);
  filter: grayscale(100%) contrast(120%);
}

.contact-forms {
  display: grid;
  gap: 18px;
}

.contact-form,
.feedback-box {
  display: grid;
  gap: 16px;
}

.feedback-box {
  border-color: rgba(255, 106, 0, 0.28);
}

.feedback-box h3 {
  margin: 0;
  font-size: 2.3rem;
  line-height: 0.95;
}

.feedback-box p {
  margin: 0;
  color: var(--muted);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  background: var(--surface-2);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row input,
.form-row select {
  min-height: 50px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
}

.form-note a {
  color: var(--orange);
  font-weight: 900;
}

.form-status:not(:empty) {
  padding: 12px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 106, 0, 0.08);
}

.faq {
  background: var(--bg);
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 20px;
  color: var(--white);
  background: transparent;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.faq-item button span {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms ease;
}

.faq-item.is-open button {
  color: var(--orange);
}

.faq-item.is-open button span {
  transform: rotate(225deg) translateY(-3px);
}

.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 62px 0 24px;
  border-top: 1px solid var(--border);
  background: #070707;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand img {
  width: min(230px, 100%);
  height: auto;
}

.footer-brand p,
.footer-col p {
  color: var(--muted);
}

.footer-col {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 1.55rem;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--orange);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.42);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  right: 72px;
  width: max-content;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--surface-2);
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.9;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease;
  mix-blend-mode: difference;
}

.cursor-dot.is-hovering {
  width: 40px;
  height: 40px;
  opacity: 0.45;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

@keyframes floatVisual {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(10px); opacity: 1; }
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes projectsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes brandLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes brandRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (min-width: 480px) {
  .stats-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  :root {
    --pad: 48px;
  }

  .section {
    padding: 112px 0;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 64px;
  }

  .hero-title {
    font-size: 86px;
  }

  .about__layout,
  .contact-layout,
  .founder-card {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.6fr) minmax(360px, 0.4fr);
    align-items: center;
  }

  .hero-title {
    font-size: 100px;
  }

  .service-shell {
    grid-template-columns: 300px 1fr;
  }

  .service-tabs {
    flex-direction: column;
    gap: 0;
    padding: 28px 0;
    overflow: visible;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .service-tab {
    padding: 18px 26px;
    border-bottom: 0;
    border-left: 3px solid transparent;
  }

  .service-tab.active,
  .service-tab:hover {
    background: rgba(255, 106, 0, 0.05);
    border-left-color: var(--orange);
  }

  .service-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
    align-items: center;
    padding: 38px;
  }

  .process {
    overflow: hidden;
  }

  .process-line {
    position: relative;
    display: block;
    height: 2px;
    margin: 64px 8% -20px;
    background: var(--border);
  }

  .process-line span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: var(--orange);
    transition: width 1000ms ease;
  }

  .process-line.is-active span {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .process-step {
    background: var(--surface);
  }

  .cursor-dot {
    display: block;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 118px;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .project-card {
    flex-basis: 270px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

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

  .reveal,
  .hero-line {
    opacity: 1;
    transform: none;
  }
}
