/* Shared brand foundations and components used by the current website. */
:root {
  --bg: #f5f9ff;
  --bg-strong: #061b42;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-dark: rgba(6, 27, 66, 0.94);
  --text: #10233f;
  --text-soft: #586b86;
  --line: rgba(7, 52, 113, 0.12);
  --primary: #073471;
  --secondary: #1279bd;
  --accent: #63b4e8;
  --success: #1e6fb7;
  --shadow: 0 18px 48px rgba(7, 52, 113, 0.12);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --container: 1160px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: var(--font-sans);
  color: var(--text);
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(241, 247, 255) 48%, rgb(248, 251, 255) 100%);
}

main {
  overflow: hidden;
}

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

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

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

 .main-nav i,
 .text-link i {
  color: var(--secondary);
}

.button i,
 .section-kicker i {
  margin-right: 0.45rem;
}

.button i {
  color: currentcolor;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.85rem 1.1rem;
  background: var(--primary);
  color: rgb(255, 255, 255);
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

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

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

.site-header {
  position: sticky;
  top: 0px;
  z-index: 15;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(7, 52, 113, 0.08);
  transition: box-shadow 0.22s, background 0.22s, border-color 0.22s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(7, 52, 113, 0.12);
  box-shadow: rgba(7, 52, 113, 0.1) 0px 12px 34px;
}

.scroll-progress {
  position: fixed;
  z-index: 30;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.1rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 11.6rem;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-weight: 600;
  color: var(--text-soft);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.2s;
}

.main-nav a:hover::after,
 .main-nav a:focus-visible::after,
 .main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--primary);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.18rem;
  padding: 0.22rem;
  border: 1px solid rgba(7, 52, 113, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.28rem 0.46rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.language-switcher a:hover,
 .language-switcher a:focus-visible,
 .language-switcher a.is-active {
  color: rgb(255, 255, 255);
  background: var(--primary);
}

.language-switcher a:focus-visible {
  outline: rgba(18, 121, 189, 0.28) solid 3px;
  outline-offset: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.button:hover,
 .button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: rgba(18, 121, 189, 0.32) solid 3px;
  outline-offset: 4px;
}

.button-primary {
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: rgba(18, 121, 189, 0.24) 0px 14px 30px;
}

.button-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 52, 113, 0.16);
  box-shadow: rgba(7, 52, 113, 0.08) 0px 10px 24px;
}

.button-sm {
  min-height: 2.85rem;
  padding-inline: 1.1rem;
}

 .case-story,
 .contact-form,
 .faq-list details {
  animation: 0.7s ease 0s 1 normal both running float-up;
}

 .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0px 0px 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(18, 121, 189, 0.1);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1,
 h2,
 h3 {
  margin: 0px;
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0px;
}

h1 {
  max-width: 15ch;
  font-size: 4.7rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.55rem;
}

.hero-text,
 .faq-list p {
  color: var(--text-soft);
  line-height: 1.72;
}

.hero-text {
  max-width: 34rem;
  margin: 1.2rem 0px 0px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.7rem 0px 0px;
}

 .faq-list details {
  border: 1px solid rgba(15, 31, 68, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.text-link {
  width: fit-content;
  color: var(--primary);
  font-weight: 800;
}

.text-link:hover,
 .text-link:focus-visible {
  color: var(--secondary);
}

.sketch-node:not(.sketch-node-main) {
  border-color: rgba(7, 52, 113, 0.58);
  box-shadow: rgba(7, 52, 113, 0.07) 3px 4px 0px;
}

.visual-band-copy p:not(.section-kicker) {
  max-width: 34rem;
  margin: 1rem 0px 0px;
  color: var(--text-soft);
  line-height: 1.72;
}

 .faq-list summary {
  font-weight: 800;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4.4rem 0px;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.section-clean {
  background: rgba(255, 255, 255, 0.68);
  border-block: 1px solid rgba(7, 52, 113, 0.08);
}

.section-clean::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -6vw;
  right: -6vw;
  top: -1px;
  height: 5.4rem;
  background: rgba(240, 247, 250, 0.92);
  clip-path: polygon(0px 0px, 100% 0px, 100% 42%, 90% 50%, 78% 35%, 66% 46%, 54% 30%, 42% 45%, 30% 34%, 18% 50%, 8% 40%, 0px 52%);
}

.section-accent {
  background: linear-gradient(135deg, rgba(6, 27, 66, 0.97), rgba(7, 52, 113, 0.95) 58%, rgba(18, 121, 189, 0.92));
  color: rgb(255, 255, 255);
}

.section-accent::before,
 .section-accent::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5vw;
  right: -5vw;
  height: 5rem;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.98);
}

