:root {
  /* Warmed, higher-contrast palette with richer accents */
  --bg: #f9f7fb;
  --bg-alt: #eef3ff;
  --bg-soft: #ffffff;
  --bg-elevated: #fcfcff;
  --accent: #1f4edb;
  --accent-soft: rgba(31, 78, 219, 0.08);
  --accent-strong: #173db5;
  --accent-secondary: #0d9284;
  --text: #0b1220;
  --text-muted: #5c6275;
  --danger: #dc2626;
  --success: #16a34a;
  --border-subtle: #dfe3ee;
  --border-strong: #b6bed9;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --card-radius: var(--radius-lg);
  --shadow-soft: 0 18px 42px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 26px 58px rgba(15, 23, 42, 0.18);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  transition: color 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease;
}

html {
  font-size: 1.03rem;
  scroll-behavior: smooth;
  background: linear-gradient(to bottom, #fbf7ff 0, #eef3ff 220px, #fbfbfe 100%);
}

/* Global layout refinements */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fbf7ff 0%, #eef3ff 45%, #f6f8ff 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.03rem;
  line-height: 1.65;
}

h1,
h2,
h3,
.section-heading,
.case-title,
.step-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

p,
li,
small {
  line-height: 1.65;
  margin-block-end: 0.7rem;
}

p {
  max-width: clamp(28rem, 60vw, 48rem);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: rgba(11, 18, 32, 0.78);
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 247, 255, 0.9) 65%, rgba(255, 255, 255, 0.95) 100%);
  padding-block: clamp(0.2rem, 0.7vw, 0.9rem);
  padding-inline: 0;
}

.wrapper {
  width: 100%;
  max-width: clamp(640px, 90vw, var(--max-width));
  margin: 0 auto;
  padding-block: clamp(1rem, 2vw, 1.8rem);
  padding-inline: clamp(1rem, 3vw, 3rem);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.88) 45%,
    rgba(255, 255, 255, 0.78) 100%
  );
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
  padding-block: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 0;
  gap: 0.55rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand .why-copy {
  gap: 0.1rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #34d399, #0e9f95 50%, #1f4edb 100%);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-text-main {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #0f172a;
}

.brand-text-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links#nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(11, 18, 32, 0.65);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: width 0.3s ease, opacity 0.2s ease;
  opacity: 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
  opacity: 1;
}

.nav-links a.active {
  color: rgba(11, 18, 32, 0.88);
}

.nav-links a.active::after {
  width: 100%;
  opacity: 1;
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-xl);
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
  color: #f9fafb;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  transform: translateY(0);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);
}

.nav-cta:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.nav-cta span.icon {
  display: inline-flex;
  font-size: 0.8rem;
  color: #bbf7d0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  z-index: 60;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20%);
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3.8rem, 6vw, 5.4rem);
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 45%,
      rgba(255, 255, 255, 0.7) 70%,
      rgba(255, 255, 255, 0.45) 100%
    ),
    url("background/AvalanchePass_26.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.74) 55%, rgba(255, 255, 255, 0.4) 82%, rgba(255, 255, 255, 0.18) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3.6fr) minmax(0, 2fr);
  gap: clamp(2.4rem, 3.2vw, 4.2rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag,
.hero-label,
.hero-label-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: var(--accent-strong);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.1rem;
}

.hero-label-pill {
  padding: 0.12rem 0.58rem;
  border-radius: 999px;
  background: rgba(13, 146, 132, 0.18);
  border: 1px solid rgba(13, 146, 132, 0.45);
  color: var(--accent-secondary);
  box-shadow: 0 6px 18px rgba(13, 146, 132, 0.15);
}

.hero-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
  color: #020617;
  max-width: 32rem;
}

