/* ==========================================================================
   Veralo.io — Brand Design System & Custom Styles
   Brand palette extracted from logo.png:
     Coral      #F0644D
     Indigo     #584A9E
     Lavender   #A189C1
     Rose       #C58BB7
   ========================================================================== */

:root {
  --veralo-coral: #F0644D;
  --veralo-indigo: #584A9E;
  --veralo-lavender: #A189C1;
  --veralo-rose: #C58BB7;
  --veralo-charcoal: #1A1A2E;
  --veralo-slate: #334155;
  --veralo-muted: #64748B;
  --veralo-bg: #FFFFFF;
  --veralo-bg-soft: #FAFAFA;
  --veralo-border: #E2E8F0;
  --veralo-gradient: linear-gradient(135deg, var(--veralo-indigo) 0%, var(--veralo-rose) 45%, var(--veralo-coral) 100%);
  --veralo-gradient-soft: linear-gradient(135deg, rgba(88, 74, 158, 0.08) 0%, rgba(197, 139, 183, 0.06) 50%, rgba(240, 100, 77, 0.08) 100%);
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-height: 4.5rem;
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--veralo-charcoal);
  background-color: var(--veralo-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(88, 74, 158, 0.18);
  color: var(--veralo-charcoal);
}

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

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--veralo-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--veralo-indigo);
}

.section-label::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--veralo-gradient);
  border-radius: 1px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--veralo-slate);
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--veralo-gradient);
  transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--veralo-indigo);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--transition-smooth), box-shadow 0.25s var(--transition-smooth);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--veralo-indigo);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--veralo-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(88, 74, 158, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(88, 74, 158, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--veralo-indigo);
  border: 1.5px solid var(--veralo-border);
}

.btn-secondary:hover {
  border-color: var(--veralo-lavender);
  background: rgba(88, 74, 158, 0.04);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--veralo-bg-soft);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  will-change: transform;
}

.parallax-layer--grid {
  inset: -20%;
  background-image:
    linear-gradient(rgba(88, 74, 158, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 74, 158, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.parallax-layer--orb-1 {
  width: 520px;
  height: 520px;
  top: -8%;
  right: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 100, 77, 0.14) 0%, transparent 68%);
}

.parallax-layer--orb-2 {
  width: 420px;
  height: 420px;
  bottom: 10%;
  left: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 74, 158, 0.12) 0%, transparent 68%);
}

.parallax-layer--arc {
  width: 680px;
  height: 680px;
  top: 12%;
  right: 8%;
  border: 1.5px solid rgba(161, 137, 193, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--veralo-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--veralo-slate);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.hero__card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--veralo-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(88, 74, 158, 0.08);
}

.hero__metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__metric-label {
  font-size: 0.8125rem;
  color: var(--veralo-muted);
}

.trust-bar {
  background: var(--veralo-bg);
  border-top: 1px solid var(--veralo-border);
  border-bottom: 1px solid var(--veralo-border);
}

.trust-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: var(--veralo-gradient-soft);
  color: var(--veralo-indigo);
}

.bento-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
  .bento-card--cloud { grid-column: span 7; }
  .bento-card--ai { grid-column: span 5; }
  .bento-card--devops { grid-column: span 5; }
  .bento-card--security { grid-column: span 7; }
}

.bento-card {
  position: relative;
  padding: 2rem;
  background: var(--veralo-bg);
  border: 1px solid var(--veralo-border);
  border-radius: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s var(--transition-smooth);
}

.bento-card:hover {
  border-color: rgba(161, 137, 193, 0.45);
  box-shadow: 0 12px 40px rgba(88, 74, 158, 0.08);
}

.bento-card__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(88, 74, 158, 0.06);
}

.bento-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  background: var(--veralo-gradient-soft);
  color: var(--veralo-indigo);
}

.tag {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--veralo-indigo);
  background: rgba(88, 74, 158, 0.06);
  border-radius: 999px;
}

.journey {
  position: relative;
  background: var(--veralo-charcoal);
  color: #fff;
  overflow: hidden;
}

.journey-step {
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 2.5rem;
}

.journey-step:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.journey-step__marker {
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--veralo-gradient);
}

.journey-step__phase {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--veralo-lavender);
}

