/* ============================================================
   Nomadora B2B Landing — Styles
   ============================================================ */

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), visibility 0.8s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__n {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.preloader__n path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preloader__word {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #f8f7f4;
  margin-bottom: 32px;
}

.preloader__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
}

.preloader__bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.preloader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e8750a, #c60b1e);
  border-radius: 2px;
}

.preloader__percent {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

/* Base styles — будут в style.css, дублируем для автономности */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --spain-red: #c60b1e;
  --spain-orange: #e8750a;
  --spain-yellow: #ffc400;
  --gradient: linear-gradient(135deg, var(--spain-red), var(--spain-orange), var(--spain-yellow));
  --bg-dark: #000;
  --bg-light: #f7f7f7;
  --bg-white: #fff;
  --text-dark: #111;
  --text-light: #fff;
  --text-muted: #666;
  --text-muted-dark: #999;
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1240px;
  --transition: cubic-bezier(.16, 1, .3, 1);
  --font: 'Fira Sans', -apple-system, sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s var(--transition);
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
  border: none;
  cursor: pointer;
  background: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

h1, h2, h3, h4, .h1, .h2, .h3 {
  font-family: var(--font-heading);
}

h1, .h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2, .h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3, .h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p.lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
}

/* --- Buttons --- */
/* --- Cuberto-style Buttons --- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2.5vw, 30px) clamp(36px, 4.5vw, 56px);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1;
  border-radius: 1000px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s var(--transition), color 0.4s var(--transition), background 0.4s var(--transition);
}

.btn:hover {
  opacity: 1;
  transform: scaleX(1.02);
}

/* Ripple fill — rises from bottom on hover */
.btn__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}

.btn:hover .btn__fill {
  transform: scaleY(1);
}

/* Text wrapper — clips the sliding text */
.btn__text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  height: 1.15em;
  pointer-events: none;
}

/* Two copies of text stacked vertically for slide effect */
.btn__text-inner {
  display: block;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.btn__text .btn__text-inner:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(150%);
}

.btn:hover .btn__text-inner:first-child {
  transform: translateY(-150%);
}

.btn:hover .btn__text .btn__text-inner:last-child {
  transform: translateY(0);
}

/* --- White button (hero CTA) --- */
.btn-white {
  background: var(--bg-white);
  color: var(--text-dark);
}

