/* =========================
   CHEYOSS STUDIO BASE CSS
   ========================= */

/* ---------- RESET ---------- */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0E1A2B;
  background: #FFFFFF;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- ACCESSIBILITY BASE ---------- */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;

  padding: 11px 16px;
  border-radius: 10px;
  background: var(--color-navy);
  color: var(--color-white);

  font-size: 14px;
  font-weight: 800;

  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.45);
  outline-offset: 3px;
}

/* ---------- CSS VARIABLES ---------- */

:root {
  --color-navy: #0E1A2B;
  --color-navy-soft: #13233A;
  --color-slate: #334155;
  --color-muted: #64748B;

  --color-orange: #FF6A00;
  --color-orange-dark: #E85E00;
  --color-orange-light: #FFB14D;
  --color-orange-soft: #FFF1E8;

  --color-white: #FFFFFF;
  --color-bg: #F8FAFC;
  --color-border: #E2E8F0;
  --color-border-soft: #EEF2F7;

  --shadow-sm: 0 8px 20px rgba(14, 26, 43, 0.06);
  --shadow-md: 0 18px 40px rgba(14, 26, 43, 0.10);
  --shadow-lg: 0 28px 70px rgba(14, 26, 43, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1180px;
  --section-padding: 88px;
}

/* ---------- GLOBAL UTILITIES ---------- */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding);
}

.text-orange {
  color: var(--color-orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;
  padding: 0 24px;

  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;

  transition: 0.25s ease;
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-orange);
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.22);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-container {
  height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ---------- BRAND ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 13px;
  background: var(--color-orange);
  color: var(--color-white);

  font-size: 28px;
  font-weight: 900;
  line-height: 1;

  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.28);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 9px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-navy);
}

.brand-studio {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.44em;
  color: var(--color-orange);
}

/* ---------- NAV ---------- */

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.nav-link {
  position: relative;

  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);

  transition: 0.25s ease;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;

  height: 3px;
  border-radius: 999px;
  background: var(--color-orange);
}

/* ---------- HEADER CTA ---------- */

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 50px;
  padding: 0 22px;

  border-radius: 14px;
  background: var(--color-orange);
  color: var(--color-white);

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.24);
  transition: 0.25s ease;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.cta-icon {
  font-size: 17px;
  line-height: 1;
}

/* ---------- MOBILE MENU BUTTON ---------- */

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  border-radius: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-navy);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .header-container {
    height: 78px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 26px;
  }

  .brand-studio {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-studio {
    font-size: 11px;
    letter-spacing: 0.36em;
  }
}

  /* =========================
   HERO SECTION
   ========================= */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 25px 0 100px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 106, 0, 0.10), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  filter: blur(8px);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 170px;
  right: 44px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(255, 106, 0, 0.32) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.7;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 64px;
}

/* ---------- HERO CONTENT ---------- */

.hero-content {
  max-width: 570px;
  padding-top: 48px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;

  padding: 11px 18px;
  margin-bottom: 28px;

  border: 1px solid #F0E1D6;
  border-radius: 999px;
  background: #F8EEE7;
  box-shadow: none;
}

.hero-kicker span {
  position: relative;
  display: inline-flex;
  align-items: center;

  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #26364C;
}

.hero-kicker span:not(:last-child) {
  margin-right: 24px;
}

.hero-kicker span:not(:last-child)::after {
  content: "\2022";
  display: inline-block;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);

  color: #FF6A00;
  font-size: 15px;
  font-weight: 900;
}

/* ---------- HERO TITLE ---------- */

.hero-title {
  max-width: 570px;

  font-size: clamp(56px, 5.2vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 900;
  color: var(--color-navy);
}

.hero-title-main {
  display: block;
  color: var(--color-navy);
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  max-width: 100%;

  color: var(--color-orange);
  z-index: 1;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 7%;
  right: auto;
  bottom: -13px;

  width: 86%;
  height: 16px;

  border-bottom: 5px solid var(--color-orange);
  border-radius: 50%;
  background: transparent;

  transform: rotate(1deg);
  opacity: 0.95;
  z-index: -1;
  pointer-events: none;
}

/* ---------- LETTER ANIMATION PROTECTION ---------- */

.hero-title .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .letter {
  display: inline-block;

  opacity: 0;
  transform: translateY(34px);

  animation: heroLetterRise 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--letter-delay, 0ms);
  will-change: opacity, transform;
}

.hero-title-main .letter {
  color: var(--color-navy);
}

.hero-title-accent .letter {
  color: var(--color-orange);
}

/* Evita que el subrayado se replique en cada letra */
.hero-title .word::after,
.hero-title .letter::after {
  content: none !important;
  display: none !important;
}

@keyframes heroLetterRise {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }

  70% {
    opacity: 1;
    transform: translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- HERO DESCRIPTION / ACTIONS ---------- */

.hero-description {
  max-width: 540px;
  margin-top: 26px;

  font-size: 18px;
  line-height: 1.75;
  color: var(--color-slate);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.trust-stars {
  display: inline-flex;
  align-items: center;

  color: #FF6A00;
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
}

.trust-stars .star {
  display: inline-block;

  opacity: 0;
  transform: translateY(12px) scale(0.75);

  animation: starPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--star-delay, 0ms);
  will-change: opacity, transform;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.75);
  }

  65% {
    opacity: 1;
    transform: translateY(-2px) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-trust p {
  font-size: 15px;
  font-weight: 500;
  color: #64748B;
}

/* ---------- HERO SHOWCASE ---------- */

.hero-showcase {
  position: relative;
  min-height: 650px;
  padding-top: 10px;
}

.site-mockup {
  position: absolute;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);

  isolation: isolate;
  transition: 0.3s ease;
}

.site-mockup:hover {
  transform: translateY(-6px) rotate(0deg) scale(1.01);
  box-shadow: 0 34px 90px rgba(14, 26, 43, 0.20);
}

.mockup-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 26, 43, 0.18), rgba(14, 26, 43, 0.78));
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 18px;
  color: var(--color-white);
}

.mockup-brand {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mockup-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 26px;
  padding: 0 10px;

  border-radius: 999px;
  background: rgba(255, 106, 0, 0.95);
  color: var(--color-white);

  font-size: 10px;
  font-weight: 800;
}

.mockup-body {
  padding: 20px;
  color: var(--color-white);
}

.mockup-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);

  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mockup-body h3 {
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.mockup-body p {
  max-width: 240px;
  margin-top: 9px;

  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.mockup-btn {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 13px;

  border-radius: 999px;
  background: var(--color-orange);
  color: var(--color-white);

  font-size: 11px;
  font-weight: 900;
}

/* ---------- INDIVIDUAL MOCKUPS ---------- */

.mockup-construction {
  z-index: 5;
  left: 22%;
  top: 145px;
  width: 440px;
  height: 300px;

  background:
    linear-gradient(135deg, rgba(14, 26, 43, 0.25), rgba(14, 26, 43, 0.75)),
    linear-gradient(135deg, #17223A, #334155);
}

.mockup-construction::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.10), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.10) 0,
      rgba(255, 255, 255, 0.10) 1px,
      transparent 1px,
      transparent 22px
    );
}

