/* ═══════════════════════════════════════════════════════════
   SALT & LIGHT CREATIONS - Landing Page Styles
   2026 Design: Neo-brutalist · Kinetic · Bold · Teal
═══════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --dark-teal: #004442;
  --mid-teal: #005b5b;
  --bright-teal: #21a5a5;
  --cyan: #2fbec5;
  --black: #000000;
  --white: #ffffff;
  --off-white: #f4f4f0;

  --font: "Montserrat", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Intro Canvas ──────────────────────────────────────── */
#intro-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: all;
  transition: opacity 0.4s ease;
}

body.intro-playing {
  overflow: hidden;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Grain Overlay ─────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── Custom Cursor (disabled - using default OS cursor) ─── */
.cursor,
.cursor-dot {
  display: none;
}

/* ─── Scroll Reveal (GSAP handles these now) ─────────────── */
.reveal-up {
  /* GSAP sets initial state via JS - no CSS opacity:0 needed */
}

/* Hero elements: GSAP animates from y+opacity, start visible for safety */
#hero .reveal-up,
#hero .reveal-inner {
  opacity: 1;
  transform: none;
}

/* ── CLIP-MASK REVEAL ── */
.reveal-mask {
  overflow: hidden;
  display: block;
}
.reveal-inner {
  display: block;
  /* No CSS initial transform - GSAP animates from y:40 on scroll */
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
}
.btn-primary:hover {
  background: var(--bright-teal);
  border-color: var(--bright-teal);
}

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

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

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

/* ─── Section Labels ─────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bright-teal);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  text-transform: uppercase;
  hyphens: none;
  -webkit-hyphens: none;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dark-teal);
}
.section-title.light {
  color: var(--white);
}
.section-title.light em {
  color: var(--cyan);
}

/* ══════════════════════════════════════════════════════════
   FLOATING NAV
══════════════════════════════════════════════════════════ */
.nav-float {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  pointer-events: none;
}
.nav-float > * {
  pointer-events: all;
}

/* Shared circle style */
.nav-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.nav-circle:hover {
  transform: scale(1.1);
  background: var(--black);
}

/* Hamburger - icon swap */
.nav-hamburger {
  position: relative;
}
.ham-icon,
.close-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s,
    transform 0.3s var(--ease);
}
.close-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}
.menu-open .ham-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}
.menu-open .close-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Logo circle */
.nav-logo-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo-circle img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* CTA pill */
.nav-cta-pill {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--cyan);
  padding: 18px 28px;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(47, 190, 197, 0.3);
  transition:
    transform 0.25s var(--ease),
    background 0.25s;
  cursor: pointer;
}
.nav-cta-pill:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   MENU OVERLAY
══════════════════════════════════════════════════════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #060f0e;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  overflow: hidden;
}
.menu-overlay.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

/* Grain inside overlay */
.menu-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.menu-inner {
  display: flex;
  height: 100%;
  width: 100%;
}

/* ─── Left panel ─────────────────────────────────────────── */
.menu-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 60px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.menu-top-logo img {
  height: 32px;
  width: auto;
  opacity: 0.5;
}

/* Nav links */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: -20px;
  overflow-y: auto;
  max-height: calc(100vh - 260px);
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  padding: 6px 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(80px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s;
  transition-delay: var(--link-delay, 0s);
}
.menu-overlay.open .menu-link {
  transform: translateY(0);
  opacity: 1;
}

.menu-link:hover {
  color: var(--cyan);
}
.menu-link:hover .mn {
  color: rgba(47, 190, 197, 0.5);
}
.menu-link:hover .ma {
  opacity: 1;
  transform: translateX(0);
}

/* Number */
.mn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.25s;
  min-width: 28px;
  align-self: flex-start;
  margin-top: 0.5em;
}

/* Arrow */
.ma {
  font-size: 2rem;
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.25s,
    transform 0.25s var(--ease);
  color: var(--cyan);
  margin-left: auto;
  padding-right: 20px;
}

/* Services sub-menu */
.menu-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 4px 0 12px 44px;
  transform: translateY(80px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.44s;
}
.menu-overlay.open .menu-sub {
  transform: translateY(0);
  opacity: 1;
}
.menu-sub a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  border: 1px solid rgba(47, 190, 197, 0.35);
  padding: 5px 13px;
  border-radius: 100px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.menu-sub a:hover {
  background: rgba(47, 190, 197, 0.15);
  border-color: var(--cyan);
  color: var(--white);
}

