/* ══════════════════════════════════════════════════
   CRAFTINGBITS — Unified Styles
   Corporate: #ff6a00 / #111111
══════════════════════════════════════════════════ */

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

:root {
  --bg: #000000;
  --card: #1c1c1c;
  --border: #ffffff12;
  --orange: #ff6a00;
  --orange-dark: #cc4400;
  --orange-glow: #ff6a002e;
  --text: #e8e8f0;
  --text-nav: #ff6a00;
  --muted: #e8e8f073;
  --white: #ffffff;
  --nav-h: 64px;
  --grey-p: #333333;
  --map: #3d2b56;
  --step: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  font-family: 'SpaceGrotesk', sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* ══════════════════════════════
   FONTS — Self-hosted
══════════════════════════════ */

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('../fonts/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('../fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('../fonts/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('../fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('../fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════
   LOADER
══════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease 0.2s;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-animation {
  position: relative;
  width: min(90vw, 680px);
  height: 140px;
}

.phase-1 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.phase-1 .word {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--text);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.phase-1 .word.bold {
  font-weight: 600;
  color: var(--orange);
}

.phase-1 .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.phase-2 {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.phase-2.active {
  visibility: visible;
}

.scale-wrapper {
  transform: scale(0.58);
  transform-origin: center center;
  transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-wrapper.grow {
  transform: scale(1);
}

.reveal-frame {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.reveal-box {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 25px;
  z-index: 2;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

.reveal-box.open {
  transform: scaleX(0);
}

.logo-img {
  display: block;
  position: relative;
  z-index: 1;
  width: min(72vw, 620px);
  height: auto;
  max-height: 50vh;
  object-fit: contain;
}

/* ══════════════════════════════
   MAIN CONTENT
══════════════════════════════ */
#main-content {
  opacity: 0;
  transition: opacity 0.6s ease;
}

#main-content.visible {
  opacity: 1;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 4%;
  z-index: 500;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
  .nav {
    padding: 0 calc((100% - 720px) / 2);
  }
}

@media (min-width: 992px) {
  .nav {
    padding: 0 calc((100% - 960px) / 2);
  }
}

@media (min-width: 1200px) {
  .nav {
    padding: 0 calc((100% - 1140px) / 2);
  }
}

@media (min-width: 1440px) {
  .nav {
    padding: 0 calc((100% - 1400px) / 2);
  }
}

@media (min-width: 1920px) {
  .nav {
    padding: 0 calc((100% - 1700px) / 2);
  }
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: transparent;
}

.nav-logo {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
  flex-shrink: 0;
  transform: translateY(4px);
  text-decoration: none;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 300;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-nav);
}

.nav-cta {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: #111111;
  background: var(--orange);
  padding: 9px 22px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ══════════════════════════════
   SECTIONS — shared
══════════════════════════════ */
.section {
  position: relative;
  padding-top: clamp(80px, 12vw, 150px);
  padding-bottom: clamp(100px, 15vw, 180px);
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.8;
  margin-bottom: 10px;
}

/* ── Responsive Container System ── */
.srv-header,
.services-wrapp,
.ctw-header,
.ctw-grid,
.about-titles,
.about-content,
.pricing-header,
.price-grid {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrap {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {

  .srv-header,
  .services-wrapp,
  .ctw-header,
  .ctw-grid,
  .about-titles,
  .about-content,
  .pricing-header,
  .price-grid {
    max-width: 720px;
  }

  .contact-wrap {
    max-width: 70%;
  }
}

@media (min-width: 992px) {

  .srv-header,
  .services-wrapp,
  .ctw-header,
  .ctw-grid,
  .about-titles,
  .about-content,
  .pricing-header,
  .price-grid {
    max-width: 960px;
  }

  .contact-wrap {
    max-width: 70%;
  }
}

@media (min-width: 1200px) {

  .srv-header,
  .services-wrapp,
  .ctw-header,
  .ctw-grid,
  .about-titles,
  .about-content,
  .pricing-header,
  .price-grid {
    max-width: 1140px;
  }

  .contact-wrap {
    max-width: 70%;
  }
}

@media (min-width: 1440px) {

  .srv-header,
  .services-wrapp,
  .ctw-header,
  .ctw-grid,
  .about-titles,
  .about-content,
  .pricing-header,
  .price-grid {
    max-width: 1400px;
  }

  .contact-wrap {
    max-width: 70%;
  }
}

@media (min-width: 1920px) {

  .srv-header,
  .services-wrapp,
  .ctw-header,
  .ctw-grid,
  .about-titles,
  .about-content,
  .pricing-header,
  .price-grid {
    max-width: 1700px;
  }

  .contact-wrap {
    max-width: 70%;
  }
}

.section-heading {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 90px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
  text-transform: uppercase;
}

.lift {
  display: inline-block;
  transform: translateY(-0.5px);
}

.section-servicios .section-heading,
.section-ctw .section-heading,
.section-pricing .section-heading {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  line-height: 0.71;
  background: linear-gradient(var(--orange), var(--orange)) no-repeat 0 100%;
  background-size: 100% 1px;
}

.section-servicios .section-heading,
.section-ctw .section-heading,
.section-pricing .section-heading,
.section-servicios .section-heading span,
.section-ctw .section-heading span,
.section-pricing .section-heading span {
  color: var(--white);
  -webkit-text-stroke: 0;
}

.section-heading span {
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg);
  margin-bottom: 1%;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: calc(var(--nav-h) + 5%);
  left: 5%;
  right: 5%;
  bottom: 5%;
  background-image: url('../img/worldmap.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 12px var(--map));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
  margin-left: 10%;
}

.hero-label {
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-inner.hero-animate .hero-label {
  opacity: 0.9;
  transform: none;
  transition-delay: 0s;
}

.hero-inner.hero-animate {
  opacity: 1;
  transform: none;
  transition-delay: 0.14s;
}

.hero-sub {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  max-width: 1000px;
  min-height: 80px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  margin-left: 7%;
}

.hero-sub em {
  font-style: normal;
  color: var(--text);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background-color: var(--orange);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-inner.hero-animate .hero-sub {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  margin-left: 7%;
}

.hero-inner.hero-animate .hero-ctas {
  opacity: 1;
  transform: none;
  transition-delay: 0.46s;
}

.hero-cta-main,
.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 20px);
  letter-spacing: 0.16em;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  white-space: nowrap;
  border: 1px solid rgba(255, 106, 0, 0.4);
  background: rgba(255, 106, 0, 0.06);
  color: var(--orange);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.hero-cta-main:hover,
.hero-cta-outline:hover {
  background: var(--orange);
  color: #111111;
  border-color: var(--orange);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}

.cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #000000;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.cta-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.hero-cta-main:hover .cta-icon-wrap,
.hero-cta-outline:hover .cta-icon-wrap {
  transform: scale(1.25);
}

/* ══════════════════════════════
   GLOBAL NAVIGATION CIRCLE
══════════════════════════════ */
.nav-scroll-circle {
  position: fixed;
  right: clamp(1.5rem, 6vw, 5rem);
  bottom: clamp(4rem, 10vw, 7.5rem);
  width: clamp(160px, 20vw, 220px);
  height: clamp(160px, 20vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, right 0.4s ease;
}

.nav-scroll-circle.nav-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-scroll-circle.nav-at-bottom {
  transform: scale(0.82);
  width: clamp(107px, 13vw, 147px);
  height: clamp(107px, 13vw, 147px);
}

.nav-scroll-circle.nav-intermediate {
  right: 1.5rem;
  width: clamp(36px, 4.6vw, 48px);
  height: clamp(36px, 4.6vw, 48px);
}

.nav-scroll-circle.nav-at-bottom .nav-circle-svg {
  transform: scale(1.18);
}

.nav-scroll-circle.nav-intermediate .nav-circle-btn {
  width: clamp(36px, 4.6vw, 48px);
  height: clamp(36px, 4.6vw, 48px);
  background: var(--orange);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-scroll-circle.nav-intermediate .nav-circle-arrow {
  fill: var(--bg);
}

.nav-scroll-circle.nav-at-bottom .nav-circle-btn {
  width: clamp(36px, 4.6vw, 48px);
  height: clamp(36px, 4.6vw, 48px);
  background: #000;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-scroll-circle.nav-at-bottom .nav-circle-arrow {
  fill: var(--orange);
}

.nav-scroll-circle.nav-at-bottom .nav-circle-btn:hover {
  background: var(--orange);
}

.nav-scroll-circle.nav-at-bottom .nav-circle-btn:hover .nav-circle-arrow {
  fill: #000;
}

.nav-scroll-circle.nav-at-bottom .nav-circle-btn:hover,
.nav-scroll-circle.nav-intermediate .nav-circle-btn:hover {
  transform: scale(1.15);
}

.nav-scroll-circle.nav-at-bottom .nav-circle-arrow,
.nav-scroll-circle.nav-intermediate .nav-circle-arrow {
  width: 44%;
  height: 44%;
}

.nav-scroll-circle.nav-at-bottom .nav-circle-btn:hover .nav-circle-arrow,
.nav-scroll-circle.nav-intermediate .nav-circle-btn:hover .nav-circle-arrow {
  fill: var(--bg);
  transform: rotate(90deg) scale(1.22);
}

.nav-scroll-circle.nav-up.nav-at-bottom .nav-circle-btn:hover .nav-circle-arrow,
.nav-scroll-circle.nav-up.nav-intermediate .nav-circle-btn:hover .nav-circle-arrow {
  transform: rotate(-90deg) scale(1.22);
}

.nav-scroll-circle.nav-intermediate .nav-circle-svg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-circle-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.nav-circle-rotate {
  transform-origin: 150px 150px;
  animation: spinCircle 12s linear infinite;
}

.nav-circle-text {
  fill: var(--muted);
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  transition: fill 0.3s ease;
}

.nav-scroll-circle:hover .nav-circle-text {
  fill: var(--white);
}

@keyframes spinCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.nav-circle-btn {
  pointer-events: auto;
  position: relative;
  width: clamp(54px, 7vw, 72px);
  height: clamp(54px, 7vw, 72px);
  background: #000000;
  border-radius: 50%;
  border: 18px solid var(--orange);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 11;
  text-decoration: none;
}

.nav-circle-btn:hover {
  box-shadow: 0 0 40px var(--orange-glow);
  border-width: 12px;
}

.nav-circle-arrow {
  width: 52%;
  height: 52%;
  fill: var(--orange);
  transition: fill 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(90deg);
}

.nav-scroll-circle.nav-up .nav-circle-arrow {
  transform: rotate(-90deg);
}

.nav-circle-btn:hover .nav-circle-arrow {
  transform: rotate(90deg) scale(1.25);
}

.nav-scroll-circle.nav-up .nav-circle-btn:hover .nav-circle-arrow {
  transform: rotate(-90deg) scale(1.25);
}

@media (max-width: 700px) {
  .nav-scroll-circle {
    display: none;
  }
}

/* ══════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════ */
.section-servicios {
  padding-top: 0;
  padding-bottom: 0;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

.srv-header {
  text-align: left;
  margin-bottom: 10px;
  padding: 0;
}

.services-wrapp {
  padding: 0;
}

.services-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.services-item:first-child {
  border-top: none;
}

.services-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-item:nth-child(2) {
  transition-delay: 0.15s;
}

.services-item:nth-child(3) {
  transition-delay: 0.3s;
}

.services-item:nth-child(4) {
  transition-delay: 0.45s;
}

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

.service-num-box {
  flex: 0 0 80px;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.04);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, background 0.4s;
  flex-shrink: 0;
}

.service-num-box svg {
  width: 32px;
  height: 32px;
}

.services-item:hover .service-num-box {
  transform: scale(1.1);
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
}

.service-text {
  flex: 1;
  padding: 0 60px;
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.4s;
}

.services-item:hover .service-text {
  color: var(--orange);
}

.service-card {
  flex: 0 0 45%;
  perspective: 1000px;
}

.service-card-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card-inner p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.service-card-footer {
  display: flex;
  justify-content: flex-end;
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.services-item:hover .service-card-inner {
  transform: translateY(-8px) rotateX(2deg);
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 10px 50px -10px rgba(255, 106, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.2);
}

.services-item:hover .service-card-inner p {
  color: rgba(17, 15, 12, 0.7);
}

.services-item:hover .service-card-inner p strong {
  color: #1a1410;
}

@media (max-width: 1100px) {
  .service-card {
    flex: 0 0 320px;
  }

  .service-text {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .services-item {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
  }

  .service-text {
    flex: 1;
    padding: 0;
    font-size: clamp(28px, 6vw, 42px);
  }

  .service-card {
    width: 100%;
    flex: none;
    margin-top: 10px;
  }

  .service-num-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .service-num-box svg {
    width: 24px;
    height: 24px;
  }
}

/* ══════════════════════════════════════════
   CÓMO TRABAJAMOS
══════════════════════════════════════════ */
.section-ctw {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

.ctw-header {
  text-align: left;
  margin-bottom: 10px;
  padding: 0;
}

.ctw-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-top: 100px;
}

.ctw-card {
  flex: 1 1 0%;
  min-width: 0;
  height: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 32px 35px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.45s, box-shadow 0.45s, background 0.45s;
}

.ctw-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.45s;
}

.ctw-card:hover {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 10px 50px -10px rgba(255, 106, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.2);
}

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

.ctw-card:hover .ctw-title {
  color: var(--orange-dark);
}

.ctw-card:hover .ctw-body {
  color: rgba(17, 15, 12, 0.7);
}

.ctw-card:hover .ctw-body strong {
  color: #1a1410;
}

.ctw-card:hover .ctw-ico-frame {
  border-color: rgba(200, 68, 0, .4);
  background: rgba(200, 68, 0, .08);
  color: var(--orange-dark);
}

.ctw-ico-frame {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--orange);
  flex-shrink: 0;
  transition: border-color 0.45s, box-shadow 0.45s, background 0.45s, color 0.45s;
  perspective: 400px;
}

.ctw-ico-frame svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes spinY2 {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(720deg);
  }
}

.ctw-ico-frame svg.spinning {
  animation: spinY2 3.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.ctw-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.ctw-title {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--orange);
  transition: color 0.35s;
}

.ctw-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: color 0.35s;
}

.ctw-body strong {
  color: var(--text);
  font-weight: 500;
  transition: color 0.35s;
}

/* Staircase */
.ctw-card-1 {
  margin-top: 0;
}

.ctw-card-2 {
  margin-top: var(--step);
}

.ctw-card-3 {
  margin-top: calc(var(--step) * 2);
}

.ctw-card-4 {
  margin-top: calc(var(--step) * 3);
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.section-about {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: 0;
  scroll-margin-top: calc(var(--nav-h) + 20px);
  background: #000;
}

.section-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, #000 0%, transparent 10%, transparent 90%, #000 100%),
    linear-gradient(to right, #000 30%, transparent 100%),
    url('../img/programming.jpg');
  background-size: cover;
  background-position: right center;
  filter: grayscale(1);
  opacity: 0.55;
  z-index: 1;
}

.section-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, #000 0%, transparent 10%, transparent 90%, #000 100%),
    linear-gradient(to right, #000 30%, transparent 100%),
    url('../img/Overlay.jpg');
  background-size: cover;
  background-position: right center;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.about-titles {
  position: absolute;
  top: clamp(60px, 12vh, 100px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.about-title-left,
.about-title-right {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(58px, 7.5vw, 102px);
  letter-spacing: 0.01em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
}

.about-title-right {
  text-align: right;
  padding: 0 clamp(1rem, 5vw, 4.7rem) !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1ch;
}

.about-title-right::before {
  content: '';
  display: inline-block;
  width: 5ch;
  height: 1px;
  background: var(--orange);
  border-radius: 1px;
}

.about-title-right .acc {
  color: transparent;
  -webkit-text-stroke: 1px var(--orange);
}

.about-content {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  padding: 0;
}

.about-rule {
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 18px;
  border-radius: 2px;
}

.about-text {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.85;
  max-width: 65%;
  text-align: justify;
}

.word {
  display: inline-block;
  white-space: pre-wrap;
  color: rgba(232, 232, 240, 0.22);
  transition: color 0.4s ease;
}

.word.lit {
  color: var(--text);
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.section-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-header {
  text-align: left;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.price-grid {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding: 0;
  margin-top: 80px;
}

.price-card {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 420px;
  box-sizing: border-box;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 50px 60px 45px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.5s, box-shadow 0.5s, background 0.5s;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 35px;
  right: 35px;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.5s;
}

.price-card.featured {
  border-color: rgba(255, 106, 0, .3);
  background: rgba(255, 106, 0, .045);
}

.price-card.featured::before {
  opacity: 1;
}

.price-card:hover {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 10px 50px -10px rgba(255, 106, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.2);
}

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

.price-card:hover .plan-name {
  color: var(--orange-dark);
}

.price-card:hover .plan-desc {
  color: rgba(17, 15, 12, 0.65);
}

.price-card:hover .plan-price {
  color: #1a1410;
}

.price-card:hover .plan-price-note {
  color: rgba(17, 15, 12, 0.5);
}

.price-card:hover .feature-item {
  color: rgba(17, 15, 12, 0.72);
  border-color: rgba(0, 0, 0, 0.08);
}

.price-card:hover .feature-item::before {
  background: var(--orange-dark);
}

.price-card:hover .feature-section {
  color: rgba(17, 15, 12, 0.38);
}

.price-card:hover .price-divider {
  background: rgba(0, 0, 0, 0.1);
}

.price-card:hover .price-ico {
  border-color: rgba(200, 68, 0, .35);
  background: rgba(200, 68, 0, .08);
  color: var(--orange-dark);
}

.price-card:hover .cta-btn {
  background: var(--orange);
  color: #111111;
  box-shadow: 0 4px 22px -4px rgba(255, 106, 0, .4);
  border-color: var(--orange);
}

.price-card:hover .cta-btn::after {
  opacity: 0;
}

.price-card:hover .feature-item strong {
  color: #1a1410;
}

.price-card:hover .plan-price-from {
  color: rgba(17, 15, 12, 0.5);
}

.price-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, .25);
  background: rgba(255, 106, 0, .07);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: border-color 0.5s, background 0.5s, color 0.5s;
  perspective: 400px;
}

.price-ico svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-card:hover .price-ico svg,
.price-card .price-ico svg.spinning {
  animation: spinY2 3.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.plan-name {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--orange);
  line-height: 1.05;
  margin-bottom: 8px;
  transition: color 0.5s;
}

.plan-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  transition: color 0.5s;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.plan-price-from {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: color 0.5s;
}

.plan-price-currency {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--orange);
  align-self: flex-start;
  margin-top: 8px;
}

.plan-price {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  transition: color 0.5s;
}

.plan-price-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  transition: color 0.5s;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
  transition: background 0.5s;
}

.features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.feature-section {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(232, 232, 240, 0.28);
  margin-top: 16px;
  margin-bottom: 8px;
  transition: color 0.5s;
}

.feature-section:first-child {
  margin-top: 0;
}

.feature-item {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition: color 0.5s, border-color 0.5s;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
  transition: background 0.5s;
}

.feature-item strong {
  color: var(--text);
  font-weight: 500;
  transition: color 0.5s;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, .4);
  background: transparent;
  color: var(--orange);
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.5s, color 0.5s, border-color 0.5s, box-shadow 0.5s;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, .08) 0%, transparent 60%);
  opacity: 1;
  transition: opacity 0.5s;
}

.price-card.featured .cta-btn {
  background: var(--orange);
  color: #111111;
  border-color: var(--orange);
  font-weight: 600;
  box-shadow: 0 4px 28px -6px rgba(255, 106, 0, .55);
}

.price-card.featured .cta-btn::after {
  opacity: 0;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.section-contact {
  position: relative;
  padding-top: 20px;
  padding-bottom: 60px;
}

.contact-wrap {
  display: flex;
  gap: clamp(1.5rem, 5vw, 5rem);
}

.contact-form-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.contact-form-title {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 58px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-title span {
  color: var(--orange);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

/* Honeypot — invisible for humans */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
  width: 66.6%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255, 106, 0, .5);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .08);
}

.form-textarea {
  min-height: 120px;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  width: 66.6%;
}

.form-check input[type="checkbox"] {
  display: none;
}

.check-box {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.check-box svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  opacity: 0;
  transition: opacity 0.2s;
}

.form-check input:checked~.check-box,
.form-check:has(input:checked) .check-box {
  background: var(--orange);
  border-color: var(--orange);
}

.form-check:has(input:checked) .check-box svg {
  opacity: 1;
}

.check-text {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.check-text a {
  color: var(--orange);
  text-decoration: none;
}

.check-text a:hover {
  text-decoration: underline;
}

/* Form feedback message */
.form-msg {
  font-size: 13px;
  font-weight: 400;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
  line-height: 1.5;
  width: 66.6%;
}

.form-msg.success {
  display: block;
  background: rgba(40, 167, 69, 0.12);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #5cb85c;
}

.form-msg.error {
  display: block;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--orange);
}

.form-submit {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111111;
  background: var(--orange);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  align-self: flex-start;
}

.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Right — Info */
.contact-info-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 0;
}

.contact-info-title {
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-of-type {
  border-top: 1px solid var(--border);
}

.contact-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 106, 0, .2);
  background: rgba(255, 106, 0, .07);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-ico svg.ico-filled {
  fill: currentColor;
  stroke: none;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-item-val {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item-val:hover {
  color: var(--orange);
}

/* Socials */
.contact-socials {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}

.social-link:hover {
  border-color: rgba(255, 106, 0, .4);
  color: var(--orange);
  background: rgba(255, 106, 0, .07);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer strip */
.footer {
  text-align: center;
  padding: 40px 20px 20px;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer span {
  color: var(--orange);
}

.footer-legal {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

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

.footer-legal span {
  color: rgba(232, 232, 240, 0.2);
}

/* ══════════════════════════════
   COOKIE BANNER
══════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 8000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  min-width: 200px;
}

.cookie-banner-text strong {
  color: var(--text);
  font-weight: 500;
}

.cookie-banner-text a {
  color: var(--orange);
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  background: rgba(255, 106, 0, 0.06);
  color: var(--orange);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.cookie-btn:hover {
  background: var(--orange);
  color: #111111;
  border-color: var(--orange);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}

.cookie-btn-accept,
.cookie-btn-reject {
  background: rgba(255, 106, 0, 0.06);
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.4);
}

/* ══════════════════════════════
   HAMBURGER MENU (mobile)
══════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1rem 0 1.5rem;
  z-index: 490;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: 0.9rem 2rem;
  width: 100%;
  text-align: center;
  transition: color 0.25s;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

.nav-mobile-menu a:hover {
  color: var(--orange);
}

/* ══════════════════════════════
   CURSOR TRAIL
══════════════════════════════ */
.cursor-wrapp {
  pointer-events: none;
  z-index: 10000;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (pointer: coarse) {
  .cursor-wrapp {
    display: none;
  }
}

/* ══════════════════════════════
   RESPONSIVE — 1280px
══════════════════════════════ */
@media (max-width: 1280px) {
  .contact-wrap {
    gap: clamp(1rem, 4vw, 3rem);
  }

  .price-grid {
    gap: 1.5rem;
  }
}

/* ══════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
  .ctw-grid {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .ctw-card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }

  .ctw-card-1,
  .ctw-card-2,
  .ctw-card-3,
  .ctw-card-4 {
    margin-top: 0;
  }

  .price-grid {
    gap: 1.25rem;
  }

  .price-card {
    padding: 1.75rem 1.5rem;
  }

  .about-content {
    max-width: 75%;
  }
}

/* ══════════════════════════════
   RESPONSIVE — 900px
══════════════════════════════ */
@media (max-width: 900px) {
  .contact-wrap {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-info-col {
    padding-top: 0;
  }

  .price-grid {
    flex-direction: column;
    align-items: center;
    max-width: 440px;
  }

  .price-card {
    width: 100%;
    max-width: 440px;
  }

  .about-content {
    max-width: 88%;
  }
}

/* ══════════════════════════════
   RESPONSIVE — 700px
══════════════════════════════ */
@media (max-width: 700px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex !important;
    z-index: 1000;
  }

  .hero-inner {
    padding: 3rem 1.25rem;
    width: 100% !important;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 380px;
  }

  .hero-sub {
    font-size: 1.15rem;
    width: 100% !important;
    margin-bottom: 2rem;
    height: 120px;
    display: block;
    line-height: 1.6;
    overflow: hidden;
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    align-items: flex-start;
  }

  .hero-cta-main,
  .hero-cta-outline {
    width: auto !important;
    min-width: 180px;
    flex: none;
    display: flex;
    justify-content: center;
    white-space: nowrap;
  }

  .ctw-grid {
    flex-direction: column !important;
    gap: 1.5rem;
    padding-top: 30px;
  }

  .ctw-card {
    width: 100% !important;
    max-width: none;
  }

  .about-titles {
    position: relative;
    top: auto;
    flex-direction: column;
    gap: 0;
    padding: 0 1.25rem 0.5rem;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
    padding: 1.5rem 1.25rem;
    margin-top: 0;
    text-align: left;
  }

  .about-text {
    max-width: 100%;
    text-align: left;
  }

  .section-about {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0 !important;
    min-height: auto;
    margin-bottom: 80px;
  }

  .pricing-header {
    margin-bottom: 30px;
  }

  .price-grid {
    padding: 0 1rem;
    margin-top: 30px;
    gap: 2.5rem;
  }

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

  .contact-wrap {
    padding: 0 1.25rem;
    gap: 2.5rem;
    margin-top: 0;
  }

  .contact-socials {
    margin-top: 2rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-banner-actions {
    width: 100%;
    display: block;
    text-align: center;
  }

  .cookie-btn {
    width: auto;
    display: inline-block;
    letter-spacing: 0.08em;
    padding: 11px 16px;
    margin: 4px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════ */
@media (max-width: 480px) {
  .phase-1 {
    flex-direction: column;
    gap: 0.375rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-cta-main,
  .hero-cta-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 16px;
  }

  .section-hero {
    min-height: 100dvh;
  }

  .about-title-left,
  .about-title-right {
    font-size: clamp(2.875rem, 10vw, 4.375rem);
  }

  .about-title-right::before {
    width: 1ch;
  }

  .about-rule {
    display: none;
  }

  .section-ctw {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 4rem;
  }

  .price-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-form-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .form-input,
  .form-textarea,
  .form-msg,
  .form-check {
    width: 100%;
  }
}

/* ══════════════════════════════
   LEGAL PAGES
══════════════════════════════ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
}

.legal-page h1 {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text);
  margin-bottom: 8px;
}

.legal-page .legal-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  display: block;
}

.legal-page h2 {
  font-family: 'SpaceGrotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--orange);
  margin-top: 36px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.legal-page p,
.legal-page li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-page a {
  color: var(--orange);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page strong {
  color: var(--text);
  font-weight: 500;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity 0.3s;
}

.legal-back:hover {
  opacity: 0.7;
}