:root {
  --navy: #082044;
  --blue: #0759b8;
  --sky: #16a3f5;
  --red: #e21f32;
  --steel: #536b86;
  --line: #d6e7f5;
  --surface: #f0f8ff;
  --white: #ffffff;
  --gold: #f5ad25;
  --teal: #00a6b8;
  --shadow: 0 18px 45px rgba(7, 89, 184, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

.intro-logo {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.96) 48%, rgba(7, 89, 184, 0.72) 100%);
  pointer-events: none;
  animation: introFade 2.8s ease forwards;
}

.intro-logo img {
  width: min(78vw, 920px);
  padding: clamp(12px, 2vw, 22px) clamp(18px, 3vw, 34px);
  background: var(--white);
  border-radius: 12px;
  filter: drop-shadow(0 24px 45px rgba(4, 18, 35, 0.28));
  transform-origin: center center;
  animation: introLogoMove 2.8s cubic-bezier(0.2, 0.82, 0.22, 1) forwards;
}

.intro-playing .brand-logo {
  opacity: 0;
}

body:not(.intro-playing) .brand-logo {
  opacity: 1;
  transition: opacity 0.25s ease;
}

@keyframes introLogoMove {
  0%,
  28% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  72% {
    transform: translate3d(calc(-50vw + 190px), calc(-50vh + 58px), 0) scale(0.34);
    opacity: 1;
  }

  100% {
    transform: translate3d(calc(-50vw + 170px), calc(-50vh + 46px), 0) scale(0.24);
    opacity: 0;
  }
}

@keyframes introFade {
  0%,
  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

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

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

.site-header {
  min-height: 100vh;
  color: var(--white);
  background: linear-gradient(135deg, #082044 0%, #0759b8 56%, #16a3f5 100%);
  position: relative;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px clamp(14px, 4vw, 48px);
  background: linear-gradient(90deg, rgba(8, 32, 68, 0.9), rgba(7, 89, 184, 0.78));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(210px, 22vw, 300px);
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 26px);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  font-size: 0.86rem;
}

.nav-links a:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 112%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.16) saturate(1.18);
  transform: scale(1.08) translate3d(0, 0, 0);
  animation: heroMotion 9s ease-in-out infinite alternate;
  transform-origin: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 20%, rgba(22, 163, 245, 0.34) 0%, rgba(22, 163, 245, 0) 36%),
    linear-gradient(90deg, rgba(8, 32, 68, 0.78) 0%, rgba(7, 89, 184, 0.46) 44%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 32, 68, 0.18), rgba(8, 32, 68, 0.18));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 64%);
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: translateX(-120%);
  animation: heroLightSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroMotion {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.18) translate3d(-7%, 1.5%, 0);
  }
}

@keyframes heroLightSweep {
  0%,
  35% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 90px);
  padding-top: clamp(130px, 16vh, 175px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero-copy {
  text-shadow: 0 3px 18px rgba(4, 18, 35, 0.5);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.8vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  align-items: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #07182d;
  background: linear-gradient(135deg, #ffc547, var(--gold));
  box-shadow: 0 12px 26px rgba(245, 173, 37, 0.24);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button.portal {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 12px 26px rgba(0, 166, 184, 0.24);
}

.button.portal.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.button.quote-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #f04b5b);
  box-shadow: 0 12px 26px rgba(226, 31, 50, 0.24);
}

.siecel-access {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-left: auto;
}

.siecel-access-logo {
  width: 120px;
  max-width: 100%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.nav-siecel-access {
  flex: 0 0 auto;
  gap: 4px;
  margin-left: 4px;
}

.nav-siecel-access .siecel-access-logo {
  width: 96px;
}

.nav-siecel-access .button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--red));
}

.trust-strip article {
  padding: clamp(24px, 4vw, 46px);
  background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.trust-strip span {
  color: var(--steel);
  font-weight: 700;
}

.section,
.online-section,
.cta {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading p,
.experience-copy p,
.online-content p,
.cta p {
  color: var(--steel);
  line-height: 1.75;
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  box-shadow: 0 14px 34px rgba(7, 89, 184, 0.08);
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 8px;
}

.service-card:nth-child(2n) .card-icon {
  background: linear-gradient(135deg, var(--teal), var(--sky));
}

.service-card:nth-child(3n) .card-icon {
  background: linear-gradient(135deg, var(--red), #ff6a76);
}

.service-card p {
  color: var(--steel);
  line-height: 1.65;
}

.integration-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-note {
  max-width: 920px;
  margin: 24px 0 0;
  color: var(--steel);
  line-height: 1.7;
  font-weight: 700;
}

.additional-section {
  padding-top: clamp(40px, 6vw, 80px);
  background: #ffffff;
}

.compact-heading {
  max-width: 760px;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.additional-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.additional-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--blue);
  background: #e7f6ff;
  border: 1px solid #bee6fb;
  border-radius: 8px;
}

.additional-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.additional-grid h3 {
  color: var(--blue);
}

.additional-grid p {
  color: var(--steel);
  line-height: 1.65;
}

.white-label-section {
  background: linear-gradient(180deg, #eef8ff 0%, #ffffff 100%);
}

.coverage-section {
  background: linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coverage-grid article {
  min-height: 210px;
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 89, 184, 0.08);
}

.coverage-grid article:nth-child(2n) {
  border-left-color: var(--teal);
}

.coverage-grid article:nth-child(3n) {
  border-left-color: var(--red);
}

.coverage-image {
  width: 100%;
  height: 128px;
  margin: -6px 0 16px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(11, 28, 53, 0.16));
}

.coverage-grid p,
.process-grid p {
  color: var(--steel);
  line-height: 1.65;
}

.online-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  background:
    radial-gradient(circle at 15% 15%, rgba(22, 163, 245, 0.14), transparent 34%),
    linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.online-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--navy);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--sky));
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.online-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  position: relative;
  min-height: 240px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 12px 30px rgba(7, 89, 184, 0.06);
}