/* Bottom footer */
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.menu-socials {
  display: flex;
  gap: 24px;
}
.menu-socials a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  cursor: pointer;
}
.menu-socials a:hover {
  color: var(--cyan);
}
.menu-copy {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
}

/* ─── Right panel ────────────────────────────────────────── */
.menu-right {
  width: 38%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 48px 60px;
  position: relative;
  overflow: hidden;
}

/* Giant decorative "&" */
.menu-deco-amp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14rem, 22vw, 22rem);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(47, 190, 197, 0.1);
  color: transparent;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.menu-right-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* Tagline lines */
.menu-tagline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-tagline span {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1.3;
}

/* Contact block */
.menu-contact-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}
.menu-contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.menu-email {
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  cursor: pointer;
  word-break: break-all;
}
.menu-email:hover {
  color: var(--white);
}

/* Stagger reveal for right panel items */
.menu-link-reveal {
  transform: translateY(40px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--link-delay, 0.5s);
}
.menu-overlay.open .menu-link-reveal {
  transform: translateY(0);
  opacity: 1;
}

/* ─── Nav adaptive theme ─────────────────────────────────── */
/* Dark sections (default): dark teal circles */
.nav-circle {
  transition:
    transform 0.3s var(--ease),
    background 0.5s ease,
    box-shadow 0.3s;
}
.nav-cta-pill {
  transition:
    transform 0.25s var(--ease),
    background 0.5s ease,
    color 0.5s ease,
    box-shadow 0.3s;
}

/* Light sections: circles go near-black, pill inverts */
.nav-float[data-nav="light"] .nav-circle {
  background: #111;
}
.nav-float[data-nav="light"] .nav-cta-pill {
  background: var(--dark-teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 68, 66, 0.3);
}
/* Dark sections: restore originals */
.nav-float[data-nav="dark"] .nav-circle {
  background: var(--dark-teal);
}
.nav-float[data-nav="dark"] .nav-cta-pill {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(47, 190, 197, 0.3);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .menu-right {
    display: none;
  }
  .menu-left {
    padding: 28px 32px 36px;
    border-right: none;
  }
  .nav-cta-pill {
    padding: 14px 20px;
    font-size: 0.65rem;
  }
}
@media (max-width: 480px) {
  .nav-float {
    padding: 20px 20px;
  }
  .nav-circle {
    width: 52px;
    height: 52px;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-teal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(47, 190, 197, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 80%,
      rgba(33, 165, 165, 0.06) 0%,
      transparent 60%
    );
}

/* Animated diagonal lines background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(47, 190, 197, 0.03) 80px,
    rgba(47, 190, 197, 0.03) 81px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 80px 100px;
  max-width: 1100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(47, 190, 197, 0.3);
  padding: 8px 18px;
  margin-bottom: 2rem;
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}

.hero-headline .line {
  display: block;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.accent-outline {
  color: var(--cyan);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: translateX(-100%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Rotating badge */
.hero-badge {
  position: absolute;
  bottom: 60px;
  right: 80px;
  width: 130px;
  height: 130px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring {
  position: absolute;
  inset: 0;
  animation: spin 12s linear infinite;
  fill: none;
}
.badge-ring text {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  fill: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
}
.badge-arrow {
  font-size: 1.8rem;
  color: var(--cyan);
  font-weight: 900;
  z-index: 1;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── Hero Game Button ── */
.hero-game-btn {
  position: absolute;
  right: 40px;
  bottom: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1.5px solid var(--cyan);
  border-radius: 50px;
  background: rgba(47, 190, 197, 0.08);
  color: var(--cyan);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 5;
  animation: gameBtnPulse 3s ease-in-out infinite;
  cursor: pointer;
}
.hero-game-btn:hover {
  background: var(--cyan);
  color: var(--black);
  transform: scale(1.05);
}
.hero-game-icon {
  font-size: 1.2rem;
}
@keyframes gameBtnPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(47, 190, 197, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(47, 190, 197, 0.5);
  }
}

@media (max-width: 768px) {
  .hero-game-btn {
    right: 24px;
    bottom: 100px;
    padding: 10px 18px;
    font-size: 0.7rem;
  }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-dark {
  background: var(--black);
}
.marquee-cyan {
  background: var(--cyan);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee 80s linear infinite;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  will-change: transform;
}
.marquee-dark .marquee-track {
  color: var(--white);
}
.marquee-cyan .marquee-track {
  color: var(--black);
}
.marquee-reverse {
  animation-direction: reverse;
}

.marquee-dot {
  color: var(--cyan);
  font-size: 0.6rem;
}
.marquee-cyan .marquee-dot {
  color: rgba(0, 0, 0, 0.4);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ══════════════════════════════════════════════════════════
   VENETIAN BLIND TRANSITION
══════════════════════════════════════════════════════════ */
.blind-wrap {
  height: 240vh;
  position: relative;
  background: var(--dark-teal); /* continuous with hero on scroll-in */
  pointer-events: none;
}

.blind-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  /* Starts matching hero (dark teal), strips will cover in black → seamless to Why Different */
  background: var(--dark-teal);
}

.blind-strip {
  position: absolute;
  top: 0;
  width: 12.5%; /* 8 strips × 12.5% = 100% */
  height: 100%;
  /* No CSS transform - GSAP controls this entirely via fromTo */
  transform-origin: top center;
  will-change: transform;
}

/* Strips are black - covers dark teal background, seamlessly joins the black Why Different section */
.blind-strip:nth-child(1) {
  left: 0%;
  background: #000;
}
.blind-strip:nth-child(2) {
  left: 12.5%;
  background: #040404;
}
.blind-strip:nth-child(3) {
  left: 25%;
  background: #000;
}
.blind-strip:nth-child(4) {
  left: 37.5%;
  background: #040404;
}
.blind-strip:nth-child(5) {
  left: 50%;
  background: #000;
}
.blind-strip:nth-child(6) {
  left: 62.5%;
  background: #040404;
}
.blind-strip:nth-child(7) {
  left: 75%;
  background: #000;
}
.blind-strip:nth-child(8) {
  left: 87.5%;
  background: #040404;
}

/* ══════════════════════════════════════════════════════════
   WHY DIFFERENT
══════════════════════════════════════════════════════════ */
.different {
  background: var(--black);
  padding: 120px 0;
}

.different-header {
  margin-bottom: 80px;
}
.different-header .section-label {
  color: var(--cyan);
}

.different-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}
.different-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.diff-card {
  background: #0a0a0a;
  border-top: 3px solid var(--mid-teal);
  padding: 48px 40px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.diff-card:hover {
  border-color: var(--cyan);
  background: #111;
}

.diff-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 24px;
}

.diff-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.diff-card p {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

/* Stat bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark-teal);
  margin-top: 2px;
}
.stat {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--cyan);
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.stat-divider {
  display: none;
}

/* ══════════════════════════════════════════════════════════
   SERVICES (BENTO)
══════════════════════════════════════════════════════════ */
.services {
  background: var(--off-white);
  padding: 120px 0;
}
.services .section-title em {
  color: var(--mid-teal);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
}

.bento-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.bento-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 68, 66, 0.12);
}
.bento-card:hover::before {
  transform: scaleX(1);
}

.bento-icon {
  font-size: 1.6rem;
  color: var(--dark-teal);
  line-height: 1;
}

.bento-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
}

