/*
  Elvaron Website - Final Approved Static Build
  Built for Bevantis | Premium static HTML/CSS/JS implementation
*/

:root {
  --navy-950: #06101f;
  --navy-900: #071829;
  --navy-850: #0a1f34;
  --navy-800: #0b243c;
  --navy-700: #123250;
  --green-600: #6f9f1e;
  --green-500: #8abb2a;
  --green-400: #a6d43a;
  --gold-green: #b4cc35;
  --white: #ffffff;
  --paper: #f7fafc;
  --mist: #edf2f7;
  --line: #d9e2ec;
  --text: #102033;
  --muted: #5c6b7a;
  --soft-shadow: 0 18px 50px rgba(5, 18, 34, 0.12);
  --card-shadow: 0 12px 30px rgba(5, 18, 34, 0.08);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--green-500);
  color: var(--navy-950);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
  font-weight: 800;
}
.skip-link:focus {
  left: 12px;
}

.section {
  padding: 92px 0;
}
.section-tight {
  padding: 58px 0;
}
.section-dark {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before,
.footer::before,
.site-hero::before {
  content: "";
  position: absolute;
  inset: auto -20% -1px -20%;
  height: 170px;
  background:
    radial-gradient(
      circle at 18% 100%,
      rgba(138, 187, 42, 0.18),
      transparent 35%
    ),
    repeating-radial-gradient(
      ellipse at 30% 100%,
      transparent 0 11px,
      rgba(138, 187, 42, 0.13) 12px 13px,
      transparent 14px 24px
    );
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}
h2 {
  font-size: clamp(2rem, 3.1vw, 3.4rem);
}
h3 {
  font-size: clamp(1.25rem, 1.55vw, 1.65rem);
}
p {
  margin: 0;
}
.lead {
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  color: var(--muted);
  max-width: 680px;
}
.section-dark .lead {
  color: rgba(255, 255, 255, 0.75);
}
.text-green {
  color: var(--green-500);
}
.text-white {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition:
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header.is-scrolled {
  background: rgba(6, 16, 31, 0.93);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}
.brand img {
  width: 200px;
  height: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 31px 0;
  transition: color 0.2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--green-500);
  transition: width 0.24s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 15px 23px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(138, 187, 42, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(138, 187, 42, 0.32);
}
.btn-outline {
  color: var(--white);
  border-color: var(--green-500);
  background: rgba(6, 16, 31, 0.22);
}
.btn-outline:hover {
  background: rgba(138, 187, 42, 0.12);
}
.btn-dark {
  background: var(--navy-950);
  color: var(--white);
}
.btn-small {
  padding: 11px 17px;
  font-size: 0.8rem;
}

/* Hero */
.site-hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
  padding-top: 112px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 610px;
  gap: 40px;
  z-index: 2;
}
.hero-copy {
  max-width: 650px;
}
.hero-copy .lead {
  margin-top: 24px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-visual {
  position: absolute;
  inset: 0 0 0 38%;
  opacity: 0.95;
  z-index: 1;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy-950) 0%,
    rgba(6, 16, 31, 0.88) 18%,
    rgba(6, 16, 31, 0.38) 45%,
    rgba(6, 16, 31, 0.06) 100%
  );
}
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}
.trust-card {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 18, 34, 0.72);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.trust-title {
  padding: 22px 28px;
  color: var(--green-500);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.86);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-size: 0.9rem;
}
.icon-mini {
  width: 28px;
  height: 28px;
  color: var(--green-500);
  flex: 0 0 auto;
}

/* Cards */
.split-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}
.section-heading {
  margin-bottom: 36px;
}
.section-heading .lead {
  margin-top: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card,
.value-card,
.insight-card,
.panel,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}
.service-card {
  min-height: 245px;
  padding: 24px;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(138, 187, 42, 0.55);
}
.service-icon {
  width: 58px;
  height: 58px;
  color: var(--green-500);
  margin-bottom: 16px;
}
.service-number {
  color: var(--green-500);
  font-weight: 900;
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.service-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.method-strip {
  position: relative;
  padding: 86px 0;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.method-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 8% 60%,
      rgba(138, 187, 42, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(138, 187, 42, 0.12),
      transparent 28%
    );
  opacity: 0.9;
}
.method-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 36px;
  color: var(--green-500);
  font-weight: 900;
  font-size: 1.5rem;
}
.process-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 187, 42, 0.55);
  border-radius: 50%;
  color: var(--green-500);
  background: rgba(255, 255, 255, 0.035);
}
.process-icon svg {
  width: 38px;
  height: 38px;
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 7px;
}
.process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Market & Partner */
.market-partner-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.map-card img {
  width: 100%;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.partner-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.partner-item:last-child {
  border-right: 0;
}
.partner-item svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  color: var(--green-500);
}
.partner-item p {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
}
.testimonial-card {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--card-shadow);
}
.quote-mark {
  font-size: 5rem;
  color: var(--green-500);
  line-height: 0.5;
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}
.testimonial-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--green-500));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}
.testimonial-person strong {
  display: block;
}
.testimonial-person span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--navy-950);
  padding: 34px 0;
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.cta-label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-label svg {
  width: 58px;
  height: 58px;
  color: var(--navy-950);
  opacity: 0.9;
}
.cta-label h2 {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}
.cta-label p {
  color: rgba(6, 16, 31, 0.75);
  font-weight: 700;
}

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  padding: 62px 0 22px;
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 44px;
}
.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}
.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}
.footer h3 {
  font-size: 0.96rem;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li + li {
  margin-top: 9px;
}
.footer a:hover {
  color: var(--green-500);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--green-500);
}
.newsletter {
  display: flex;
  margin-top: 16px;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 13px 14px;
  border-radius: 8px 0 0 8px;
  outline: none;
}
.newsletter button {
  border: none;
  background: var(--green-500);
  color: var(--navy-950);
  width: 48px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-weight: 900;
}
.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}
.footer-links {
  display: flex;
  gap: 22px;
}

/* Internal pages */
.page-hero {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
  padding: 176px 0 92px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 16, 31, 0.98),
      rgba(6, 16, 31, 0.8),
      rgba(6, 16, 31, 0.45)
    ),
    url("../assets/images/hero-mountain.svg") center right / cover no-repeat;
  opacity: 0.94;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  max-width: 800px;
  font-size: clamp(2.8rem, 4.9vw, 5.2rem);
}
.page-hero .lead {
  margin-top: 22px;
  max-width: 720px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: var(--green-500);
}

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.panel {
  padding: 36px;
}
.panel.dark {
  background: var(--navy-950);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}
.panel h2,
.panel h3 {
  margin-bottom: 16px;
}
.panel p + p {
  margin-top: 14px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  color: var(--muted);
}
.panel.dark .check-list li {
  color: rgba(255, 255, 255, 0.76);
}
.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(138, 187, 42, 0.14);
  color: var(--green-500);
  font-weight: 900;
  flex: 0 0 auto;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--card-shadow);
}
.stat-card strong {
  display: block;
  color: var(--green-600);
  font-size: 2rem;
  line-height: 1;
  font-family: Montserrat, Inter, sans-serif;
}
.stat-card span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 30px;
}
.value-card svg {
  width: 54px;
  height: 54px;
  color: var(--green-500);
  margin-bottom: 18px;
}
.value-card h3 {
  margin-bottom: 10px;
}
.value-card p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}
.timeline-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  color: var(--green-500);
  font-weight: 900;
  font-family: Montserrat, Inter, sans-serif;
}
.timeline-item h3 {
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--muted);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  overflow: hidden;
}
.insight-image {
  height: 190px;
  background:
    linear-gradient(135deg, rgba(6, 16, 31, 0.9), rgba(6, 16, 31, 0.35)),
    url("../assets/images/hero-mountain.svg") center / cover no-repeat;
}
.insight-body {
  padding: 26px;
}
.insight-body .tag {
  display: inline-flex;
  color: var(--green-600);
  background: rgba(138, 187, 42, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
}
.insight-body h3 {
  margin-bottom: 12px;
}
.insight-body p {
  color: var(--muted);
}
.read-more {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--green-600);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list svg {
  width: 24px;
  height: 24px;
  color: var(--green-500);
}
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}
.contact-list strong {
  display: block;
}
.form-card {
  padding: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field.full {
  grid-column: 1 / -1;
}
label {
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--text);
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(138, 187, 42, 0.14);
}
.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 14px;
}
.form-status {
  margin-top: 16px;
  color: var(--green-600);
  font-weight: 800;
  min-height: 24px;
}

