@font-face {
  font-family: "Segoe UI Local";
  src: local("Segoe UI");
  font-display: swap;
}

@font-face {
  font-family: "Trebuchet Local";
  src: local("Trebuchet MS");
  font-display: swap;
}

:root {
  --navy: #0d2458;
  --blue: #0c6ddf;
  --sky: #81c1fa;
  --powder: #b0d8fb;
  --mist: #e0eefb;
  --white: #ffffff;
  --accent: #ffd21a;
  --ink: #071738;
  --muted: #4f6380;
  --line: rgba(13, 36, 88, 0.16);
  --soft-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(13, 36, 88, 0.16);
  --shadow-small: 0 12px 36px rgba(13, 36, 88, 0.13);
  --radius: 1.65rem;
  --shell: min(100% - 2rem, 1240px);
  --header-height: 4.8rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI Local", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Trebuchet Local", sans-serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p {
  margin: 0;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(5.5rem, 12vw, 10rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-150%);
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 36, 88, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 36, 88, 0.98);
  box-shadow: 0 10px 30px rgba(5, 18, 46, 0.24);
}

.header-shell {
  display: grid;
  width: min(100% - 1rem, 1280px);
  min-height: var(--header-height);
  margin-inline: auto;
  grid-template-columns: minmax(6.8rem, 1fr) auto auto;
  align-items: center;
  gap: 0.55rem;
}

.brand {
  display: flex;
  width: clamp(7rem, 28vw, 9rem);
  min-height: 2.75rem;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  position: fixed;
  z-index: 190;
  top: var(--header-height);
  left: 0;
  display: flex;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  padding: 2rem;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.8rem);
  transition: opacity 200ms ease, transform 200ms ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--soft-line);
  font-family: "Trebuchet Local", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.header-action {
  min-width: 0;
  white-space: nowrap;
}

.menu-toggle {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.7rem;
  place-content: center;
  gap: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 0.8rem;
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(255, 210, 26, 0.16);
  font-family: "Trebuchet Local", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 210, 26, 0.24);
  filter: brightness(1.03);
}

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

.button svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.7rem 0.78rem;
  border-radius: 0.7rem;
  font-size: 0.76rem;
}

.button-large {
  min-height: 3.7rem;
  padding: 1rem 1.35rem;
}

.kicker {
  margin-bottom: 1rem;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kicker-dark {
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 1.7rem) 0 2rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(129, 193, 250, 0.25), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(12, 109, 223, 0.35), transparent 35%),
    var(--navy);
  color: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-height) - 3.7rem);
  grid-template-rows: auto minmax(10rem, 1fr);
  gap: 1.8rem;
  align-items: center;
}

.hero-copy {
  max-width: 65rem;
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(2.7rem, 12vw, 6.4rem);
  font-weight: 700;
  line-height: 0.94;
}

.hero-lead {
  max-width: 42rem;
  margin-top: 1.35rem;
  color: #d9e9f8;
  font-size: clamp(1rem, 2vw, 1.17rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.secondary-link {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-weight: 700;
  transition: border-color 180ms ease, gap 180ms ease;
}

.secondary-link:hover {
  gap: 0.9rem;
  border-color: var(--white);
}

.secondary-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.micro-trust {
  display: flex;
  max-width: 36rem;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  color: #b7cde5;
  font-size: 0.76rem;
  line-height: 1.5;
}

.micro-trust svg {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  margin-top: 0.1rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 33rem);
  min-height: 11rem;
  justify-self: center;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.2rem;
  box-shadow: 0 24px 60px rgba(2, 10, 30, 0.35);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover .hero-photo img {
  transform: scale(1.035);
}

.hero-photo-main {
  inset: 0;
}

.hero-photo-main img {
  object-position: 50% 39%;
}

.hero-photo-small {
  display: none;
  right: 0;
  bottom: 0.8rem;
  width: 43%;
  height: 58%;
  transform: rotate(3deg);
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: 3%;
  top: 0.6rem;
  display: flex;
  padding: 0.7rem 0.8rem;
  flex-direction: column;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  box-shadow: var(--shadow-small);
  transform: rotate(-2deg);
}

.hero-note strong {
  font-family: "Trebuchet Local", sans-serif;
  font-size: 0.7rem;
}

.hero-note span {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-pattern {
  position: absolute;
  right: -9rem;
  bottom: -10rem;
  width: 27rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.018);
}

.trust-strip {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 1rem;
}

.trust-item {
  min-width: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-family: "Trebuchet Local", sans-serif;
  font-size: clamp(1.8rem, 7vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.trust-item p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.problem {
  background: var(--mist);
}

.section-heading h2,
.services-heading h2,
.faq-intro h2,
.about-copy h2,
.process-intro h2,
.contact-heading h2,
.offer-panel h2 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 7vw, 5.2rem);
  font-weight: 650;
  line-height: 0.98;
}

.problem-list {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.problem-card {
  min-height: 18rem;
  padding: 1.6rem;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.problem-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: var(--shadow-small);
}

.line-icon,
.bento-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--blue);
}

.line-icon svg,
.bento-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.problem-card h3 {
  margin-top: 2.5rem;
  font-size: 1.4rem;
  line-height: 1.1;
}

.problem-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.62;
}