.bento-card p {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.55);
  flex: 1;
}

.bento-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-teal);
  border: 1.5px solid var(--mid-teal);
  padding: 4px 10px;
  align-self: flex-start;
  margin-top: auto;
}

/* Bento variations */
.bento-large {
  grid-column: span 2;
  background: var(--dark-teal);
  border-color: transparent;
}
.bento-large h3 {
  color: var(--white);
  font-size: 1.5rem;
}
.bento-large p {
  color: rgba(255, 255, 255, 0.65);
}
.bento-large .bento-icon {
  color: var(--cyan);
}
.bento-large .bento-tag {
  color: var(--cyan);
  border-color: rgba(47, 190, 197, 0.4);
}

.bento-accent {
  background: var(--cyan);
  border-color: transparent;
}
.bento-accent h3 {
  color: var(--black);
}
.bento-accent p {
  color: rgba(0, 0, 0, 0.6);
}
.bento-accent .bento-icon {
  color: var(--dark-teal);
}
.bento-accent .bento-tag {
  color: var(--dark-teal);
  border-color: rgba(0, 68, 66, 0.4);
}
.bento-accent::before {
  background: var(--dark-teal);
}

.bento-dark {
  background: var(--black);
  border-color: transparent;
}
.bento-dark h3 {
  color: var(--white);
}
.bento-dark p {
  color: rgba(255, 255, 255, 0.5);
}
.bento-dark .bento-icon {
  color: var(--cyan);
}
.bento-dark .bento-tag {
  color: var(--cyan);
  border-color: rgba(47, 190, 197, 0.3);
}

