/* AI Solventa Consulting — homepage */
:root {
  --navy: #14295a;
  --navy-mid: #1e3a6e;
  --cyan: #00b3e3;
  --cyan-hover: #0099c9;
  --cyan-soft: rgba(0, 179, 227, 0.12);
  --muted-blue: #a6c1ff;
  --white: #ffffff;
  --black: #0f172a;
  --gray-50: #f4f7fb;
  --gray-100: #e8eef6;
  --gray-400: #64748b;
  --font: "Poppins", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(20, 41, 90, 0.06);
  --shadow-md: 0 8px 30px rgba(20, 41, 90, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* Links: don’t underline buttons */
a:hover {
  text-decoration-thickness: 2px;
}

.btn,
.btn:hover,
.site-nav a.site-nav__cta {
  text-decoration: none !important;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(20, 41, 90, 0.97) 0%, rgba(20, 41, 90, 0.92) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
  html.js .site-header {
    animation: anim-header-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes anim-header-in {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: var(--header-h);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none !important;
  color: var(--white) !important;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-wordmark__prefix {
  color: var(--cyan);
}

.brand-wordmark__name {
  color: var(--white);
}

.site-header__tagline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover {
  color: var(--white);
  border-bottom-color: var(--cyan);
}

.site-nav__cta {
  background: var(--cyan);
  color: var(--white) !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: 999px;
  border: 2px solid transparent !important;
}

.site-nav__cta:hover {
  background: var(--cyan-hover) !important;
  border-bottom-color: transparent !important;
}

@media (max-width: 640px) {
  .site-header__tagline {
    display: none;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 4vw 4rem;
  background-color: var(--navy);
  background-image:
    linear-gradient(165deg, rgba(20, 41, 90, 0.88) 0%, rgba(20, 41, 90, 0.55) 45%, rgba(20, 41, 90, 0.75) 100%),
    url("./images/IAlab-consultoria-cabe-2025.jpg");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero__inner {
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-left: 0;
}

@media (min-width: 900px) {
  .hero__inner {
    max-width: 640px;
  }
}

.hero__eyebrow {
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 7vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: none;
}

.hero__note {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  font-weight: 400;
  color: var(--muted-blue);
  max-width: 38ch;
  line-height: 1.5;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .hero {
    align-items: center;
    text-align: center;
    min-height: min(100vh, 780px);
    padding-bottom: 3rem;
  }

  .hero__inner {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__note,
  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero: staggered fade-up (Divi-style et-waypoint top) */
@keyframes anim-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__animate > * {
    animation: anim-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero__animate > *:nth-child(1) {
    animation-delay: 0.06s;
  }
  .hero__animate > *:nth-child(2) {
    animation-delay: 0.14s;
  }
  .hero__animate > *:nth-child(3) {
    animation-delay: 0.22s;
  }
  .hero__animate > *:nth-child(4) {
    animation-delay: 0.3s;
  }
  .hero__animate > *:nth-child(5) {
    animation-delay: 0.38s;
  }
}

/* Scroll-triggered reveal (Intersection Observer) */
@media (prefers-reduced-motion: no-preference) {
  html.js .js-anim:not(.is-inview) {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    will-change: opacity, transform;
  }

  html.js .js-anim.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: auto;
  }

  html.js .js-anim-group:not(.is-inview) .js-anim-child {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  html.js .js-anim-group.is-inview .js-anim-child {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.js .js-anim-group.is-inview .js-anim-child:nth-child(1) {
    transition-delay: 0ms;
  }
  html.js .js-anim-group.is-inview .js-anim-child:nth-child(2) {
    transition-delay: 75ms;
  }
  html.js .js-anim-group.is-inview .js-anim-child:nth-child(3) {
    transition-delay: 150ms;
  }
  html.js .js-anim-group.is-inview .js-anim-child:nth-child(4) {
    transition-delay: 225ms;
  }
  html.js .js-anim-group.is-inview .js-anim-child:nth-child(5) {
    transition-delay: 300ms;
  }
  html.js .js-anim-group.is-inview .js-anim-child:nth-child(6) {
    transition-delay: 375ms;
  }
  html.js .js-anim-group.is-inview .js-anim-child:nth-child(7) {
    transition-delay: 450ms;
  }
  html.js .js-anim-group.is-inview .js-anim-child:nth-child(8) {
    transition-delay: 525ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-anim,
  .js-anim-group .js-anim-child {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: var(--cyan);
  color: var(--white) !important;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 179, 227, 0.35);
}

.btn:hover {
  background: var(--cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 179, 227, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--cyan) !important;
  border-color: var(--cyan);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--cyan-soft);
  transform: translateY(-1px);
}

.section .btn--ghost {
  margin: 0.5rem 0 1.25rem;
}

.btn--cta {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ——— Sections ——— */
/* Anchor scroll: offset sticky header */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 4vw;
}

.section--tight-top {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section--soft {
  background: var(--gray-50);
}

.section--alt {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--cyan);
}

.section h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin: 0 0 0.75rem;
}

.section__lede {
  margin: 0;
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.6;
}

.section__lede--narrow {
  max-width: 36ch;
  margin-bottom: 2rem;
}

.section__title-narrow {
  max-width: 20ch;
  margin-inline: auto;
}

.section__intro--faq h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 22rem);
}

.section__intro--faq .section__lede--faq {
  margin-inline: auto;
  max-width: 36ch;
}

.lead-in {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 1rem;
}

.prose p {
  margin: 0 0 1rem;
  color: #334155;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* ——— Split layouts ——— */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

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

@media (min-width: 900px) {
  .split--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.split__text .btn {
  margin-top: 0.25rem;
}

.split__media--center {
  display: flex;
  justify-content: center;
}

@media (max-width: 899px) {
  .split--reverse-mobile .split__text {
    order: 2;
  }

  .split--reverse-mobile .split__media {
    order: 1;
  }
}

.media-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.media-frame img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.media-frame--tight {
  display: inline-block;
  max-width: 280px;
  box-shadow: var(--shadow-md);
}

.media-frame--tight img {
  width: 100%;
}

.questions {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 4px solid var(--cyan);
  background: rgba(0, 179, 227, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  list-style: none;
}

.questions li {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.questions li:last-child {
  margin-bottom: 0;
}

/* ——— Value cards ——— */
.value-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.value-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.2s;
}

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

.value-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--cyan);
}

.value-card__hook {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.45;
}

.value-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: auto;
}

.value-card li {
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.value-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ——— “How we support you” — two rows × four columns (Divi-style) ——— */
.section--support .section__intro {
  max-width: 900px;
}

.section h2.heading-accent {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.heading-accent__highlight {
  color: var(--cyan);
}

.section__lede--support {
  font-size: 1.1rem;
  max-width: 56ch;
}

.section__lede--support strong {
  color: var(--navy);
  font-weight: 700;
}

.accompany-matrix {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.accompany-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .accompany-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .accompany-row {
    grid-template-columns: 1fr;
  }
}

.accompany-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1.5rem 1.15rem 1.65rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.2s;
  min-height: 100%;
}

.accompany-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 179, 227, 0.35);
}

.accompany-cell--badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}

.accompany-badge {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.accompany-badge img {
  width: auto;
  max-width: min(100%, 280px);
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

.accompany-card > img:first-of-type {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.accompany-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.accompany-card p {
  font-size: 0.92rem;
  margin: 0 0 1rem;
  text-align: left;
  color: #475569;
  line-height: 1.55;
  flex-grow: 1;
}

.accompany-card p:last-child {
  margin-bottom: 0;
}

.accompany-card .link-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none !important;
}

.accompany-card .link-more:hover {
  text-decoration: underline !important;
}

/* ——— FAQ ——— */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq details[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 179, 227, 0.25);
}

.faq summary {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  position: relative;
  transition: background 0.2s;
}

.faq summary:hover {
  background: var(--gray-50);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s;
}

.faq details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

/* ——— Contact section & form ——— */
#contact-form {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.contact-section {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--gray-50);
}

.contact-section__intro {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #152a52 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 4vw;
  position: relative;
  overflow: hidden;
}

.contact-section__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0, 179, 227, 0.15), transparent 55%);
  pointer-events: none;
}

.contact-section__intro-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.contact-section__intro h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.contact-section__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.55;
}

.contact-section__body {
  max-width: 720px;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.contact-form__hint {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.contact-form__hint a {
  color: var(--cyan);
  font-weight: 600;
}

.contact-form__grid {
  display: grid;
  gap: 1.25rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.contact-form__req {
  color: var(--cyan);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}

.contact-form__actions {
  margin-top: 1.5rem;
}

.btn--form {
  width: 100%;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font: inherit;
}

@media (min-width: 480px) {
  .btn--form {
    width: auto;
    min-width: 220px;
  }
}

.contact-form__status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #15803d;
  line-height: 1.45;
}

.contact-form__status[hidden] {
  display: none;
}

/* ——— Contact page ——— */
.contact-page__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .contact-page__layout {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  }
}

.contact-page__info {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-page__info-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--navy);
}

.contact-page__info-lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
}

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