.btn-white .btn__fill {
  background: linear-gradient(135deg, #9a1420, #c44818);
}

.btn-white:hover {
  color: #fff;
  background: linear-gradient(135deg, #9a1420, #c44818);
  box-shadow: 0 8px 30px rgba(154, 20, 32, 0.35);
}

/* --- Primary button — Cuberto style --- */
/* Light bg: white fill + thin black border + black text */
.btn-primary {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-primary .btn__fill {
  background: var(--text-dark);
}

.btn-primary:hover {
  color: #fff;
  background: var(--text-dark);
  border-color: transparent;
}

/* Dark bg: transparent + white border + white text (Cuberto style) */
.section--dark .btn-primary {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
}

.section--dark .btn-primary .btn__fill {
  background: #fff !important;
}

.section--dark .btn-primary .btn__text,
.section--dark .btn-primary .btn__text-inner {
  color: #fff !important;
}

.section--dark .btn-primary:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #1a1a1a !important;
}

.section--dark .btn-primary:hover .btn__text,
.section--dark .btn-primary:hover .btn__text-inner {
  color: #1a1a1a !important;
}

/* --- Gradient button --- */
.btn-gradient {
  background: var(--gradient);
  color: var(--text-light);
}

.btn-gradient .btn__fill {
  background: linear-gradient(135deg, #9a1420, #c44818);
}

.btn-gradient:hover {
  box-shadow: 0 8px 30px rgba(154, 20, 32, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-outline:hover {
  opacity: 1;
  background: var(--text-dark);
  color: var(--text-light);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* --- Sections --- */
.section {
  padding: 120px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section--light,
.section--white {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Cuberto layered rounding: next section overlaps prev's extra padding */
.section--rounded {
  position: relative;
  z-index: 1;
  border-radius: 88px 88px 0 0;
  margin-top: -88px;
}

/* Sections before a rounded one: extend background down to fill overlap zone */
.section:has(+ .section--rounded) {
  padding-bottom: 208px; /* 120 normal + 88 overlap */
}
.hero-b2b:has(+ .about-b2b) {
  padding-bottom: 128px; /* 40 normal + 88 overlap */
}
.about-b2b:has(+ .section--rounded) {
  padding-bottom: 88px; /* about has its own padding, just add overlap */
}

.section__header {
  max-width: 720px;
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Cards --- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 40px;
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card--dark,
.section--dark .card {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-light);
}

.card--dark:hover,
.section--dark .card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.section--dark .card p {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Cursor (Cuberto-exact: mix-blend-mode exclusion) --- */
.mf-cursor {
  z-index: 99999;
  color: #fff !important;
  mix-blend-mode: exclusion !important;
}

.mf-cursor::before {
  transition: transform 0.35s cubic-bezier(.16,1,.3,1) !important;
}

/* Nav links */
.mf-cursor.-nav-hover::before {
  transform: scale(0.47) !important;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1) !important;
}

/* Buttons */
.mf-cursor.-btn-hover::before {
  transform: scale(0.47) !important;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1) !important;
}

/* End base styles */


/* ============================================================
   B2B-SPECIFIC STYLES
   ============================================================ */

/* --- Nav (B2B) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  opacity: 1 !important;
}

.nav__link-wrap {
  display: inline-flex;
  flex-direction: column;
  height: 1.4em;
  overflow: hidden;
}

.nav__link-text {
  display: block;
  height: 1.4em;
  line-height: 1.4;
  flex-shrink: 0;
  color: #000;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}

.nav__link:hover .nav__link-text {
  transform: translateY(-100%);
}

.nav__b2c-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.35);
  transition: color 0.3s var(--transition);
}

.nav__b2c-link:hover {
  opacity: 1;
  color: rgba(0, 0, 0, 0.7);
}

.nav__cta {
  position: relative;
  padding: 16px 32px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 1000px;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(.34,5.56,.64,1), background 0.4s var(--transition), color 0.4s var(--transition);
}

.nav__cta .btn__fill {
  background: var(--text-dark);
}

.nav__cta:hover {
  opacity: 1;
  transform: scaleX(1.02);
}

.nav__cta .btn__text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  height: 1.15em;
  pointer-events: none;
}

.nav__cta .btn__text-inner {
  display: block;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.nav__cta .btn__text .btn__text-inner:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(150%);
}

.nav__cta:hover .btn__text-inner:first-child {
  transform: translateY(-150%);
}

.nav__cta:hover .btn__text .btn__text-inner:last-child {
  transform: translateY(0);
}

.nav__cta:hover .btn__fill {
  transform: scaleY(1);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.4s var(--transition), opacity 0.3s;
}

.nav__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 40px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile a {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
}

.nav__mobile .nav__b2c-link {
  font-size: 16px;
  margin-top: auto;
}

/* --- Hero (B2B) --- */
.hero-b2b {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 40px;
}

/* Vanta.js canvas is injected automatically into #vanta-hero */
.hero-b2b canvas {
  position: absolute !important;
  inset: 0;
  z-index: 0;
}

.hero-b2b__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}


.hero-b2b__eyebrow {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: clamp(14px, 1.4vw, 17px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-b2b__title {
  margin-top: 0;
  margin-bottom: 32px;
  white-space: pre-line;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--text-dark);
  line-height: 1.08;
}

.hero-b2b__title .text-gradient {
  -webkit-text-fill-color: transparent;
}

/* --- Hero Split-Reveal (Cuberto-style) --- */
[data-split-reveal] .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.05em;
}

[data-split-reveal] .word-inner {
  display: inline-block;
  transform: translateY(105%);
  will-change: transform;
}

[data-split-reveal] .text-gradient .word-inner {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero Particles Canvas --- */
.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: all;
}

.hero-b2b__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}

.hero-b2b__stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 56px;
}

.hero-b2b__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-b2b__stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Problems --- */
/* Problems — Cuberto editorial style */
.problems__heading {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 64px;
  color: var(--text-light);
}

.problems__list {
  max-width: 960px;
}

.problems__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 48px 0;
}

.problems__index {
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--spain-orange);
  opacity: 0.35;
  flex-shrink: 0;
  min-width: 100px;
}

.problems__content {
  padding-top: 8px;
}

.problems__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-light);
}

.problems__text {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 560px;
}