.process-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 6vw, 90px);
  align-items: start;
}

.pill-row {
  margin-top: 26px;
}

.pill-row span {
  padding: 10px 14px;
  color: var(--blue);
  font-weight: 800;
  background: #e7f6ff;
  border-radius: 999px;
}

.faq-section {
  background: #f0f8ff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-grid article,
.privacy-section .section-heading {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 12px 30px rgba(7, 89, 184, 0.06);
}

.faq-grid h3 {
  margin-top: 0;
  color: var(--blue);
}

.faq-grid p {
  color: var(--steel);
  line-height: 1.65;
}

.privacy-section {
  background: #ffffff;
}

.privacy-section .section-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 163, 245, 0.34), transparent 34%),
    linear-gradient(135deg, #0759b8 0%, #082044 62%, #00a6b8 100%);
}

.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--white);
  font-size: 1.08rem;
}

.contact-card .license-note {
  margin: 2px 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-card a {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--white);
}

.contact-card .whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 16px;
  color: #062716;
  font-weight: 800;
  background: #25d366;
  border-radius: 8px;
}

.contact-card .whatsapp-link:hover {
  color: #062716;
  background: #36e076;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 15px;
  color: var(--navy);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 127, 143, 0.12);
}

.relationship-section,
.quote-section,
.associate-form-section {
  background: #ffffff;
}

.quote-section {
  background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
}

.associate-section {
  background: #eef8ff;
}

.dual-cta,
.inline-button {
  margin-top: 24px;
}

.dual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-button {
  display: inline-flex;
}

.form-legal {
  margin: 0;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-legal a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-section a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.associate-form {
  max-width: 1080px;
}

.legal-page {
  background: #f0f8ff;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: linear-gradient(90deg, #082044, #0759b8);
}

.legal-header .brand-logo {
  width: clamp(180px, 22vw, 280px);
}

.legal-back {
  min-width: max-content;
}

.legal-main {
  padding: clamp(56px, 8vw, 90px) clamp(20px, 6vw, 84px);
}

.legal-hero,
.legal-content {
  max-width: 1080px;
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--steel);
  line-height: 1.75;
}

.legal-content {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 89, 184, 0.07);
}

.legal-content section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-callout {
  padding: 18px;
  color: var(--navy) !important;
  font-weight: 700;
  background: #e7f6ff;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.email-options {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--navy);
  background: #e7f6ff;
  border: 1px solid #bee6fb;
  border-radius: 8px;
}

.email-options[hidden] {
  display: none;
}

.email-options span {
  color: var(--steel);
  line-height: 1.5;
}

.email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 8px;
}

.email-actions a:hover {
  background: var(--teal);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 32, 68, 0.58);
  backdrop-filter: blur(8px);
}

.quote-modal[hidden] {
  display: none;
}

.quote-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 89, 184, 0.26);
}

.quote-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
  background: #e7f6ff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.quote-heading {
  margin-bottom: 20px;
}

.quote-heading h2 {
  margin: 6px 44px 0 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 14px 15px;
  color: var(--navy);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 127, 143, 0.12);
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(90deg, #082044, #0759b8);
}

.footer-logo {
  width: min(420px, 100%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

@media (max-width: 980px) {
  .nav {
    gap: 12px;
  }

  .brand-logo {
    width: 180px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 58px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--navy);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .nav-siecel-access .siecel-access-logo {
    width: 82px;
  }

  .nav-siecel-access .button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .service-grid,
  .integration-grid,
  .additional-grid,
  .coverage-grid,
  .process-grid,
  .online-section,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .additional-grid,
  .coverage-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
    padding: 4px 10px;
    width: 100vw;
    max-width: 100vw;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 145px;
  }

  .menu-toggle {
    position: fixed;
    top: 10px;
    right: 14px;
    z-index: 12;
    display: block;
    justify-self: end;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.48);
  }

  .nav-links {
    position: absolute;
    top: 47px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--navy);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero-content {
    width: min(82vw, 320px);
    max-width: min(82vw, 320px);
    margin: 0 auto 0 20px;
    padding-top: 96px;
  }

  .hero-image {
    width: 100%;
    transform: scale(1.02) translate3d(0, 0, 0);
    animation: none;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.7rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .trust-strip,
  .service-grid,
  .integration-grid,
  .additional-grid,
  .coverage-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .online-content .button,
  .contact-form .button,
  .quote-form .button {
    width: 100%;
  }

  .siecel-access {
    width: 100%;
    margin-left: 0;
  }

  .nav-siecel-access {
    display: none;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-logo img {
    width: min(88vw, 520px);
    border-radius: 10px;
  }

  @keyframes introLogoMove {
    0%,
    28% {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 1;
    }

    72% {
      transform: translate3d(calc(-50vw + 122px), calc(-50vh + 42px), 0) scale(0.44);
      opacity: 1;
    }

    100% {
      transform: translate3d(calc(-50vw + 112px), calc(-50vh + 34px), 0) scale(0.36);
      opacity: 0;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