/* Utilities */
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-44 {
  margin-top: 44px;
}
.center {
  text-align: center;
}
.center .lead {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-grid,
  .method-grid,
  .market-partner-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    inset: 0;
    opacity: 0.55;
  }
  .hero-visual::after {
    background: linear-gradient(
      90deg,
      rgba(6, 16, 31, 0.96),
      rgba(6, 16, 31, 0.72)
    );
  }
  .process-row {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .nav-menu {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(6, 16, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  }
  body.nav-open .nav-menu {
    display: flex;
  }
  .nav-link {
    padding: 15px 12px;
  }
  .nav-link::after {
    bottom: 9px;
    left: 12px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-actions .btn {
    display: none;
  }
  .site-hero {
    min-height: 650px;
  }
  .trust-card {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stats-row,
  .value-grid,
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .navbar {
    min-height: 74px;
  }
  .brand img {
    width: 166px;
  }
  .nav-menu {
    top: 74px;
  }
  .site-hero {
    padding-top: 96px;
    min-height: auto;
  }
  .hero-grid {
    min-height: 560px;
  }
  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
  .hero-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .services-grid,
  .content-grid-2,
  .stats-row,
  .value-grid,
  .insights-grid,
  .partner-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .partner-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .partner-item:last-child {
    border-bottom: 0;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .section {
    padding: 68px 0;
  }
  .page-hero {
    padding: 140px 0 76px;
  }
}
/* Sprint 1: Move hero content closer to the header */
.hero-copy {
  transform: translateY(-85px);
}

@media (max-width: 900px) {
  .hero-copy {
    transform: translateY(0);
  }
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}
.hero-copy .lead {
  color: #ffffff;
  font-size: 0.95rem;
}
/* Sprint 1: Approved hero heading size */
.hero-title,
.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3rem, 3.65vw, 3.95rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
/* Sprint 1: Move trust strip closer to hero content */
.trust-strip {
  margin-top: -87px;
}
/* Sprint 1: Trust strip image icons */
.trust-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}
/* Sprint 1: Approved premium hero background image */
.hero-visual {
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
/* Sprint 1: Refine approved hero mountain background positioning */
.hero-visual {
  overflow: hidden;
}

.hero-visual img {
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center right;
  transform: scale(0.92) translateY(34px);
  transform-origin: center right;
}
/* Sprint 1: Make hero background visible across full section */
.hero-visual {
  inset: 0;
}

.hero-visual::after {
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.76) 0%,
      rgba(3, 12, 25, 0.58) 24%,
      rgba(3, 12, 25, 0.28) 48%,
      rgba(3, 12, 25, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 12, 25, 0.42) 0%,
      rgba(3, 12, 25, 0.05) 48%,
      rgba(3, 12, 25, 0.68) 100%
    );
}
/* Sprint 1: Extend dark navy hero overlay to far left border */
.hero-visual::after {
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.96) 0%,
      rgba(3, 12, 25, 0.9) 18%,
      rgba(3, 12, 25, 0.72) 34%,
      rgba(3, 12, 25, 0.38) 55%,
      rgba(3, 12, 25, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 12, 25, 0.4) 0%,
      rgba(3, 12, 25, 0.08) 45%,
      rgba(3, 12, 25, 0.72) 100%
    );
}
/* Sprint 1: Hero lime divider under headline */
.hero-title::after,
.hero-copy h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--green-500);
}

/* Sprint 1: Hero paragraph spacing below divider */
.hero-copy .lead {
  margin-top: 0;
}
/* =========================================================
   Sprint 1: What We Do section approved layout
   ========================================================= */

.what-we-do-section {
  background: #f8fafc;
  padding: 72px 0 78px;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.what-we-do-copy {
  max-width: 360px;
  padding-top: 8px;
}

.what-we-do-copy .eyebrow {
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.what-we-do-copy h2 {
  max-width: 340px;
  color: var(--navy-950);
  font-size: clamp(2rem, 2.1vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0;
}

.section-divider {
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--green-500);
  margin: 24px 0 24px;
}

.what-we-do-copy p:not(.eyebrow) {
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.services-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.services-grid-preview .service-card {
  min-height: 232px;
  padding: 28px 26px 26px;
  border: 1px solid rgba(10, 31, 55, 0.12);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(10, 31, 55, 0.08);
}

.services-grid-preview .service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  object-fit: contain;
}

.services-grid-preview .service-card h3 {
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.services-grid-preview .service-card p {
  color: var(--slate-700);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1180px) {
  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .what-we-do-copy {
    max-width: 720px;
  }

  .services-grid-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .what-we-do-section {
    padding: 58px 0 64px;
  }

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

  .services-grid-preview .service-card {
    min-height: auto;
  }
}
/* Sprint 1: What We Do copy block refinement */
.what-we-do-copy {
  max-width: 330px;
  padding-top: 2px;
}

.what-we-do-copy .eyebrow {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--green-600);
}

.what-we-do-copy h2 {
  max-width: 320px;
  font-size: 2.05rem;
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--navy-950);
}

.what-we-do-copy .section-divider {
  width: 52px;
  height: 3px;
  margin: 22px 0 22px;
  background: var(--green-500);
  border-radius: 999px;
}

.what-we-do-copy p:not(.eyebrow) {
  max-width: 315px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate-700);
}

.what-we-do-copy .btn {
  margin-top: 26px;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 7px;
  font-size: 0.86rem;
}
/* Sprint 1: Force What We Do title into approved 3-line layout */
.what-we-do-title {
  max-width: 360px;
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--navy-950);
}

.what-we-do-title-line {
  display: block;
  white-space: nowrap;
}
/* Sprint 1: Make What We Do service cards square */
.services-grid-preview .service-card {
  aspect-ratio: 1 / 1;
  min-height: unset;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 24px 22px;
}

.services-grid-preview .service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
}

.services-grid-preview .service-card h3 {
  font-size: 0.95rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.services-grid-preview .service-card p {
  font-size: 0.86rem;
  line-height: 1.5;
}
/* Sprint 1: Refine What We Do service cards layout */
.what-we-do-grid {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 52px;
}

.services-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 20px 22px;
  align-items: stretch;
}

.services-grid-preview .service-card {
  aspect-ratio: unset;
  min-height: 205px;
  height: 205px;
  padding: 22px 22px 20px;
  border-radius: 9px;
  overflow: hidden;
}

.services-grid-preview .service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.services-grid-preview .service-card h3 {
  font-size: 0.9rem;
  line-height: 1.12;
  margin-bottom: 8px;
  font-weight: 800;
}

.services-grid-preview .service-card {
  min-height: 205px;
  height: 205px;
  padding: 18px 22px 18px;
  border-radius: 9px;
  overflow: hidden;
}
/* Sprint 1: Make What We Do service cards wider */
.what-we-do-section .container {
  max-width: 1380px;
}

.what-we-do-grid {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
}

.services-grid-preview {
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 20px 24px;
}

.services-grid-preview .service-card {
  min-height: 235px;
  height: 235px;
}
/* Sprint 1: Widen What We Do service cards */
.what-we-do-section .container {
  max-width: 1800px;
}

.what-we-do-grid {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
}

.services-grid-preview {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 20px 24px;
}
/* Sprint 1: Align What We Do copy block with service cards */
.what-we-do-grid {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.what-we-do-copy {
  max-width: 360px;
}

.what-we-do-title {
  max-width: 360px;
  font-size: 1.9rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.what-we-do-title-line {
  display: block;
  white-space: nowrap;
}
/* Sprint 1: Premium service card hover interaction */
.services-grid-preview .service-card {
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.services-grid-preview .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 187, 42, 0.55);
  box-shadow:
    0 22px 45px rgba(10, 31, 55, 0.12),
    0 0 0 1px rgba(138, 187, 42, 0.16);
}

.services-grid-preview .service-card:hover .service-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 14px rgba(138, 187, 42, 0.22));
}