.problems__divider {
  height: 1px;
  background: linear-gradient(90deg, var(--spain-orange) 0%, rgba(255, 255, 255, 0.06) 100%);
  opacity: 0.4;
}

.problems__bottom {
  margin-top: 56px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--text-light);
}

.problems__solution {
  margin-top: 72px;
  padding: 48px 56px;
  border-left: 4px solid var(--spain-orange);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 20px 20px 0;
  max-width: 960px;
}

.problems__solution-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--spain-orange);
  margin-bottom: 20px;
}

.problems__solution-text {
  font-size: clamp(20px, 1.8vw, 26px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.problems__solution-result {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-light);
}

.problems__solution-highlight {
  color: var(--spain-orange);
}



.problems__cta {
  margin-top: 40px;
}

/* Draw random underline */
.underline-draw {
  --path-length: 300;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.underline-draw svg {
  position: absolute;
  left: -2%;
  bottom: -2px;
  width: 104%;
  height: 12px;
  pointer-events: none;
}

.underline-draw svg path {
  fill: none;
  stroke: var(--spain-red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
  transition: stroke-dashoffset 1.2s cubic-bezier(.22,1,.36,1);
}

.underline-draw.is-drawn svg path {
  stroke-dashoffset: 0;
}

/* --- About B2B (Cuberto style) --- */
/* --- Why DN Visa --- */
.why-dn__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.why-dn__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 0;
}

.why-dn__accent {
  width: 40px;
  height: 3px;
  background: var(--spain-red);
  border-radius: 2px;
  margin: 20px 0;
}

.why-dn__intro {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
}

.why-dn__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
}

.why-dn__item + .why-dn__item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-dn__num {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
  opacity: 0.35;
}

.why-dn__item-text h3 {
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.why-dn__item-text p {
  font-size: clamp(14px, 1.1vw, 15px);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .why-dn__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- About B2B --- */
.about-b2b {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border-radius: 88px 88px 0 0;
  margin-top: -88px;
}

.about-b2b__layout {
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: stretch;
  min-height: 600px;
}

/* Left: photo — edge-to-edge like the presentation */
.about-b2b__visual {
  position: relative;
  overflow: hidden;
  border-radius: 88px 0 0 0;
}

.about-b2b__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-b2b__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, #fff 100%);
}

.about-b2b__accent {
  width: 40px;
  height: 3px;
  background: var(--spain-red);
  border-radius: 2px;
  margin: 20px 0;
}

/* Masked text reveal */
.line-mask {
  display: block;
  overflow: hidden;
  line-height: inherit;
}

.line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(.19,1,.22,1);
  will-change: transform;
}

/* Stagger via nth-child */
[data-masked-reveal].is-visible .line-inner { transform: translateY(0); }

[data-masked-reveal] .line-mask:nth-child(1) .line-inner { transition-delay: 0s; }
[data-masked-reveal] .line-mask:nth-child(2) .line-inner { transition-delay: 0.07s; }

[data-masked-reveal] .about-b2b__title .line-mask:nth-child(1) .line-inner { transition-delay: 0.12s; }
[data-masked-reveal] .about-b2b__title .line-mask:nth-child(2) .line-inner { transition-delay: 0.19s; }

[data-masked-reveal] .about-b2b__desc:nth-of-type(1) .line-inner { transition-delay: 0.26s; }
[data-masked-reveal] .about-b2b__desc:nth-of-type(2) .line-inner { transition-delay: 0.33s; }
[data-masked-reveal] .about-b2b__desc:nth-of-type(3) .line-inner { transition-delay: 0.40s; }
[data-masked-reveal] .about-b2b__desc:nth-of-type(4) .line-inner { transition-delay: 0.47s; }
[data-masked-reveal] .about-b2b__desc:nth-of-type(5) .line-inner { transition-delay: 0.54s; }

/* Right: text */
.about-b2b__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 72px 56px 56px;
}

.about-b2b__title {
  margin-bottom: 0;
}