.section-accent::before {
  top: -1px;
  clip-path: polygon(0px 0px, 100% 0px, 100% 54%, 88% 42%, 76% 58%, 64% 40%, 52% 56%, 40% 38%, 28% 54%, 16% 42%, 0px 58%);
}

.section-accent::after {
  bottom: -1px;
  background: rgba(248, 251, 255, 0.98);
  clip-path: polygon(0px 45%, 12% 55%, 24% 38%, 36% 54%, 48% 40%, 60% 56%, 72% 42%, 84% 55%, 100% 44%, 100% 100%, 0px 100%);
}

 .section-accent .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.focus-panel > p:not(.bio-role) {
  margin: 0.9rem 0px 0px;
  color: rgba(226, 237, 255, 0.82);
  line-height: 1.68;
}

 .section-clean::before,
 .section-accent::before,
 .section-accent::after {
  clip-path: polygon(0px 46%, 12% 38%, 24% 50%, 38% 31%, 52% 45%, 66% 28%, 80% 42%, 100% 30%, 100% 100%, 0px 100%);
}

.reference-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 46, 114, 0.08);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.reference-pill {
  margin: 1.25rem 0px 0px;
}

.case-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0px, 1.25fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.35rem 0px;
  border-top: 1px solid rgba(7, 52, 113, 0.12);
}

.case-story:last-child {
  border-bottom: 1px solid rgba(7, 52, 113, 0.12);
}

 .case-story h3 {
  grid-column: 1;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.88);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.9rem 0px 0px;
}