.services-grid-preview .service-icon {
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.services-grid-preview .service-card:hover .service-learn-more {
  opacity: 1;
  transform: translateY(0);
}

.service-learn-more:hover {
  color: var(--navy-950);
}

@media (max-width: 900px) {
  .service-learn-more {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Sprint 1: Increase service card height for hover CTA */
.services-grid-preview .service-card {
  min-height: 255px;
  height: 255px;
  display: flex;
  flex-direction: column;
}
/* Sprint 1: Widen service cards for better hover CTA spacing */
.what-we-do-section .container {
  max-width: 1500px;
}

.what-we-do-grid {
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 50px;
}

.services-grid-preview {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 22px 26px;
}

.services-grid-preview .service-card {
  min-height: 225px;
  height: 225px;
  display: flex;
  flex-direction: column;
}
/* Sprint 1: Add breathing space between What We Do copy and service cards */
.what-we-do-grid {
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 82px;
}

.what-we-do-copy {
  max-width: 340px;
}

.what-we-do-title {
  max-width: 340px;
}
/* =========================================================
   Sprint 1: How We Work section approved layout
   ========================================================= */

.how-we-work-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(138, 187, 42, 0.12),
      transparent 26%
    ),
    linear-gradient(135deg, #06101f 0%, #07182c 48%, #03101f 100%);
  color: #ffffff;
  padding: 66px 0 58px;
}

.how-we-work-section::before {
  content: "";
  position: absolute;
  inset: auto 0 -80px 0;
  height: 180px;
  background: repeating-radial-gradient(
    ellipse at 14% 100%,
    rgba(138, 187, 42, 0.18) 0 1px,
    transparent 1px 14px
  );
  opacity: 0.32;
  pointer-events: none;
}

.how-we-work-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.how-we-work-copy .eyebrow {
  color: var(--green-500);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.how-we-work-copy h2 {
  max-width: 360px;
  color: #ffffff;
  font-size: clamp(2rem, 2.45vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.how-we-work-steps {
  display: grid;
  grid-template-columns: 120px 52px 120px 52px 120px 52px 120px 52px 120px;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.how-step {
  text-align: center;
}

.how-step-icon {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}

.how-step h3 {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 8px;
}

.how-step p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

.how-arrow {
  width: 52px;
  height: 22px;
  object-fit: contain;
  margin-top: 40px;
  opacity: 0.85;
}

@media (max-width: 1180px) {
  .how-we-work-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .how-we-work-copy h2 {
    max-width: 680px;
  }

  .how-we-work-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .how-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .how-we-work-section {
    padding: 58px 0;
  }

  .how-we-work-steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .how-step-icon {
    width: 92px;
    height: 92px;
  }
}
/* Sprint 1: Force How We Work title into approved 2-line layout */
.how-we-work-title {
  max-width: 460px;
  color: #ffffff;
  font-size: clamp(2rem, 2.45vw, 2.65rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.how-title-line {
  display: block;
  white-space: nowrap;
}
/* Sprint 1: Refine How We Work heading alignment */
.how-we-work-grid {
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.how-we-work-copy {
  max-width: 420px;
}

.how-we-work-copy .how-we-work-title {
  max-width: 420px;
  font-size: clamp(1.75rem, 2vw, 2.15rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
}

.how-title-line {
  display: block;
  white-space: nowrap;
}
/* Sprint 1: Reduce How We Work heading size */
.how-we-work-copy .how-we-work-title {
  font-size: clamp(1.55rem, 1.7vw, 1.85rem);
  line-height: 1.3;
  font-weight: 700;
}
/* Sprint 1: Move How We Work section content upward */
.how-we-work-section {
  padding-top: 38px;
  padding-bottom: 50px;
}

.how-we-work-grid {
  align-items: start;
}
/* Sprint 1: Force Review step text into 2 lines */
.two-line-text span {
  display: block;
  white-space: nowrap;
}
/* Sprint 1: Force How We Work step text into 2 lines */
.two-line-text span {
  display: block;
  white-space: nowrap;
}
/* Sprint 1: Apply approved How We Work background image */
.how-we-work-section {
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.88) 0%,
      rgba(3, 12, 25, 0.72) 35%,
      rgba(3, 12, 25, 0.42) 70%,
      rgba(3, 12, 25, 0.3) 100%
    ),
    url("../assets/images/elvaron-how-we-work-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.how-we-work-section::before {
  display: none;
}
/* Sprint 1: Restore Market Exposure section to approved two-column layout */
.market-partner-section {
  background: #f8fafc;
  padding: 64px 0 58px;
}

.market-partner-section .market-partner-grid {
  display: grid !important;
  grid-template-columns: 48% 52% !important;
  gap: 46px !important;
  align-items: start !important;
  max-width: 1320px;
}

.market-partner-section .market-column {
  display: block !important;
  padding-right: 42px;
  border-right: 1px solid rgba(10, 31, 55, 0.14);
}

.market-partner-section .partner-column {
  display: block !important;
  padding-left: 0;
}

.market-partner-section .market-column .eyebrow,
.market-partner-section .partner-column > .eyebrow {
  text-align: left !important;
  color: var(--green-500);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.market-partner-section .market-column h2 {
  max-width: 560px;
  color: var(--navy-950);
  font-size: clamp(1.75rem, 2vw, 2.15rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
}

.market-partner-section .market-column .map-card {
  width: 100%;
  max-width: 620px;
  margin-top: 26px !important;
  margin-bottom: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.market-partner-section .market-column .map-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.market-partner-section .market-column .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-600);
  font-size: 0.9rem;
  font-weight: 900;
  margin-top: 0;
}

.market-partner-section .partner-column .partner-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0 !important;
  width: 100% !important;
  margin-top: 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.market-partner-section .partner-column .partner-item {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(10, 31, 55, 0.12);
  border-radius: 0;
  box-shadow: none;
  min-height: 145px;
  padding: 0 18px;
  text-align: center;
}

.market-partner-section .partner-column .partner-item:last-child {
  border-right: 0;
}

.market-partner-section .partner-column .partner-item svg {
  width: 58px;
  height: 58px;
  color: var(--green-500);
  margin: 0 auto 18px;
}

.market-partner-section .partner-column .partner-item p {
  color: var(--navy-950);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
  margin: 0;
}

.market-partner-section .partner-column .testimonial-card {
  width: 100%;
  margin-top: 42px;
  padding: 34px 42px;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 55, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 31, 55, 0.08);
}
/* Sprint 1: Correct Market Exposure section to match approved reference */
.market-partner-section {
  background: #f8fafc;
  padding: 58px 0 54px;
}

.market-partner-section .market-partner-grid {
  display: grid !important;
  grid-template-columns: 47% 53% !important;
  gap: 42px !important;
  align-items: start !important;
  max-width: 1380px !important;
}

.market-column {
  padding-right: 42px;
  border-right: 1px solid rgba(10, 31, 55, 0.14);
}

.partner-column {
  padding-left: 0;
}

.market-column .eyebrow,
.partner-column > .eyebrow {
  color: var(--green-500);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
  text-align: left !important;
}

.market-title {
  max-width: 580px;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
}

.market-title span {
  display: block;
}

.market-column .map-card {
  width: 100%;
  max-width: 610px;
  margin-top: 26px;
  margin-bottom: 22px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.market-map-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none !important;
}

.market-column .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-600);
  font-size: 0.9rem;
  font-weight: 900;
  margin-top: 0;
}

.partner-column .partner-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  width: 100% !important;
  margin: 28px 0 0 !important;
  gap: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.partner-column .partner-item {
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid rgba(10, 31, 55, 0.12) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 145px;
  padding: 0 16px;
  text-align: center;
}

.partner-column .partner-item:last-child {
  border-right: 0 !important;
}

.partner-column .partner-item svg {
  width: 58px;
  height: 58px;
  color: var(--green-500);
  margin: 0 auto 18px;
}

.partner-column .partner-item p {
  color: var(--navy-950);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
  margin: 0;
}

.partner-column .testimonial-card {
  width: 100%;
  margin-top: 42px;
  padding: 34px 42px;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 55, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 31, 55, 0.08);
}
/* Sprint 1: Slightly enlarge Market Exposure map */
.market-column .map-card {
  max-width: 680px;
  width: calc(100% + 34px);
}

.market-column .market-map-image {
  width: 100%;
  height: auto;
}
/* Sprint 1: Enlarge Market Exposure map only */
.market-partner-section .market-partner-grid {
  grid-template-columns: 50% 50% !important;
  gap: 36px !important;
}

.market-partner-section .market-column {
  padding-right: 32px !important;
}

.market-partner-section .market-column .map-card {
  max-width: 760px !important;
  width: 100% !important;
  margin-top: 28px !important;
  margin-bottom: 22px !important;
  overflow: visible !important;
}

.market-partner-section .market-column .market-map-image {
  width: 100% !important;
  max-width: 760px !important;
  height: auto !important;
  transform: scale(1.1) !important;
  transform-origin: center center !important;
}
/* Sprint 1: Reduce Market Exposure heading size */
.market-partner-section .market-title {
  font-size: clamp(1.3rem, 1.6vw, 1.7rem) !important;
  line-height: 1.22;
  font-weight: 700;
}
/* Sprint 1: Adjust partner grid after removing Investors & Funders */
.partner-column .partner-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
/* Sprint 1: Partner icon image replacement */
.partner-column .partner-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.partner-column .partner-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}
/* Sprint 1: Keep partner divider lines and add spacing inside cards */
.partner-column .partner-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
}

.partner-column .partner-item {
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
  padding: 0 24px !important;
}

.partner-column .partner-item:last-child {
  border-right: 0 !important;
}

.partner-column .partner-icon {
  margin-bottom: 18px !important;
}

.partner-column .partner-item p {
  max-width: 150px;
  margin: 0 auto !important;
}
/* Sprint 1: Force partner labels into clean two-line layout */
.partner-column .partner-label {
  max-width: none !important;
  margin: 0 auto !important;
  text-align: center;
  line-height: 1.32;
}

.partner-column .partner-label span {
  display: block;
  white-space: nowrap;
}
/* Sprint 1: Testimonial avatar and rotation polish */
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(10, 31, 55, 0.18);
}

.testimonial-card {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.testimonial-card.is-changing {
  opacity: 0;
  transform: translateY(8px);
}
/* Sprint 1: Mobile fix for Market Exposure section */
@media (max-width: 900px) {
  .market-partner-section {
    padding: 44px 0 42px !important;
  }

  .market-partner-section .market-partner-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    max-width: 100% !important;
  }

  .market-partner-section .market-column {
    padding-right: 0 !important;
    border-right: 0 !important;
  }

  .market-partner-section .partner-column {
    padding-left: 0 !important;
  }

  .market-column .eyebrow,
  .partner-column > .eyebrow {
    font-size: 0.72rem !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  .market-partner-section .market-title {
    max-width: 100% !important;
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
  }

  .market-partner-section .market-column .map-card {
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 22px !important;
    margin-bottom: 18px !important;
  }

  .market-partner-section .market-column .market-map-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    transform: none !important;
  }

  .market-column .read-more {
    font-size: 0.86rem !important;
    line-height: 1.4 !important;
  }

  .partner-column .partner-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 0 !important;
    margin-top: 22px !important;
  }

  .partner-column .partner-item {
    min-height: 150px !important;
    padding: 0 18px !important;
    border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
  }

  .partner-column .partner-item:nth-child(2),
  .partner-column .partner-item:nth-child(4) {
    border-right: 0 !important;
  }

  .partner-column .partner-icon {
    width: 52px !important;
    height: 52px !important;
    margin-bottom: 14px !important;
  }

  .partner-column .partner-label {
    font-size: 0.82rem !important;
    line-height: 1.28 !important;
  }

  .partner-column .partner-label span {
    display: block !important;
    white-space: normal !important;
  }

  .partner-column .testimonial-card {
    width: 100% !important;
    margin-top: 32px !important;
    padding: 28px 24px !important;
  }

  .partner-column .testimonial-card blockquote {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .testimonial-person {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .testimonial-avatar {
    width: 48px !important;
    height: 48px !important;
  }
}
/* Sprint 1: Full mobile responsiveness repair */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 100%) !important;
    max-width: 100% !important;
    margin-inline: auto !important;
  }

  /* Header / navigation */
  .site-header {
    width: 100%;
  }

  .navbar {
    min-height: 72px;
  }

  .brand img {
    max-width: 150px;
    height: auto;
  }

  .nav-actions .btn {
    display: none;
  }

  /* Hero mobile repair */
  .site-hero {
    min-height: auto !important;
    padding: 96px 0 48px !important;
  }

  .hero-grid {
    display: block !important;
    min-height: auto !important;
  }

  .hero-copy {
    max-width: 100% !important;
    transform: none !important;
  }

  .hero-title,
  .hero-copy h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 10vw, 2.65rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
  }

  .hero-title-line {
    white-space: normal !important;
  }

  .hero-copy .lead {
    max-width: 100% !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    position: relative !important;
    margin-top: 0 !important;
  }

  .trust-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* What We Do mobile repair */
  .what-we-do-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .what-we-do-copy {
    max-width: 100% !important;
  }

  .what-we-do-title {
    max-width: 100% !important;
    font-size: clamp(1.7rem, 8vw, 2.1rem) !important;
  }

  .what-we-do-title-line {
    white-space: normal !important;
  }

  .services-grid-preview {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .services-grid-preview .service-card {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* How We Work mobile repair */
  .how-we-work-section {
    padding: 44px 0 !important;
  }

  .how-we-work-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .how-we-work-copy,
  .how-we-work-title {
    max-width: 100% !important;
  }

  .how-title-line {
    white-space: normal !important;
  }

  .how-we-work-steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .how-arrow {
    display: none !important;
  }

  .how-step-icon {
    width: 86px !important;
    height: 86px !important;
  }

  .two-line-text span {
    white-space: normal !important;
  }

  /* Market Exposure mobile repair */
  .market-partner-section {
    padding: 44px 0 !important;
  }

  .market-partner-section .market-partner-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 42px !important;
    max-width: 100% !important;
  }

  .market-column {
    padding-right: 0 !important;
    border-right: 0 !important;
  }

  .partner-column {
    padding-left: 0 !important;
  }

  .market-partner-section .market-title {
    max-width: 100% !important;
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 1.18 !important;
  }

  .market-title span {
    display: block !important;
    white-space: normal !important;
  }

  .market-column .map-card {
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 22px !important;
    margin-bottom: 18px !important;
  }

  .market-column .market-map-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    transform: none !important;
  }

  .partner-column .partner-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px 0 !important;
    margin-top: 24px !important;
  }

  .partner-column .partner-item {
    min-height: 135px !important;
    padding: 0 14px !important;
  }

  .partner-column .partner-item:nth-child(2),
  .partner-column .partner-item:nth-child(4) {
    border-right: 0 !important;
  }

  .partner-column .testimonial-card {
    width: 100% !important;
    margin-top: 34px !important;
    padding: 28px 22px !important;
  }

  .partner-column .testimonial-card blockquote {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* CTA band mobile repair */
  .cta-band,
  .cta-section {
    padding: 34px 0 !important;
  }

  .cta-band .container,
  .cta-section .container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    text-align: left !important;
  }
}
/* Sprint 1: Center footer country exposure list */
.footer-country-list {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  line-height: 1.7;
  text-align: center;
}
/* Sprint 1: Official logo header sizing */
.brand img {
  width: 170px;
  height: auto;
}
/* Sprint 1: Official footer logo sizing */
.footer-brand img {
  width: 180px;
  height: auto;
}
/* Sprint 1: Reduce official footer logo size */
.site-footer .footer-brand img,
.site-footer .brand img {
  width: 1800px;
  max-width: 100%;
  height: auto;
}
/* Sprint 1: Force footer logo smaller */
.site-footer img.footer-logo-img {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  display: block;
}
.site-footer img.footer-logo-img {
  width: 160px !important;
  max-width: 160px !important;
  height: auto !important;
  display: block;
}
/* Sprint 1: Force official footer logo size */
.footer-logo-img {
  width: 170px !important;
  max-width: 170px !important;
  height: auto !important;
  display: block !important;
}
/* Sprint 1: Footer logo spacing */
.footer-logo-img {
  width: 170px !important;
  max-width: 170px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 14px !important;
}
.footer-logo-img {
  width: 170px !important;
  max-width: 170px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 14px !important;
}
/* Sprint 2: About Us hero background */
.about-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.96) 0%,
      rgba(3, 12, 25, 0.88) 30%,
      rgba(3, 12, 25, 0.48) 62%,
      rgba(3, 12, 25, 0.18) 100%
    ),
    url("../assets/images/elvaron-about-hero-background.webp") center right /
      cover no-repeat;
}