.bridge {
  max-width: 46rem;
  margin: 2.2rem auto 0;
  color: var(--navy);
  font-family: "Trebuchet Local", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.differentials {
  background:
    radial-gradient(circle at 15% 15%, rgba(12, 109, 223, 0.38), transparent 28%),
    var(--navy);
  color: var(--white);
}

.section-heading-wide h2 {
  max-width: 1000px;
}

.bento-grid {
  display: grid;
  grid-auto-flow: dense;
  margin-top: 3.2rem;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--soft-line);
  gap: 1px;
}

.bento-card {
  display: flex;
  min-height: 20rem;
  padding: 1.55rem;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(10, 31, 77, 0.96);
}

.bento-card h3 {
  max-width: 17ch;
  margin-top: 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.bento-card > p:last-child,
.bento-card div > p:last-child {
  max-width: 34rem;
  margin-top: 0.8rem;
  color: #bcd3ea;
  line-height: 1.58;
}

.bento-large {
  min-height: 24rem;
}

.bento-image {
  overflow: hidden;
  padding: 0;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bento-image:hover img {
  transform: scale(1.05);
}

.bento-icon {
  background: rgba(129, 193, 250, 0.14);
  color: var(--sky);
}

.card-index {
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services {
  background: var(--white);
}

.services-heading {
  display: grid;
  gap: 1.5rem;
}

.services-heading > p {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.65;
}

.featured-services {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-service {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: 0 14px 40px rgba(13, 36, 88, 0.08);
}

.feature-media {
  height: 20rem;
  overflow: hidden;
  background: var(--powder);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-service:hover .feature-media img {
  transform: scale(1.045);
}

.feature-service-agenda .feature-media img,
.feature-service-led .feature-media img {
  object-position: center 42%;
}

.feature-copy {
  padding: 1.7rem;
}

.popular-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-copy h3 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.feature-copy p {
  max-width: 33rem;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.62;
}

.text-action {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.text-action span {
  transition: transform 180ms ease;
}

.text-action:hover span {
  transform: translateX(5px);
}

.more-products {
  display: grid;
  grid-auto-columns: 78%;
  grid-auto-flow: column;
  gap: 0.9rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-tile {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  border-radius: 1.2rem;
  scroll-snap-align: start;
  background: var(--navy);
  color: var(--white);
}

.product-tile::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(6, 19, 49, 0.93));
  content: "";
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-tile:hover img {
  transform: scale(1.055);
}

.product-tile span {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  font-family: "Trebuchet Local", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.process {
  background: var(--navy);
  color: var(--white);
}

.process-layout {
  display: grid;
  gap: 3.5rem;
}

.process-intro > p:not(.kicker) {
  max-width: 34rem;
  margin-top: 1.3rem;
  color: #bad0e7;
  line-height: 1.65;
}

.process-intro .button {
  margin-top: 1.8rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  min-height: 14rem;
  padding: 1.5rem;
  grid-template-columns: 3.3rem 1fr;
  gap: 1rem;
  border: 1px solid var(--soft-line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.process-step > span {
  color: var(--sky);
  font-family: "Trebuchet Local", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.process-step div {
  align-self: end;
}

.process-step h3 {
  font-size: 1.55rem;
  line-height: 1.1;
}

.process-step p {
  margin-top: 0.7rem;
  color: #bad0e7;
  line-height: 1.55;
}

.audiences {
  background: var(--powder);
}

.section-heading-center {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading-center h2 {
  max-width: none;
}

.audience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.audience-card {
  min-height: 22rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-small);
}

.audience-card > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 15ch;
  margin-top: 6rem;
  font-size: 1.8rem;
  line-height: 1.05;
}

.audience-card p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.58;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 800 / 527;
}

.about-media img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.about-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  padding: 1rem;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.9rem;
  background: rgba(13, 36, 88, 0.9);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.about-caption strong {
  font-family: "Trebuchet Local", sans-serif;
}

.about-caption span {
  margin-top: 0.2rem;
  color: #c7dbef;
  font-size: 0.78rem;
}

.about-copy p:not(.kicker) {
  max-width: 39rem;
  margin-top: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.secondary-link-dark {
  width: fit-content;
  justify-content: flex-start;
  margin-top: 1.2rem;
  border-color: var(--line);
  color: var(--navy);
}

.entry-offer {
  padding-top: 0;
  background: var(--white);
}

.offer-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 7vw, 5rem);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 5%, rgba(129, 193, 250, 0.36), transparent 32%),
    var(--blue);
  color: var(--white);
}

.offer-panel::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025);
  content: "";
}

.offer-panel > * {
  position: relative;
  z-index: 2;
}

.offer-panel > div > p:last-child {
  max-width: 38rem;
  margin-top: 1rem;
  color: var(--white);
  line-height: 1.65;
}

.offer-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.offer-panel .kicker {
  color: var(--white);
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.offer-list span {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.faq {
  background: var(--mist);
}

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

.faq-intro > p:last-child {
  max-width: 32rem;
  margin-top: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--navy);
  font-family: "Trebuchet Local", sans-serif;
  font-size: clamp(1.12rem, 2.3vw, 1.4rem);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  max-width: 44rem;
  padding: 0 2.5rem 1.6rem 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.02);
  content: "";
}

.contact-heading {
  position: relative;
  z-index: 2;
  max-width: 66rem;
}

.contact-heading h2 {
  max-width: 1000px;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.contact-form,
.contact-card {
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.contact-form {
  padding: clamp(1.3rem, 4vw, 2.5rem);
}

.form-row {
  display: grid;
  gap: 0;
}

.field {
  position: relative;
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 700;
}

.field label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #aec2d7;
  border-radius: 0.75rem;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(12, 109, 223, 0.11);
}

.field.has-error input,
.field.has-error textarea {
  border-color: #a3313c;
  box-shadow: 0 0 0 3px rgba(163, 49, 60, 0.09);
}

.field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.35rem;
  color: #8d2631;
  font-size: 0.75rem;
}

.spam-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
}

.form-success {
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid #9fc4af;
  border-radius: 0.7rem;
  background: #e7f5ec;
  color: #205b37;
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-card {
  overflow: hidden;
}

.contact-card-top {
  padding: clamp(1.4rem, 4vw, 2.3rem);
}

.contact-card .kicker {
  color: var(--blue);
}

.contact-card h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.contact-card address {
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.contact-data {
  margin: 1.7rem 0 0;
  border-top: 1px solid var(--line);
}

.contact-data div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.contact-data dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-data dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  text-align: right;
}

.contact-data a:hover {
  color: var(--blue);
}

.contact-data a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.map-frame {
  height: 18rem;
  background: var(--mist);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #061532;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand img {
  width: 13rem;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 1rem;
  color: #9cb6d0;
  font-size: 0.9rem;
}

.footer-links h2 {
  margin-bottom: 1rem;
  color: #8faac6;
  font-family: "Segoe UI Local", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  align-items: center;
  padding-inline: 0.25rem;
  margin-bottom: 0.25rem;
  color: #d9e7f4;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #839db7;
  font-size: 0.75rem;
}

.footer-bottom button {
  min-height: 2.75rem;
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  z-index: 150;
  right: max(0.8rem, env(safe-area-inset-right));
  bottom: max(0.8rem, env(safe-area-inset-bottom));
  display: flex;
  min-width: 3.7rem;
  min-height: 3.7rem;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  border-radius: 5rem;
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 14px 35px rgba(6, 21, 50, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.7rem);
  animation: soft-pulse 4.5s ease-in-out infinite;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.floating-whatsapp.is-visible:hover {
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp span {
  display: none;
}

@keyframes soft-pulse {
  0%, 84%, 100% { box-shadow: 0 14px 35px rgba(6, 21, 50, 0.28), 0 0 0 0 rgba(255, 210, 26, 0.35); }
  91% { box-shadow: 0 14px 35px rgba(6, 21, 50, 0.28), 0 0 0 12px rgba(255, 210, 26, 0); }
}

.back-to-top {
  position: fixed;
  z-index: 140;
  right: 1rem;
  bottom: 5.2rem;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-small);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.7rem);
  transition: opacity 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 1.2rem;
  height: 1.2rem;
}

.privacy-dialog {
  width: min(100% - 2rem, 36rem);
  padding: 2rem;
  border: 0;
  border-radius: 1.2rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(4, 15, 38, 0.72);
  backdrop-filter: blur(5px);
}

.privacy-dialog h2 {
  padding-right: 2rem;
  color: var(--navy);
  font-size: 2rem;
}

.privacy-dialog p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--mist);
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem) scale(0.985);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (min-width: 36rem) {
  :root { --shell: min(100% - 3rem, 1240px); }
  .header-shell { width: min(100% - 2rem, 1280px); }
  .button-small { padding-inline: 1rem; font-size: 0.84rem; }
  .hero-actions { align-items: center; flex-direction: row; }
  .secondary-link { width: auto; justify-content: flex-start; }
  .hero-visual { min-height: 16rem; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { padding-left: 1.2rem; border-left: 1px solid var(--line); }
  .trust-item:first-child { padding-left: 0; border-left: 0; }
  .problem-list { grid-template-columns: repeat(3, 1fr); }
  .more-products { grid-auto-columns: 42%; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-bottom { align-items: center; justify-content: space-between; flex-direction: row; }
  .floating-whatsapp { gap: 0.6rem; padding-inline: 1rem; }
  .floating-whatsapp span { display: inline; font-family: "Trebuchet Local", sans-serif; font-size: 0.85rem; font-weight: 800; }
}

@media (min-width: 58rem) {
  :root { --header-height: 5.5rem; }
  .header-shell { grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr); gap: 1.4rem; }
  .brand { width: 10.6rem; }
  .main-nav { position: static; width: auto; height: auto; padding: 0; flex-direction: row; gap: 1.35rem; background: transparent; opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { padding: 0.8rem 0; border: 0; color: #dce9f7; font-family: "Segoe UI Local", sans-serif; font-size: 0.82rem; font-weight: 650; }
  .main-nav a:hover { color: var(--white); }
  .header-action { justify-self: end; }
  .menu-toggle { display: none; }
  .hero { padding: calc(var(--header-height) + 3.5rem) 0 3.5rem; }
  .hero-grid { min-height: calc(100svh - var(--header-height) - 7rem); grid-template-columns: minmax(0, 1.16fr) minmax(22rem, 0.84fr); grid-template-rows: 1fr; gap: 4rem; }
  .hero h1 { font-size: clamp(4.4rem, 6vw, 5.7rem); }
  .hero-visual { width: 100%; min-height: 35rem; }
  .hero-photo-main { inset: 0 26% 0 0; }
  .hero-photo-small { display: block; }
  .hero-note { top: 2rem; padding: 0.9rem 1rem; }
  .hero-note strong { font-size: 0.82rem; }
  .hero-note span { font-size: 0.75rem; }
  .trust-strip { padding-block: 3rem; }
  .problem-layout > .section-heading { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 3rem; align-items: start; }
  .problem-layout > .section-heading .kicker { margin-top: 0.55rem; }
  .problem-card { min-height: 21rem; padding: 2rem; }
  .bento-grid { grid-template-columns: repeat(12, 1fr); }
  .bento-large { grid-column: span 5; }
  .bento-image { grid-column: span 7; }
  .bento-grid > .bento-card:nth-child(n+3) { grid-column: span 4; }
  .bento-card { min-height: 24rem; padding: 2rem; }
  .bento-large { min-height: 31rem; }
  .bento-image { min-height: 31rem; }
  .services-heading { grid-template-columns: 1.4fr 0.6fr; align-items: end; gap: 3rem; }
  .featured-services { gap: 1.5rem; }
  .feature-service { position: sticky; top: calc(var(--header-height) + 1.2rem); display: grid; min-height: 37rem; grid-template-columns: 1.05fr 0.95fr; }
  .feature-service:nth-child(2) { top: calc(var(--header-height) + 2rem); }
  .feature-service:nth-child(3) { top: calc(var(--header-height) + 2.8rem); }
  .feature-media { height: auto; min-height: 37rem; }
  .feature-copy { display: flex; padding: 3rem; flex-direction: column; justify-content: flex-end; }
  .more-products { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-columns: auto; grid-auto-flow: row; overflow: visible; }
  .product-tile { min-height: 22rem; }
  .process-layout { grid-template-columns: 0.85fr 1.15fr; gap: 7rem; align-items: start; }
  .process-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
  .process-list { grid-template-columns: 1fr; }
  .process-step { min-height: 17rem; padding: 2.2rem; grid-template-columns: 5rem 1fr; }
  .process-step h3 { font-size: 2rem; }
  .audience-card { min-height: 27rem; padding: 2rem; }
  .audience-card h3 { margin-top: 9rem; font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1.15fr 0.85fr; gap: 6rem; }
  .offer-panel { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 2.5rem 5rem; align-items: center; }
  .offer-panel .button { width: fit-content; }
  .faq-layout { grid-template-columns: 0.85fr 1.15fr; gap: 7rem; align-items: start; }
  .faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
  .contact-grid { grid-template-columns: 1.08fr 0.92fr; gap: 1.2rem; }
}

@media (min-width: 78rem) {
  .main-nav { gap: 2rem; }
  .main-nav a { font-size: 0.88rem; }
  .button-small { padding-inline: 1.2rem; }
  .hero-grid { gap: 6rem; }
  .problem-card { min-height: 23rem; }
  .feature-copy { padding: 4rem; }
}

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