.about-b2b__desc {
  font-size: clamp(16px, 1.3vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-b2b__desc strong {
  color: var(--text-dark);
  font-weight: 600;
}

.about-b2b__stats {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-b2b__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-b2b__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-b2b__stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.about-b2b__facts {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
}

.about-b2b__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-b2b__fact-value {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-b2b__fact-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .about-b2b__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-b2b__visual {
    max-height: 400px;
    order: -1;
  }

  .about-b2b__text {
    padding: 40px 24px;
  }

  .about-b2b__accent {
    margin-left: auto;
    margin-right: auto;
  }

  .about-b2b__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-b2b__facts {
    justify-content: center;
  }

  .about-b2b__stats {
    justify-content: center;
  }

  .about-b2b__btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .about-b2b__facts {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .about-b2b__fact {
    align-items: center;
  }

  .about-b2b__stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .about-b2b__stat-value {
    font-size: 32px;
  }

  .about-b2b__stat {
    align-items: center;
  }
}

/* --- Difference (Чем мы отличаемся) --- */
.difference__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.difference__col {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--divider);
}

.difference__col--market {
  background: var(--bg-light);
}

.difference__col--us {
  background: var(--text-dark);
  color: #f8f7f4;
  border-color: transparent;
}

.difference__col-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.difference__col--market .difference__col-label {
  color: var(--text-muted);
}

.difference__col--us .difference__col-label {
  color: var(--spain-orange);
}

.difference__col-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 16px;
}

.difference__col--us .difference__col-title {
  color: #f8f7f4;
}

.difference__col-text {
  font-size: 15px;
  line-height: 1.7;
}

.difference__col--market .difference__col-text {
  color: var(--text-muted);
}

.difference__col--us .difference__col-text {
  color: rgba(255,255,255,.6);
}

.difference__col-text strong {
  font-weight: 600;
}

.difference__col--market .difference__col-text strong {
  color: var(--text-dark);
}

.difference__col--us .difference__col-text strong {
  color: #fff;
}

.difference__callout {
  margin-top: 40px;
  padding: 28px 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(198,11,30,.06), rgba(232,117,10,.06));
  border-left: 3px solid var(--spain-orange);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
}

/* Highlighted words — scroll-triggered gradient bg */
.highlight-word {
  display: inline;
  padding: 2px 6px;
  border-radius: 5px;
  transition: background 0.5s cubic-bezier(.16,1,.3,1), color 0.5s cubic-bezier(.16,1,.3,1);
}

.highlight-word.active {
  background: linear-gradient(135deg, rgba(198,11,30,0.15), rgba(232,117,10,0.15));
  color: #1a1a1a;
}

.section--dark .highlight-word.active {
  background: linear-gradient(135deg, rgba(198,11,30,0.3), rgba(232,117,10,0.3));
  color: #ffc400;
}

.difference__warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 28px;
  border-radius: 12px;
  background: rgba(198,40,40,.05);
  border: 1px solid rgba(198,40,40,.12);
}

.difference__warning-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.5;
}

.difference__warning p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Guarantees --- */
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.guarantee-atropos {
  perspective: 1200px;
}
.guarantee-atropos .atropos-inner {
  border-radius: 16px;
}

.guarantee-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: border-color 0.5s var(--transition);
}

.guarantee-card:hover {
  border-color: rgba(255,255,255,.15);
}

.guarantee-card--pulse {
  border-color: rgba(212, 48, 60, 0.4);
  animation: pulse-border 2.5s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% {
    border-color: rgba(212, 48, 60, 0.15);
    box-shadow: 0 0 0 0 rgba(212, 48, 60, 0);
  }
  50% {
    border-color: rgba(212, 48, 60, 0.5);
    box-shadow: 0 0 20px 0 rgba(212, 48, 60, 0.12);
  }
}

.guarantee-card__num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.guarantee-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #f8f7f4;
  margin-bottom: 12px;
}

.guarantee-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

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

  .guarantees__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- Audience --- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.audience-atropos {
  perspective: 1200px;
}
.audience-atropos .atropos-inner {
  border-radius: 16px;
}

.audience-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color 0.5s var(--transition), background 0.5s var(--transition);
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  opacity: 0.7;
  transition: opacity 0.5s var(--transition);
}

.audience-card:hover {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}

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

.audience-card--red::before {
  background: linear-gradient(90deg, #c60b1e, #e8750a);
}

.audience-card--orange::before {
  background: linear-gradient(90deg, #e8750a, #ffc400);
}

.audience-card--yellow::before {
  background: linear-gradient(90deg, #ffc400, #e8750a);
}

.audience-card__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.2);
  margin-bottom: 24px;
}

.audience-card__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8f7f4;
  margin-bottom: 16px;
  line-height: 1.2;
}