.journey-step__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.metrics {
  background: var(--veralo-bg-soft);
}

.stat-card__value {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-card__value .suffix {
  color: var(--veralo-coral);
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--veralo-bg);
  border: 1px solid var(--veralo-border);
  border-radius: 0.75rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1.5px solid var(--veralo-border);
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--veralo-lavender);
  box-shadow: 0 0 0 3px rgba(161, 137, 193, 0.18);
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-alert--success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #15803D;
}

.form-alert--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #DC2626;
}

.site-footer {
  background: var(--veralo-charcoal);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__logo {
  display: block;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

.footer-legal__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-legal__ids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
  margin: 0 0 1rem;
}

.footer-legal__ids dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.footer-legal__ids dd {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.footer-legal__address {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 639px) {
  .footer-legal__ids {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-legal__ids div {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
  }

  .footer-legal__ids dt {
    min-width: 3.5rem;
    margin-bottom: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

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

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.98);
  padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-smooth);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--veralo-charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pain-card {
  padding: 1.75rem;
  background: var(--veralo-bg);
  border: 1px solid var(--veralo-border);
  border-radius: 0.875rem;
  height: 100%;
}

.pain-card__problem {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--veralo-coral);
}

.container-narrow {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.trust-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
}

.trust-pillar__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--veralo-charcoal);
}

.trust-pillar__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--veralo-muted);
}

.bento-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.journey__gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240, 100, 77, 0.12) 0%, transparent 60%);
}

.journey-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-card__label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--veralo-muted);
}

.cert-badge__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--veralo-indigo);
}

.cert-badge__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: var(--veralo-slate);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--veralo-slate);
}

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

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #EF4444;
}

.form-error {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #DC2626;
}

.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--veralo-muted);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.mobile-nav__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--veralo-charcoal);
  border-bottom: 1px solid var(--veralo-border);
  text-decoration: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.pain-card__solution {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--veralo-slate);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.contact-section {
  position: relative;
  background: var(--veralo-bg);
}

.contact-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__visual {
  position: relative;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* -------------------------------------------------------------------------- */
/* Case studies                                                               */
/* -------------------------------------------------------------------------- */

.case-study-card {
  padding: 2.5rem;
  background: var(--veralo-bg);
  border: 1px solid var(--veralo-border);
  border-radius: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s var(--transition-smooth);
}

.case-study-card:hover {
  border-color: rgba(161, 137, 193, 0.45);
  box-shadow: 0 16px 48px rgba(88, 74, 158, 0.08);
}

.case-study-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.case-study-card__client {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--veralo-coral);
}

.case-study-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-study-card__title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--veralo-charcoal);
  margin-bottom: 1rem;
}

.case-study-card__excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--veralo-muted);
  margin-bottom: 1.5rem;
  max-width: 52rem;
}

.case-study-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.case-study-card__highlights li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--veralo-slate);
}

.case-study-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--veralo-gradient);
}

.case-study-card__highlights strong {
  color: var(--veralo-charcoal);
}

.case-study-card__outcome {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--veralo-gradient-soft);
  border-radius: 0.625rem;
  margin-bottom: 1.5rem;
}

.case-study-card__outcome svg {
  flex-shrink: 0;
  color: var(--veralo-indigo);
  margin-top: 0.125rem;
}

.case-study-card__outcome p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--veralo-charcoal);
  margin: 0;
}

.case-study-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--veralo-indigo);
  text-decoration: none;
  transition: gap 0.25s var(--transition-smooth), color 0.2s ease;
}

.case-study-card__link:hover {
  color: var(--veralo-coral);
  gap: 0.75rem;
}

.case-study-page {
  background: var(--veralo-bg-soft);
}

.case-study-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .case-study-layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

.case-study-content {
  background: var(--veralo-bg);
  border: 1px solid var(--veralo-border);
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .case-study-content {
    padding: 2.5rem 3rem;
  }
}

.case-study-block {
  margin-bottom: 2.5rem;
}

.case-study-block:last-child {
  margin-bottom: 0;
}

.case-study-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--veralo-charcoal);
  margin-bottom: 0.75rem;
}

.case-study-block p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--veralo-slate);
  margin-bottom: 1rem;
}

.case-study-block p:last-child {
  margin-bottom: 0;
}

