:root {
  --bg: #08090c;
  --bg-alt: #0c0e14;
  --bg-footer: #07070a;
  --surface: #12141b;
  --surface-hover: #171a23;
  --border: #23262f;
  --text: #eef0f4;
  --text-dim: #9aa0ae;
  --text-faint: #63687a;
  --brand-navy: #222b57;
  --brand-navy-bright: #5b6bd6;
  --brand-red: #e30613;
  --accent: var(--brand-red);
  --accent-2: var(--brand-navy-bright);
  --accent-grad: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-navy-bright) 100%);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-logo: "Fredoka", "Space Grotesk", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 620px;
  margin-top: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent-grad);
  color: #08090d;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(227, 6, 19, 0.5); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 34px; font-size: 16px; margin-top: 28px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 9, 13, 0.72);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,6,19,0.65) 50%, transparent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-mark {
  height: 26px;
  width: auto;
  color: #fff;
  display: block;
}
.logo-mark-sm { height: 22px; }
.logo-mark-lg { height: 44px; color: var(--brand-navy); }
.logo-word {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 108px;
  letter-spacing: -3px;
  fill: currentColor;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-left: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav a:hover { color: var(--text); }
.nav-current { color: var(--text) !important; position: relative; }
.nav-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text) !important;
}
.nav-cta:hover { border-color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 700px;
  background-image:
    linear-gradient(to right, rgba(91,107,214,0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(91,107,214,0.10) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, black 40%, transparent 100%);
  z-index: 0;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-red {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(227,6,19,0.32) 0%, transparent 70%);
}
.glow-navy {
  width: 480px;
  height: 480px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(91,107,214,0.22) 0%, transparent 70%);
}
.hero-scene {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: min(640px, 56vw);
  height: auto;
  z-index: 1;
  opacity: 0.9;
}
.scene-frame rect,
.scene-frame line { vector-effect: non-scaling-stroke; }
.flow-path {
  stroke-dasharray: 6 10;
  animation: flow-dash 3.5s linear infinite;
}
.flow-2 { animation-duration: 4.5s; animation-direction: reverse; }
.flow-3 { animation-duration: 5.5s; }
@keyframes flow-dash {
  to { stroke-dashoffset: -160; }
}
.cube {
  transform-origin: center;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.45));
  animation: cube-float 6s ease-in-out infinite;
}
.cube-md { animation-duration: 7.5s; animation-delay: -1.5s; }
.cube-sm { animation-duration: 5s; animation-delay: -0.6s; }
@keyframes cube-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .flow-path, .cube, .flow-dot { animation: none !important; }
}
@media (max-width: 1100px) {
  .hero-scene { opacity: 0.55; width: 70vw; right: -10%; }
}
@media (max-width: 640px) {
  .hero-scene { display: none; }
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-family: var(--font-display); font-size: 26px; }
.hero-stats span { font-size: 13.5px; color: var(--text-faint); }