.bento-mid {
  background: var(--mid-teal);
  border-color: transparent;
}
.bento-mid h3 {
  color: var(--white);
}
.bento-mid p {
  color: rgba(255, 255, 255, 0.7);
}
.bento-mid .bento-icon {
  color: var(--cyan);
}
.bento-mid .bento-tag {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}
.bento-mid::before {
  background: var(--white);
}

.bento-wide {
  grid-column: span 2;
}

/* ══════════════════════════════════════════════════════════
   WORK - Horizontal Scroll
══════════════════════════════════════════════════════════ */
.work {
  background: var(--dark-teal);
  min-height: 100vh;
}

.work-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 100px 40px 60px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

/* Horizontal scroll container */
.work-hscroll-wrap {
  overflow: hidden;
}

.work-hscroll-track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 0 80px 40px;
  width: max-content;
  will-change: transform;
}

/* Individual work card */
.work-card {
  flex-shrink: 0;
  width: 420px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-card-feature {
  width: 600px;
}

.work-card:hover .work-img img {
  transform: scale(1.04);
}
.work-card:hover .work-img-overlay {
  opacity: 1;
}

.work-img {
  height: 420px;
  position: relative;
  overflow: hidden;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.work-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 68, 66, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.work-img-overlay span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  padding: 10px 24px;
}

.work-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.work-info h3 {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}

/* CTA card at end of horizontal scroll */
.work-card-cta {
  flex-shrink: 0;
  width: 320px;
  height: 520px;
  border: 1.5px solid rgba(47, 190, 197, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  text-align: center;
}
.work-card-cta p {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--white);
  padding: 120px 0;
}

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

.testi-card {
  background: var(--off-white);
  padding: 48px 40px;
  position: relative;
  border-top: 3px solid transparent;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.testi-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.testi-card.testi-accent {
  background: var(--dark-teal);
  color: var(--white);
}
.testi-card.testi-accent p {
  color: rgba(255, 255, 255, 0.8);
}
.testi-card.testi-accent:hover {
  border-color: var(--bright-teal);
}

.testi-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testi-card p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
}
.testi-card p em {
  font-style: italic;
  font-weight: 600;
  color: var(--dark-teal);
}
.testi-accent p em {
  color: var(--cyan);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.testi-author span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}
.testi-accent .testi-author span {
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--black);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(47, 190, 197, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 40px;
}

.cta-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(5rem, 16vw, 16rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 48px;
}
.cta-outline {
  color: var(--cyan);
}

.cta-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}

.cta-actions {
  margin-bottom: 48px;
}