.hero-title span.accent {
  background: linear-gradient(120deg, #2563eb, #0e9f95, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.hero-tagline strong {
  color: #111827;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.8rem;
  margin-bottom: 1.9rem;
}

.hero-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-list-item span.bullet {
  margin-top: 0.05rem;
  font-size: 1.05rem;
  color: var(--accent-strong);
}

.hero-cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.btn-primary {
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
  color: #f9fafb;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  transform: translateY(0);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

.btn-primary:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.btn-primary span.icon {
  font-size: 1.1rem;
}

.btn-secondary {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.78rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-secondary:hover {
  background: rgba(11, 18, 32, 0.05);
  border-color: var(--accent-strong);
  transform: scale(1.01);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: #111827;
}

.hero-visual {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--bg-elevated), #fbfcff);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -28%;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(13, 146, 132, 0.18), transparent 55%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.hero-metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.metric-card {
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 3px solid var(--accent-secondary);
  font-size: 0.82rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.metric-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.hero-note-card {
  border-radius: 16px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e5e7eb;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-note-card strong {
  color: #111827;
}

.hero-image-placeholder {
  margin-top: 0.8rem;
  border-radius: 18px;
  padding: 0.35rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%),
              radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.18), transparent 60%),
              rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-image-placeholder.contact-image-frame {
  background: var(--bg-soft);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.12);
}

.hero-image-placeholder .hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
}

.hero-image-placeholder.contact-image-frame .hero-image {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.35);
}

.hero-image-placeholder:hover {
  background-color: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 60%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

/* Sections */

section {
  padding: clamp(2.1rem, 3vw, 3.1rem) 0 clamp(2.5rem, 4vw, 3.4rem);
}

.section-with-background {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-with-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 35%, rgba(255, 255, 255, 0.7) 65%, rgba(255, 255, 255, 0.48) 90%);
  z-index: 0;
  pointer-events: none;
}

.section-with-background .wrapper {
  position: relative;
  z-index: 1;
}

.background-mohonk {
  background-image: url("background/Mohonk-Op-Snowshow25.jpg");
}

.background-gaustatoppen {
  background-image: url("background/Gaustatoppen_05.jpg");
}

.background-svartifoss {
  background-image: url("background/Svartifoss-Op-20.jpg");
}

.background-xcountry {
  background-image: url("background/XCountrySki_03.jpg");
}

.section-heading {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.8vw, 1.75rem);
  margin-bottom: clamp(0.3rem, 0.8vw, 0.6rem);
  color: #020617;
}

.section-tag {
  color: var(--accent-strong);
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--text-muted);
  max-width: clamp(24rem, 38vw, 34rem);
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 2vw, 2.4rem);
  align-items: flex-start;
}

.card,
.card-soft {
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transform: translateY(0);
}

.card-soft {
  border-style: dashed;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.card:hover,
.card-soft:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.list-check li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.list-check span.icon {
  font-size: 1rem;
  color: var(--accent-strong);
  margin-top: 0.05rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin-top: 0.6rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.24rem 0.7rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--accent-soft), rgba(37, 99, 235, 0.08));
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pill:hover,
.pill:focus-visible {
  border-color: var(--accent-strong);
  color: var(--text);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(13, 146, 132, 0.08));
}

/* Social proof */

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  align-items: center;
  justify-content: flex-start;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.logos-row .logos-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 220px;
  flex: 1;
}

.logo-placeholder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15), inset 0 0 18px rgba(37, 99, 235, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.logo-placeholder img {
  max-height: 36px;
}

.logo-placeholder:hover,
.logo-placeholder:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.25), 0 8px 22px rgba(14, 165, 233, 0.25);
}

.logo-placeholder:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.client-logo {
  height: 34px;
  max-height: 34px;
  width: auto;
  display: block;
  margin: 0 auto 0.25rem;
}

.client-logo-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.65);
}

/* Why section */

.why-panel {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.7), rgba(255, 255, 255, 0.85));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: clamp(2.2rem, 3vw, 3.2rem);
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.12);
}

.why-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 1vw, 0.6rem);
  max-width: 840px;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.why-header .section-subtitle {
  margin-bottom: clamp(0.6rem, 1vw, 0.9rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
  align-items: stretch;
}

.why-copy,
.why-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 255, 0.95));
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 1.8vw, 1.7rem);
  grid-auto-rows: minmax(0, 1fr);
  align-items: stretch;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  padding: 1.2rem 1.3rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.28);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 0.65rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.step-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.step-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.outcome-box {
  margin-top: auto;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.18), rgba(59, 130, 246, 0.04));
  border: 1px solid rgba(14, 165, 233, 0.35);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.08);
}