/* Services */
.services { padding: 100px 0; background: var(--bg-alt); }
.services h2, .approach h2, .why h2, .contact h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 4px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227,6,19,0.35);
  background: var(--surface-hover);
}
.service-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 4px rgba(91,107,214,0.22));
}
.service-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.service-card h3 .hl { color: var(--accent); }
.service-card .service-sub { color: var(--text-dim); font-size: 14.5px; margin-bottom: 16px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card li {
  font-size: 13.5px;
  color: var(--text-faint);
  padding-left: 16px;
  position: relative;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Approach */
.approach { padding: 100px 0; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; }
.step-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.timeline-step h3 { font-size: 17px; margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--text-dim); }

/* Why */
.why { padding: 100px 0; background: var(--bg-alt); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-text h2 { margin: 10px 0 16px; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-point h4 { font-size: 15.5px; margin-bottom: 8px; }
.why-point p { font-size: 14px; color: var(--text-dim); }

/* Diagnostic / Calendly */
.diagnostic { padding: 130px 0 100px; text-align: center; background: var(--bg-alt); }
.diagnostic-inner { display: flex; flex-direction: column; align-items: center; }
.diagnostic h2 { margin: 10px 0 8px; }
.diagnostic .section-lead { margin-left: auto; margin-right: auto; }
.diagnostic-widget {
  width: 100%;
  max-width: 760px;
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.diagnostic-alt {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-faint);
}
.diagnostic-alt a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.diagnostic-alt a:hover { color: var(--accent); }

/* Contact */
.contact { padding: 130px 0; text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact h2 { margin: 10px 0 8px; }
.contact .section-lead { margin-left: auto; margin-right: auto; }

.contact-form {
  width: 100%;
  max-width: 520px;
  margin-top: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field select { appearance: none; cursor: pointer; }
.contact-form .btn { align-self: flex-start; }
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  font-size: 14px;
  min-height: 20px;
  margin: 0;
}
.form-status-ok { color: #35d078; }
.form-status-error { color: var(--accent); }
.contact-alt {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-faint);
}
.contact-alt a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.contact-alt a:hover { color: var(--accent); }

/* Divider */
.divider {
  position: relative;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(227,6,19,0.7) 50%, transparent);
}
.divider::after {
  content: "";
  position: absolute;
  inset: -5px 0;
  background: inherit;
  filter: blur(7px);
  opacity: 0.55;
}

/* Footer */
.site-footer {
  background: var(--bg-footer);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
}
.footer-col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  color: var(--text-faint);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s ease;
}
.footer-col-links a:hover { color: var(--accent); }

.footer-col-brand .logo-mark-sm { color: var(--text); margin-bottom: 16px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.55;
  max-width: 300px;
  margin: 0 0 18px;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
}
.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf8e;
  box-shadow: 0 0 8px rgba(62, 207, 142, 0.7);
  flex-shrink: 0;
}

.footer-join p {
  font-size: 13.5px;
  color: var(--text-faint);
  line-height: 1.55;
  margin: 0 0 14px;
}
.footer-email {
  display: inline-block;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.footer-email:hover { color: var(--accent); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social a {
  display: flex;
  color: var(--brand-navy-bright);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-divider {
  position: relative;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--brand-navy-bright) 35%, var(--accent) 65%, transparent);
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  font-size: 12.5px;
  color: var(--text-faint);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a { color: var(--text-faint); text-decoration: none; }
.footer-legal a:hover { color: var(--accent); }
.footer-legal button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-faint);
  cursor: pointer;
}
.footer-legal button:hover { color: var(--accent); }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 30px -10px rgba(0,0,0,0.5);
  padding: 18px 0;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-dim);
  max-width: 640px;
}
.cookie-banner a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner a:hover { color: var(--accent); }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn { padding: 10px 20px; font-size: 14px; }

/* Cookie-gated content placeholder (e.g. Calendly widget) */
.cookie-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  min-height: 260px;
  padding: 40px 24px;
}
.cookie-placeholder p {
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 420px;
  margin: 0;
}
.cookie-placeholder[hidden] { display: none; }

/* Legal pages (mentions légales, confidentialité) */
.legal-page { padding: 160px 0 100px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 {
  font-size: clamp(28px, 3.8vw, 40px);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 44px;
}
.legal-inner h2 {
  font-size: 18px;
  color: var(--text);
  margin: 36px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.legal-inner h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-inner p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-inner ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-inner li {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}
.legal-inner a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.legal-inner a:hover { color: var(--accent); }
.legal-see-also {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Essence / About */
.essence {
  padding: 160px 0 110px;
  background: #161625;
}
.essence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.essence-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.essence-logo-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.essence-logo-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,6,19,0.35) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.essence-logo-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 30px 40px;
  box-shadow: 0 20px 50px -18px rgba(227,6,19,0.4);
}
.essence-logo-img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}
.essence-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.essence-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-navy-bright);
  border: 1px solid var(--brand-navy-bright);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.essence-title {
  font-family: var(--font-logo);
  color: #ffffff;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
}
.essence-text p {
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.essence-text .hl { color: var(--accent); font-weight: 600; }
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-red:hover {
  background: #ff2233;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(227,6,19,0.55);
}
.essence-alt {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-faint);
}
.essence-alt a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.essence-alt a:hover { color: var(--accent); }

.arc-divider {
  background: #161625;
  line-height: 0;
}
.arc-divider svg {
  width: 100%;
  height: 60px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(227,6,19,0.45));
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .essence-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .essence-eyebrow { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-col-brand, .footer-join { grid-column: 1 / -1; }
  .footer-tagline { max-width: none; }
}

@media (max-width: 860px) {
  .nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform 0.3s ease; }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 70px; }
  .hero-stats { gap: 28px; }
  .essence { padding: 130px 0 60px; }
  .essence-logo-glow { padding: 30px; }
  .essence-logo-card { padding: 22px 28px; }
  .essence-logo-img { width: 190px; }
  .arc-divider svg { height: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn { align-self: stretch; }
  .diagnostic { padding: 90px 0 70px; }
  .diagnostic-widget .calendly-inline-widget { height: 780px !important; }
  .legal-page { padding: 130px 0 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal-links { flex-wrap: wrap; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; }
}