.about-page-hero .container {
  position: relative;
  z-index: 2;
}

.about-page-hero h1 {
  max-width: 680px;
  color: #ffffff;
}

.about-page-hero .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
}

.about-page-hero .breadcrumb,
.about-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}
/* Sprint 2: Force About Us hero background image */
.page-hero.about-page-hero,
.about-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.96) 0%,
      rgba(3, 12, 25, 0.88) 32%,
      rgba(3, 12, 25, 0.48) 62%,
      rgba(3, 12, 25, 0.18) 100%
    ),
    url("../assets/images/elvaron-about-hero-background.webp") center right /
      cover no-repeat !important;
}

.page-hero.about-page-hero .container,
.about-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.about-page-hero h1,
.about-hero h1 {
  max-width: 680px !important;
  color: #ffffff !important;
}

.page-hero.about-page-hero .lead,
.about-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.about-page-hero .breadcrumb,
.page-hero.about-page-hero .breadcrumb a,
.about-hero .breadcrumb,
.about-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: About Us official hero background */
.page-hero.about-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.96) 0%,
      rgba(3, 12, 25, 0.88) 34%,
      rgba(3, 12, 25, 0.52) 62%,
      rgba(3, 12, 25, 0.16) 100%
    ),
    url("../assets/images/elvaron-about-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.about-page-hero::before,
.page-hero.about-page-hero::after {
  display: none !important;
}

.page-hero.about-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.about-page-hero h1 {
  max-width: 680px !important;
  color: #ffffff !important;
}

.page-hero.about-page-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.about-page-hero .breadcrumb,
.page-hero.about-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: Services page hero background */
.page-hero.services-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.96) 0%,
      rgba(3, 12, 25, 0.88) 34%,
      rgba(3, 12, 25, 0.52) 62%,
      rgba(3, 12, 25, 0.16) 100%
    ),
    url("../assets/images/elvaron-services-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.services-page-hero::before,
.page-hero.services-page-hero::after {
  display: none !important;
}

.page-hero.services-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.services-page-hero h1 {
  max-width: 700px !important;
  color: #ffffff !important;
}

.page-hero.services-page-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.services-page-hero .breadcrumb,
.page-hero.services-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: Methodology page hero background */
.page-hero.methodology-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.92) 0%,
      rgba(3, 12, 25, 0.78) 34%,
      rgba(3, 12, 25, 0.42) 62%,
      rgba(3, 12, 25, 0.08) 100%
    ),
    url("../assets/images/elvaron-methodology-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.methodology-page-hero::before,
.page-hero.methodology-page-hero::after {
  display: none !important;
}

.page-hero.methodology-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.methodology-page-hero h1 {
  max-width: 700px !important;
  color: #ffffff !important;
}

.page-hero.methodology-page-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.methodology-page-hero .breadcrumb,
.page-hero.methodology-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: Zoom out Methodology hero background icons */
.page-hero.methodology-page-hero {
  background-size:
    cover,
    78% auto !important;
  background-position:
    center,
    right center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-color: #03101f !important;
}
/* Sprint 2: Why-Elvaron page hero background */
.page-hero.why-elvaron-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.94) 0%,
      rgba(3, 12, 25, 0.82) 34%,
      rgba(3, 12, 25, 0.44) 62%,
      rgba(3, 12, 25, 0.1) 100%
    ),
    url("../assets/images/elvaron-why-elvaron-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.why-elvaron-page-hero::before,
.page-hero.why-elvaron-page-hero::after {
  display: none !important;
}

.page-hero.why-elvaron-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.why-elvaron-page-hero h1 {
  max-width: 700px !important;
  color: #ffffff !important;
}

.page-hero.why-elvaron-page-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.why-elvaron-page-hero .breadcrumb,
.page-hero.why-elvaron-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: Insights page hero background */
.page-hero.insights-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.94) 0%,
      rgba(3, 12, 25, 0.82) 34%,
      rgba(3, 12, 25, 0.44) 62%,
      rgba(3, 12, 25, 0.1) 100%
    ),
    url("../assets/images/elvaron-insights-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.insights-page-hero::before,
.page-hero.insights-page-hero::after {
  display: none !important;
}

.page-hero.insights-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.insights-page-hero h1 {
  max-width: 700px !important;
  color: #ffffff !important;
}

.page-hero.insights-page-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.insights-page-hero .breadcrumb,
.page-hero.insights-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: Contact page hero background */
.page-hero.contact-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.94) 0%,
      rgba(3, 12, 25, 0.82) 34%,
      rgba(3, 12, 25, 0.44) 62%,
      rgba(3, 12, 25, 0.1) 100%
    ),
    url("../assets/images/elvaron-contact-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.contact-page-hero::before,
.page-hero.contact-page-hero::after {
  display: none !important;
}

.page-hero.contact-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.contact-page-hero h1 {
  max-width: 700px !important;
  color: #ffffff !important;
}

.page-hero.contact-page-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.contact-page-hero .breadcrumb,
.page-hero.contact-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: Move Contact hero background image lower */
.page-hero.contact-page-hero {
  background-position:
    center,
    right 0.5% !important;
}
/* Sprint 2: Add lime divider line to About hero */
.page-hero.about-page-hero h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 20px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--green-500);
}

.page-hero.about-page-hero .lead {
  margin-top: 0 !important;
}
/* Sprint 2: Lime divider line for all page hero headings */
.page-hero.services-page-hero h1::after,
.page-hero.methodology-page-hero h1::after,
.page-hero.why-elvaron-page-hero h1::after,
.page-hero.insights-page-hero h1::after,
.page-hero.contact-page-hero h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 20px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--green-500);
}