.cta-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.social-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.social-link:hover {
  color: var(--cyan);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-teal);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-brand-col {
  gap: 18px;
}
.footer-logo {
  height: 64px;
  width: auto;
  align-self: flex-start;
}
.footer-about {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  margin: 0;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.footer-socials a:hover {
  background: var(--cyan);
  color: var(--dark-teal);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 18px;
}
.footer-heading-sub {
  margin-top: 26px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col li a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col li a:hover {
  color: var(--cyan);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}
.footer-copy {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}
.footer-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 40px;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .footer {
    padding-top: 56px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .different-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large {
    grid-column: span 2;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-card-tall .work-img {
    height: 300px;
  }
  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav {
    padding: 20px 24px;
  }
  .nav.scrolled {
    padding: 16px 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }

  .hero-content {
    padding: 120px 24px 80px;
  }
  .hero-scroll {
    left: 24px;
  }
  .hero-badge {
    right: 24px;
    bottom: 40px;
    width: 100px;
    height: 100px;
  }
  .hero-badge .badge-ring text {
    font-size: 9.5px;
  }
  .hero-badge .badge-arrow {
    font-size: 1.4rem;
  }

  .accent-outline {
    color: var(--cyan);
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card-wide {
    grid-column: span 1;
  }

  .work-header {
    flex-direction: column;
  }

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

  .cta-outline {
    color: var(--cyan);
  }

  .different-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  /* Hero — headline fits mobile width, buttons stack */
  .hero-headline {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }
  .hero-headline .line {
    white-space: normal;
    word-break: normal;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA / contact actions — stack vertically */
  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .cta-actions .btn,
  .cta-actions a {
    text-align: center;
    justify-content: center;
    word-break: break-all;
    font-size: 0.78rem;
    padding: 14px 20px;
  }

  /* Social links row — wrap instead of overflow */
  .cta-socials {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  /* Venetian blinds - shorter on mobile */
  .blind-wrap {
    height: 120vh;
  }

  /* Horizontal work cards - fit mobile viewport */
  .work-card {
    width: 85vw;
  }
  .work-card-feature {
    width: 90vw;
  }

  /* CTA headline - reduce giant font on mobile */
  .cta-headline {
    font-size: clamp(2.8rem, 14vw, 7rem);
    line-height: 0.92;
  }

  /* Inner page heroes - less padding on mobile */
  /* !important needed because each page has inline <style> that overrides */
  .page-hero {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
  }
  .page-hero-inner {
    padding: 0 24px !important;
  }
}

/* ── Extra small screens (< 480px) ───────────────────────── */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.6rem, 7.5vw, 2.5rem);
  }

  .stat-bar {
    grid-template-columns: 1fr;
  }

  .diff-card {
    padding: 28px 20px;
  }

  /* Page hero headings on inner pages */
  .page-hero-inner .hero-headline,
  .page-hero-inner h1 {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  /* CTA headline even smaller at 480px */
  .cta-headline {
    font-size: clamp(2.4rem, 13vw, 5rem);
  }
}

/* ─── Proposals Spotlight (home page) ──────────────────────────── */
.prop-spotlight {
  background: #0a0a0a;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.prop-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.prop-spotlight-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.prop-spotlight-headline em {
  color: var(--cyan);
  font-style: italic;
  font-weight: 300;
}
.prop-spotlight-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}
.prop-spotlight-stat-num {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.prop-spotlight-stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  margin-bottom: 32px;
}
.prop-spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.prop-spotlight-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(47, 190, 197, 0.3);
  color: var(--cyan);
  border-radius: 100px;
}
@media (max-width: 768px) {
  .prop-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── AEO FAQ (details/summary) ─────────────────────────────── */
.aeo-faq {
  padding: 80px 0;
  background: var(--black);
}
.aeo-faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.aeo-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.aeo-faq details:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.aeo-faq summary {
  padding: 22px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.aeo-faq summary::-webkit-details-marker { display: none; }
.aeo-faq summary::after {
  content: '+';
  color: var(--cyan);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.aeo-faq details[open] summary { color: var(--cyan); }
.aeo-faq details[open] summary::after { content: '−'; }
.aeo-faq details p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  padding-bottom: 24px;
  font-size: 0.95rem;
  max-width: 640px;
}
@media (max-width: 768px) {
  .aeo-faq-inner { padding: 0 24px; }
  .aeo-faq summary { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════════
   SHARED QUOTE FORM
   ═══════════════════════════════════════════════════════════ */
.quote-form-section {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.quote-form-section .section-label { color: var(--cyan); }
.quote-form-section .section-title { color: var(--white); margin-bottom: 0; }
.quote-form-section .section-title em { color: var(--cyan); font-style: normal; }
.quote-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.quote-form-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}
.quote-form-card {
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px 40px;
}
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.qf-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.qf-label span { color: rgba(255,255,255,0.25); font-weight: 400; text-transform: none; letter-spacing: 0; }
.qf-input, .qf-select, .qf-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
}
.qf-input:focus, .qf-select:focus, .qf-textarea:focus { border-color: var(--cyan); }
.qf-input::placeholder, .qf-textarea::placeholder { color: rgba(255,255,255,0.25); }
.qf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232fbec5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255,255,255,0.04);
  padding-right: 40px;
}
.qf-select option { background: #0c0c0c; color: #fff; }
.qf-textarea { resize: vertical; min-height: 100px; }
.qf-submit-row { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.qf-submit { width: 100%; justify-content: center; }
.qf-whatsapp { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.4); justify-content: center; }
.qf-whatsapp a { color: var(--cyan); text-decoration: none; font-weight: 700; border-bottom: 1px solid rgba(47,190,197,0.3); padding-bottom: 1px; transition: border-color 0.2s; }
.qf-whatsapp a:hover { border-color: var(--cyan); }
.qf-success { text-align: center; padding: 56px 24px; }
.qf-success-icon { font-size: 2.5rem; display: block; margin-bottom: 20px; color: var(--cyan); }
.qf-success-title { font-size: 1.2rem; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.qf-success-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.qf-error-msg { font-size: 0.82rem; color: #ef4444; margin-top: 8px; text-align: center; display: none; }
@media (max-width: 960px) { .quote-form-inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 600px) {
  .quote-form-card { padding: 32px 24px; }
  .qf-row { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════════════════════════════
   SHARED STICKY WHATSAPP
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .sticky-cta-wa {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    text-decoration: none;
  }
  .sticky-cta-text { flex: 1; }
}
