@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-base: #0A0A0A;
  /* page background */
  --bg-surface: #111111;
  /* cards */
  --bg-surface-2: #161616;
  /* card hover, nav blur bg */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);
  --text-primary: #F5F5F5;
  --text-secondary: #888888;
  --text-tertiary: #555555;
  --accent: #7B61FF;
  /* electric violet */
  --accent-glow: rgba(123, 97, 255, 0.15);
  --nav-height: 72px;
}

/* --- Text Selection --- */
::selection {
  background: #ff0088;
  color: #fff;
}

/* --- Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}

ul {
  list-style: none;
}

/* --- Navigation (Raycast Style) --- */
header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 24px;
  pointer-events: none;
  /* Let clicks pass through header area */
}

@keyframes alien-edge {
  0%   {
    border-color: rgba(0, 220, 255, 0.6);
    box-shadow:
      0 0 4px  1px rgba(0, 220, 255, 0.5),
      0 0 12px 2px rgba(0, 210, 255, 0.22),
      0 0 28px 4px rgba(0, 190, 240, 0.1),
      inset 0 0 8px rgba(0, 220, 255, 0.05);
  }
  35%  {
    border-color: rgba(0, 240, 255, 0.7);
    box-shadow:
      0 0 5px  1px rgba(0, 240, 255, 0.6),
      0 0 16px 3px rgba(0, 235, 255, 0.28),
      0 0 36px 6px rgba(0, 210, 245, 0.13),
      inset 0 0 12px rgba(0, 240, 255, 0.06);
  }
  70%  {
    border-color: rgba(40, 200, 255, 0.55);
    box-shadow:
      0 0 4px  1px rgba(40, 200, 255, 0.45),
      0 0 13px 2px rgba(20, 195, 255, 0.22),
      0 0 30px 5px rgba(0, 185, 245, 0.1),
      inset 0 0 9px rgba(30, 200, 255, 0.05);
  }
  100% {
    border-color: rgba(0, 220, 255, 0.6);
    box-shadow:
      0 0 4px  1px rgba(0, 220, 255, 0.5),
      0 0 12px 2px rgba(0, 210, 255, 0.22),
      0 0 28px 4px rgba(0, 190, 240, 0.1),
      inset 0 0 8px rgba(0, 220, 255, 0.05);
  }
}

nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  height: 52px;
  padding: 0 20px;
  background: rgba(13, 13, 13, 0.22);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav:hover {
  animation: alien-edge 3s ease-in-out infinite;
}

header.scrolled nav {
  background: rgba(13, 13, 13, 0.55);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.98);
}

header.scrolled nav:not(:hover) {
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-logo {
  height: 44px;
  width: auto;
  margin-right: 10px;
}

.brand {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex: 2;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

.cta-nav {
  background: #fff;
  color: #000;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s;
}

.cta-nav:hover {
  transform: translateY(-1px);
  background: #f0f0f0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--bg-surface-2);
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 99;
}

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

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-links a {
  font-size: 18px;
  line-height: 40px;
  color: var(--text-secondary);
}

.cta-mobile {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 10px;
  color: var(--accent) !important;
}

/* --- Hero Section (Sticky Animation) --- */
#hero {
  position: relative;
  height: calc(100vh + 400px);
  background-color: var(--bg-base);
}

.hero-sticky-viewport {
  display: none;
}

.hero-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom fade gradient — replaces the canvas-drawn fade */
.hero-fade {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75vh;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0)    0%,
    rgba(10,10,10,0.08) 30%,
    rgba(10,10,10,0.38) 52%,
    rgba(10,10,10,0.72) 68%,
    rgba(10,10,10,0.93) 82%,
    rgba(10,10,10,1)    100%
  );
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.1s linear;
}

.hero-content {
  position: fixed;
  top: 300px;
  left: 150px;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 80px 0 140px;
  pointer-events: none;
  will-change: transform;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

.hero-text-col {
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Reset to left */
  max-width: 700px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#hero p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-primary);
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.hero-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.vignette {
  display: none;
}


/* Post-hero sections stack above the fixed hero layer */
#tools, #positioning, #services, #process, #who, #cta, footer {
  position: relative;
  z-index: 4;
  background-color: var(--bg-base);
}

/* --- Tools Section --- */
#tools {
  padding: 40px 0;
  border-top: none;
  overflow: hidden;
}

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

.tools-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.tools-marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.tool-logo {
  height: 64px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(1.8);
  transition: opacity 0.2s ease, filter 0.2s ease;
  cursor: default;
  flex-shrink: 0;
}

.tool-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%) brightness(1);
}

/* --- Positioning Statement --- */
#positioning {
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#dotGrid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#positioning .container {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

#positioning h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4;
}

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

/* --- Services Section --- */
#services {
  padding: 80px;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

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

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

.service-card {
  background-color: var(--bg-surface);
  padding: 28px 32px;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  isolation: isolate;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(from var(--border-angle),
    transparent 0deg,
    transparent 50deg,
    rgba(123, 97, 255, 0.4) 100deg,
    rgba(160, 130, 255, 0.85) 150deg,
    rgba(220, 210, 255, 1) 180deg,
    rgba(160, 130, 255, 0.85) 210deg,
    rgba(123, 97, 255, 0.4) 260deg,
    transparent 310deg,
    transparent 360deg
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--bg-surface);
  z-index: -1;
  transition: background 0.2s;
}