.outcome-title {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.outcome-box p {
  margin: 0;
  font-size: 0.88rem;
  color: #0f172a;
  line-height: 1.5;
  font-weight: 500;
}

#how-it-works {
  padding-block: clamp(1.6rem, 2vw, 2.3rem);
}

#how-it-works .section-subtitle {
  margin-bottom: clamp(0.8rem, 1.8vw, 1.2rem);
}

#how-it-works {
  padding-block: clamp(1.3rem, 1.5vw, 1.8rem);
}

#how-it-works .steps {
  gap: clamp(0.8rem, 1.3vw, 1.1rem);
  align-items: stretch;
  grid-auto-rows: minmax(0, 1fr);
}

#how-it-works .step-card {
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  line-height: 1.3;
}

#how-it-works .step-title {
  font-size: 0.9rem;
}

#how-it-works .step-meta {
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

#how-it-works .list-check {
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

#how-it-works .list-check li {
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  line-height: 1.25;
  padding-right: 0.2rem;
}

#how-it-works .outcome-box {
  padding: 0.7rem 0.85rem;
  margin-top: auto;
}

#how-it-works .outcome-box p {
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 500;
}

/* Split-list for who it's for / not for */

.split-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
  align-items: stretch;
}

.split-list h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #0f172a;
}

.best-fit-card,
.no-fit-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.split-list .card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.best-fit-card {
  background: linear-gradient(180deg, rgba(210, 250, 229, 0.95), rgba(236, 253, 245, 0.9));
  border-color: rgba(16, 185, 129, 0.45);
}

.split-list .card-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  box-sizing: border-box;
  color: #fff;
}

.best-fit-card .card-icon {
  background: linear-gradient(135deg, #0d9488, #0f766e);
}

.no-fit-card .card-icon {
  background: linear-gradient(135deg, #fb7185, #dc2626);
}

.card-content {
  flex: 1;
  min-width: 0;
}

.list-rich {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.list-rich li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.4;
  text-align: left;
}

.icon-check,
.icon-cross {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
  box-shadow: 0 6px 10px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  color: #fff;
}

.icon-check {
  background: linear-gradient(180deg, #bbf7d0, #22c55e);
}

.icon-cross {
  background: linear-gradient(180deg, #fed7d7, #f87171);
}

.example-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .split-list .card {
    flex-direction: column;
  }

  .split-list .card-icon {
    margin: 0 auto;
  }

  .card-content {
    width: 100%;
  }
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.price-tag {
  font-size: 1.9rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 0.2rem 0;
  color: #0f172a;
}

.price-tag span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.price-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.guarantee {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(22, 163, 74, 0.4);
  background: linear-gradient(to bottom right, #ecfdf5, #eff6ff);
  font-size: 0.88rem;
  margin-top: 1rem;
  color: #065f46;
}

.guarantee strong {
  color: #047857;
}

.guarantee .btn-primary {
  margin-top: 0.85rem;
  justify-content: center;
}

/* Principles */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 1.8vw, 1.4rem);
  font-size: 0.86rem;
}

@media (min-width: 1100px) {
  .principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.principle {
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  color: var(--text-muted);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transform: translateY(0);
}

.principle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.principle strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #111827;
}


/* Case studies */

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 1.8vw, 1.9rem);
}

.case-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(254, 250, 255, 0.88) 100%);
  padding: clamp(1.2rem, 2vw, 1.9rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transform: translateY(0);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.18), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 23, 42, 0.15);
}

.case-card:hover::after {
  opacity: 1;
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.case-title h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.35;
  color: #0b1220;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.case-title h3 strong {
  font-size: 1.08em;
}