.audience-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

/* --- How it works: SVG Line Art Timeline --- */
.process-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-line-wrap {
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
}

.timeline-line-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
}

.timeline-line-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--spain-orange), var(--spain-red));
  border-radius: 1px;
  transition: height 0.1s linear;
}

.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.step-number-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-number {
  font-family: var(--font-heading);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  transition: border-color 0.6s var(--transition), color 0.6s var(--transition);
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--spain-orange), var(--spain-red));
  opacity: 0;
  transition: opacity 0.6s var(--transition);
  z-index: -1;
}

.process-step.revealed .step-number {
  border-color: transparent;
  color: #fff;
}

.process-step.revealed .step-number::before {
  opacity: 1;
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-icon-wrap {
  margin-bottom: 16px;
}

.step-icon-wrap svg {
  width: 64px;
  height: 64px;
}

.step-icon-wrap svg path,
.step-icon-wrap svg polyline,
.step-icon-wrap svg line,
.step-icon-wrap svg circle,
.step-icon-wrap svg rect,
.step-icon-wrap svg ellipse {
  stroke: var(--spain-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 420px;
}

@keyframes svgGlow {
  0%, 100% { filter: drop-shadow(0 0 0px var(--spain-orange)); }
  50% { filter: drop-shadow(0 0 8px var(--spain-orange)); }
}

.step-icon-wrap.drawn svg {
  animation: svgGlow 2s ease-in-out 1;
}

/* --- Models --- */
.models__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.model-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  color: var(--text-light);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition), border-color 0.4s var(--transition);
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.model-card--recommended {
  border-color: var(--spain-orange);
  transform: scale(1.03);
}

.model-card--recommended:hover {
  transform: scale(1.03) translateY(-4px);
}

.model-card__badge {
  display: none;
}

.model-card--recommended .model-card__badge {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 32px;
  background: var(--gradient);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.model-card__name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.model-card__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.model-card__features {
  margin-bottom: 32px;
}

.model-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.model-card__feature::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  margin-top: 2px;
  position: relative;
}

.model-card__feature::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.model-card__footer {
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Terms / Calculator --- */
.terms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* --- Earnings: Compare --- */
.earnings-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.earnings-compare__col {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--divider);
  background: var(--bg-light);
}

.earnings-compare__col--market {
  border-color: rgba(0,0,0,0.06);
}

.earnings-compare__col--us {
  border-color: rgba(212,48,60,0.15);
  background: linear-gradient(135deg, rgba(212,48,60,0.03), rgba(255,196,0,0.03));
}

.earnings-compare__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.earnings-compare__col--us .earnings-compare__label {
  color: var(--spain-orange);
}

.earnings-compare__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 15px;
  color: var(--text-secondary);
}

.earnings-compare__row span:last-child {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.earnings-compare__col--us .earnings-compare__row span:last-child {
  color: var(--spain-orange);
}

.earnings-compare__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  border-top: 2px solid var(--divider);
  margin-top: 4px;
}

.earnings-compare__total span:last-child {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}

.earnings-compare__col--us .earnings-compare__total span:last-child {
  color: var(--spain-orange);
}

.earnings-compare__note {
  font-size: 17px;
  font-weight: 600;
  color: rgba(198,40,40,0.55);
  margin-top: 12px;
}

.earnings-compare__note--accent {
  color: #2e7d32;
  font-weight: 600;
}

/* Typewriter price */
.typewriter-price {
  display: inline;
}
.typewriter-price .tw-cursor {
  display: inline-block;
  color: var(--spain-orange);
  animation: tw-blink 0.7s step-end infinite;
  font-weight: 300;
}
@keyframes tw-blink {
  50% { opacity: 0; }
}

/* --- Earnings: Tiers --- */
.earnings-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.earnings-tier {
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--divider);
  background: var(--bg-light);
  text-align: center;
}

.earnings-tier--featured {
  border-color: rgba(212,48,60,0.2);
  background: linear-gradient(135deg, rgba(212,48,60,0.04), rgba(255,196,0,0.03));
  transform: scale(1.04);
}