.service-card:hover {
  background-color: var(--bg-surface-2);
  transform: scale(1.005);
}

.service-card:hover::before {
  opacity: 1;
  animation: border-spin 3s linear infinite;
}

.service-card:hover::after {
  background: var(--bg-surface-2);
}

.card-badge {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  background: rgba(123, 97, 255, 0.12);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-card .price {
  font-size: 13px;
  color: var(--text-tertiary);
  display: block;
  margin-top: 16px;
}

/* --- Contact Form Block --- */
.contact-form-block {
  margin-top: 1px;
  background: var(--bg-surface);
  padding: 36px 40px;
  position: relative;
  isolation: isolate;
}

.contact-form-block::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(from var(--border-angle),
    transparent 0deg,
    transparent 50deg,
    rgba(123, 97, 255, 0.4) 100deg,
    rgba(160, 130, 255, 0.85) 150deg,
    rgba(220, 210, 255, 1) 180deg,
    rgba(160, 130, 255, 0.85) 210deg,
    rgba(123, 97, 255, 0.4) 260deg,
    transparent 310deg,
    transparent 360deg
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-form-block::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--bg-surface);
  z-index: -1;
}

.contact-form-block:hover::before,
.contact-form-block:focus-within::before {
  opacity: 1;
  animation: border-spin 3s linear infinite;
}

.contact-form-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-header .label {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  white-space: nowrap;
}

.contact-form-header h3 {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}

.contact-form:focus-within {
  border-color: rgba(123, 97, 255, 0.25);
}

/* Field wrapper — handles validation state colours */
.cf-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  min-width: 0;
  transition: border-color 0.3s ease;
}

.cf-field--message {
  flex: 1.6;
}

.cf-field.is-invalid {
  border-right-color: rgba(255, 80, 80, 0.35);
}

.cf-field.is-valid {
  border-right-color: rgba(80, 200, 120, 0.3);
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  outline: none;
  width: 100%;
  min-width: 0;
  transition: background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(123, 97, 255, 0.04);
}

.cf-field.is-invalid input,
.cf-field.is-invalid textarea {
  background: rgba(255, 80, 80, 0.04);
}

.cf-field.is-valid input,
.cf-field.is-valid textarea {
  background: rgba(80, 200, 120, 0.03);
}

/* Validation message — slides in below the input */
.cf-validation-msg {
  display: block;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 100, 100, 0.85);
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
  white-space: nowrap;
}

.cf-field.is-invalid .cf-validation-msg {
  max-height: 24px;
  opacity: 1;
  padding: 3px 18px 6px;
}

/* Expanding textarea */
.contact-form textarea {
  resize: none;
  overflow: hidden;
  line-height: 1.6;
  height: 48px;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease;
}

.contact-form textarea.expanded {
  height: var(--textarea-height, 120px);
}

.contact-form button[type="submit"] {
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  align-self: stretch;
  transition: background 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.01em;
}

.contact-form button[type="submit"]:hover {
  background: #6a50ee;
}

@media (max-width: 767px) {
  .contact-form {
    flex-direction: column;
  }
  .cf-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex: unset;
  }
  .cf-field--message {
    flex: unset;
  }
  .contact-form button[type="submit"] {
    width: 100%;
    padding: 16px;
  }
  .contact-form-header {
    flex-direction: column;
    gap: 4px;
  }
}

/* --- Process Section --- */
#process {
  padding: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.step h3 {
  font-size: 15px;
  font-weight: 500;
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.step-note {
  font-size: 12px;
  color: var(--accent);
  margin-top: 4px;
  display: block;
}

/* --- Who This Is For --- */
#who {
  padding: 80px;
}

.who-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border);
  margin-top: 32px;
}

.who-col {
  background-color: var(--bg-base);
  padding: 48px;
}

.who-col h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
}

.negative h3 {
  color: var(--text-secondary);
}

.who-col ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
}

.who-col ul li::before {
  content: "—";
  color: var(--accent);
  margin-right: 12px;
}

.negative ul li::before {
  color: var(--text-tertiary);
}

/* --- CTA Section --- */
#cta {
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

#cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  background-color: #6a50ee;
}

/* --- Footer --- */
footer {
  padding: 48px 80px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-name {
  font-size: 16px;
  font-weight: 600;
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
}

.tagline {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-social a {
  font-size: 13px;
  color: var(--text-secondary);
  margin-left: 12px;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* --- Booking Modal --- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 94vw);
  height: min(680px, 90vh);
  background: rgba(12, 12, 14, 0.82);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(123, 97, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(123, 97, 255, 0.06);
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.open .booking-modal-panel {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.booking-modal-panel iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  header {
    padding: 0 40px;
  }

  #hero {
    padding: 120px 40px 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  #hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 767px) {
  header {
    padding: 0 24px;
  }

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

  .hamburger {
    display: flex;
  }

  section {
    padding: 64px 24px !important;
  }

  #hero {
    padding-top: 100px !important;
  }

  .hero-content {
    left: 0;
    right: 0;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 24px 72px 24px;
  }

  .hero-text-col {
    max-width: 100%;
    width: 100%;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    margin-bottom: 16px;
  }

  #hero p {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas a {
    text-align: center;
  }

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

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

  .step {
    padding: 0;
    padding-left: 20px;
    border-left: 1px solid var(--accent);
  }

  .who-split {
    grid-template-columns: 1fr;
  }

  .who-col {
    padding: 32px 0;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .footer-social a {
    margin: 0 6px;
  }
}