.case-title h3 small {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.case-meta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  background: rgba(13, 146, 132, 0.12);
  border: 1px solid rgba(13, 146, 132, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.case-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.case-metrics-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #111827;
}

.case-metrics-list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
}

.case-metrics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-secondary);
}

.case-metrics-list li strong {
  color: #111827;
}

.case-outcome {
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.case-outcome span {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.case-outcome p {
  margin: 0;
  color: #111827;
  line-height: 1.5;
}

.case-metrics {
  font-size: 0.8rem;
  color: #111827;
}

.back-to-top {
  margin-top: clamp(1.2rem, 2vw, 1.8rem);
}

.btn-link-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #0b1220;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-link-soft:hover,
.btn-link-soft:focus-visible {
  border-color: rgba(15, 23, 42, 0.4);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
  transform: translateY(-1px);
}
/* Comparison table section */

.comparison-section {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 60%);
}

.comparison-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.15);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.comparison-header {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table thead th {
  text-align: left;
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(37, 99, 235, 0.25);
}

.comparison-table tbody td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #111827;
}

.comparison-table tbody tr:nth-child(odd) {
  background: rgba(37, 99, 235, 0.03);
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  font-weight: 500;
}

.comparison-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  font-size: 0.88rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid transparent;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0;
  color: #111827;
  cursor: pointer;
}

.faq-trigger-icon {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-panel {
  margin-top: 0.8rem;
  line-height: 1.6;
}

.faq-panel p {
  margin: 0;
}

.faq-item.open .faq-trigger-icon {
  transform: rotate(45deg);
  background: rgba(37, 99, 235, 0.18);
}

.faq-panel[hidden] {
  display: none;
}

.faq-item:hover,
.faq-item:focus-within {
  background: var(--bg-elevated);
  border-color: var(--border-subtle);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.faq-item h4 {
  margin: 0 0 0.3rem;
  color: #111827;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.contact-card button[type="submit"] {
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
  color: #f9fafb;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  transform: translateY(0);
}

.contact-card button[type="submit"]:hover,
.contact-card button[type="submit"]:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.contact-card button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

.contact-card button[type="submit"]:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(31, 78, 219, 0.45);
  outline-offset: 2px;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: inset 0 1px 4px rgba(15, 23, 42, 0.12);
}

textarea {
  min-height: 90px;
}

.contact-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-size: 0.85rem;
  color: var(--text-muted);
}

#contact-form {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

#contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

#contact-form .form-field--full,
#contact-form .contact-meta,
#contact-form .form-consent {
  grid-column: 1 / -1;
}

#contact-form textarea {
  min-height: 120px;
}

#contact-form button[type="submit"] {
  width: 100%;
}
.form-consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--accent-secondary);
}
.form-consent label {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.5;
}
.form-consent a {
  color: var(--accent);
  text-decoration: underline;
}
.form-feedback {
  display: none;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 165, 233, 0.4);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.08));
  color: #0f172a;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  margin-bottom: 0;
}
.form-feedback .form-feedback-icon {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #f9fafb;
  font-size: 1rem;
  flex-shrink: 0;
}
.form-feedback.is-visible {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-bottom: 0.85rem;
  max-height: 180px;
  padding: 0.85rem 1rem;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
}
.form-feedback-copy {
  display: block;
  line-height: 1.4;
}

.form-intro {
  margin-bottom: 1rem;
}

.form-intro h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0;
}

.form-intro h2 {
  margin: 0 0 0.35rem;
}

.form-intro p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.contact-badge {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 0.75rem;
  color: #1d4ed8;
}

.contact-badge span.icon {
  font-size: 0.95rem;
}

.hero-image-placeholder strong {
  color: #111827;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: clamp(1rem, 1.8vw, 1.6rem) clamp(0.6rem, 1.8vw, 1.3rem) clamp(1.4rem, 2.4vw, 1.9rem);
  font-size: 0.78rem;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(249, 247, 251, 0.95), rgba(255, 255, 255, 0.98));
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

/* Responsive tuning */

