:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #3d4145;
  --muted: #696969;
  --border: #e5e5e5;
  --accent: #008a94;
  --accent-dark: #696969;
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#services,
#testimonials,
#contact {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font: 400 17px/1.6 "Noto Sans", sans-serif;
  color: var(--muted);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  text-decoration: none;
}

a:not(.btn) {
  text-decoration: none;
}

a:not(.btn):not(.social-link):not(.footer-cookie-link) {
  position: relative;
}

a:not(.btn):not(.social-link):not(.footer-cookie-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18em;
  width: 100%;
  height: 0.38em;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent), transparent 84%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  z-index: -1;
}

a:not(.btn):not(.social-link):not(.footer-cookie-link):hover::after,
a:not(.btn):not(.social-link):not(.footer-cookie-link):focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

a:not(.btn):hover {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
strong {
  color: var(--text);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
}

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

.container.narrow {
  width: min(840px, calc(100% - 32px));
}

.section {
  padding: 42px 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: var(--radius);
  background: #efefef;
  color: #1f1f1f;
  font: 500 16px/1 "Inter", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fdfdfd;
  box-shadow: 0 10px 24px -14px rgba(0, 138, 148, 0.65);
}

.btn:hover {
  background: #dddddd;
  text-decoration: none;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 10px 22px -16px rgba(0, 0, 0, 0.22);
}

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

.btn.primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 28px -16px rgba(0, 138, 148, 0.75);
}

.eyebrow,
.accent {
  color: var(--accent);
}

.lead,
.page-intro {
  font-size: 20px;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 250, 0.88);
  border-bottom: 1px solid rgba(229, 229, 229, 0.8);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 250, 250, 0.96);
  border-bottom-color: rgba(229, 229, 229, 0.95);
  box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand img {
  width: 86px;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.site-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.header-cta-mobile {
  display: none !important;
}

.site-nav a {
  color: var(--text);
  padding: 10px;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent), transparent 91%);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero-section {
  padding-top: 64px;
}


.hero-grid,
.two-col {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 420px;
}

.hero-copy-top,
.hero-copy-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  font-size: clamp(30px, 4.6vw, 48px);
  margin-bottom: 0;
}