.contact-page__list li {
  margin-bottom: 1.1rem;
}

.contact-page__list li:last-child {
  margin-bottom: 0;
}

.contact-page__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-page__list a {
  color: var(--cyan);
  font-weight: 600;
}

.contact-page__list a:hover {
  text-decoration: underline;
}

.contact-page__address {
  font-style: normal;
  line-height: 1.55;
  color: #334155;
  font-size: 0.95rem;
}

.contact-page__form-block {
  min-width: 0;
}

.contact-page__form-heading {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--navy);
}

.contact-form--page {
  margin-top: 0;
}

.contact-page__form-lede {
  margin: -0.25rem 0 1.25rem;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.55;
  max-width: 42rem;
}

.contact-page__form-lede a {
  color: var(--cyan);
  font-weight: 600;
}

.contact-form__optional {
  font-weight: 400;
  color: #94a3b8;
  font-size: 0.85em;
}

.contact-form__grid--general {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-form__grid--general {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form__grid--general .contact-form__field--full {
    grid-column: 1 / -1;
  }
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.5rem 4vw 3rem;
  text-align: center;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.site-footer__inner {
  max-width: 640px;
  margin: 0 auto;
}

.site-footer__company {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.site-footer__domain {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}

.site-footer__domain a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none !important;
}

.site-footer__domain a:hover {
  text-decoration: underline !important;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.site-footer__nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none !important;
}

.site-footer__nav a:hover {
  color: var(--cyan);
  text-decoration: underline !important;
}

.site-footer__address {
  margin: 0 auto 1rem;
  max-width: 42ch;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.65;
  color: #64748b;
}

.site-footer__phone,
.site-footer__email {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.site-footer__phone a,
.site-footer__email a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none !important;
}

.site-footer__phone a:hover,
.site-footer__email a:hover {
  text-decoration: underline !important;
}

.site-footer__reg {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: #64748b;
}

.site-footer__rights {
  margin: 0;
  font-size: 0.82rem;
  color: #94a3b8;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-lg {
  margin-bottom: 3rem;
}

/* ——— About page ——— */
.page-about .site-header__brand img.brand-mark,
.page-contact .site-header__brand img.brand-mark,
.page-legal .site-header__brand img.brand-mark {
  display: block;
}

.about-page__hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #152a52 100%);
  color: var(--white);
  padding: clamp(4rem, 10vw, 5.5rem) 4vw;
  position: relative;
  overflow: hidden;
}

.about-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 75% 15%, rgba(0, 179, 227, 0.14), transparent 55%);
  pointer-events: none;
}