/* Remove extra gap above the paragraph after the lime line */
.page-hero.services-page-hero .lead,
.page-hero.methodology-page-hero .lead,
.page-hero.why-elvaron-page-hero .lead,
.page-hero.insights-page-hero .lead,
.page-hero.contact-page-hero .lead {
  margin-top: 0 !important;
}
/* Sprint 2: Center footer country exposure list */
.footer-country-list {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  line-height: 1.7;
  text-align: center;
}
/* Sprint 2: Reduce About Us hero heading and paragraph size */
.page-hero.about-page-hero h1 {
  font-size: clamp(2.6rem, 3.4vw, 3.8rem) !important;
  line-height: 1.08 !important;
  max-width: 680px !important;
}

.page-hero.about-page-hero .lead {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 620px !important;
}
/* Sprint 2: Reduce Services hero heading and paragraph size */
.page-hero.services-page-hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
  max-width: 680px !important;
}

.page-hero.services-page-hero .lead {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 620px !important;
}
/* Sprint 2: Reduce Methodology hero heading and paragraph size */
.page-hero.methodology-page-hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
  max-width: 680px !important;
}

.page-hero.methodology-page-hero .lead {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 620px !important;
}
/* Sprint 2: Reduce Why-Elvaron hero heading and paragraph size */
.page-hero.why-elvaron-page-hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
  max-width: 680px !important;
}

.page-hero.why-elvaron-page-hero .lead {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 620px !important;
}
/* Sprint 2: Reduce Insights hero heading and paragraph size */
.page-hero.insights-page-hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
  max-width: 680px !important;
}

.page-hero.insights-page-hero .lead {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 620px !important;
}
/* Sprint 2: Reduce Contact hero heading and paragraph size */
.page-hero.contact-page-hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
  max-width: 680px !important;
}

.page-hero.contact-page-hero .lead {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 620px !important;
}
/* Sprint 2: About hero lime highlight */
.page-hero.about-page-hero h1 .text-green {
  color: var(--green-500) !important;
}
/* Sprint 2: Services hero lime highlight */
.page-hero.services-page-hero h1 .text-green {
  color: var(--green-500) !important;
}
/* Sprint 2: Methodology hero lime highlight */
.page-hero.methodology-page-hero h1 .text-green {
  color: var(--green-500) !important;
}
/* Sprint 2: Why-Elvaron hero lime highlight */
.page-hero.why-elvaron-page-hero h1 .text-green {
  color: var(--green-500) !important;
}
/* Sprint 2: Contact hero lime highlight */
.page-hero.contact-page-hero h1 .text-green {
  color: var(--green-500) !important;
}
/* Sprint 2: Insights hero lime highlight */
.page-hero.insights-page-hero h1 .text-green {
  color: var(--green-500) !important;
}
/* Sprint 2: Insights article images inside cards */
.insight-card .insight-image {
  height: 230px !important;
  overflow: hidden !important;
  background: none !important;
}

.insight-card .insight-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}
/* Sprint 2: Fix Insights page layout after article image update */
.page-hero.insights-page-hero {
  min-height: 620px !important;
  padding-top: 170px !important;
  padding-bottom: 120px !important;
  align-items: center !important;
  background-size: cover !important;
  background-position: center right !important;
}

.insights-content-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  align-items: stretch !important;
  margin-top: 80px !important;
  margin-bottom: 56px !important;
  position: relative !important;
  z-index: 5 !important;
}

.insights-content-grid .insight-card {
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(10, 31, 55, 0.12) !important;
  box-shadow: 0 18px 45px rgba(10, 31, 55, 0.08) !important;
}

.insights-content-grid .insight-image {
  height: 230px !important;
  overflow: hidden !important;
  background: none !important;
}

.insights-content-grid .insight-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

.insights-content-grid .insight-body {
  padding: 28px !important;
}

@media (max-width: 900px) {
  .insights-content-grid {
    grid-template-columns: 1fr !important;
    margin-top: 48px !important;
  }

  .insights-content-grid .insight-image {
    height: 240px !important;
  }
}
/* Sprint 2: Full Insights page layout reset */
.page-hero.insights-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  padding-top: 190px !important;
  padding-bottom: 120px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.94) 0%,
      rgba(3, 12, 25, 0.82) 34%,
      rgba(3, 12, 25, 0.44) 62%,
      rgba(3, 12, 25, 0.1) 100%
    ),
    url("../assets/images/elvaron-insights-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.insights-page-hero::before,
.page-hero.insights-page-hero::after {
  display: none !important;
}

.page-hero.insights-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.insights-page-hero h1 {
  max-width: 680px !important;
  font-size: clamp(2.4rem, 3.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
  color: #ffffff !important;
}

.page-hero.insights-page-hero h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 20px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--green-500);
}

.page-hero.insights-page-hero .lead {
  max-width: 620px !important;
  margin-top: 0 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.insights-articles-section {
  position: relative !important;
  z-index: 4 !important;
  background: #f5f8fb !important;
  padding-top: 88px !important;
  padding-bottom: 96px !important;
  margin-top: 0 !important;
}

.insights-articles-section .insights-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  align-items: stretch !important;
  margin-top: 0 !important;
  margin-bottom: 56px !important;
}

.insights-articles-section .insight-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(10, 31, 55, 0.12) !important;
  box-shadow: 0 18px 45px rgba(10, 31, 55, 0.08) !important;
}

.insights-articles-section .insight-image {
  width: 100% !important;
  height: 230px !important;
  overflow: hidden !important;
  background: none !important;
}

.insights-articles-section .insight-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

.insights-articles-section .insight-body {
  flex: 1 !important;
  padding: 28px !important;
}

.insights-articles-section .insight-body h3 {
  margin-top: 18px !important;
}

.insights-roadmap-panel {
  background: #ffffff !important;
}

@media (max-width: 900px) {
  .insights-articles-section .insights-grid {
    grid-template-columns: 1fr !important;
  }

  .insights-articles-section .insight-image {
    height: 240px !important;
  }
}
/* Sprint 2: Contact form select field styling */
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid rgba(10, 31, 55, 0.16);
  background: #ffffff;
  color: #0a1f37;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.contact-form select:focus {
  border-color: var(--green-500);
}
/* Sprint 2: Services page card icons */
.service-page-icon {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 18px !important;
}
/* Sprint 2: Services page card icons */
.service-page-icon {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 18px !important;
}
/* Sprint 2: Hide Services page card numbers */
.service-number {
  display: none !important;
}
/* Sprint 2: Fix Services Engagement Pathway alignment */
.service-pathway-section {
  position: relative !important;
  overflow: hidden !important;
  padding-top: 88px !important;
  padding-bottom: 84px !important;
  background: #071322 !important;
}

.service-pathway-section .content-grid-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 88px !important;
  align-items: center !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.service-pathway-section .eyebrow {
  margin-bottom: 18px !important;
}

.service-pathway-section h2 {
  max-width: 520px !important;
  margin: 0 !important;
  font-size: clamp(2.6rem, 4vw, 4rem) !important;
  line-height: 1.08 !important;
  color: #ffffff !important;
}

.service-pathway-section .lead {
  max-width: 560px !important;
  margin: 0 0 28px 0 !important;
  font-size: 1.08rem !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.service-pathway-section .btn {
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  .service-pathway-section .content-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .service-pathway-section h2 {
    font-size: clamp(2.2rem, 9vw, 3rem) !important;
  }
}
/* Sprint 2: Methodology page card icons */
.methodology-card-icon {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 22px !important;
}
/* Sprint 2: Why-Elvaron card icons */
.why-card-icon {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 22px !important;
}
/* Footer legal links */
.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--green-500);
}
/* Legal pages */
.legal-section {
  background: #f5f8fb;
}

.legal-container {
  max-width: 900px;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 55, 0.12);
  border-radius: 18px;
  padding: 56px;
  box-shadow: 0 22px 55px rgba(10, 31, 55, 0.08);
}

.legal-container h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: #071322;
}

.legal-container h2:first-of-type {
  margin-top: 0;
}

.legal-container p,
.legal-container li {
  color: rgba(7, 19, 34, 0.76);
  line-height: 1.75;
  font-size: 1rem;
}

.legal-container ul {
  padding-left: 22px;
  margin: 12px 0 24px;
}

.legal-container a {
  color: var(--green-500);
  font-weight: 700;
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-updated {
  margin-bottom: 28px;
  color: rgba(7, 19, 34, 0.62) !important;
}

@media (max-width: 768px) {
  .legal-container {
    padding: 32px 24px;
  }
}
/* Sprint 2: Legal page hero backgrounds */
.page-hero.privacy-policy-page-hero,
.page-hero.terms-of-use-page-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.page-hero.privacy-policy-page-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.94) 0%,
      rgba(3, 12, 25, 0.82) 34%,
      rgba(3, 12, 25, 0.44) 62%,
      rgba(3, 12, 25, 0.1) 100%
    ),
    url("../assets/images/elvaron-privacy-policy-hero-background.webp") !important;
}

.page-hero.terms-of-use-page-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.94) 0%,
      rgba(3, 12, 25, 0.82) 34%,
      rgba(3, 12, 25, 0.44) 62%,
      rgba(3, 12, 25, 0.1) 100%
    ),
    url("../assets/images/elvaron-terms-of-use-hero-background.webp") !important;
}

.page-hero.privacy-policy-page-hero::before,
.page-hero.privacy-policy-page-hero::after,
.page-hero.terms-of-use-page-hero::before,
.page-hero.terms-of-use-page-hero::after {
  display: none !important;
}

