:root {
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #1e1e1e;
  --surface: #2a2a2a;
  --gray-dark: #3d3d3d;
  --gray: #666666;
  --gray-light: #999999;
  --silver: #c0c0c0;
  --light: #e8e8e8;
  --white: #f5f5f5;
  --pure: #ffffff;
  --accent: #888888;
  --border-faint: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-soft: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.expand {
  width: 16px;
  height: 16px;
  background: var(--gray-light);
}

.cursor-ring.expand {
  width: 56px;
  height: 56px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
  transition: background 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  padding: 20px 60px;
  border-bottom: 1px solid var(--border-faint);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

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

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border-strong);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(80, 80, 80, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(60, 60, 60, 0.08) 0%, transparent 60%),
    var(--black);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-eyebrow span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gray);
  vertical-align: middle;
  margin: 0 12px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--silver);
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-light);
  max-width: 500px;
  margin-inline: auto;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
  letter-spacing: 0.03em;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.btn-primary {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--silver);
}

.btn-ghost {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* SECTIONS COMMON */
section {
  position: relative;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--silver);
}

/* ABOUT */
.about {
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-statement {
  margin-top: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-light);
  letter-spacing: 0.01em;
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--border-subtle);
}

.stat {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

/* SERVICES */
.services-section {
  padding: 120px 60px;
  background: var(--dark);
}

.services-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 48px;
}

.services-intro-copy {
  font-size: 14px;
  color: var(--gray);
  max-width: 360px;
  line-height: 1.7;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-faint);
}

.service-card {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.service-card:hover {
  background: var(--mid);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gray-dark);
  margin-bottom: 32px;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  opacity: 0.6;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray);
}

/* SEGMENTS */
.segments {
  padding: 140px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.segments-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 80px;
}

.segments-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
  align-self: end;
}

.segments-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-faint);
}

.segment-item {
  background: var(--black);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.3s;
  position: relative;
}

.segment-item:hover {
  background: var(--mid);
}

.segment-emoji {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.segment-item:hover .segment-emoji {
  filter: grayscale(0);
}

.segment-name {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 400;
}

/* PROCESS */
.process {
  padding: 120px 60px;
  background: var(--dark);
}

.process-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-soft) 20%, var(--border-soft) 80%, transparent);
}

.step {
  padding: 0 24px 0 0;
  position: relative;
}

.step-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-bottom: 32px;
  position: relative;
  background: var(--dark);
}

.step:first-child .step-dot {
  border-color: var(--white);
  background: var(--white);
}

.step-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gray-dark);
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray);
}

/* DIFFERENTIALS */
.differentials {
  padding: 120px 60px;
  background: var(--dark);
}

.diff-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.diff-list {
  margin-top: 48px;
}

.diff-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-faint);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.diff-item:first-child {
  border-top: 1px solid var(--border-faint);
}

.diff-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-dark);
  min-width: 32px;
  padding-top: 2px;
}

.diff-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 6px;
}

.diff-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

.diff-right {
  position: relative;
  height: 500px;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
  z-index: 2;
}

.diff-visual {
  width: 200px;
  height: 200px;
  position: relative;
}

.diff-center-logo {
  width: 120px;
  height: auto;
  display: block;
}

.diff-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: rotate 20s linear infinite;
}

.diff-ring:nth-child(1) {
  inset: 0;
  animation-duration: 20s;
}

.diff-ring:nth-child(2) {
  inset: 20px;
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(255, 255, 255, 0.07);
}

.diff-ring:nth-child(3) {
  inset: 50px;
  animation-duration: 10s;
  border-color: var(--border-soft);
}

.diff-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* CONTACT */
.contact {
  padding: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(60, 60, 60, 0.1) 0%, transparent 70%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.contact-title em {
  font-style: italic;
  color: var(--silver);
}

.contact-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 52px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-details {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

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

.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-item-value {
  font-size: 14px;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item-value:hover {
  color: var(--white);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.65;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-dark);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gray-light);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* LGPD COOKIE BANNER */
.footer-link-btn {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  transition: color 0.3s;
}

.footer-link-btn:hover {
  color: var(--gray-light);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9997;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: cookieSlide 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: contents;
}

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

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cookie-banner-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-light);
}

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

.cookie-link-btn {
  font-family: inherit;
  font-size: inherit;
  color: var(--white);
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: none;
}

.cookie-link-btn:hover {
  color: var(--silver);
}

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

.cookie-btn {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: none;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--white);
  color: var(--black);
}

.cookie-btn-primary:hover {
  background: var(--silver);
}

.cookie-btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
}

.cookie-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* LGPD MODALS */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal-content {
  position: relative;
  background: var(--dark);
  border: 1px solid var(--border-subtle);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 40px 36px;
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray-light);
  font-size: 28px;
  line-height: 1;
  cursor: none;
  padding: 4px 8px;
  transition: color 0.3s;
}

.cookie-modal-close:hover {
  color: var(--white);
}

.cookie-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.cookie-modal-sub {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-light);
  font-weight: 300;
  margin-bottom: 28px;
}

.cookie-modal-sub em {
  color: var(--white);
  font-style: normal;
  font-weight: 500;
}

.cookie-category {
  padding: 20px 0;
  border-top: 1px solid var(--border-faint);
}

.cookie-category:last-of-type {
  border-bottom: 1px solid var(--border-faint);
  margin-bottom: 28px;
}

.cookie-category-head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.cookie-category-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.cookie-category-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  cursor: none;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  transition: all 0.3s;
}

.cookie-switch-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-light);
  border-radius: 50%;
  transition: all 0.3s;
}

.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--white);
  border-color: var(--white);
}

.cookie-switch input:checked + .cookie-switch-slider::before {
  transform: translate(18px, -50%);
  background: var(--black);
}

.cookie-switch input:disabled + .cookie-switch-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-policy {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray-light);
  font-weight: 300;
  margin-bottom: 28px;
}

.cookie-policy p {
  margin-bottom: 14px;
}

.cookie-policy strong {
  color: var(--white);
  font-weight: 500;
}

.cookie-policy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin: 22px 0 8px;
}

.cookie-policy ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.cookie-policy li {
  margin-bottom: 4px;
}

.cookie-policy a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-policy a:hover {
  color: var(--silver);
}

@media (max-width: 900px) {
  nav {
    padding: 24px 30px;
  }

  nav.scrolled {
    padding: 18px 30px;
  }

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

  .hamburger {
    display: flex;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 30px;
  }

  .services-section {
    padding: 80px 30px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .segments {
    padding: 80px 30px;
  }

  .segments-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .segments-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process {
    padding: 80px 30px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .differentials {
    padding: 80px 30px;
  }

  .diff-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .diff-right {
    height: 300px;
  }

  .contact {
    padding: 100px 30px;
  }

  footer {
    padding: 32px 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1;
    min-width: 140px;
  }

  .cookie-modal-content {
    padding: 40px 24px 28px;
  }

  .cookie-modal-title {
    font-size: 26px;
  }

  .cookie-category-head {
    gap: 16px;
  }

  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-modal-actions .cookie-btn {
    flex: 1;
    min-width: 140px;
  }
}