.about-page__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-page__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.about-page__hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.about-page__lead {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 52ch;
  margin-inline: auto;
}

.about-page__split {
  align-items: center;
}

.about-page__copy h2 {
  margin-top: 0;
}

.about-page__photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .about-page__photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-page__photo-strip-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.about-page__photo-strip-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-values {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-values__item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-values__item img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.about-values__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--navy);
}

.about-values__item p {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
}

.about-page__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 600px) {
  .about-page__banner {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.about-page__banner-mark {
  display: block;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(20, 41, 90, 0.15);
  object-fit: contain;
}

.about-page__banner-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--navy);
}

.about-page__banner-text {
  margin: 0 0 1.25rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ——— Legal pages (privacy, terms) ——— */
.legal-page {
  padding: clamp(2rem, 5vw, 3.5rem) 4vw 4rem;
  background: var(--gray-50);
}

.legal-page__inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  line-height: 1.25;
}

.legal-page__back {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.legal-page__back a {
  color: var(--cyan);
  font-weight: 600;
}

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

.legal-page__meta {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}

.legal-page h2 {
  font-size: 1.12rem;
  color: var(--navy);
  margin: 1.75rem 0 0.65rem;
  line-height: 1.35;
}

.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #334155;
}

.legal-page p {
  margin: 0 0 1rem;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-page li {
  margin-bottom: 0.45rem;
}

.legal-page li:last-child {
  margin-bottom: 0;
}

.legal-page a {
  color: var(--cyan);
  font-weight: 600;
}

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

.legal-page strong {
  color: var(--navy);
  font-weight: 600;
}