.page-hero.privacy-policy-page-hero .container,
.page-hero.terms-of-use-page-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.page-hero.privacy-policy-page-hero h1,
.page-hero.terms-of-use-page-hero h1 {
  max-width: 700px !important;
  color: #ffffff !important;
}

.page-hero.privacy-policy-page-hero .lead,
.page-hero.terms-of-use-page-hero .lead {
  max-width: 640px !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.page-hero.privacy-policy-page-hero .breadcrumb,
.page-hero.privacy-policy-page-hero .breadcrumb a,
.page-hero.terms-of-use-page-hero .breadcrumb,
.page-hero.terms-of-use-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
/* Sprint 2: Adjust Privacy Policy hero shield position */
.page-hero.privacy-policy-page-hero {
  background-size:
    cover,
    78% auto !important;
  background-position:
    center,
    right 68% !important;
  background-repeat: no-repeat, no-repeat !important;
  background-color: #03101f !important;
}
/* Sprint 2: Methodology page card icons */
.methodology-card-icon {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 22px !important;
}
/* Sprint 2: Homepage How We Work six-step compact alignment */
.home-process-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 86px 0 82px !important;
  background:
    linear-gradient(135deg, rgba(3, 12, 25, 0.98), rgba(5, 22, 34, 0.96)),
    url("../assets/images/elvaron-how-we-work-background.webp") !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}

.home-process-layout {
  max-width: 1500px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 0.62fr 1.38fr !important;
  gap: 46px !important;
  align-items: start !important;
}

.home-process-copy .eyebrow {
  margin-bottom: 18px !important;
}

.home-process-copy h2 {
  max-width: 470px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(2.2rem, 3vw, 3.8rem) !important;
  line-height: 1.12 !important;
}

.home-process-flow {
  display: grid !important;
  grid-template-columns: repeat(11, auto) !important;
  gap: 13px !important;
  align-items: start !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.home-process-step {
  width: 112px !important;
  text-align: center !important;
  color: #ffffff !important;
}

.home-process-icon {
  width: 82px !important;
  height: 82px !important;
  margin: 0 auto 14px auto !important;
  border: 2px solid var(--green-500) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home-process-icon img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
}

.home-process-step h3 {
  margin: 0 0 8px 0 !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
}

.home-process-step p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.75rem !important;
  line-height: 1.42 !important;
}

.home-process-arrow {
  color: var(--green-500) !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  line-height: 82px !important;
}

@media (max-width: 1200px) {
  .home-process-layout {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .home-process-flow {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 26px !important;
  }

  .home-process-arrow {
    display: none !important;
  }

  .home-process-step {
    width: auto !important;
  }
}

@media (max-width: 800px) {
  .home-process-flow {
    grid-template-columns: 1fr !important;
  }

  .home-process-step {
    text-align: left !important;
    display: grid !important;
    grid-template-columns: 68px 1fr !important;
    column-gap: 18px !important;
    align-items: start !important;
  }

  .home-process-icon {
    width: 58px !important;
    height: 58px !important;
    margin: 0 !important;
  }

  .home-process-icon img {
    width: 32px !important;
    height: 32px !important;
  }
}
/* Sprint 2: Reduce homepage How We Work heading size */
.home-process-copy h2 {
  font-size: clamp(2rem, 2.5vw, 3rem) !important;
  line-height: 1.12 !important;
  max-width: 430px !important;
}
/* =====================================
   ABOUT PAGE REDESIGN
===================================== */

.about-hero {
  min-height: 680px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  overflow: hidden !important;
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 25, 0.96) 0%,
      rgba(3, 12, 25, 0.86) 38%,
      rgba(3, 12, 25, 0.44) 68%,
      rgba(3, 12, 25, 0.12) 100%
    ),
    url("../assets/images/elvaron-about-hero-background.webp") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

.about-hero-container {
  position: relative !important;
  z-index: 2 !important;
}

.about-hero-content {
  max-width: 620px !important;
}

.about-hero h1 {
  margin: 0 0 24px 0 !important;
  font-size: clamp(3rem, 5vw, 5.2rem) !important;
  line-height: 1.05 !important;
  color: #ffffff !important;
}

.about-hero h1 span {
  display: block !important;
  color: var(--green-500) !important;
}

.about-hero .lead {
  max-width: 570px !important;
  margin-bottom: 32px !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

/* Our Promise */

.promise-section {
  position: relative !important;
  z-index: 5 !important;
  margin-top: -72px !important;
  padding-top: 0 !important;
  background: transparent !important;
}

.promise-card {
  background: #ffffff !important;
  border-radius: 22px !important;
  padding: 38px !important;
  display: grid !important;
  grid-template-columns: 1.15fr repeat(3, 1fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
  border: 1px solid rgba(10, 31, 55, 0.1) !important;
  box-shadow: 0 28px 70px rgba(10, 31, 55, 0.14) !important;
}

.promise-intro {
  padding-right: 26px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.12) !important;
}

.promise-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: rgba(140, 198, 63, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 18px !important;
}

.promise-icon img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.promise-card h2 {
  margin: 0 0 12px 0 !important;
  font-size: 2rem !important;
  line-height: 1.12 !important;
  color: #071322 !important;
}

.promise-card h2 span {
  color: var(--green-500) !important;
}

.promise-card h3 {
  margin: 0 0 12px 0 !important;
  font-size: 1rem !important;
  color: #071322 !important;
}

.promise-card p {
  margin: 0 !important;
  color: rgba(7, 19, 34, 0.72) !important;
  line-height: 1.65 !important;
  font-size: 0.95rem !important;
}

/* Who We Are */

.about-story {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 70px !important;
  align-items: center !important;
}

.about-story-content h2 {
  max-width: 580px !important;
  margin-bottom: 24px !important;
  font-size: clamp(2.3rem, 4vw, 4rem) !important;
  line-height: 1.1 !important;
  color: #071322 !important;
}

.about-story-content p {
  margin-bottom: 18px !important;
  color: rgba(7, 19, 34, 0.72) !important;
  line-height: 1.75 !important;
}

.about-story-content .btn {
  margin-top: 14px !important;
}

.about-image {
  position: relative !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  min-height: 460px !important;
  box-shadow: 0 28px 70px rgba(10, 31, 55, 0.14) !important;
}

.about-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 460px !important;
  display: block !important;
  object-fit: cover !important;
}

/* Why Elvaron merged section */

.section-soft {
  background: #f5f8fb !important;
}

.about-values {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
  margin-top: 46px !important;
}

.about-values .value-card {
  background: #ffffff !important;
  border-radius: 18px !important;
  padding: 34px !important;
  border: 1px solid rgba(10, 31, 55, 0.1) !important;
  box-shadow: 0 18px 45px rgba(10, 31, 55, 0.07) !important;
}

.about-values .value-card img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 22px !important;
}

.about-values .value-card h3 {
  margin-bottom: 12px !important;
  color: #071322 !important;
}

.about-values .value-card p {
  color: rgba(7, 19, 34, 0.72) !important;
  line-height: 1.65 !important;
}

/* Credibility Metrics */

.about-metrics {
  background: #06101f !important;
  color: #ffffff !important;
}

.about-metrics-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  text-align: center !important;
}

.about-metrics-grid div {
  padding: 18px 24px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.about-metrics-grid div:last-child {
  border-right: none !important;
}

.about-metrics-grid h2 {
  margin: 0 0 14px 0 !important;
  color: var(--green-500) !important;
  font-size: clamp(2.8rem, 5vw, 4.8rem) !important;
  line-height: 1 !important;
}

.about-metrics-grid p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.6 !important;
  font-size: 0.98rem !important;
}

/* Closing Statement */

.about-closing {
  background:
    radial-gradient(
      circle at center,
      rgba(140, 198, 63, 0.12),
      transparent 34%
    ),
    #06101f !important;
  color: #ffffff !important;
  text-align: center !important;
}

.about-closing h2 {
  margin: 0 0 22px 0 !important;
  color: #ffffff !important;
  font-size: clamp(2.6rem, 5vw, 5rem) !important;
  line-height: 1.08 !important;
}

.about-closing p {
  margin: 0 !important;
  color: var(--green-500) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}

/* Mobile */

@media (max-width: 1000px) {
  .promise-card {
    grid-template-columns: 1fr 1fr !important;
  }

  .promise-intro {
    border-right: none !important;
    padding-right: 0 !important;
  }

  .about-story {
    grid-template-columns: 1fr !important;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .about-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .about-metrics-grid div {
    border-right: none !important;
  }
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 620px !important;
    background-position: center right !important;
  }

  .about-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem) !important;
  }

  .promise-card {
    grid-template-columns: 1fr !important;
    padding: 28px !important;
  }

  .about-values {
    grid-template-columns: 1fr !important;
  }

  .about-metrics-grid {
    grid-template-columns: 1fr !important;
  }

  .about-image,
  .about-image img {
    min-height: 320px !important;
  }
}
/* Sprint 2: About hero text refinement */
.about-hero h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 24px !important;
  max-width: 720px !important;
}

.about-hero-title-main,
.about-hero-title-green {
  display: block !important;
}

.about-hero-title-main {
  color: #ffffff !important;
}

.about-hero-title-green {
  color: var(--green-500) !important;
}

.about-hero h1::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--green-500);
}

.about-hero .lead {
  margin-top: 0 !important;
  max-width: 620px !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}
/* About hero: force Why Elvaron to white */
.about-hero h1 .about-hero-title-main {
  color: #ffffff !important;
}

.about-hero h1 .about-hero-title-green {
  color: var(--green-500) !important;
}
/* Sprint 2: About page Our Promise refinement */
.promise-section {
  margin-top: -125px !important;
  position: relative !important;
  z-index: 8 !important;
}