.contact-form {
  display: grid;
  gap: 1.45rem;
  padding: 2.35rem;
  border: 1px solid rgba(15, 31, 68, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(18, 121, 189, 0.055), transparent 34%), rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.form-heading p:last-child {
  margin: 0.8rem 0px 0px;
  color: var(--text-soft);
  line-height: 1.65;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 1.15rem 1.05rem;
}

.form-grid label,
 .checkbox-field {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 800;
}

.form-full {
  grid-column: 1 / -1;
}

.form-grid input,
 .form-grid select,
 .form-grid textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(15, 31, 68, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.form-grid input:focus,
 .form-grid select:focus,
 .form-grid textarea:focus {
  outline: none;
  border-color: rgba(23, 147, 213, 0.7);
  box-shadow: rgba(23, 147, 213, 0.12) 0px 0px 0px 4px;
}

.form-grid textarea {
  resize: vertical;
  min-height: 8.25rem;
}

.optional-fields {
  padding: 1rem;
  border: 1px dashed rgba(7, 52, 113, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.optional-fields summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 900;
}

.optional-fields-grid {
  display: grid;
  grid-template-columns: minmax(0px, 0.8fr) minmax(0px, 1.2fr);
  gap: 1rem;
  margin-top: 1rem;
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  color: var(--text-soft);
  font-weight: 600;
}

.checkbox-field input {
  margin-top: 0.18rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
}

.form-note,
 .form-status {
  margin: 0px;
  color: var(--text-soft);
  line-height: 1.6;
}

.form-status {
  min-height: 1.6rem;
  font-weight: 700;
}

.form-hint {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.file-field input[type="file"] {
  padding: 0.85rem 1rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.legal-intro {
  max-width: 46rem;
  margin: 1.25rem 0px 0px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.35rem;
  color: var(--text-soft);
  font-weight: 700;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0px, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.legal-side {
  position: sticky;
  top: 6.7rem;
}

.legal-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(15, 31, 68, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0px 0px auto;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.legal-main {
  display: grid;
  gap: 1rem;
}

.legal-card h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.9rem;
}

.legal-card p {
  margin: 0.85rem 0px 0px;
  color: var(--text-soft);
  line-height: 1.72;
}

.legal-card p:first-of-type {
  margin-top: 0px;
}

.legal-nav {
  display: grid;
  gap: 0.65rem;
}

.legal-nav h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.legal-nav a {
  color: var(--text-soft);
  font-weight: 700;
}

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

.legal-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0px 0px;
  padding-left: 1.15rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.legal-list li::marker {
  color: var(--secondary);
}

.legal-note {
  padding: 1.3rem 1.45rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10, 46, 114, 0.95), rgba(23, 147, 213, 0.92));
  box-shadow: var(--shadow);
}

.legal-note p {
  margin: 0px;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  padding: 1.8rem 0px 2.1rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(rgb(7, 22, 51) 0%, rgb(4, 16, 36) 100%);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0px;
}

 .faq-list details:hover {
  transform: translateY(-4px);
  transition: transform 0.25s;
}

@keyframes float-up {
  0% { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0px); }
}

@keyframes rotate-title {
  0%, 11% { transform: translateY(0px); }
  16%, 27% { transform: translateY(-1.08em); }
  32%, 43% { transform: translateY(-2.16em); }
  48%, 59% { transform: translateY(-3.24em); }
  64%, 75% { transform: translateY(-4.32em); }
  80%, 91% { transform: translateY(-5.4em); }
  100% { transform: translateY(-6.48em); }
}

@keyframes flow-ribbon {
  0% { transform: translate3d(0px, 0px, 0px) rotate(-2deg) scale(1); }
  100% { transform: translate3d(-1.4rem, 1rem, 0px) rotate(2deg) scale(1.03); }
}

@keyframes flow-lines {
  0% { background-position: 0px 0px, 0px 0px; }
  100% { background-position: 68px 34px, 34px 68px; }
}

@keyframes shape-drift {
  0% { transform: translate3d(0px, 0px, 0px) rotate(-2deg); clip-path: polygon(0px 36%, 18% 8%, 44% 18%, 68% 0px, 100% 25%, 88% 76%, 57% 64%, 28% 100%, 5% 78%); }
  100% { transform: translate3d(1.2rem, -0.8rem, 0px) rotate(2deg); clip-path: polygon(0px 24%, 22% 0px, 48% 16%, 73% 6%, 100% 18%, 92% 70%, 62% 78%, 34% 92%, 8% 82%); }
}

@keyframes soft-wave {
  0% { transform: translateX(0px); }
  100% { transform: translateX(2rem); }
}

@keyframes bridge-drift {
  0% { transform: translate3d(0px, 0px, 0px) rotate(-1deg); }
  100% { transform: translate3d(1.1rem, -0.7rem, 0px) rotate(1.5deg); }
}

@keyframes modal-in {
  0% { opacity: 0; transform: translateY(0.75rem) scale(0.98); }
  100% { opacity: 1; transform: translateY(0px) scale(1); }
}

@keyframes image-sheen {
  0%, 52% { transform: translateX(-58%); opacity: 0; }
  68% { opacity: 0.8; }
  86%, 100% { transform: translateX(58%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
.rotating-title-track span:not(:first-child) {
  display: none;
}

.scroll-progress,
 .site-header {
  transition: none;
}
}

@media (max-width: 1040px) {
.header-inner {
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.9rem 0px;
}

.main-nav {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  order: 3;
  margin: auto;
}

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

.legal-side {
  position: static;
}

 .case-story {
  grid-template-columns: 1fr;
}

 .footer-bottom {
  align-items: flex-start;
  flex-direction: column;
}

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

.optional-fields-grid {
  grid-template-columns: 1fr;
}
}

@media (max-width: 900px) {
.container {
  width: min(var(--container), calc(100% - 1.5rem));
}

.header-inner {
  gap: 1rem;
  min-height: auto;
}

.brand img {
  width: 10.6rem;
}

.main-nav {
  font-size: 0.95rem;
}

h1 {
  max-width: 13.5ch;
  font-size: 3.7rem;
}
}

@media (max-width: 720px) {
.site-header {
  position: static;
}

.brand img {
  width: 10.5rem;
}

 .section {
  padding: 4rem 0px;
}

h1 {
  max-width: none;
  font-size: 3rem;
}

h2 {
  font-size: 2.15rem;
}

.hero-text {
  font-size: 1rem;
}

.hero-actions,
 .form-actions {
  width: 100%;
}

.button,
 .button-sm {
  width: 100%;
}

 .legal-card,
 .legal-note,
 .faq-list details,
 .contact-form {
  border-radius: var(--radius-lg);
}

.form-actions .button {
  width: 100%;
}
}

@media (max-width: 520px) {
.container {
  width: min(var(--container), calc(100% - 1rem));
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  width: 100%;
  gap: 0.45rem;
}

.main-nav a {
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(7, 52, 113, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.main-nav a::after {
  content: none;
}

h1 {
  font-size: 2.35rem;
}

h2 {
  font-size: 1.85rem;
}

h3 {
  font-size: 1.25rem;
}

 .section {
  padding: 3rem 0px;
}

 .section-kicker {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
}

 .contact-form {
  padding: 1.25rem;
}
}

.site-footer {
  background: rgb(8, 24, 46);
  color: rgb(255, 255, 255);
  padding: 80px 0px 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@keyframes scrollLogos {
  0% { transform: translateX(0px); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 720px) {
html,
 body {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - 1.25rem));
}

.header-inner {
  justify-content: center;
}

.header-inner .brand {
  order: 1;
}

.header-inner .language-switcher {
  order: 2;
}

.header-inner .main-nav {
  order: 3;
}

.brand img {
  width: 9.8rem;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  width: 100%;
  gap: 0.5rem;
}

.main-nav a {
  min-height: 2.55rem;
  justify-content: center;
  padding: 0.58rem 0.65rem;
  border: 1px solid rgba(7, 52, 113, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

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

 .contact-form {
  min-width: 0px;
}

.section-clean::before,
 .section-accent::before,
 .section-accent::after {
  height: 4.8rem;
}

.footer-bottom {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
}
}

@media (max-width: 520px) {
h1 {
  font-size: clamp(2.2rem, 12vw, 2.65rem);
}

h2 {
  font-size: clamp(1.75rem, 9vw, 2rem);
}

.hero-actions,
 .form-actions {
  width: 100%;
}

.button,
 .button-sm {
  width: 100%;
}
}

.form-heading h3 {
  margin-bottom: 0px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.form-grid label,
 .checkbox-field {
  font-size: 0.96rem;
}

.form-grid input,
 .form-grid select,
 .form-grid textarea {
  min-height: 3.15rem;
  padding: 0.82rem 0.9rem;
  background: rgb(255, 255, 255);
  border-color: rgba(7, 52, 113, 0.14);
  box-shadow: rgba(7, 52, 113, 0.03) 0px 1px 0px inset;
}

.form-grid textarea {
  min-height: 7rem;
}

.form-grid textarea::placeholder,
 .form-grid input::placeholder {
  color: rgba(88, 107, 134, 0.72);
  font-weight: 500;
}

.optional-fields {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.optional-fields summary {
  line-height: 1.4;
}

@media (max-width: 720px) {
.optional-fields-grid {
  grid-template-columns: 1fr;
}
}

@media (max-width: 520px) {
.form-grid input,
 .form-grid select,
 .form-grid textarea {
  font-size: 1rem;
}
}

@media (max-width: 720px) {
.site-header {
  position: static;
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  gap: 0.65rem;
  padding: 0.75rem 0px 0.65rem;
}

.brand img {
  width: 8.8rem;
}

.header-inner > .button-sm {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.8rem;
  margin: 0.05rem 0px 0px;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(7, 52, 113, 0.08);
  font-size: 0.86rem;
  overflow-x: visible;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  flex: 0 0 auto;
  min-height: 0px;
  padding: 0.1rem 0px;
  border: 0px;
  background: transparent;
  color: var(--text-soft);
  white-space: nowrap;
}

.hero-text {
  max-width: 32rem;
  margin-top: 0.95rem;
  font-size: 0.98rem;
  line-height: 1.62;
}

.hero-actions {
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-actions .button-secondary {
  display: none;
}
}

@media (max-width: 520px) {
.container {
  width: min(var(--container), calc(100% - 1.25rem));
}

.header-inner {
  padding-top: 0.7rem;
}

.main-nav {
  justify-content: center;
  gap: 0.72rem;
  padding-inline: 0.15rem;
}

.button,
 .button-sm {
  min-height: 3.05rem;
}
}

@media (max-width: 900px) {
.hero-actions .button-secondary {
  display: none !important;
}
}

 .section-clean::before,
 .section-accent::before,
 .section-accent::after {
  will-change: clip-path, transform;
}

@media (max-width: 720px) {
 .section-clean::before,
 .section-accent::before,
 .section-accent::after {
  height: 4.2rem;
  opacity: 0.82;
}
}

.section-clean {
  border-block: 0px;
}

 .section-clean::before,
 .section-accent::before,
 .section-accent::after {
  left: 0px;
  right: 0px;
  width: auto;
  animation: auto ease 0s 1 normal none running none;
  clip-path: none;
}

.section-clean::before {
  top: -1px;
  height: 4.8rem;
  opacity: 1;
  background: linear-gradient(rgba(240, 247, 255, 0.62), rgba(255, 255, 255, 0));
}

.section-accent::before {
  top: -1px;
  height: 4.8rem;
  opacity: 1;
  background: linear-gradient(rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0));
}

.section-accent::after {
  bottom: -1px;
  height: 4.8rem;
  opacity: 1;
  background: linear-gradient(rgba(248, 251, 255, 0), rgba(248, 251, 255, 0.96));
}

@media (max-width: 720px) {
 .section-clean::before,
 .section-accent::before,
 .section-accent::after {
  height: 3.8rem;
}
}