.earnings-tier__level {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.earnings-tier__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.earnings-tier__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.earnings-tier__earning {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.earnings-tier__clients {
  font-size: 13px;
  color: var(--text-muted);
}

/* Dark variant for dark sections */
.earnings-tier--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.earnings-tier--dark .earnings-tier__name {
  color: var(--text-light);
}

.earnings-tier--dark .earnings-tier__earning {
  color: rgba(255,255,255,0.8);
}

.earnings-tier--dark .earnings-tier__level,
.earnings-tier--dark .earnings-tier__clients {
  color: rgba(255,255,255,0.4);
}

.earnings-tier--dark.earnings-tier--featured {
  border-color: rgba(212,48,60,0.3);
  background: linear-gradient(135deg, rgba(212,48,60,0.06), rgba(255,196,0,0.04));
}

.earnings-tier-atropos {
  perspective: 1200px;
}
.earnings-tier-atropos .atropos-inner {
  border-radius: 16px;
}

.calculator {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 40px 40px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.calculator__main {
  flex: 1;
  min-width: 0;
}

.calculator__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.calculator__slider-wrap {
  margin-bottom: 24px;
}

.calculator__value-display {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.calculator__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 117, 10, 0.3);
  transition: transform 0.2s var(--transition);
}

.calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calculator__slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(232, 117, 10, 0.3);
}

.calculator__result {
  margin-top: 24px;
}

.calculator__result-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.calculator__result-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.calculator__aside {
  width: 280px;
  flex-shrink: 0;
  padding: 28px 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.calculator__aside-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calculator__aside-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.calculator__aside-formula {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

.calculator__aside-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.calculator__aside-sep {
  height: 1px;
  background: var(--divider);
}

.calculator__aside-discount {
  font-size: 13px;
  font-weight: 600;
  color: var(--spain-orange);
}

.calculator__input-group {
  margin-bottom: 28px;
}

.calculator__input {
  width: 100%;
  padding: 14px 16px;
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.calculator__input:focus {
  border-color: var(--spain-orange);
}

.calculator__input::-webkit-inner-spin-button,
.calculator__input::-webkit-outer-spin-button {
  opacity: 1;
}

.calculator__model-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

.sla {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sla__card {
  background: #111;
  border-radius: var(--radius);
  padding: 32px;
}

.sla__value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.sla__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Why us --- */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-us__card {
  padding: 40px 28px;
  text-align: center;
}

.why-us__value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-us__label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-us__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.why-us__bottom {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

/* --- About button --- */
.about-b2b__btn {
  margin-top: 28px;
  align-self: flex-start;
}

/* --- Approvals gallery --- */
.approvals-scroll {
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.approvals-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: approvals-slide 40s linear infinite;
  padding: 8px 0;
}

.approvals-track:hover {
  animation-play-state: paused;
}

.approval-card {
  width: 220px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-white);
  transition: transform 0.5s var(--transition), box-shadow 0.4s var(--transition);
}

.approval-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.approval-card img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes approvals-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.approval-card {
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  pointer-events: none;
  transition: background 0.4s var(--transition), backdrop-filter 0.4s var(--transition);
}

.lightbox.is-active {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  pointer-events: all;
  cursor: zoom-out;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1), opacity 0.35s ease;
}

.lightbox.is-active .lightbox__img {
  transform: scale(1);
  opacity: 1;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}

.lightbox.is-active .lightbox__close {
  opacity: 1;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.5;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}

.lightbox.is-active .lightbox__nav {
  opacity: 1;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

@media (max-width: 600px) {
  .lightbox__img {
    max-width: 96vw;
    max-height: 80vh;
    border-radius: 12px;
  }
  .lightbox__close,
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .lightbox__close {
    top: 16px;
    right: 16px;
  }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

/* --- Testimonials --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-atropos {
  perspective: 1200px;
}
.testimonial-atropos .atropos-inner {
  border-radius: 16px;
}

.testimonial-card {
  background: #111;
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  margin-bottom: 32px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid;
  border-image: var(--gradient) 1;
}

.testimonial-card__author {
  font-size: 16px;
  font-weight: 700;
}

.testimonial-card__role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* --- FAQ --- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--divider);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s var(--transition);
}

.faq__question:hover {
  color: var(--spain-orange);
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: transform 0.4s var(--transition), background 0.3s;
}

.faq__icon::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.4s var(--transition);
}

.faq__item.is-open .faq__icon {
  background: var(--spain-orange);
}

.faq__item.is-open .faq__icon::after {
  border-color: #fff;
  transform: rotate(-135deg) translateY(-2px);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition), padding 0.4s var(--transition);
}

.faq__answer-inner {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Barcelona Lamp Section --- */
.lamp-section {
  overflow: hidden;
}

.lamp-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.lamp-section__title {
  margin-bottom: 24px;
}

.lamp-section__desc {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 420px;
}

.lamp-section__canvas {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
}

.lamp-section__canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .lamp-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .lamp-section__canvas {
    height: 400px;
  }
}

/* --- CTA Block --- */
.cta-b2b {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-b2b::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 117, 10, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-b2b__title {
  white-space: pre-line;
  margin-bottom: 20px;
  position: relative;
}

.cta-b2b__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.5;
  position: relative;
}

/* CTA Form */
.cta-form {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-form__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.cta-form__input,
.cta-form__select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.cta-form__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.cta-form__input:focus,
.cta-form__select:focus {
  border-color: var(--spain-orange);
  background: rgba(255, 255, 255, 0.1);
}

.cta-form__input.is-invalid,
.cta-form__select.is-invalid {
  border-color: #e53935;
}

.cta-form__select-wrap {
  position: relative;
}

.cta-form__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.cta-form__select option {
  background: #1a1a1a;
  color: #fff;
}

.cta-form__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.cta-form__submit {
  width: 100%;
  margin-top: 8px;
  font-size: 17px;
  justify-content: center;
}

.cta-form__success {
  margin-top: 24px;
  padding: 20px;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  color: #81c784;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* CTA divider + pills */
.cta-form__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  margin: 28px auto 20px;
}

.cta-form__divider::before,
.cta-form__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.cta-form__divider span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.cta-form__pills {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s var(--transition);
}

.cta-pill--tg {
  background: rgba(42, 171, 238, 0.12);
  color: #5bc0f0;
  border: 1px solid rgba(42, 171, 238, 0.2);
}

.cta-pill--tg:hover {
  background: #2AABEE;
  color: #fff;
  border-color: #2AABEE;
}

.cta-pill--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #5fe08a;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.cta-pill--wa:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

/* --- Footer --- */
/* --- Footer (Cuberto-style) --- */
.footer-b2b {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-b2b__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 64px;
}

/* Contact pills */
.footer-b2b__pills {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-b2b__pill {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: border-color 0.3s var(--transition), background 0.3s var(--transition);
}

.footer-b2b__pill:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

/* Offices */
.footer-b2b__offices {
  display: flex;
  gap: 64px;
}

.footer-b2b__office {
  display: flex;
  flex-direction: column;
}

.footer-b2b__office-label {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.footer-b2b__office-addr {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}

.footer-b2b__office-city {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Nav (right side, 2-col grid) */
.footer-b2b__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 64px;
  flex-shrink: 0;
}

.footer-b2b__nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 0;
  transition: opacity 0.3s;
}

.footer-b2b__nav-link:hover {
  opacity: 0.6;
}

/* Bottom bar */
.footer-b2b__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-b2b__bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-b2b__bottom-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-b2b__bottom-link:hover {
  color: var(--text-light);
}

.footer-b2b__bottom-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

/* Social icons */
.footer-b2b__socials {
  display: flex;
  gap: 12px;
}

.footer-b2b__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.3s var(--transition), color 0.3s;
}

.footer-b2b__social:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

/* --- Sticky CTA (mobile) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s var(--transition);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

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

@media (max-width: 1024px) {
  .problems__item {
    gap: 24px;
    padding: 32px 0;
  }

  .problems__index {
    min-width: 64px;
    font-size: 48px;
  }

  .problems__heading {
    margin-bottom: 40px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .models__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .model-card--recommended {
    transform: none;
    order: -1;
  }

  .model-card--recommended:hover {
    transform: translateY(-4px);
  }

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

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantees__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-b2b__main {
    flex-direction: column;
    gap: 48px;
  }

  .footer-b2b__nav {
    gap: 4px 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 80px 0;
  }

  .section--rounded {
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
  }

  .section:has(+ .section--rounded) {
    padding-bottom: 160px;
  }

  .hero-b2b:has(+ .about-b2b) {
    padding-bottom: 80px;
  }

  .about-b2b:has(+ .section--rounded) {
    padding-bottom: 40px;
  }

  .about-b2b {
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
  }

  .about-b2b__visual {
    border-radius: 40px 0 0 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  /* Nav mobile */
  .nav {
    padding: 0 24px;
  }

  .nav__links,
  .nav__cta,
  .nav__b2c-link-desktop {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__burger span {
    background: var(--text-dark);
  }

  .nav__burger.is-active span {
    background: var(--text-dark);
  }

  /* Disable Atropos 3D tilt on touch — prevents scroll hijacking */
  .audience-atropos,
  .guarantee-atropos,
  .testimonial-atropos,
  .earnings-tier-atropos {
    perspective: none !important;
    touch-action: auto !important;
  }

  .audience-atropos .atropos-scale,
  .audience-atropos .atropos-rotate,
  .guarantee-atropos .atropos-scale,
  .guarantee-atropos .atropos-rotate,
  .testimonial-atropos .atropos-scale,
  .testimonial-atropos .atropos-rotate,
  .earnings-tier-atropos .atropos-scale,
  .earnings-tier-atropos .atropos-rotate {
    transform: none !important;
    touch-action: auto !important;
  }

  .about-b2b__btn {
    display: flex;
    margin: 0 auto;
  }

  /* Hero */
  .hero-b2b {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-b2b__stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-b2b__stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .hero-b2b__stat-value {
    font-size: 36px;
  }

  /* Process timeline */
  .process-step {
    gap: 24px;
  }

  .timeline-line-wrap {
    left: 23px;
  }

  .step-number-wrap,
  .step-number {
    width: 48px;
    height: 48px;
  }

  .step-number {
    font-size: 12px;
  }

  .earnings-compare {
    grid-template-columns: 1fr;
  }

  .earnings-tiers {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .earnings-tier--featured {
    transform: none;
  }

  /* Calculator */
  .calculator {
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
  }

  .calculator__aside {
    width: 100%;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .calculator__aside-sep {
    display: none;
  }

  .calculator__aside-row {
    min-width: 0;
  }

  .calculator__aside-value {
    font-size: 20px;
  }

  .calculator__value-display {
    font-size: 36px;
  }

  .calculator__result-value {
    font-size: 28px;
  }

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

  /* Why us */
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-us__card {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 28px;
  }

  /* Approvals scroll */
  .approvals-scroll {
    overflow: hidden;
  }

  /* Earnings compare */
  .earnings-compare__note {
    font-size: 14px;
  }

  .earnings-compare__total span:last-child {
    font-size: 22px;
  }

  /* CTA form */
  .cta-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-form__divider {
    margin: 20px auto 16px;
  }

  .cta-form__pills {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-pill {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  /* Footer */
  .footer-b2b__pills {
    flex-direction: column;
    gap: 12px;
  }

  .footer-b2b__pill {
    justify-content: center;
  }

  .footer-b2b__offices {
    flex-direction: column;
    gap: 32px;
  }

  .footer-b2b__nav {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-b2b__bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .section--rounded {
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
  }

  .section:has(+ .section--rounded) {
    padding-bottom: 120px;
  }

  .hero-b2b:has(+ .about-b2b) {
    padding-bottom: 64px;
  }

  .about-b2b:has(+ .section--rounded) {
    padding-bottom: 24px;
  }

  .about-b2b {
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
  }

  .about-b2b__visual {
    border-radius: 24px 0 0 0;
  }

  h1, .h1 {
    font-size: 36px;
  }

  h2, .h2 {
    font-size: 28px;
  }

  .btn {
    padding: 18px 32px;
    font-size: 16px;
  }

  .card {
    padding: 28px;
  }

  .hero-b2b__stat-value {
    font-size: 32px;
  }

  /* Process timeline */
  .timeline-line-wrap {
    left: 16px;
  }

  .step-number-wrap,
  .step-number {
    width: 36px;
    height: 36px;
  }

  .step-number {
    font-size: 11px;
  }

  .process-step {
    gap: 16px;
  }

  /* Calculator */
  .calculator__value-display {
    font-size: 32px;
  }

  .calculator__result-value {
    font-size: 24px;
  }

  .calculator__aside {
    padding: 16px 20px;
    gap: 12px 16px;
  }

  .calculator__aside-value {
    font-size: 16px;
  }

  .calculator__aside-formula {
    font-size: 13px;
  }
}