.promise-card {
  display: grid !important;
  grid-template-columns: 1.35fr 1fr 1fr 1fr !important;
  gap: 0 !important;
  align-items: center !important;
  padding: 34px 42px !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: 0 28px 70px rgba(10, 31, 55, 0.16) !important;
}

/* Put shield icon left, text right */
.promise-intro {
  display: grid !important;
  grid-template-columns: 86px 1fr !important;
  gap: 24px !important;
  align-items: center !important;
  padding-right: 34px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-icon {
  width: 76px !important;
  height: 76px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(140, 198, 63, 0.12) !important;
}

.promise-icon img {
  width: 48px !important;
  height: 48px !important;
}

.promise-intro h2 {
  margin: 0 0 10px 0 !important;
  font-size: 1.8rem !important;
  line-height: 1.1 !important;
}

.promise-intro p {
  margin: 0 !important;
  font-weight: 700 !important;
  color: #071322 !important;
  line-height: 1.55 !important;
}

/* Divider lines between promise points */
.promise-item {
  padding: 0 34px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-item:last-child {
  border-right: none !important;
}

.promise-item h3 {
  margin-bottom: 10px !important;
  font-size: 1rem !important;
  color: #071322 !important;
}

.promise-item p {
  font-weight: 700 !important;
  color: #071322 !important;
  line-height: 1.7 !important;
}
/* Sprint 2: Final About Promise card alignment */
.promise-section {
  margin-top: -165px !important;
  position: relative !important;
  z-index: 10 !important;
}

.promise-card {
  padding: 34px 42px !important;
  align-items: center !important;
}

/* Keep shield on the left and all text on the right */
.promise-intro {
  display: grid !important;
  grid-template-columns: 90px 1fr !important;
  column-gap: 24px !important;
  align-items: center !important;
  padding-right: 36px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-icon {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 76px !important;
  height: 76px !important;
  margin: 0 !important;
}

.promise-intro h2 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 0 10px 0 !important;
  font-size: 1.9rem !important;
  line-height: 1.1 !important;
}

.promise-intro p {
  grid-column: 2 !important;
  grid-row: 2 !important;
  margin: 0 !important;
  max-width: 230px !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  color: #071322 !important;
}

/* Keep promise statements neat */
.promise-item {
  padding: 0 34px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-item:last-child {
  border-right: none !important;
}

.promise-item h3 {
  margin-bottom: 12px !important;
}

.promise-item p {
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  font-weight: 700 !important;
}
/* Sprint 2: About Promise card wider final layout */
.promise-section {
  margin-top: -165px !important;
  position: relative !important;
  z-index: 10 !important;
}

.promise-section .container {
  width: min(1500px, calc(100% - 96px)) !important;
  max-width: 1500px !important;
}

.promise-card {
  display: grid !important;
  grid-template-columns: 1.35fr 1fr 1fr 1fr !important;
  gap: 0 !important;
  align-items: center !important;
  padding: 34px 44px !important;
  border-radius: 20px !important;
}

/* Shield left, text right */
.promise-intro {
  display: grid !important;
  grid-template-columns: 88px 1fr !important;
  gap: 24px !important;
  align-items: center !important;
  padding-right: 36px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-icon {
  width: 76px !important;
  height: 76px !important;
  margin: 0 !important;
}

.promise-copy h2 {
  margin: 0 0 10px 0 !important;
  font-size: 1.9rem !important;
  line-height: 1.1 !important;
  color: #071322 !important;
}

.promise-copy h2 span {
  color: var(--green-500) !important;
}

.promise-copy p {
  margin: 0 !important;
  max-width: 260px !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  color: #071322 !important;
}

.promise-item {
  padding: 0 38px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-item:last-child {
  border-right: none !important;
}

.promise-item h3 {
  margin: 0 0 12px 0 !important;
  font-size: 1rem !important;
  line-height: 1.25 !important;
  color: #071322 !important;
}

.promise-item p {
  margin: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  font-weight: 700 !important;
  color: #071322 !important;
}
/* Sprint 2: Move About Promise card below hero */
.promise-section {
  margin-top: 0 !important;
  padding-top: 8px !important;
  padding-bottom: 72px !important;
  background: #f5f8fb !important;
  position: relative !important;
  z-index: 3 !important;
}

.promise-section .container {
  width: min(1480px, calc(100% - 96px)) !important;
  max-width: 1480px !important;
}

.promise-card {
  margin-top: 0 !important;
}
/* Sprint 2: Final About Promise card crop and alignment */
.promise-section {
  margin-top: 0 !important;
  padding-top: 32px !important;
  padding-bottom: 72px !important;
  background: #f5f8fb !important;
}

.promise-section .container {
  width: min(1500px, calc(100% - 96px)) !important;
  max-width: 1500px !important;
}

.promise-card {
  display: grid !important;
  grid-template-columns: 1.35fr 1fr 1.15fr 1.2fr !important;
  gap: 0 !important;
  align-items: center !important;
  min-height: 170px !important;
  padding: 30px 42px !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(10, 31, 55, 0.1) !important;
  box-shadow: 0 24px 60px rgba(10, 31, 55, 0.12) !important;
}

.promise-intro {
  display: grid !important;
  grid-template-columns: 88px 1fr !important;
  gap: 24px !important;
  align-items: center !important;
  padding-right: 36px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-icon {
  width: 78px !important;
  height: 78px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(140, 198, 63, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.promise-icon img {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
}

.promise-copy h2 {
  margin: 0 0 10px 0 !important;
  font-size: 1.8rem !important;
  line-height: 1.1 !important;
  color: #071322 !important;
  white-space: nowrap !important;
}

.promise-copy h2 span {
  color: var(--green-500) !important;
}

.promise-copy p {
  margin: 0 !important;
  max-width: 260px !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  color: #071322 !important;
}

.promise-item {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 36px !important;
  border-right: 1px solid rgba(10, 31, 55, 0.14) !important;
}

.promise-item:last-child {
  border-right: none !important;
  padding-right: 0 !important;
}

.promise-item p {
  margin: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.7 !important;
  font-weight: 700 !important;
  color: #071322 !important;
}

@media (max-width: 1000px) {
  .promise-card {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .promise-intro,
  .promise-item {
    border-right: none !important;
    padding: 0 !important;
  }

  .promise-item {
    border-top: 1px solid rgba(10, 31, 55, 0.12) !important;
    padding-top: 20px !important;
  }
}
/* Sprint 2: Align About Promise card with hero content */
.promise-section .container {
  width: min(1320px, calc(100% - 96px)) !important;
  max-width: 1320px !important;
  margin-left: calc((100% - 1177px) / 2) !important;
  margin-right: auto !important;
}

.promise-card {
  width: 100% !important;
}
/* Sprint 2: Move About Promise card slightly up */
.promise-section {
  margin-top: -28px !important;
  padding-top: 0 !important;
}
/* Sprint 2: Move About story section closer to Promise card */
.promise-section {
  padding-bottom: 32px !important;
}

.about-story-section {
  padding-top: 10px !important;
  padding-bottom: 84px !important;
}

.about-story {
  align-items: center !important;
}

.about-story-content {
  margin-top: 0 !important;
}

.about-image {
  margin-top: 0 !important;
  align-self: center !important;
}
/* About page: force Who We Are heading line break */
.about-story-content h2 span {
  display: block !important;
}
/* Sprint 2: About Who We Are heading line control */
.about-story-content h2 {
  max-width: none !important;
  font-size: clamp(2.4rem, 3.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
}

.about-story-content h2 span {
  display: block !important;
  white-space: nowrap !important;
}
/* About page: make WHO WE ARE lime */
.about-story-content .eyebrow {
  color: var(--green-500) !important;
}
/* Sprint 2: Move Why Elvaron section up and keep heading on one line */
.about-values-section {
  padding-top: 36px !important;
  padding-bottom: 82px !important;
}

.about-values-section .section-heading {
  margin-bottom: 28px !important;
}

.about-values-section .section-heading h2 {
  white-space: nowrap !important;
  font-size: clamp(2rem, 3vw, 3.2rem) !important;
  line-height: 1.12 !important;
}

.about-values {
  margin-top: 28px !important;
}

@media (max-width: 700px) {
  .about-values-section .section-heading h2 {
    white-space: normal !important;
  }
}
/* Sprint 2: Move Why Elvaron section slightly higher */
.about-values-section {
  margin-top: -24px !important;
  padding-top: 24px !important;
}
/* Sprint 2: About Why Elvaron cards in one row */
.about-values-section .container {
  width: min(1500px, calc(100% - 80px)) !important;
  max-width: 1500px !important;
}

.about-values {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 12px !important;
  margin-top: 30px !important;
}

.about-values .value-card {
  min-height: 230px !important;
  padding: 26px 18px !important;
  text-align: center !important;
  border-radius: 14px !important;
}

.about-values .value-card img {
  width: 38px !important;
  height: 38px !important;
  margin: 0 auto 18px auto !important;
}

.about-values .value-card h3 {
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
}

.about-values .value-card p {
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Keep mobile responsive */
@media (max-width: 1200px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 700px) {
  .about-values {
    grid-template-columns: 1fr !important;
  }
}
/* Sprint 2: Squeeze only the Why Elvaron cards */
.about-values-section .container {
  width: min(1480px, calc(100% - 120px)) !important;
  max-width: 1480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-values {
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 8px !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-values .value-card {
  min-height: 215px !important;
  padding: 22px 14px !important;
  text-align: center !important;
}

.about-values .value-card img {
  width: 34px !important;
  height: 34px !important;
  margin-bottom: 14px !important;
}

.about-values .value-card h3 {
  font-size: 0.86rem !important;
  line-height: 1.18 !important;
  margin-bottom: 10px !important;
}

.about-values .value-card p {
  font-size: 0.72rem !important;
  line-height: 1.45 !important;
}
/* Sprint 2: Squeeze Why Elvaron cards further and increase height */
.about-values {
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 8px !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-values .value-card {
  min-height: 255px !important;
  padding: 24px 12px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.about-values .value-card img {
  width: 32px !important;
  height: 32px !important;
  margin: 0 auto 14px auto !important;
}

.about-values .value-card h3 {
  font-size: 0.82rem !important;
  line-height: 1.18 !important;
  margin-bottom: 10px !important;
}

.about-values .value-card p {
  font-size: 0.7rem !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}
/* Sprint 2: About closing statement one-line refinement */
.about-closing h2 {
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

@media (max-width: 700px) {
  .about-closing h2 {
    white-space: normal !important;
  }
}
/* Sprint 2: Move About closing statement closer to metrics */
.about-metrics {
  padding-bottom: 15px !important;
}

.about-closing {
  padding-top: 15px !important;
  padding-bottom: 72px !important;
  margin-top: 0 !important;
}

.about-closing h2 {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}
/* Sprint 2: Move About metrics section slightly up */
.about-values-section {
  padding-bottom: 48px !important;
}

.about-metrics {
  margin-top: -38px !important;
  padding-top: 42px !important;
}
/* Sprint 2: Close space between About closing and CTA section */
.about-closing {
  padding-bottom: 28px !important;
  margin-bottom: 0 !important;
}

.about-closing p {
  margin-bottom: 0 !important;
}

.about-closing + .cta-section,
.about-closing + .section-dark,
.about-closing + section {
  margin-top: 0 !important;
  padding-top: 42px !important;
}
/* Sprint 2: Curve Who We Are image corners */
.about-image {
  border-radius: 28px !important;
  overflow: hidden !important;
}

.about-image img {
  border-radius: 28px !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
/* Sprint 2: Refine About Who We Are image */
.about-image {
  justify-self: end !important;
  width: 500px !important;
  max-width: 500px !important;
  margin-right: -28px !important;
}

.about-image img {
  width: 100% !important;
  height: 520px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 22px !important;
}
/* Sprint 2: Our Promise shield icon */
.promise-icon img {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain !important;
}
/* Sprint 2: Make Our Promise shield icon slightly bigger */
.promise-icon {
  width: 92px !important;
  height: 92px !important;
}

.promise-icon img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
}
/* Sprint 2: Move Our Promise card slightly down */
.promise-section {
  margin-top: 5px !important;
  padding-top: 18px !important;
}
/* Launch: WhatsApp click-to-chat */
.whatsapp-float {
  position: fixed !important;
  right: 26px !important;
  bottom: 26px !important;
  z-index: 9999 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 132px !important;
  height: 52px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: #25d366 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}

.whatsapp-float:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 22px 50px rgba(37, 211, 102, 0.42) !important;
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: 18px !important;
    bottom: 18px !important;
    min-width: 118px !important;
    height: 48px !important;
    font-size: 0.82rem !important;
  }
}
/* Mobile fix: remove large blank space before Who We Are on About page */
@media (max-width: 768px) {
  .about-story-section {
    padding-top: 36px !important;
    margin-top: 0 !important;
  }

  .about-story {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: start !important;
    margin-top: 0 !important;
  }

  .about-story-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .about-story-content .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

  .about-story-content h2 {
    font-size: clamp(2.1rem, 10vw, 3rem) !important;
    line-height: 1.08 !important;
    margin-top: 0 !important;
  }

  .about-story-content h2 span {
    white-space: normal !important;
  }

  .about-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .about-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
  }
}
@media (max-width: 768px) {
  .promise-section {
    padding-bottom: 24px !important;
  }

  .about-story-section {
    padding-top: 24px !important;
  }
}
/* Mobile fix: remove large blank About hero spacing */
@media (max-width: 768px) {
  .about-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 64px 0 56px !important;
    margin-bottom: 0 !important;
  }

  .about-hero-container {
    min-height: auto !important;
    height: auto !important;
  }

  .promise-section {
    margin-top: 0 !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .about-story-section {
    margin-top: 0 !important;
    padding-top: 28px !important;
  }
}
/* Mobile fix: collapse empty Promise area if card is not visible */
@media (max-width: 768px) {
  .promise-section:empty {
    display: none !important;
  }

  .promise-card {
    margin-top: 0 !important;
  }
}
/* FINAL: About mobile spacing + show Our Promise card */
@media (max-width: 768px) {
  /* Keep About hero compact on mobile */
  .about-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 72px 0 64px !important;
    margin: 0 !important;
  }

  .about-hero-container,
  .about-hero-content {
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Force Our Promise section to display properly */
  .promise-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 28px 0 28px !important;
    background: #f5f8fb !important;
  }

  .promise-section .container {
    width: min(100% - 32px, 520px) !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .promise-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    padding: 28px 24px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative !important;
    top: auto !important;
    background: #ffffff !important;
    border-radius: 22px !important;
  }

  .promise-intro {
    display: grid !important;
    grid-template-columns: 64px 1fr !important;
    gap: 18px !important;
    align-items: center !important;
    padding: 0 0 20px !important;
    margin: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(10, 31, 55, 0.12) !important;
  }

  .promise-icon {
    width: 58px !important;
    height: 58px !important;
  }

  .promise-icon img {
    width: 54px !important;
    height: 54px !important;
    object-fit: contain !important;
  }

  .promise-copy h2 {
    font-size: 1.7rem !important;
    line-height: 1.12 !important;
    margin: 0 0 6px !important;
    white-space: normal !important;
  }

  .promise-copy p {
    margin: 0 !important;
    font-size: 0.95rem !important;
  }

  .promise-item {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 18px 0 !important;
    margin: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(10, 31, 55, 0.12) !important;
  }

  .promise-item:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .promise-item p {
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  /* Bring Who We Are directly below Promise */
  .about-story-section {
    margin-top: 0 !important;
    padding-top: 32px !important;
  }
}
/* Contact form submission status */
.form-status {
  margin-top: 14px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

.form-status.success {
  color: var(--green-500) !important;
}

.form-status.error {
  color: #b42318 !important;
}

.form-grid button[disabled] {
  opacity: 0.75 !important;
  cursor: not-allowed !important;
}
/* Insights page: reduce Coming Soon heading size */
.insights-roadmap h2,
.insights-content-roadmap h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem) !important;
  line-height: 1.18 !important;
  max-width: 900px !important;
}
/* Insights page: reduce final roadmap heading size */
.insights-articles-section + .section h2,
.insights-articles-section + section h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem) !important;
  line-height: 1.18 !important;
}
/* Insights page: Coming Soon heading refinement */
.coming-soon-heading {
  font-size: clamp(1.45rem, 2vw, 2.1rem) !important;
  line-height: 1.25 !important;
  max-width: 850px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Mobile fix: Methodology hero background image */
@media (max-width: 768px) {
  .page-hero.methodology-page-hero {
    min-height: 760px !important;
    padding: 150px 0 90px !important;
    display: flex !important;
    align-items: center !important;
    background-image:
      linear-gradient(
        90deg,
        rgba(3, 12, 25, 0.92) 0%,
        rgba(3, 12, 25, 0.78) 45%,
        rgba(3, 12, 25, 0.55) 100%
      ),
      url("../assets/images/elvaron-methodology-hero-background.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #06101f !important;
  }

  .page-hero.methodology-page-hero .container {
    width: min(100% - 64px, 620px) !important;
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-hero.methodology-page-hero h1 {
    font-size: clamp(3rem, 11vw, 4.8rem) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
  }

  .page-hero.methodology-page-hero .lead {
    font-size: 1.25rem !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
  }
}
/* Newsletter subscription status */
.newsletter-status {
  margin-top: 10px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.newsletter-status.success {
  color: var(--green-500) !important;
}

.newsletter-status.error {
  color: #ffb4a8 !important;
}

.newsletter button[disabled] {
  opacity: 0.75 !important;
  cursor: not-allowed !important;
}

/* Pre-launch: targeted responsive overflow fixes */
@media (min-width: 769px) and (max-width: 1500px) {
  .what-we-do-grid {
    grid-template-columns: minmax(0, 350px) minmax(0, 1fr);
  }

  .what-we-do-grid > *,
  .services-grid-preview,
  .services-grid-preview > * {
    min-width: 0;
  }

  .services-grid-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .market-partner-section .market-partner-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 100% !important;
  }

  .market-partner-section .market-partner-grid > *,
  .market-partner-section .market-column,
  .market-partner-section .partner-column,
  .market-partner-section .partner-grid,
  .market-partner-section .testimonial-card,
  .market-partner-section .testimonial-person > div {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .market-partner-section .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .about-values-section .container {
    width: min(100% - 32px, 520px) !important;
    max-width: 520px !important;
  }

  .about-values {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-values > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-values > * {
    min-width: 0 !important;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .about-values {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .about-values > * {
    min-width: 0 !important;
  }
}

@media (max-width: 1464px) {
  .promise-section .container {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Pre-launch: About tablet overflow fix */
@media (min-width: 769px) and (max-width: 1100px) {
  .promise-card {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  .promise-intro,
  .promise-item {
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-right: 0 !important;
  }

  .promise-item {
    padding-top: 20px !important;
    border-top: 1px solid rgba(10, 31, 55, 0.12) !important;
  }

  .about-story {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 40px !important;
  }

  .about-story > * {
    min-width: 0 !important;
  }

  .about-image {
    width: min(500px, 100%) !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    justify-self: end !important;
  }
}