.case-study-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.case-study-block ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--veralo-slate);
}

.case-study-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--veralo-indigo);
}

.case-study-block--result {
  padding: 1.5rem;
  background: var(--veralo-gradient-soft);
  border-radius: 0.75rem;
}

.case-study-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.case-study-sidebar__card {
  padding: 1.5rem;
  background: var(--veralo-bg);
  border: 1px solid var(--veralo-border);
  border-radius: 0.75rem;
}

.case-study-sidebar__card h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--veralo-muted);
  margin-bottom: 1rem;
}

.case-study-sidebar__card dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.case-study-sidebar__card dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--veralo-muted);
  margin-bottom: 0.25rem;
}

.case-study-sidebar__card dd {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--veralo-charcoal);
  margin: 0;
}

.case-study-tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.case-study-tech-list li {
  font-size: 0.875rem;
  color: var(--veralo-slate);
  padding-left: 1rem;
  position: relative;
}

.case-study-tech-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--veralo-lavender);
  font-size: 0.75rem;
}

/* -------------------------------------------------------------------------- */
/* Mobile & touch optimizations                                               */
/* -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 4rem;
  }

  .container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 2.5rem;
    align-items: flex-start;
  }

  .hero__card {
    padding: 1.25rem;
  }

  .hero__metric-value {
    font-size: 1.5rem;
  }

  .hero__metric-label {
    font-size: 0.75rem;
  }

  .hero__badge {
    font-size: 0.75rem;
    max-width: 100%;
    line-height: 1.4;
  }

  .parallax-layer--orb-1 {
    width: 260px;
    height: 260px;
    top: -4%;
    right: -20%;
  }

  .parallax-layer--orb-2 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: -15%;
  }

  .parallax-layer--arc {
    display: none;
  }

  .trust-grid {
    border: none;
    gap: 0.75rem;
    overflow: visible;
  }

  .trust-grid .trust-pillar {
    border: 1px solid var(--veralo-border);
    border-radius: 0.875rem;
    background: var(--veralo-bg);
  }

  .bento-card {
    padding: 1.25rem;
  }

  .bento-card__number {
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
  }

  .case-study-card {
    padding: 1.25rem;
  }

  .case-study-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study-card__title {
    font-size: 1.25rem;
  }

  .case-study-content {
    padding: 1.25rem;
  }

  .journey-step {
    padding-left: 2rem;
    padding-bottom: 2rem;
  }

  .pain-card {
    padding: 1.25rem;
  }

  .btn--block-mobile {
    width: 100%;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }

  .site-footer .grid {
    gap: 2rem;
  }

  .text-gradient {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 639px) {
  .hero-trust-list li {
    width: 100%;
  }

  .section-label {
    font-size: 0.6875rem;
  }

  h2.text-2xl,
  h2.text-3xl {
    font-size: 1.375rem;
    line-height: 1.25;
  }
}

/* Touch-friendly targets */
.btn,
.hamburger,
.mobile-nav__link,
.nav-link,
.footer-link {
  -webkit-tap-highlight-color: transparent;
}

.hamburger {
  min-width: 44px;
  min-height: 44px;
}

.mobile-nav {
  z-index: 95;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav__link {
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* -------------------------------------------------------------------------- */
/* Cookie consent banner                                                      */
/* -------------------------------------------------------------------------- */

html.cookie-banner-open {
  scroll-padding-bottom: 8rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s var(--transition-smooth), opacity 0.45s var(--transition-smooth);
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--veralo-border);
  border-radius: 0.875rem;
  box-shadow:
    0 -4px 24px rgba(26, 26, 46, 0.08),
    0 8px 32px rgba(88, 74, 158, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 1.75rem;
  }
}

.cookie-banner__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--veralo-charcoal);
  margin-bottom: 0.375rem;
}

.cookie-banner__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--veralo-muted);
  margin: 0;
  max-width: 40rem;
}

.cookie-banner__link {
  color: var(--veralo-indigo);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__link:hover {
  color: var(--veralo-coral);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  flex: 1;
  min-width: 6.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .cookie-banner__btn {
    flex: none;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: 0.75rem;
  }

  .cookie-banner__inner {
    padding: 1rem;
  }
}