.hero-gradient {
  color: #008a94;
  background: linear-gradient(90deg, #008a94 0%, #008a94 44%, #15b8c4 48%, #7df3ff 50%, #15b8c4 52%, #008a94 56%, #008a94 100%);
  background-repeat: no-repeat;
  background-size: 320% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-gradient-shift 5s linear infinite;
}

@keyframes hero-gradient-shift {
  0% {
    background-position: 100% 50%;
  }
  24% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-copy-bottom .lead {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-media {
  overflow: hidden;
  padding: 10px;
}

.hero-media img {
  border-radius: calc(var(--radius) - 4px);
  width: 100%;
  object-fit: cover;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.page-title {
  font-size: clamp(34px, 5vw, 48px);
}

.service-grid,
.testimonial-grid,
.stats-grid,
.case-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case-card:hover,
.stat-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 138, 148, 0.22);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: var(--text);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 50px;
}

.service-card,
.stat-card,
.case-card {
  padding: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  text-align: center;
  width: 100%;
  max-width: 340px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.testimonial-stars {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.testimonial-stars::before {
  content: "★★★★★";
}

.testimonial-card p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  font-size: 14px;
}

.testimonial-card strong {
  margin-top: auto;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
}

.logo-strip-section {
  padding: 18px 0 72px;
}

.logo-strip-label {
  margin-bottom: 18px;
  color: var(--text);
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
}

.logo-strip {
  overflow: hidden;
}

.logo-marquee {
  --logo-gap: 34px;
  display: flex;
  width: max-content;
  align-items: center;
  animation: logo-marquee-scroll 28s linear infinite;
  will-change: transform;
}

.logo-strip:hover .logo-marquee,
.logo-strip:focus-within .logo-marquee {
  animation-play-state: paused;
}

.logo-track {
  display: flex;
  flex-shrink: 0;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
  align-items: center;
}

.logo-track img {
  height: 35px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.logo-track img:hover {
  opacity: 0.88;
}

@keyframes logo-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.page-hero {
  padding-top: 56px;
  padding-bottom: 16px;
}

.page-body .card,
.prose.card,
.form-card {
  padding: 28px;
}

.prose h2,
.prose h3 {
  margin-top: 1.4em;
}

.page-body .prose > h2:first-child {
  font-size: clamp(40px, 5vw, 54px);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 16px;
}

.page-body .prose > h2 {
  font-size: clamp(32px, 3.6vw, 40px);
  line-height: 1.15;
}

.prose ul {
  padding-left: 1.2rem;
}

.about-float-image {
  float: right;
  width: 550px !important;
  max-width: 550px !important;
  height: auto;
  margin: 0 0 18px 28px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

@media (max-width: 700px) {
  .about-float-image {
    float: none;
    width: 100%;
    max-width: 360px;
    margin: 0 0 20px;
  }
}

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

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

.site-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 500;
  color: var(--text);
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 10px;
  font: inherit;
  color: var(--text);
  min-height: 40px;
  background: transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-form textarea {
  min-height: 140px;
  padding: 10px;
  resize: vertical;
}

.site-form input:focus,
.site-form textarea:focus {
  outline: none;
  border-color: rgba(0, 138, 148, 0.75);
  box-shadow: 0 0 0 4px rgba(0, 138, 148, 0.12);
  background: rgba(0, 138, 148, 0.015);
}

.span-2 {
  grid-column: span 2;
}

.form-legal {
  margin: 14px 0 18px;
  font-size: 13px;
}

.form-status {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.4;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #8b1a1a;
}

form[data-formspree] button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.stat-card strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number {
  display: inline-block;
}

.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.55s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card div {
  padding: 18px;
}

.blog-overview-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.blog-title-link {
  color: var(--text);
  text-decoration: none;
}

.blog-title-link:hover,
.blog-title-link:focus-visible {
  color: var(--accent);
  text-decoration: none;
}

.blog-title-link h2,
.blog-title-link h3 {
  color: inherit;
  transition: color 0.22s ease;
}

.blog-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.blog-feature-copy h2 {
  font-size: clamp(34px, 5vw, 48px);
  margin: 0;
}

.blog-feature-copy p {
  margin: 0;
  font-size: 0.95em;
}

.blog-list {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.blog-card {
  overflow: hidden;
  padding: 25px;
}

.blog-card-cover {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.blog-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.blog-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.blog-card p {
  margin: 0 0 10px;
  font-size: 0.95em;
}

.blog-card div {
  padding: 0;
}

.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  transition: color 0.22s ease;
}

.blog-cta:hover,
.blog-cta:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.article-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.article-card {
  overflow: hidden;
}

.article-header {
  padding: 30px 30px 0;
  text-align: center;
}

.article-meta {
  color: var(--muted);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-content {
  padding: 30px;
}

.site-footer {
  position: relative;
  display: flex;
  padding: 30px 0 60px;
  border-top: 1px solid var(--color-border-normal, var(--border)) !important;
}

.site-footer .wr {
  width: min(var(--container), calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
  box-sizing: content-box;
}

._bea1daea {
  gap: 40px;
  display: flex;
  justify-content: space-between;
}

._c0e4633f {
  font-size: 1em;
}

._c0e4633f p {
  margin: 0 0 4px;
}

.footer-kvk-inline {
  color: rgba(0, 0, 0, 0.47);
  font-size: 14px;
}

._a6d0f97b {
  margin-top: 10px;
}

._9fc8f72f {
  width: 65px;
  display: block;
  max-width: 100%;
}

._4dba2c1d {
  gap: 10px;
  display: flex;
  margin-top: 1em;
}

._3d4606c5 {
  color: inherit;
}

._3d4606c5:hover {
  color: var(--text);
}

._317000c4 {
  display: block;
}

._370825cf {
  margin: -10px;
  display: flex;
  margin-top: 10px;
  align-items: flex-start;
  flex-direction: column;
}

._370825cf > * {
  margin: 10px;
}

._6d77f4ac {
  gap: 80px;
  margin: 0;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

._f7277ae9 {
  color: var(--text);
  margin: 0 0 5px;
  font-weight: 500;
}

._f7277ae9 p {
  margin: 0;
}

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

._171c7314 {
  padding: 5px 0;
  font-size: 0.9em;
}

._7d179ab3 {
  color: var(--muted);
  padding: 10px 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

._7d179ab3::after {
  display: none;
}

._7d179ab3:hover,
._7d179ab3:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 9999;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(92vw, 720px);
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  pointer-events: auto;
}

.cookie-banner[hidden] {
  display: none !important;
}

.footer-cookie-link {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9em;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
}

.cookie-banner,
.cookie-banner * {
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.cookie-modal-card {
  position: relative;
  width: min(580px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  color: #000;
}

.cookie-modal-card h2 {
  margin: 0 0 18px;
  color: #000;
  font-size: 22px;
  line-height: 1.25;
}

.cookie-modal-card p {
  margin: 0 0 28px;
  color: #000;
  font-size: 15px;
  line-height: 1.45;
}

.cookie-settings-form {
  display: grid;
  gap: 24px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: flex-start;
  color: #000;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: #000;
}

.cookie-option strong {
  display: block;
  margin-bottom: 8px;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.25;
}

.cookie-option small {
  display: block;
  color: #1f1f1f;
  font-size: 15px;
  line-height: 1.45;
}

.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.cookie-policy-link {
  color: #000 !important;
  background: #fff !important;
  border: 1px solid #1f1f1f !important;
  box-shadow: none !important;
}

.cookie-policy-link::after {
  display: none !important;
}

.cookie-save {
  color: #fff !important;
  background: #000 !important;
  box-shadow: none !important;
}

@media (max-width: 620px) {
  .cookie-modal {
    align-items: stretch;
    padding: 10px;
  }

  .cookie-modal-card {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 22px 20px;
  }

  .cookie-modal-card h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .cookie-modal-card > p {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .cookie-settings-form {
    gap: 14px;
  }

  .cookie-option {
    grid-template-columns: 22px 1fr;
    gap: 10px;
  }

  .cookie-option input {
    width: 20px;
    height: 20px;
  }

  .cookie-option strong {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .cookie-option small {
    font-size: 12.5px;
    line-height: 1.32;
  }

  .cookie-modal-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .cookie-modal-actions .btn {
    justify-content: center;
    width: 100%;
    min-height: 42px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@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;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .blog-feature {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .header-inner {
    gap: 10px;
  }

  .header-cta-desktop {
    display: none !important;
  }

  .header-cta-mobile {
    display: inline-flex !important;
    margin-left: auto;
    white-space: nowrap;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    z-index: 30;
    padding: 18px;
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav ul {
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .about-float-image {
    float: none;
    display: block;
    width: min(100%, 280px) !important;
    max-width: 280px !important;
    height: auto !important;
    margin: 0 auto 20px !important;
  }

  ._bea1daea {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  ._6d77f4ac {
    order: -1;
  }

  .site-form .form-grid,
  .stats-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    transform: none;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    margin-left: 0;
  }
}

.newsletter-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(96px, 14vh, 140px) 0 clamp(110px, 18vh, 180px);
}

.newsletter-inner {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(54px, 7vw, 68px);
  line-height: 1.1;
  letter-spacing: normal;
  font-weight: 800;
}

.newsletter-title .newsletter-byline {
  display: block;
  font-size: clamp(42px, 5.6vw, 56px);
  line-height: 1.1;
  letter-spacing: normal;
}

.newsletter-title .accent {
  color: var(--accent);
}

.newsletter-kicker {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.35;
}

.newsletter-copy {
  margin: 38px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.newsletter-inner > .site-form {
  display: flex;
  visibility: visible !important;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  width: 500px;
  max-width: 100%;
  margin: 30px auto 0;
}

.newsletter-inner > .site-form .form-grid,
.newsletter-inner > .site-form .form-grid.single {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.newsletter-inner > .site-form label {
  display: block;
  background: #fff;
  border: 1.5px solid #aeb8bd;
  border-radius: 6px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.045), 0 1px 0 rgba(0, 0, 0, 0.04);
}

.newsletter-inner > .site-form label > span,
.newsletter-inner > .site-form .form-legal {
  display: none;
}

.newsletter-inner > .site-form input {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 42px;
  min-height: 42px;
  border: 0 !important;
  border-radius: 6px;
  background: transparent !important;
  box-shadow: none;
  color: var(--text);
  font-size: 15px;
}

.newsletter-inner > .site-form input::placeholder {
  color: #7a8287;
  opacity: 1;
}

.newsletter-inner > .site-form .btn {
  min-height: 42px;
  padding: 0 24px;
  border-radius: 10px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.19);
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .newsletter-page {
    padding-top: 72px;
  }

  .newsletter-inner > .site-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-inner > .site-form .btn {
    width: 100%;
  }
}