.mockup-restaurant {
  z-index: 3;
  left: 0;
  top: 38px;
  width: 300px;
  height: 220px;
  transform: rotate(-4deg);

  background:
    linear-gradient(135deg, rgba(14, 26, 43, 0.15), rgba(14, 26, 43, 0.82)),
    radial-gradient(circle at 78% 30%, #FFB14D 0 13%, transparent 14%),
    radial-gradient(circle at 68% 60%, #C2410C 0 16%, transparent 17%),
    linear-gradient(135deg, #431407, #111827);
}

.mockup-beauty {
  z-index: 4;
  right: 10px;
  top: 10px;
  width: 280px;
  height: 250px;
  transform: rotate(3deg);

  background:
    radial-gradient(circle at 78% 35%, #FED7AA 0 20%, transparent 21%),
    radial-gradient(circle at 82% 43%, #9A3412 0 8%, transparent 9%),
    linear-gradient(135deg, #FFF7ED, #FFE4D2);
}

.mockup-beauty .mockup-topbar,
.mockup-beauty .mockup-body {
  color: var(--color-navy);
}

.mockup-beauty .mockup-label {
  background: rgba(255, 106, 0, 0.10);
  color: var(--color-orange);
}

.mockup-beauty .mockup-body p {
  color: var(--color-slate);
}

.mockup-beauty .mockup-brand {
  color: var(--color-navy);
}

.mockup-barber {
  z-index: 2;
  left: 48px;
  bottom: 28px;
  width: 280px;
  height: 215px;
  transform: rotate(3deg);

  background:
    linear-gradient(135deg, rgba(14, 26, 43, 0.18), rgba(14, 26, 43, 0.86)),
    radial-gradient(circle at 78% 38%, #64748B 0 16%, transparent 17%),
    linear-gradient(135deg, #020617, #1E293B);
}

.mockup-bakery {
  z-index: 1;
  right: 58px;
  bottom: 18px;
  width: 295px;
  height: 215px;
  transform: rotate(-3deg);

  background:
    linear-gradient(135deg, rgba(14, 26, 43, 0.08), rgba(14, 26, 43, 0.72)),
    radial-gradient(circle at 75% 35%, #FDBA74 0 13%, transparent 14%),
    radial-gradient(circle at 62% 58%, #7C2D12 0 11%, transparent 12%),
    linear-gradient(135deg, #78350F, #1C1917);
}

/* ---------- RESPONSIVE HERO ---------- */

@media (max-width: 1120px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-title {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(56px, 8vw, 78px);
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-showcase {
    width: min(100%, 760px);
    margin-inline: auto;
    min-height: 610px;
  }
}

@media (max-width: 760px) {
  .hero-section {
    padding: 64px 0 82px;
  }

  .hero-title {
    max-width: 360px;
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.94;
  }

  .hero-title-accent::after {
    bottom: -9px;
    height: 12px;
    border-bottom-width: 4px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-kicker {
    justify-content: center;
    border-radius: 20px;
  }

  .hero-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-mockup {
    position: relative;
    inset: auto;
    width: 100%;
    height: 230px;
    transform: none;
  }

  .mockup-construction {
    height: 270px;
  }

  .site-mockup:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 520px) {
  .hero-title {
    max-width: 330px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .mockup-body h3 {
    font-size: 21px;
  }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-title .letter,
  .trust-stars .star {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* =========================
   CORE SERVICES SECTION
   ========================= */

.services-section {
  position: relative;
  padding: 0 0 56px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  text-align: center;
}

.section-heading span {
  width: 58px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 26, 43, 0.25),
    transparent
  );
}

.section-heading h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 28px 18px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(14, 26, 43, 0.045);

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 22px 50px rgba(14, 26, 43, 0.10);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;

  display: grid;
  place-items: center;

  color: var(--color-orange);
}

.service-icon svg {
  width: 58px;
  height: 58px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 10px;

  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--color-navy);
}

.service-card p {
  max-width: 180px;
  margin-inline: auto;

  font-size: 13px;
  line-height: 1.55;
  color: var(--color-slate);
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: auto;
  padding-top: 18px;

  font-size: 13px;
  font-weight: 800;
  color: var(--color-orange);

  transition: 0.25s ease;
}

.service-link span {
  transition: transform 0.25s ease;
}

.service-link:hover {
  color: var(--color-orange-dark);
}

.service-link:hover span {
  transform: translateX(4px);
}

/* =========================
   CORE SERVICES RESPONSIVE
   ========================= */

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .services-section {
    padding-bottom: 44px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card {
    padding: 24px 16px 22px;
  }
}

@media (max-width: 460px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    max-width: 240px;
  }

}


/* =========================
   SOCIAL PROOF V2 / 90% SECTION
   ========================= */

.proof-v2-section {
  padding: 0 0 24px;
  background: #FFFFFF;
}

.proof-v2-card {
  display: grid;
  grid-template-columns: 132px 300px 1fr;
  align-items: center;
  gap: 30px;

  min-height: 138px;
  padding: 18px 30px;

  border: 1px solid #E2E8F0;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 14px 38px rgba(14, 26, 43, 0.045);
}

/* ---------- 90% DONUT BADGE ---------- */

.proof-v2-badge {
  position: relative;

  width: 116px;
  height: 116px;

  display: grid;
  place-items: center;

  border-radius: 22px;
  background: var(--color-navy);
  box-shadow: 0 16px 34px rgba(14, 26, 43, 0.16);
}

.proof-v2-donut {
  width: 92px;
  height: 92px;
  overflow: visible;
}

.proof-v2-donut circle {
  fill: none;
}

.proof-v2-donut .donut-base {
  stroke: #FFFFFF;
  stroke-width: 14;
}

.proof-v2-donut .donut-progress {
  stroke: var(--color-orange);
  stroke-width: 14;
  stroke-linecap: butt;

  stroke-dasharray: 208 252;
  stroke-dashoffset: -14;

  transform: rotate(-90deg);
  transform-origin: center;
}

.proof-v2-donut .donut-center {
  fill: var(--color-navy);
}

.proof-v2-percent {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -52%);

  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.3px;
  color: #FFFFFF;

  pointer-events: none;
}

/* ---------- TEXT ---------- */

.proof-v2-copy h2 {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: var(--color-navy);
}

.proof-v2-copy h2 span {
  color: var(--color-orange);
}

.proof-v2-copy p {
  margin-top: 8px;

  font-size: 13.5px;
  line-height: 1.42;
  color: var(--color-slate);
}

.proof-v2-copy small {
  display: inline-block;
  margin-top: 4px;

  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-muted);
}

/* ---------- PERSON ICONS ---------- */

.proof-v2-people {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  width: 100%;
  padding-left: 12px;
}

.proof-v2-person {
  width: 36px;
  height: 72px;

  display: block;
  flex-shrink: 0;

  background-color: #FF6A00;

  -webkit-mask: url("../icons/person.svg") center / contain no-repeat;
  mask: url("../icons/person.svg") center / contain no-repeat;
}

.proof-v2-person.inactive {
  background-color: #CBD5E1;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1120px) {
  .proof-v2-card {
    grid-template-columns: 132px 1fr;
    gap: 26px;
  }

  .proof-v2-people {
    grid-column: 1 / -1;
    justify-content: center;
    padding-top: 8px;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .proof-v2-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 22px;
    text-align: center;
  }

  .proof-v2-badge {
    margin-inline: auto;
  }

  .proof-v2-copy h2 {
    font-size: 25px;
  }

  .proof-v2-people {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 460px) {
  .proof-v2-person {
    width: 28px;
    height: 56px;
  }
}
/* =========================
   ESTIMATED DELIVERY SECTION
   ========================= */

.delivery-section {
  padding: 0 0 28px;
  background: #FFFFFF;
}

.delivery-banner {
  position: relative;
  overflow: hidden;

  min-height: 104px;
  padding: 22px 32px;

  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  align-items: center;
  gap: 32px;

  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 50%, rgba(255, 106, 0, 0.10), transparent 24%),
    linear-gradient(135deg, #071426 0%, #0E1A2B 48%, #09203F 100%);

  box-shadow: 0 18px 40px rgba(14, 26, 43, 0.14);
}

.delivery-left {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 300px;
}

.delivery-clock {
  width: 66px;
  height: 66px;

  display: grid;
  place-items: center;

  color: var(--color-orange);
  flex-shrink: 0;
}

.delivery-clock svg {
  width: 66px;
  height: 66px;

  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-text-main {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.delivery-text-main span {
  margin-bottom: 6px;

  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.delivery-text-main strong {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--color-orange);
}

.delivery-divider {
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, 0.22);
}

.delivery-description {
  max-width: 520px;

  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.delivery-rocket {
  width: 92px;
  height: 92px;

  color: rgba(255, 255, 255, 0.32);
  opacity: 1;
}

.delivery-rocket svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-rocket .rocket-trail {
  stroke-width: 3.3;
  opacity: 0.62;
}

.delivery-rocket .rocket-trail-soft {
  opacity: 0.38;
}

/* =========================
   ESTIMATED DELIVERY RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .delivery-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .delivery-left {
    justify-content: center;
    min-width: 0;
  }

  .delivery-divider {
    display: none;
  }

  .delivery-description {
    margin-inline: auto;
  }

  .delivery-rocket {
    display: none;
  }
}

@media (max-width: 560px) {
  .delivery-banner {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .delivery-left {
    flex-direction: column;
    gap: 12px;
  }

  .delivery-description {
    font-size: 14px;
  }

  .delivery-clock,
  .delivery-clock svg {
    width: 58px;
    height: 58px;
  }
}

/* =========================
   COMPARISON SECTION
   ========================= */

.comparison-section {
  padding: 0 0 34px;
  background: #FFFFFF;
}

.comparison-layout {
  position: relative;

  display: grid;
  grid-template-columns: 270px 330px 1fr;
  align-items: center;
  gap: 14px;
}

/* ---------- CARDS ---------- */

.comparison-card {
  min-height: 220px;
  padding: 24px 22px;

  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 36px rgba(14, 26, 43, 0.045);
}

.comparison-card-positive {
  border-color: rgba(255, 106, 0, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 241, 232, 0.42), rgba(255, 255, 255, 0.96));
}

.comparison-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.comparison-x {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: #64748B;
  transform: translateY(-1px);
}

.comparison-title-check {
  width: 24px;
  height: 24px;

  display: inline-grid;
  place-items: center;

  border-radius: 999px;
  background: #22C55E;
  color: #FFFFFF;

  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.comparison-title h3 {
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--color-navy);
}

.positive-title h3 {
  font-size: 20px;
  color: var(--color-orange);
}

.comparison-icon {
  width: 28px;
  height: 28px;

  display: inline-grid;
  place-items: center;

  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.comparison-icon.negative {
  color: #334155;
  background: #F1F5F9;
}

.comparison-icon.positive {
  color: #FFFFFF;
  background: var(--color-orange);
}

.comparison-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.comparison-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 9px;

  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--color-slate);
}

.comparison-list li span {
  width: 18px;
  height: 18px;

  display: inline-grid;
  place-items: center;

  border-radius: 999px;
  background: #E2E8F0;
  color: #334155;

  font-size: 12px;
  font-weight: 900;
}

.comparison-list-positive li span {
  background: var(--color-orange);
  color: #FFFFFF;
}


/* =========================
   COMPARISON VISUAL AREA
   Laptop + Phone + KPI Cards
   ========================= */

.comparison-visual-area {
  position: relative;
  min-height: 315px;
  overflow: visible;
}

/* ---------- DEVICE STACK ---------- */

.visual-device-stack {
  position: absolute;
  left: 58px;
  right: 54px;
  bottom: 0;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* ---------- LAPTOP ---------- */

.visual-laptop {
  position: relative;
  width: 390px;
  z-index: 2;
}

.visual-laptop-screen {
  height: 230px;
  padding: 8px;

  border-radius: 18px 18px 10px 10px;
  background: #050B18;
  box-shadow: 0 22px 52px rgba(14, 26, 43, 0.24);
}

.visual-laptop-base {
  width: 450px;
  height: 18px;
  margin-left: -30px;

  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #E2E8F0 0%, #AEB7C5 100%);
  box-shadow: 0 16px 26px rgba(14, 26, 43, 0.15);
}

.visual-site {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.construction-site {
  position: relative;

  background:
    linear-gradient(90deg, rgba(14, 26, 43, 0.95), rgba(14, 26, 43, 0.54)),
    radial-gradient(circle at 78% 48%, rgba(255, 106, 0, 0.36), transparent 20%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.10) 0,
      rgba(255, 255, 255, 0.10) 1px,
      transparent 1px,
      transparent 24px
    ),
    linear-gradient(135deg, #0E1A2B 0%, #1E3A5F 100%);
}

.visual-site-nav {
  height: 42px;
  padding: 0 16px;

  display: flex;
  align-items: center;
  gap: 13px;

  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

.visual-site-logo {
  margin-right: auto;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.visual-site-btn {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-orange);
  color: #FFFFFF;
}

.visual-site-content {
  padding: 30px 24px;
  color: #FFFFFF;
}

.visual-site-content p {
  margin-bottom: 9px;

  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.visual-site-content h4 {
  font-size: 30px;
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.visual-site-content > span {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 13px;

  border-radius: 999px;
  background: var(--color-orange);

  font-size: 9px;
  font-weight: 900;
}

/* ---------- PHONE ---------- */

.visual-phone {
  position: relative;
  z-index: 4;

  width: 106px;
  height: 198px;
  padding: 6px;
  margin-left: -36px;

  border-radius: 26px;
  background: #071426;
  box-shadow: 0 22px 42px rgba(14, 26, 43, 0.26);
}

.visual-phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 34px;
  height: 4px;
  transform: translateX(-50%);

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 3;
}

.visual-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;

  border-radius: 20px;
  background: #111827;
}

.mobile-restaurant-site {
  height: 100%;
  color: #FFFFFF;

  background:
    linear-gradient(180deg, rgba(14, 26, 43, 0.18), rgba(14, 26, 43, 0.88)),
    radial-gradient(circle at 63% 30%, #FDBA74 0 14%, transparent 15%),
    radial-gradient(circle at 42% 36%, #EA580C 0 15%, transparent 16%),
    radial-gradient(circle at 56% 56%, #7C2D12 0 13%, transparent 14%),
    linear-gradient(145deg, #431407 0%, #111827 100%);
}

.mobile-restaurant-top {
  height: 30px;
  padding: 0 9px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-restaurant-top span:last-child {
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--color-orange);
}

.mobile-food-image {
  width: 48px;
  height: 48px;
  margin: 8px auto 4px;

  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 33%, #FDE68A 0 20%, transparent 21%),
    radial-gradient(circle at 65% 48%, #EA580C 0 21%, transparent 22%),
    radial-gradient(circle at 50% 66%, #7C2D12 0 19%, transparent 20%),
    #FDBA74;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.30);
}

.mobile-restaurant-content {
  padding: 8px 10px;
}

.mobile-restaurant-content p {
  font-size: 6px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-restaurant-content h4 {
  margin-top: 4px;

  font-size: 13px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.mobile-restaurant-actions {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}

.mobile-restaurant-actions span {
  padding: 5px 6px;

  border-radius: 999px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-size: 5.5px;
  font-weight: 900;
}

/* ---------- KPI CARDS ---------- */

.visual-kpi,
.visual-status-list {
  position: absolute;
  z-index: 5;
}

.visual-kpi {
  width: 110px;
  padding: 13px 12px;

  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 14px 32px rgba(14, 26, 43, 0.10);
}

.visual-kpi span {
  display: block;

  font-size: 10px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-slate);
}

.visual-kpi strong {
  display: block;
  margin-top: 5px;

  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #16A34A;
}

.visual-kpi-performance {
  left: 0;
  top: 20px;
}

.visual-kpi-leads {
  left: 8px;
  bottom: 20px;
}

.visual-kpi-leads small {
  display: block;
  margin-top: 2px;

  font-size: 9px;
  font-weight: 700;
  color: var(--color-muted);
}

.visual-kpi-seo {
  right: 0;
  top: 18px;
  text-align: center;
}

.visual-kpi-seo strong {
  width: 58px;
  height: 58px;
  margin: 8px auto 0;

  display: grid;
  place-items: center;

  border: 5px solid #22C55E;
  border-radius: 999px;

  font-size: 23px;
}

.visual-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;

  height: 24px;
  margin-top: 10px;
}

.visual-chart i {
  width: 16px;
  display: block;

  border-radius: 999px;
  background: #22C55E;
}

.visual-chart i:nth-child(1) {
  height: 8px;
}

.visual-chart i:nth-child(2) {
  height: 15px;
}

.visual-chart i:nth-child(3) {
  height: 23px;
}

.visual-status-list {
  right: 0;
  bottom: 28px;

  display: grid;
  gap: 10px;
}

.visual-status-pill {
  width: 138px;
  padding: 11px 12px;

  display: flex;
  align-items: center;
  gap: 8px;

  border: 1px solid #E2E8F0;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(14, 26, 43, 0.08);

  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-slate);
}

.visual-status-pill span {
  width: 8px;
  height: 8px;

  flex-shrink: 0;
  border-radius: 999px;
  background: #16A34A;
}

/* =========================
   COMPARISON VISUAL RESPONSIVE
   ========================= */

@media (max-width: 1180px) {
  .comparison-visual-area {
    grid-column: 1 / -1;
    min-height: 345px;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .comparison-visual-area {
    min-height: 520px;
  }

  .visual-device-stack {
    left: 50%;
    right: auto;
    width: 360px;
    transform: translateX(-50%);
  }

  .visual-laptop {
    width: 320px;
  }

  .visual-laptop-screen {
    height: 200px;
  }

  .visual-laptop-base {
    width: 370px;
    margin-left: -25px;
  }

  .visual-kpi-performance {
    left: 20px;
    top: 10px;
  }

  .visual-kpi-leads {
    left: 20px;
    bottom: 72px;
  }

  .visual-kpi-seo {
    right: 20px;
    top: 10px;
  }

  .visual-status-list {
    right: 20px;
    bottom: 62px;
  }
}

@media (max-width: 480px) {
  .comparison-visual-area {
    min-height: 590px;
  }

  .visual-device-stack {
    width: 300px;
  }

  .visual-laptop {
    width: 280px;
  }

  .visual-laptop-screen {
    height: 180px;
  }

  .visual-laptop-base {
    width: 320px;
    margin-left: -20px;
  }

  .visual-phone {
    width: 90px;
    height: 170px;
  }

  .visual-kpi {
    width: 96px;
  }

  .visual-status-pill {
    width: 120px;
    font-size: 10px;
  }
}

/* =========================
   COMPARISON RESPONSIVE
   ========================= */

@media (max-width: 1180px) {
  .comparison-layout {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-device-area {
    grid-column: 1 / -1;
    min-height: 340px;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .comparison-layout {
    grid-template-columns: 1fr;
  }

  .comparison-device-area {
    min-height: 520px;
  }

  .device-stack {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 360px;
  }

  .laptop-mockup {
    width: 320px;
  }

  .laptop-screen {
    height: 200px;
  }

  .laptop-base {
    width: 370px;
    margin-left: -25px;
  }

  .kpi-performance {
    left: 20px;
    top: 10px;
  }

  .kpi-leads {
    left: 20px;
    bottom: 72px;
  }

  .kpi-seo {
    right: 20px;
    top: 10px;
  }

  .comparison-status-list {
    right: 20px;
    bottom: 62px;
  }
}

@media (max-width: 480px) {
  .comparison-card {
    padding: 22px 18px;
  }

  .comparison-device-area {
    min-height: 590px;
  }

  .device-stack {
    width: 300px;
  }

  .laptop-mockup {
    width: 280px;
  }

  .laptop-screen {
    height: 180px;
  }

  .laptop-base {
    width: 320px;
    margin-left: -20px;
  }

  .phone-mockup {
    width: 90px;
    height: 170px;
  }

  .comparison-kpi {
    width: 96px;
  }

  .comparison-status-list {
    gap: 8px;
  }

  .status-pill {
    width: 120px;
    font-size: 10px;
  }
}
/* =========================
   CONTACT / REQUEST ASSISTANCE SECTION
   ========================= */

.contact-section {
  padding: 0 0 36px;
  background: #FFFFFF;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 42px;

  padding: 32px 42px;

  border: 1px solid #E2E8F0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  box-shadow: 0 14px 38px rgba(14, 26, 43, 0.045);
}

/* ---------- LEFT CONTENT ---------- */

.contact-content {
  max-width: 430px;
}

.contact-content h2 {
  margin-bottom: 12px;

  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-content p {
  margin-bottom: 22px;

  font-size: 15.5px;
  line-height: 1.58;
  color: var(--color-slate);
}

.contact-benefits {
  display: grid;
  gap: 12px;
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-navy);
}

.contact-benefits li span {
  width: 22px;
  height: 22px;

  display: inline-grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 999px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-size: 12px;
  font-weight: 900;
}

/* ---------- FORM ---------- */

.contact-form-wrap h3 {
  margin-bottom: 18px;

  text-align: center;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  position: relative;
}

.form-field label {
  position: absolute;
  width: 1px;
  height: 1px;

  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 54px;
  padding: 0 16px;

  border: 1px solid #CBD5E1;
  border-radius: 10px;
  background: #FFFFFF;

  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy);

  outline: none;
  transition: 0.22s ease;
}

.form-field input::placeholder {
  color: #64748B;
}

.form-field select {
  appearance: none;
  cursor: pointer;

  background-image:
    linear-gradient(45deg, transparent 50%, #334155 50%),
    linear-gradient(135deg, #334155 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 23px,
    calc(100% - 13px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: #64748B;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.10);
}

.contact-submit {
  width: 100%;
  height: 56px;
  margin-top: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 10px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-size: 18px;
  font-weight: 900;

  box-shadow: 0 14px 26px rgba(255, 106, 0, 0.22);
  transition: 0.25s ease;
}

.contact-submit-icon {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;

  flex-shrink: 0;
}
.contact-submit:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.contact-submit span {
  font-size: 17px;
  line-height: 1;
}

.form-note {
  margin-top: 10px;

  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-muted);
}

/* =========================
   CONTACT RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 28px;
  }

  .contact-content {
    max-width: 620px;
    text-align: center;
    margin-inline: auto;
  }

  .contact-benefits {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .contact-card {
    padding: 28px 18px;
  }

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

  .contact-submit {
    font-size: 16px;
  }
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 106, 0, 0.10), transparent 28%),
    linear-gradient(135deg, #071426 0%, #0E1A2B 52%, #071426 100%);
  color: #FFFFFF;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.85fr 1.25fr;
  gap: 46px;

  padding: 38px 0 30px;
}

/* ---------- FOOTER BRAND ---------- */

.footer-brand-area {
  max-width: 310px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-mark {
  position: relative;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 13px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-size: 27px;
  line-height: 1;
  font-weight: 900;

  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.24);
}

.footer-brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;

  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 9px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-name {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #FFFFFF;
}

.footer-brand-studio {
  margin-top: 5px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.42em;
  color: var(--color-orange);
}

.footer-brand-area p {
  max-width: 285px;
  margin-bottom: 20px;

  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- SOCIAL ICONS ---------- */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.84);

  transition: 0.22s ease;
}

.footer-socials a:hover {
  color: #FFFFFF;
  border-color: rgba(255, 106, 0, 0.70);
  background: rgba(255, 106, 0, 0.12);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 17px;
  height: 17px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:first-child svg,
.footer-socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

/* ---------- FOOTER COLUMNS ---------- */

.footer-column h3 {
  margin-bottom: 14px;

  font-size: 14.5px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-column a,
.footer-column span {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
}

.footer-column a {
  transition: 0.2s ease;
}

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

/* ---------- CONTACT COLUMN ---------- */

.footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;

  max-width: 270px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  color: #FFFFFF;
  opacity: 0.9;
}

/* ---------- FOOTER BOTTOM ---------- */

.footer-bottom {
  min-height: 52px;
  padding: 15px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-legal a {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.64);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.footer-legal a {
  transition: 0.2s ease;
}

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

/* =========================
   FOOTER RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 38px;
  }

  .footer-brand-area {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .footer-brand-area p {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 30px;
  }

  .footer-brand-area {
    max-width: 100%;
  }

  .footer-brand-area p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 460px) {
  .footer-legal {
    gap: 12px;
    flex-wrap: wrap;
  }
}

/* =========================================================
   CHEYOSS STUDIO — RESPONSIVE SYSTEM
   Tablet + Mobile Refinement
   Paste this at the very end of style.css
   ========================================================= */


/* =========================
   TABLET / SMALL LAPTOP
   1180px and below
   ========================= */

@media (max-width: 1180px) {

  :root {
    --section-padding: 72px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  /* ---------- HEADER ---------- */

  .header-container {
    gap: 22px;
  }

  .main-nav {
    gap: 26px;
  }

  .nav-link {
    font-size: 13px;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 18px;
  }

  /* ---------- HERO TABLET ---------- */

  .hero-section {
    padding: 58px 0 78px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 46px;
    align-items: center;
  }

  .hero-content {
    max-width: 760px;
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  .hero-kicker {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-showcase {
    position: relative;
    display: block;
    width: min(100%, 760px);
    min-height: 560px;
    margin-inline: auto;
  }

  .hero-showcase .site-mockup {
    display: flex;
  }

  .mockup-construction {
    left: 22%;
    top: 130px;
    width: 430px;
    height: 290px;
  }

  .mockup-restaurant {
    left: 3%;
    top: 38px;
    width: 290px;
    height: 215px;
  }

  .mockup-beauty {
    right: 4%;
    top: 8px;
    width: 270px;
    height: 240px;
  }

  .mockup-barber {
    left: 7%;
    bottom: 34px;
    width: 270px;
    height: 210px;
  }

  .mockup-bakery {
    right: 8%;
    bottom: 24px;
    width: 285px;
    height: 210px;
  }

  /* ---------- SERVICES TABLET ---------- */

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .service-card {
    min-height: 220px;
  }

  /* ---------- SOCIAL PROOF TABLET ---------- */

  .proof-v2-card {
    grid-template-columns: 132px 1fr;
    gap: 26px;
    padding: 22px 28px;
  }

  .proof-v2-people {
    grid-column: 1 / -1;
    justify-content: center;
    padding-left: 0;
    padding-top: 8px;
  }

  /* ---------- COMPARISON TABLET ---------- */

  .comparison-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .comparison-visual-area,
  .comparison-device-area {
    grid-column: 1 / -1;
    min-height: 330px;
    margin-top: 18px;
  }

  .visual-device-stack {
    left: 50%;
    right: auto;
    width: 520px;
    transform: translateX(-50%);
  }

  .visual-laptop {
    width: 360px;
  }

  .visual-laptop-screen {
    height: 215px;
  }

  .visual-laptop-base {
    width: 420px;
    margin-left: -30px;
  }

  .visual-phone {
    width: 100px;
    height: 188px;
  }

  .visual-kpi-performance {
    left: 8%;
    top: 10px;
  }

  .visual-kpi-leads {
    left: 8%;
    bottom: 26px;
  }

  .visual-kpi-seo {
    right: 8%;
    top: 10px;
  }

  .visual-status-list {
    right: 8%;
    bottom: 28px;
  }

  /* ---------- CONTACT TABLET ---------- */

  .contact-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 32px;
  }

  .contact-content {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .contact-benefits {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .contact-form-wrap {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  /* ---------- FOOTER TABLET ---------- */

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 38px;
  }

  .footer-brand-area {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .footer-brand-area p {
    max-width: 420px;
  }
}



/* =========================
   TABLET PORTRAIT
   980px and below
   ========================= */

@media (max-width: 980px) {

  /* ---------- HEADER ---------- */

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .site-header {
    position: sticky;
  }

  .header-container {
    height: 76px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-studio {
    font-size: 11px;
    letter-spacing: 0.36em;
  }

  /* ---------- HERO TABLET PORTRAIT ---------- */

  .hero-title {
    max-width: 660px;
    margin-inline: auto;
    font-size: clamp(44px, 7.4vw, 70px);
  }

  .hero-description {
    max-width: 620px;
  }

  .hero-showcase {
    width: min(100%, 720px);
    min-height: 530px;
  }

  .mockup-construction {
    left: 21%;
    top: 125px;
    width: 405px;
    height: 275px;
  }

  .mockup-restaurant {
    left: 2%;
    top: 42px;
    width: 275px;
    height: 205px;
  }

  .mockup-beauty {
    right: 2%;
    top: 20px;
    width: 255px;
    height: 225px;
  }

  .mockup-barber {
    left: 6%;
    bottom: 36px;
    width: 255px;
    height: 200px;
  }

  .mockup-bakery {
    right: 7%;
    bottom: 24px;
    width: 270px;
    height: 200px;
  }

  /* ---------- DELIVERY ---------- */

  .delivery-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .delivery-left {
    justify-content: center;
    min-width: 0;
  }

  .delivery-divider {
    display: none;
  }

  .delivery-description {
    margin-inline: auto;
  }

  .delivery-rocket {
    display: none;
  }
}



/* =========================
   MOBILE
   760px and below
   ========================= */

@media (max-width: 760px) {

  :root {
    --section-padding: 56px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  body {
    background: #FFFFFF;
  }

  /* ---------- HEADER MOBILE ---------- */

  .header-container {
    height: 68px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 21px;
  }

  .brand-mark::before {
    inset: 5px;
    border-radius: 7px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-studio {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.34em;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  /* ---------- HERO MOBILE ---------- */

  .hero-section {
    padding: 42px 0 54px;
    background:
      radial-gradient(circle at 88% 20%, rgba(255, 106, 0, 0.13), transparent 28%),
      linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  }

  .hero-section::before {
    width: 240px;
    height: 240px;
    top: 120px;
    right: -120px;
  }

  .hero-section::after {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
    text-align: center;
  }

  .hero-kicker {
    padding: 8px 12px;
    margin-bottom: 20px;
    justify-content: center;
    border-radius: 999px;
  }

  .hero-kicker span {
    font-size: 9px;
  }

  .hero-kicker span:not(:last-child) {
    margin-right: 16px;
  }

  .hero-kicker span:not(:last-child)::after {
    right: -11px;
    font-size: 11px;
  }

  .hero-title {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .hero-title span::after {
    bottom: -8px;
    height: 10px;
    border-bottom-width: 4px;
  }

  .hero-description {
    max-width: 360px;
    margin-top: 22px;
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 26px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 290px;
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  .hero-trust {
    margin-top: 20px;
    flex-direction: column;
    gap: 7px;
  }

  .trust-stars {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .hero-trust p {
    max-width: 300px;
    font-size: 12px;
    text-align: center;
  }

  /* Mobile: hide hero mockups completely.
     Tablet keeps the collage. Phones stay clean and direct. */

  .hero-showcase {
    display: none;
  }

  /* ---------- SERVICES MOBILE ---------- */

  .services-section {
    padding: 0 0 42px;
  }

  .section-heading {
    margin-bottom: 24px;
    gap: 12px;
  }

  .section-heading span {
    width: 42px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    min-height: 205px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .service-icon,
  .service-icon svg {
    width: 46px;
    height: 46px;
  }

  .service-icon {
    margin-bottom: 14px;
  }

  .service-card h3 {
    font-size: 15.5px;
  }

  .service-card p {
    max-width: 135px;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .service-link {
    padding-top: 14px;
    font-size: 11.5px;
  }

  /* ---------- SOCIAL PROOF MOBILE ---------- */

  .proof-v2-section {
    padding: 0 0 22px;
  }

  .proof-v2-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px 18px;
    text-align: center;
    border-radius: 22px;
  }

  .proof-v2-badge {
    width: 104px;
    height: 104px;
    margin-inline: auto;
    border-radius: 20px;
  }

  .proof-v2-donut {
    width: 82px;
    height: 82px;
  }

  .proof-v2-percent {
    font-size: 24px;
  }

  .proof-v2-copy h2 {
    max-width: 300px;
    margin-inline: auto;
    font-size: 20px;
    line-height: 1.08;
  }

  .proof-v2-copy p {
    max-width: 280px;
    margin-inline: auto;
    font-size: 12.5px;
  }

  .proof-v2-copy small {
    font-size: 11px;
  }

  .proof-v2-people {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    padding-top: 4px;
    overflow: hidden;
  }

  .proof-v2-person {
    width: 21px;
    height: 42px;
  }

  /* ---------- DELIVERY MOBILE ---------- */

  .delivery-section {
    padding: 0 0 22px;
  }

  .delivery-banner {
    min-height: auto;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .delivery-left {
    flex-direction: column;
    gap: 12px;
  }

  .delivery-clock,
  .delivery-clock svg {
    width: 54px;
    height: 54px;
  }

  .delivery-clock svg {
    stroke-width: 5;
  }

  .delivery-text-main span {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .delivery-text-main strong {
    font-size: 34px;
  }

  .delivery-description {
    max-width: 300px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  /* ---------- COMPARISON MOBILE ---------- */

  .comparison-section {
    padding: 0 0 28px;
  }

  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .comparison-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .comparison-card-positive {
    background:
      linear-gradient(180deg, rgba(255, 241, 232, 0.50), rgba(255, 255, 255, 0.98));
  }

  .comparison-title {
    margin-bottom: 15px;
  }

  .comparison-title h3 {
    font-size: 16px;
  }

  .positive-title h3 {
    font-size: 18px;
  }

  .comparison-list {
    gap: 10px;
  }

  .comparison-list li {
    font-size: 12px;
    line-height: 1.36;
  }

  /* Visual area is pending asset replacement.
     For mobile, keep it compact and prevent floating KPI chaos. */

  .comparison-visual-area {
    min-height: 300px;
    margin-top: 6px;
    overflow: hidden;
  }

  .visual-kpi,
  .visual-status-list {
    display: none;
  }

  .visual-device-stack {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    justify-content: center;
    padding-top: 10px;
  }

  .visual-laptop {
    width: min(100%, 310px);
  }

  .visual-laptop-screen {
    height: 185px;
    padding: 7px;
    border-radius: 16px 16px 9px 9px;
  }

  .visual-laptop-base {
    width: calc(100% + 46px);
    height: 15px;
    margin-left: -23px;
  }

  .visual-site-nav {
    height: 34px;
    padding: 0 12px;
    gap: 8px;
    font-size: 6px;
  }

  .visual-site-nav span:not(.visual-site-logo):not(.visual-site-btn) {
    display: none;
  }

  .visual-site-content {
    padding: 22px 18px;
  }

  .visual-site-content p {
    font-size: 7px;
  }

  .visual-site-content h4 {
    font-size: 24px;
  }

  .visual-site-content > span {
    padding: 8px 11px;
    font-size: 8px;
  }

  .visual-phone {
    width: 82px;
    height: 154px;
    margin-left: -38px;
    border-radius: 22px;
  }

  .visual-phone-screen {
    border-radius: 16px;
  }

  .mobile-food-image {
    width: 38px;
    height: 38px;
    margin-top: 7px;
  }

  .mobile-restaurant-content h4 {
    font-size: 10px;
  }

  .mobile-restaurant-actions span {
    padding: 4px 5px;
    font-size: 5px;
  }

  /* ---------- CONTACT MOBILE ---------- */

  .contact-section {
    padding: 0 0 30px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 18px;
    border-radius: 20px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content h2 {
    max-width: 310px;
    margin-inline: auto;
    font-size: 30px;
  }

  .contact-content p {
    max-width: 310px;
    margin-inline: auto;
    font-size: 13.5px;
  }

  .contact-benefits {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }

  .contact-benefits li {
    font-size: 12.5px;
  }

  .contact-benefits li span {
    width: 20px;
    height: 20px;
  }

  .contact-form-wrap h3 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-field input,
  .form-field select {
    height: 48px;
    font-size: 13px;
    border-radius: 9px;
  }

  .contact-submit {
    height: 50px;
    margin-top: 12px;
    font-size: 15px;
    border-radius: 9px;
  }

  .contact-submit-icon {
    width: 17px;
    height: 17px;
  }

  .form-note {
    font-size: 11.5px;
  }

  /* ---------- FOOTER MOBILE ---------- */

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 0 28px;
  }

  .footer-brand-area {
    max-width: 100%;
  }

  .footer-brand-area p {
    max-width: 300px;
  }

  .footer-socials {
    gap: 9px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
  }

  .footer-column h3 {
    margin-bottom: 12px;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-contact li {
    max-width: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
    padding: 16px 0 22px;
  }

  .footer-legal {
    gap: 12px;
    flex-wrap: wrap;
  }
}



/* =========================
   SMALL MOBILE
   420px and below
   ========================= */

@media (max-width: 420px) {

  .container {
    width: min(100% - 24px, var(--container));
  }

  /* ---------- HERO SMALL ---------- */

  .hero-title {
    max-width: 330px;
    font-size: clamp(35px, 12.2vw, 48px);
  }

  .hero-description {
    max-width: 320px;
    font-size: 14px;
  }

  /* ---------- SERVICES SMALL ---------- */

  .services-grid {
    gap: 10px;
  }

  .service-card {
    min-height: 198px;
    padding: 20px 12px 18px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    max-width: 120px;
    font-size: 10.8px;
  }

  /* ---------- SOCIAL PROOF SMALL ---------- */

  .proof-v2-copy h2 {
    font-size: 19px;
  }

  .proof-v2-people {
    gap: 7px;
  }

  .proof-v2-person {
    width: 19px;
    height: 38px;
  }

  /* ---------- DELIVERY SMALL ---------- */

  .delivery-text-main strong {
    font-size: 31px;
  }

  .delivery-description {
    font-size: 13px;
  }

  /* ---------- COMPARISON SMALL ---------- */

  .visual-laptop {
    width: min(100%, 285px);
  }

  .visual-laptop-screen {
    height: 175px;
  }

  .visual-phone {
    width: 76px;
    height: 144px;
    margin-left: -34px;
  }

  /* ---------- CONTACT SMALL ---------- */

  .contact-content h2 {
    font-size: 28px;
  }

  .contact-form-wrap h3 {
    font-size: 23px;
  }

  /* ---------- FOOTER SMALL ---------- */

  .footer-brand-mark {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .footer-brand-name {
    font-size: 23px;
  }

  .footer-brand-studio {
    font-size: 11px;
  }
}



/* =========================
   VERY SMALL MOBILE
   360px and below
   ========================= */

@media (max-width: 360px) {

  .hero-kicker {
    transform: scale(0.92);
    transform-origin: center;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    max-width: 230px;
  }

  .proof-v2-people {
    gap: 5px;
  }

  .proof-v2-person {
    width: 17px;
    height: 34px;
  }

  .visual-laptop {
    width: 260px;
  }

  .visual-laptop-screen {
    height: 165px;
  }

  .visual-phone {
    display: none;
  }
}
/* =====================================
   MOBILE FINAL SPACING REFINEMENT
   ===================================== */

@media (max-width: 760px) {
  .comparison-visual-area {
    min-height: 230px;
    margin-top: 2px;
  }

  .visual-device-stack {
    padding-top: 4px;
  }

  .contact-section {
    padding-top: 4px;
  }
}

@media (max-width: 420px) {
  .comparison-visual-area {
    min-height: 220px;
  }
}

@media (max-width: 360px) {
  .comparison-visual-area {
    min-height: 190px;
  }
}
/* =========================
   MOBILE MENU
   ========================= */

.mobile-menu {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;

    display: grid;
    gap: 6px;

    padding: 14px;

    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(14, 26, 43, 0.14);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: 0.24s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav-link {
    padding: 13px 14px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;
    color: var(--color-navy);

    transition: 0.2s ease;
  }

  .mobile-nav-link:hover {
    background: var(--color-orange-soft);
    color: var(--color-orange);
  }

  .mobile-nav-cta {
    min-height: 48px;
    margin-top: 6px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 13px;
    background: var(--color-orange);
    color: #FFFFFF;

    font-size: 14px;
    font-weight: 900;

    box-shadow: 0 12px 24px rgba(255, 106, 0, 0.22);
  }

  .mobile-nav-cta:hover {
    background: var(--color-orange-dark);
  }

  .mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-btn span {
    transition: 0.22s ease;
  }
}
/* =========================
   OFFICIAL CHEYOSS LOGO
   ========================= */

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 70px;
  max-width: 340px;
  object-fit: contain;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 78px;
  max-width: 370px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 980px) {
  .brand-logo {
    height: 60px;
    max-width: 300px;
  }

  .footer-logo {
    height: 68px;
    max-width: 330px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .brand-logo {
    height: 48px;
    max-width: 245px;
  }

  .footer-logo {
    height: 58px;
    max-width: 285px;
  }
}

/* Very small mobile */
@media (max-width: 420px) {
  .brand-logo {
    height: 44px;
    max-width: 225px;
  }

  .footer-logo {
    height: 54px;
    max-width: 260px;
  }
}

/* =========================================================
   MOBILE FOOTER COMPACT VERSION
   ========================================================= */

@media (max-width: 680px) {
  .site-footer {
    background:
      radial-gradient(circle at 10% 0%, rgba(255, 106, 0, 0.08), transparent 26%),
      linear-gradient(135deg, #071426 0%, #0E1A2B 58%, #071426 100%);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px 22px;
    padding: 30px 0 24px;
  }

  .footer-brand-area {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-logo-link {
    margin-bottom: 10px;
  }

  .footer-logo {
    height: 48px;
    max-width: 235px;
  }

  .footer-brand-area p {
    max-width: 300px;
    margin-bottom: 14px;

    font-size: 12.5px;
    line-height: 1.45;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-socials a {
    width: 30px;
    height: 30px;
  }

  .footer-socials svg {
    width: 15px;
    height: 15px;
  }

  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 12.5px;
  }

  .footer-column ul {
    gap: 7px;
  }

  .footer-column a,
  .footer-column span {
    font-size: 11.5px;
    line-height: 1.3;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact ul {
    gap: 8px;
  }

  .footer-contact li {
    grid-template-columns: 16px 1fr;
    gap: 8px;
  }

  .footer-contact svg {
    width: 14px;
    height: 14px;
    margin-top: 0;
  }

  .footer-bottom {
    min-height: auto;
    padding: 14px 0 18px;

    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-bottom p,
  .footer-legal a {
    font-size: 10.5px;
  }

  .footer-legal {
    gap: 9px;
    flex-wrap: nowrap;
  }

  .footer-legal span {
    height: 10px;
  }
}

@media (max-width: 420px) {
  .footer-main {
    gap: 22px 18px;
    padding: 28px 0 22px;
  }

  .footer-logo {
    height: 44px;
    max-width: 215px;
  }

  .footer-brand-area p {
    max-width: 270px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-legal {
    gap: 10px;
  }
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

/* ---------- PAGE HERO ---------- */

.page-hero {
  padding: 82px 0 46px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 106, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.page-hero-content {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  padding: 9px 14px;

  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  color: var(--color-orange);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.page-hero h1 {
  max-width: 780px;
  margin-inline: auto;

  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
  color: var(--color-navy);
}

.page-hero p {
  max-width: 680px;
  margin: 24px auto 0;

  font-size: 17px;
  line-height: 1.65;
  color: var(--color-slate);
}

.page-hero-actions {
  margin-top: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* =========================================================
   BUILT FOR SMALL BUSINESSES SECTION
   ========================================================= */

.industries-section {
  padding: 22px 0 42px;
  background: #FFFFFF;
}

.industries-heading {
  margin-bottom: 20px;
  text-align: center;
}

.industries-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.industry-card {
  min-height: 112px;
  padding: 18px 12px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #FFFFFF;

  box-shadow: 0 12px 30px rgba(14, 26, 43, 0.045);
  transition: 0.22s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.30);
  box-shadow: 0 18px 38px rgba(14, 26, 43, 0.08);
}

.industry-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  color: var(--color-orange);
}

.industry-icon svg {
  width: 31px;
  height: 31px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card h3 {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-align: center;
  color: var(--color-navy);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1180px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .industry-card {
    min-height: 108px;
  }
}

@media (max-width: 760px) {
  .industries-section {
    padding: 18px 0 34px;
  }

  .industries-heading {
    margin-bottom: 18px;
  }

  .industries-heading h2 {
    max-width: 320px;
    margin-inline: auto;
    font-size: 27px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .industry-card {
    min-height: 104px;
    padding: 16px 10px 14px;
    border-radius: 15px;
  }

  .industry-icon {
    width: 32px;
    height: 32px;
  }

  .industry-icon svg {
    width: 29px;
    height: 29px;
  }

  .industry-card h3 {
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 96px;
  }
}

/* ---------- SERVICES DETAIL ---------- */

.services-detail-section {
  padding: 14px 0 36px;
  background: #FFFFFF;
}

.services-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  scroll-margin-top: 110px;

  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;

  padding: 30px;

  border: 1px solid #E2E8F0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.82));
  box-shadow: 0 14px 38px rgba(14, 26, 43, 0.045);
}

.service-detail-icon {
  width: 76px;
  height: 76px;

  display: grid;
  place-items: center;

  border-radius: 20px;
  background: var(--color-orange);
  color: #FFFFFF;

  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
}

.service-detail-icon svg {
  width: 38px;
  height: 38px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-label {
  display: inline-flex;
  margin-bottom: 8px;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-orange);
}

.service-detail-content h3 {
  margin-bottom: 12px;

  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.service-detail-content p {
  max-width: 760px;
  margin-bottom: 20px;

  font-size: 15px;
  line-height: 1.62;
  color: var(--color-slate);
}

.service-detail-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;

  margin-bottom: 22px;
  list-style: none;
}

.service-detail-content li {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-navy);
}

.service-detail-content li span {
  width: 19px;
  height: 19px;

  display: inline-grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 999px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-size: 11px;
  font-weight: 900;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 900;
  color: var(--color-orange);
}

.service-detail-link span {
  transition: 0.2s ease;
}

.service-detail-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   5-STEP SYSTEM
   ========================================================= */

.step-system-section {
  padding: 20px 0 48px;
  background: #FFFFFF;
}

.step-system-heading {
  margin-bottom: 30px;
  text-align: center;
}

.step-system-heading h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.step-system-heading p {
  max-width: 520px;
  margin: 10px auto 0;

  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-slate);
}

.step-system-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.step-system-item {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-system-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 42px);

  width: calc(100% - 42px);
  height: 1px;

  border-top: 2px dotted rgba(100, 116, 139, 0.35);
}

.step-number {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;

  display: grid;
  place-items: center;

  border-radius: 999px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-size: 17px;
  font-weight: 900;

  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.22);
  z-index: 2;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 13px;

  display: grid;
  place-items: center;

  color: var(--color-navy);
}

.step-icon svg {
  width: 43px;
  height: 43px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-system-item h3 {
  max-width: 170px;
  margin-bottom: 8px;

  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--color-navy);
}

.step-system-item p {
  max-width: 180px;

  font-size: 12.8px;
  line-height: 1.5;
  color: var(--color-slate);
}


/* =========================================================
   SERVICES FINAL CTA / FORM
   ========================================================= */

.services-contact-section {
  padding: 0 0 54px;
  background: #FFFFFF;
}

.services-contact-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 46px;

  padding: 42px 46px;

  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 56%, rgba(255, 106, 0, 0.14), transparent 24%),
    radial-gradient(circle at 95% 18%, rgba(255, 106, 0, 0.10), transparent 26%),
    linear-gradient(135deg, #FFFFFF 0%, #FFF7F1 44%, #FFFFFF 100%);

  box-shadow: 0 18px 44px rgba(14, 26, 43, 0.07);
}

.services-contact-card::before {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 42px;

  width: 94px;
  height: 94px;

  background-image: radial-gradient(rgba(255, 106, 0, 0.32) 1.4px, transparent 1.4px);
  background-size: 13px 13px;
  opacity: 0.8;
}

.services-contact-content {
  position: relative;
  z-index: 2;
}

.services-contact-kicker {
  display: inline-flex;
  margin-bottom: 12px;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-orange);
}

.services-contact-content h2 {
  max-width: 420px;
  margin-bottom: 14px;

  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 900;
  color: var(--color-navy);
}

.services-contact-content h2 span {
  display: block;
  color: var(--color-orange);
}

.services-contact-content p {
  max-width: 390px;
  margin-bottom: 20px;

  font-size: 15px;
  line-height: 1.58;
  color: var(--color-slate);
}

.services-contact-benefits {
  display: grid;
  gap: 11px;
  list-style: none;
}

.services-contact-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--color-navy);
}

.services-contact-benefits li span {
  width: 21px;
  height: 21px;

  display: inline-grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 999px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-size: 12px;
  font-weight: 900;
}

.services-contact-form-wrap {
  position: relative;
  z-index: 2;
}

.services-contact-form {
  display: grid;
  gap: 14px;
}

.services-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.services-form-field label {
  display: none;
}

.services-form-field input,
.services-form-field select,
.services-form-field textarea {
  width: 100%;

  border: 1px solid #CBD5E1;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-navy);

  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;

  outline: none;
  transition: 0.2s ease;
}

.services-form-field input,
.services-form-field select {
  height: 52px;
  padding: 0 16px;
}

.services-form-field textarea {
  min-height: 116px;
  padding: 16px;
  resize: vertical;
}

.services-form-field input::placeholder,
.services-form-field textarea::placeholder {
  color: #64748B;
}

.services-form-field input:focus,
.services-form-field select:focus,
.services-form-field textarea:focus {
  border-color: rgba(255, 106, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.10);
}

.services-contact-submit {
  height: 56px;
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  border-radius: 12px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-family: inherit;
  font-size: 15px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: 0 16px 30px rgba(255, 106, 0, 0.25);
  transition: 0.22s ease;
}

.services-contact-submit:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.services-contact-submit span {
  font-size: 18px;
  line-height: 1;
}


/* =========================================================
   5-STEP + CTA RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .step-system-flow {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 620px;
    margin-inline: auto;
  }

  .step-system-item {
    min-height: 120px;
    padding: 22px 22px 22px 86px;

    align-items: flex-start;
    text-align: left;

    border: 1px solid #E2E8F0;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 12px 30px rgba(14, 26, 43, 0.045);
  }

  .step-system-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    position: absolute;
    left: 22px;
    top: 24px;

    width: 42px;
    height: 42px;
    margin-bottom: 0;
  }

  .step-icon {
    margin-bottom: 10px;
  }

  .step-system-item h3,
  .step-system-item p {
    max-width: none;
  }

  .services-contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .services-contact-content h2,
  .services-contact-content p {
    margin-inline: auto;
  }

  .services-contact-benefits {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .services-contact-card::before {
    left: 24px;
    bottom: 24px;
  }
}

@media (max-width: 760px) {
  .step-system-section {
    padding: 16px 0 38px;
  }

  .step-system-heading {
    margin-bottom: 24px;
  }

  .step-system-heading h2 {
    font-size: 30px;
  }

  .step-system-heading p {
    max-width: 320px;
    font-size: 13.5px;
  }

  .step-system-item {
    padding: 20px 18px 20px 78px;
  }

  .step-number {
    left: 18px;
    top: 22px;
    width: 40px;
    height: 40px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
  }

  .step-icon svg {
    width: 36px;
    height: 36px;
  }

  .step-system-item h3 {
    font-size: 15.5px;
  }

  .step-system-item p {
    font-size: 12.5px;
  }

  .services-contact-section {
    padding: 0 0 38px;
  }

  .services-contact-card {
    padding: 32px 18px;
    border-radius: 22px;
  }

  .services-contact-content h2 {
    max-width: 310px;
    font-size: 34px;
  }

  .services-contact-content p {
    max-width: 310px;
    font-size: 13.5px;
  }

  .services-contact-benefits {
    width: 100%;
    max-width: 300px;
  }

  .services-contact-benefits li {
    font-size: 12.5px;
  }

  .services-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-contact-form {
    gap: 10px;
  }

  .services-form-field input,
  .services-form-field select {
    height: 48px;
    font-size: 13px;
  }

  .services-form-field textarea {
    min-height: 110px;
    font-size: 13px;
  }

  .services-contact-submit {
    height: 52px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .services-contact-content h2 {
    font-size: 31px;
  }

  .step-system-item {
    padding-left: 74px;
  }
}
/* =========================================================
   GLOBAL SCROLL REVEAL ANIMATION
   ========================================================= */

.reveal-on-scroll {
  --reveal-delay: 0ms;
}

/* Solo se activa cuando JS agrega .reveal-ready al body */
body.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(46px);

  transition:
    opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);

  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

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

/* Variación más suave para cards */
body.reveal-ready .reveal-card {
  transform: translateY(34px) scale(0.985);
}

body.reveal-ready .reveal-card.is-visible {
  transform: translateY(0) scale(1);
}

/* Variación lateral opcional */
body.reveal-ready .reveal-left {
  transform: translateX(-34px);
}

body.reveal-ready .reveal-right {
  transform: translateX(34px);
}

body.reveal-ready .reveal-left.is-visible,
body.reveal-ready .reveal-right.is-visible {
  transform: translateX(0);
}

/* Accesibilidad: si el usuario prefiere menos movimiento */
@media (prefers-reduced-motion: reduce) {
  body.reveal-ready .reveal-on-scroll,
  body.reveal-ready .reveal-card,
  body.reveal-ready .reveal-left,
  body.reveal-ready .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* =========================================================
   HERO LETTER-BY-LETTER ANIMATION
   ========================================================= */

.hero-title.letter-animated,
.page-hero h1.letter-animated {
  overflow: hidden;
}

.hero-title .letter,
.page-hero h1 .letter {
  display: inline-block;

  opacity: 0;
  transform: translateY(34px);

  animation: heroLetterRise 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--letter-delay, 0ms);
  will-change: opacity, transform;
}

@keyframes heroLetterRise {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }

  70% {
    opacity: 1;
    transform: translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   TRUST STARS SEQUENTIAL ANIMATION
   ========================================================= */

.trust-stars {
  display: inline-flex;
  align-items: center;
}

.trust-stars .star {
  display: inline-block;

  opacity: 0;
  transform: translateY(12px) scale(0.75);

  animation: starPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--star-delay, 0ms);
  will-change: opacity, transform;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.75);
  }

  65% {
    opacity: 1;
    transform: translateY(-2px) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-title .letter,
  .page-hero h1 .letter,
  .trust-stars .star {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
/* =========================================================
   SERVICES DETAIL RESPONSIVE FIX
   Centered cards for tablet + mobile
   ========================================================= */

@media (max-width: 1120px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 22px;

    padding: 32px 28px;
    text-align: center;
  }

  .service-detail-icon {
    margin-inline: auto;
  }

  .service-detail-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-detail-label {
    justify-content: center;
  }

  .service-detail-content h3 {
    max-width: 620px;
    margin-inline: auto;
  }

  .service-detail-content p {
    max-width: 620px;
    margin-inline: auto;
  }

  .service-detail-content ul {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;

    text-align: left;
  }

  .service-detail-content li {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}


@media (max-width: 760px) {
  .service-detail-card {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .service-detail-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .service-detail-icon svg {
    width: 36px;
    height: 36px;
  }

  .service-detail-label {
    margin-bottom: 10px;
    font-size: 11.5px;
  }

  .service-detail-content h3 {
    max-width: 340px;

    font-size: 27px;
    line-height: 1.03;
    letter-spacing: -0.055em;
  }

  .service-detail-content p {
    max-width: 330px;

    font-size: 14px;
    line-height: 1.6;
  }

  .service-detail-content ul {
    max-width: 340px;
    grid-template-columns: 1fr;
    gap: 11px;

    margin-top: 2px;
    margin-bottom: 22px;
  }

  .service-detail-content li {
    justify-content: flex-start;
    text-align: left;

    font-size: 13px;
    line-height: 1.35;
  }

  .service-detail-content li span {
    width: 20px;
    height: 20px;

    font-size: 11px;
  }

  .service-detail-link {
    justify-content: center;
    margin-inline: auto;
  }
}


@media (max-width: 420px) {
  .service-detail-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .service-detail-content h3 {
    max-width: 300px;
    font-size: 25px;
  }

  .service-detail-content p {
    max-width: 295px;
    font-size: 13.5px;
  }

  .service-detail-content ul {
    max-width: 285px;
  }

  .service-detail-content li {
    font-size: 12.5px;
  }
}

/* =========================================================
   CONTACT PAGE — HERO + INTENT SELECTOR
   ========================================================= */

.contact-page-hero {
  padding: 54px 0 20px;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 106, 0, 0.10), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.contact-page-hero-content {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contact-page-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;
  padding: 9px 14px;

  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  color: var(--color-orange);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-page-hero h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-page-hero p {
  max-width: 520px;
  margin: 18px auto 0;

  font-size: 16px;
  line-height: 1.6;
  color: var(--color-slate);
}


/* ---------- CONTACT INTENT SECTION ---------- */

.contact-intent-section {
  padding: 18px 0 56px;
  background: #FFFFFF;
}

.contact-intent-heading {
  margin-bottom: 22px;
  text-align: center;
}

.contact-intent-heading h2 {
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-intent-heading p {
  margin-top: 8px;

  font-size: 14.5px;
  line-height: 1.5;
  color: var(--color-slate);
}

.contact-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;

  margin-bottom: 22px;
}

.contact-intent-card {
  min-width: 0;
  min-height: 132px;
  padding: 20px 18px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  border: 1px solid #E2E8F0;
  border-radius: 20px;
  background: #FFFFFF;
  color: inherit;

  font-family: inherit;
  text-align: left;

  cursor: pointer;
  box-shadow: 0 14px 34px rgba(14, 26, 43, 0.045);
  transition: 0.24s ease;
}

.contact-intent-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 20px 42px rgba(14, 26, 43, 0.08);
}

.contact-intent-card.is-active {
  border-color: rgba(255, 106, 0, 0.60);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 106, 0, 0.12), transparent 34%),
    #FFFFFF;
  box-shadow: 0 20px 48px rgba(255, 106, 0, 0.12);
}

.contact-intent-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 14px;
  background: rgba(255, 106, 0, 0.10);
  color: var(--color-orange);
}

.contact-intent-card.is-active .contact-intent-icon {
  background: var(--color-orange);
  color: #FFFFFF;
}

.contact-intent-icon svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-intent-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.contact-intent-copy strong {
  font-size: 16px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-intent-copy small {
  font-size: 12.8px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--color-slate);
}


/* ---------- DYNAMIC PANEL ---------- */

.contact-dynamic-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;

  padding: 28px;

  border: 1px solid #E2E8F0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 5% 18%, rgba(255, 106, 0, 0.10), transparent 30%),
    linear-gradient(135deg, #FFFFFF 0%, #FFF7F1 48%, #FFFFFF 100%);

  box-shadow: 0 18px 44px rgba(14, 26, 43, 0.06);
}

.contact-dynamic-context {
  min-width: 0;
  padding: 26px;

  border-radius: 22px;
  background:
    linear-gradient(135deg, #071426 0%, #0E1A2B 58%, #071426 100%);
  color: #FFFFFF;
}

.contact-context-label {
  display: inline-flex;
  margin-bottom: 14px;

  font-size: 11.5px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-orange);
}

.contact-dynamic-context h3 {
  margin-bottom: 12px;

  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #FFFFFF;
}

.contact-dynamic-context p {
  margin-bottom: 20px;

  font-size: 13.5px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.72);
}

.contact-context-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-context-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 30px;
  padding: 0 11px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);

  font-size: 11.5px;
  font-weight: 800;
}


/* ---------- FORM ---------- */

.contact-dynamic-form-wrap {
  min-width: 0;
  padding: 6px 2px;
}

.contact-form-heading {
  margin-bottom: 18px;
}

.contact-form-heading h3 {
  margin-bottom: 7px;

  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-form-heading p {
  max-width: 560px;

  font-size: 13.8px;
  line-height: 1.5;
  color: var(--color-slate);
}

.contact-dynamic-form {
  display: grid;
  gap: 14px;
}

.contact-dynamic-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.contact-field.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-navy);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  max-width: 100%;

  border: 1px solid #CBD5E1;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy);

  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;

  outline: none;
  transition: 0.2s ease;
}

.contact-field input,
.contact-field select {
  height: 50px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 116px;
  padding: 15px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #64748B;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 106, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.10);
}

.contact-dynamic-submit {
  height: 56px;
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  border-radius: 12px;
  background: var(--color-orange);
  color: #FFFFFF;

  font-family: inherit;
  font-size: 15px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: 0 16px 30px rgba(255, 106, 0, 0.24);
  transition: 0.22s ease;
}

.contact-dynamic-submit:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.contact-dynamic-submit span {
  font-size: 18px;
}

.contact-form-note {
  text-align: center;

  font-size: 12px;
  font-weight: 700;
  color: var(--color-muted);
}


/* =========================================================
   CONTACT PAGE RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 1120px) {
  .contact-page-hero {
    padding: 48px 0 18px;
  }

  .contact-intent-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 24px;
  }

  .contact-intent-card {
    min-height: auto;
  }

  .contact-dynamic-panel {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .contact-dynamic-context {
    text-align: center;
  }

  .contact-dynamic-context h3,
  .contact-dynamic-context p {
    max-width: 520px;
    margin-inline: auto;
  }

  .contact-context-pills {
    justify-content: center;
  }

  .contact-form-heading {
    text-align: center;
  }

  .contact-form-heading p {
    margin-inline: auto;
  }
}


/* Mobile */
@media (max-width: 760px) {
  .contact-page-hero {
    padding: 42px 0 16px;
  }

  .contact-page-hero h1 {
    max-width: 340px;
    margin-inline: auto;

    font-size: 42px;
    line-height: 0.98;
  }

  .contact-page-hero p {
    max-width: 310px;
    font-size: 14px;
  }

  .contact-intent-section {
    padding: 14px 0 42px;
  }

  .contact-intent-heading {
    margin-bottom: 18px;
  }

  .contact-intent-heading h2 {
    max-width: 300px;
    margin-inline: auto;
    font-size: 30px;
  }

  .contact-intent-heading p {
    font-size: 13px;
  }

  .contact-intent-grid {
    gap: 12px;
  }

  .contact-intent-card {
    padding: 17px 15px;
    border-radius: 18px;
  }

  .contact-intent-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .contact-intent-icon svg {
    width: 23px;
    height: 23px;
  }

  .contact-intent-copy strong {
    font-size: 15px;
  }

  .contact-intent-copy small {
    font-size: 12.3px;
  }

  .contact-dynamic-panel {
    padding: 18px;
    border-radius: 22px;
    gap: 20px;
  }

  .contact-dynamic-context {
    padding: 24px 18px;
    border-radius: 19px;
  }

  .contact-dynamic-context h3 {
    font-size: 26px;
  }

  .contact-dynamic-context p {
    font-size: 13px;
  }

  .contact-context-pills {
    gap: 7px;
  }

  .contact-context-pills span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .contact-dynamic-fields {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .contact-form-heading h3 {
    font-size: 25px;
  }

  .contact-form-heading p {
    max-width: 310px;
    font-size: 13px;
  }

  .contact-field input,
  .contact-field select {
    height: 48px;
    font-size: 13px;
  }

  .contact-field textarea {
    min-height: 110px;
    font-size: 13px;
  }

  .contact-dynamic-submit {
    height: 52px;
    font-size: 14px;
  }

  .contact-form-note {
    font-size: 11.5px;
  }
}


/* Small mobile */
@media (max-width: 420px) {
  .contact-page-hero h1 {
    max-width: 300px;
    font-size: 38px;
  }

  .contact-intent-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-dynamic-panel {
    padding: 15px;
  }

  .contact-dynamic-context {
    padding: 22px 15px;
  }

  .contact-dynamic-context h3 {
    font-size: 24px;
  }

  .contact-form-heading h3 {
    font-size: 23px;
  }
}

/* =========================================================
   CONTACT PAGE — NEXT STEPS AFTER SUBMIT
   ========================================================= */

.contact-next-steps-section {
  padding: 0 0 52px;
  background: #FFFFFF;
}

.contact-next-steps-section[hidden] {
  display: none !important;
}

.contact-next-steps-card {
  padding: 34px 36px;

  border: 1px solid #E2E8F0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 18%, rgba(34, 197, 94, 0.12), transparent 26%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);

  box-shadow: 0 18px 44px rgba(14, 26, 43, 0.06);
}

.contact-next-heading {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.contact-next-heading span {
  display: inline-flex;
  margin-bottom: 10px;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #16A34A;
}

.contact-next-heading h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-next-heading p {
  max-width: 500px;
  margin: 10px auto 0;

  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-slate);
}

.contact-next-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-next-step {
  position: relative;

  min-height: 170px;
  padding: 24px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  border: 1px solid #E2E8F0;
  border-radius: 20px;
  background: #FFFFFF;

  box-shadow: 0 12px 32px rgba(14, 26, 43, 0.045);
}

.contact-next-number {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;

  display: grid;
  place-items: center;

  border-radius: 999px;
  background: var(--color-navy);
  color: #FFFFFF;

  font-size: 16px;
  font-weight: 900;
}

.contact-next-step.is-completed {
  border-color: rgba(34, 197, 94, 0.45);
  background:
    radial-gradient(circle at 90% 10%, rgba(34, 197, 94, 0.10), transparent 34%),
    #FFFFFF;
}

.contact-next-step.is-completed .contact-next-number {
  background: #16A34A;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.22);
}

.contact-next-step h3 {
  margin-bottom: 8px;

  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-next-step p {
  max-width: 250px;

  font-size: 13px;
  line-height: 1.5;
  color: var(--color-slate);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px) {
  .contact-next-flow {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .contact-next-step {
    min-height: auto;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;

    text-align: left;
  }

  .contact-next-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .contact-next-step p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .contact-next-steps-section {
    padding: 0 0 40px;
  }

  .contact-next-steps-card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .contact-next-heading {
    margin-bottom: 22px;
  }

  .contact-next-heading h2 {
    font-size: 31px;
  }

  .contact-next-heading p {
    max-width: 310px;
    font-size: 13.5px;
  }

  .contact-next-step {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .contact-next-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .contact-next-step h3 {
    font-size: 15.5px;
  }

  .contact-next-step p {
    font-size: 12.5px;
  }
}
/* =========================================================
   CONTACT PAGE — FAQ ACCORDION
   ========================================================= */

.contact-faq-section {
  padding: 0 0 58px;
  background: #FFFFFF;
}

.contact-faq-heading {
  max-width: 620px;
  margin: 0 auto 26px;
  text-align: center;
}

.contact-faq-heading span {
  display: inline-flex;
  margin-bottom: 10px;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-orange);
}

.contact-faq-heading h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--color-navy);
}

.contact-faq-heading p {
  margin-top: 9px;

  font-size: 14.5px;
  line-height: 1.5;
  color: var(--color-slate);
}

.contact-faq-list {
  max-width: 850px;
  margin-inline: auto;

  display: grid;
  gap: 12px;
}

.contact-faq-item {
  overflow: hidden;

  border: 1px solid #E2E8F0;
  border-radius: 18px;
  background: #FFFFFF;

  box-shadow: 0 12px 30px rgba(14, 26, 43, 0.04);
  transition: 0.22s ease;
}

.contact-faq-item.is-open {
  border-color: rgba(255, 106, 0, 0.32);
  box-shadow: 0 18px 40px rgba(14, 26, 43, 0.07);
}

.contact-faq-question {
  width: 100%;
  min-height: 64px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border: 0;
  background: transparent;
  color: var(--color-navy);

  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-faq-question span {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.contact-faq-question strong {
  position: relative;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 999px;
  background: rgba(255, 106, 0, 0.10);
  color: var(--color-orange);

  font-size: 0;
  line-height: 1;

  transition: 0.22s ease;
}

.contact-faq-question strong::before,
.contact-faq-question strong::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 12px;
  height: 2px;

  border-radius: 999px;
  background: currentColor;

  transform: translate(-50%, -50%);
  transition: 0.22s ease;
}

.contact-faq-question strong::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.contact-faq-item.is-open .contact-faq-question strong {
  background: var(--color-orange);
  color: #FFFFFF;
}

.contact-faq-item.is-open .contact-faq-question strong::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.contact-faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.32s ease;
}

.contact-faq-answer p {
  padding: 0 20px 20px;

  max-width: 760px;

  font-size: 13.8px;
  line-height: 1.6;
  color: var(--color-slate);
}


/* ---------- FAQ RESPONSIVE ---------- */

@media (max-width: 760px) {
  .contact-faq-section {
    padding: 0 0 42px;
  }

  .contact-faq-heading {
    margin-bottom: 22px;
  }

  .contact-faq-heading h2 {
    max-width: 310px;
    margin-inline: auto;
    font-size: 31px;
  }

  .contact-faq-heading p {
    font-size: 13.5px;
  }

  .contact-faq-list {
    gap: 10px;
  }

  .contact-faq-question {
    min-height: 60px;
    padding: 0 16px;
  }

  .contact-faq-question span {
    font-size: 14px;
  }

  .contact-faq-question strong {
    width: 28px;
    height: 28px;
  }

  .contact-faq-answer p {
    padding: 0 16px 18px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .contact-faq-heading h2 {
    font-size: 29px;
  }

  .contact-faq-question {
    gap: 12px;
  }
}

/* =========================================================
   FORM PLACEHOLDERS
   ========================================================= */

select:required:invalid {
  color: var(--color-muted);
}

select option {
  color: var(--color-navy);
}

select option[disabled] {
  color: var(--color-muted);
}

/* =========================================================
   404 PAGE
   ========================================================= */

.error-page {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 72px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 106, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.error-page-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.error-page-code {
  display: block;
  margin-bottom: 14px;

  font-size: clamp(76px, 14vw, 150px);
  line-height: 0.85;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: var(--color-orange);
}

.error-page h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
  color: var(--color-navy);
}

.error-page p {
  max-width: 560px;
  margin: 20px auto 0;

  font-size: 17px;
  line-height: 1.65;
  color: var(--color-slate);
}

.error-page-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.error-page-footer {
  padding: 22px 0;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.error-page-footer a {
  color: var(--color-orange-light);
  font-weight: 800;
}

@media (max-width: 760px) {
  .error-page {
    min-height: calc(100vh - 78px);
    padding: 54px 0;
  }

  .error-page p {
    max-width: 330px;
    font-size: 15px;
  }

  .error-page-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
    margin-inline: auto;
    margin-top: 26px;
  }

  .error-page-actions .btn {
    width: 100%;
  }
}