@media (max-width: 1200px) {
  .wrapper {
    padding-inline: clamp(1rem, 2.2vw, 2.5rem);
  }
  .hero-inner {
    gap: clamp(2rem, 2.6vw, 3rem);
  }
  section {
    padding-block: clamp(2rem, 3vw, 3rem);
  }
  p {
    max-width: clamp(28rem, 95vw, 45rem);
  }
}

@media (max-width: 960px) {
  section {
    padding-block: clamp(1.9rem, 3vw, 2.7rem);
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.9rem, 3vw, 2.8rem);
  }
  .hero {
    padding: clamp(2.3rem, 4vw, 3rem) 0 clamp(3rem, 4.5vw, 3.6rem);
  }
  .pricing-grid,
  .grid-two,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 1.8rem);
  }
  .steps,
  .case-grid,
  .principles-grid {
    gap: clamp(1rem, 3vw, 1.7rem);
  }
}

@media (max-width: 1100px) {
  .nav {
    padding: 0.45rem 0;
    gap: 0.8rem;
  }
  .brand-text-main {
    font-size: 0.8rem;
  }
  .brand-text-sub {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .nav-links#nav-menu {
    gap: 0.9rem;
    font-size: 0.82rem;
  }
  .nav-links#nav-menu a {
    padding-inline: 0.2rem;
  }
  .nav-cta {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 768px) {
  .nav {
    position: relative;
    flex-wrap: nowrap;
    padding: 0.7rem 0;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .nav-toggle {
    display: inline-flex;
    padding: 0.45rem 1.05rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: linear-gradient(135deg, rgba(31, 78, 219, 0.15), rgba(13, 146, 132, 0.14));
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text);
    gap: 0.3rem;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
  }
  .nav-links a {
    white-space: normal;
  }
  .nav-cta {
    white-space: normal;
    width: 100%;
    justify-content: center;
    display: none;
  }
  .nav-links#nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border: 1px solid rgba(11, 18, 32, 0.08);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: var(--shadow-hover);
    flex-direction: column;
    padding: 0.4rem 0 0.6rem;
    z-index: 40;
  }
  .nav-links#nav-menu.open {
    display: flex;
    flex-direction: column;
  }
  .nav-links#nav-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.9rem 1.4rem;
    font-size: 0.95rem;
    color: var(--text);
    letter-spacing: 0;
    border-left: 3px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  .nav-links#nav-menu a:hover,
  .nav-links#nav-menu a:focus-visible {
    background: rgba(31, 78, 219, 0.08);
    border-left-color: var(--accent);
  }
  .sticky-cta {
    display: inline-flex;
    justify-content: center;
    width: min(420px, calc(100% - 2rem));
    gap: 0.3rem;
  }
  .hero-inner {
    gap: clamp(1.6rem, 3vw, 2.3rem);
  }
  .hero {
    padding: clamp(1.9rem, 3vw, 2.8rem) 0 clamp(2.4rem, 4vw, 3rem);
  }
  .hero-list {
    grid-template-columns: 1fr;
  }
  section {
    padding-block: clamp(1.5rem, 3vw, 2.2rem);
  }
  .steps,
  .case-grid,
  .principles-grid,
  .pricing-grid,
  .grid-two,
  .contact-grid {
    gap: clamp(0.9rem, 4vw, 1.6rem);
  }
}

@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .nav {
    padding: 0.65rem 0;
  }
  section {
    padding-block: clamp(1rem, 3.6vw, 1.5rem);
  }
  .hero {
    padding: clamp(1.4rem, 3vw, 2.2rem) 0 clamp(2rem, 5vw, 2.5rem);
  }
  .hero-inner {
    gap: clamp(1.2rem, 3vw, 1.8rem);
  }
  .section-heading {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
  }
  .section-subtitle {
    margin-bottom: clamp(0.8rem, 3vw, 1.2rem);
  }
  .steps,
  .case-grid,
  .principles-grid,
  .pricing-grid,
  .grid-two,
  .contact-grid {
    gap: clamp(1.2rem, 5vw, 2rem);
  }
  .wrapper {
    padding-inline: clamp(0.75rem, 3vw, 1.4rem);
  }
}


