:root {
  --bg: #f6f8fc;
  --bg-soft: #f4f7fc;
  --bg-card: #f8fafc;
  --bg-white: #ffffff;
  --heading: #183261;
  --text: #183261;
  --muted: #62799c;
  --muted-2: #7d93b0;
  --line: #dce6f2;
  --line-strong: #2e66eb;
  --primary: #2f67eb;
  --primary-dark: #1e55dc;
  --primary-soft: #eaf0ff;
  --success: #16bf72;
  --success-soft: #dcf7e9;
  --footer: #182f5a;
  --footer-line: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 6px 16px rgba(16, 38, 77, 0.08);
  --shadow-md: 0 16px 30px rgba(17, 38, 77, 0.12);
  --shadow-lg: 0 18px 48px rgba(17, 38, 77, 0.14);
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-wrap {
  overflow: visible;
}

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

.section {
  padding: 108px 0;
}

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

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

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

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--heading);
}

.section-intro,
.about-copy p,
.contact-copy p,
.feature-copy p,
.process-card p,
.pricing-summary,
.pricing-note,
.value-card p,
.footer-brand-block p {
  font-size: 18px;
  line-height: 1.58;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.section-intro {
  margin: 22px auto 0;
  max-width: 780px;
}

.site-header {
  padding: 22px 0 4px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-text {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #22355f;
}

.brand-text span {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.main-nav a {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #687e9f;
  transition: color 0.18s ease;
}

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

.header-cta,
.btn {
  min-height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2f6df2 0%, #2f67eb 100%);
  box-shadow: 0 12px 24px rgba(47, 103, 235, 0.24);
}

.btn-primary:hover,
.header-cta:hover {
  box-shadow: 0 14px 30px rgba(47, 103, 235, 0.28);
}

.btn-secondary,
.btn-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.68);
  border: 2px solid var(--primary);
}

.btn-secondary {
  min-width: 162px;
}

.btn-ghost {
  width: 100%;
}

.full-width {
  width: 100%;
}

.desktop-only {
  display: inline-flex;
}

.mobile-only,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--heading);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  padding: 44px 0 92px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(251, 253, 255, 0.82) 42%, rgba(240, 246, 255, 0.92) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 620px);
  gap: clamp(44px, 5vw, 78px);
  align-items: start;
  justify-content: space-between;
}

.hero-copy {
  padding-top: 24px;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #d9e5f2;
  border-radius: 999px;
  background: rgba(240, 246, 255, 0.82);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-copy h1 {
  margin: 34px 0 24px;
  max-width: 11.2ch;
  font-size: clamp(48px, 5.35vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.062em;
  font-weight: 800;
  color: var(--heading);
}

.hero-copy h1 span {
  display: block;
  white-space: normal;
  text-wrap: balance;
}

.hero-copy h1 .accent {
  color: var(--primary);
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1.55;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: #173058;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--success);
  background: linear-gradient(180deg, #f6fffb 0%, #e8fff3 100%);
  box-shadow: inset 0 0 0 3px rgba(20, 184, 106, 0.08);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.blue-checks li::before {
  border-color: var(--primary);
  background: linear-gradient(180deg, #f4f7ff 0%, #eef4ff 100%);
  box-shadow: inset 0 0 0 3px rgba(47, 103, 235, 0.08);
}

.blue-checks li::after {
  border-left-color: var(--primary);
  border-bottom-color: var(--primary);
}

.hero-points {
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  min-width: 286px;
}

.hero-media-wrap {
  position: relative;
  padding-top: 56px;
}

.hero-media-card,
.feature-media {
  overflow: hidden;
  border-radius: 18px;
}

.hero-media-card {
  aspect-ratio: 1.18 / 0.8;
  box-shadow: var(--shadow-lg);
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 234px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.floating-icon,
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #163059;
}

.hero-floating-card span {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #6880a0;
}

.services-section {
  padding-top: 84px;
}

.feature-stack {
  display: grid;
  gap: 62px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 552px;
  gap: 64px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 552px minmax(0, 1fr);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
}

.feature-copy h3,
.process-card h3,
.pricing-head h3,
.value-card h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--heading);
}

.feature-copy p {
  margin: 0 0 30px;
  max-width: 560px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e9eefb;
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  margin-bottom: 26px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.feature-media {
  min-height: 314px;
  background: linear-gradient(180deg, rgba(239, 244, 251, 0.96) 0%, rgba(246, 248, 252, 0.96) 100%);
  border: 1px solid rgba(219, 229, 241, 0.7);
}

.feature-media img,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media,
.feature-media-soft,
.feature-media-blue {
  position: relative;
}

.feature-media img,
.feature-media-soft img,
.feature-media-blue img {
  transition: transform 0.5s ease, filter 0.35s ease;
}

.feature-media-soft {
  background: linear-gradient(180deg, #eef3fa 0%, #f7f9fc 100%);
}

.feature-media-blue {
  background: linear-gradient(180deg, #dbeafc 0%, #eef4fb 100%);
}

.process-section {
  padding-top: 92px;
}

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

.process-card,
.pricing-card,
.value-card,
.contact-form {
  position: relative;
  background: rgba(248, 250, 252, 0.88);
  border: 1px solid rgba(219, 229, 241, 0.72);
  border-radius: var(--radius-md);
}

.process-card {
  min-height: 346px;
  padding: 26px 22px 28px;
}

.process-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.process-top .icon-box {
  margin-bottom: 0;
}

.process-number {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: rgba(47, 103, 235, 0.24);
}

.process-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.35;
}

.process-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.pricing-section {
  padding-top: 74px;
}

.pricing-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.pricing-card {
  padding: 34px 32px 32px;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 38px rgba(47, 103, 235, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f6df2 0%, #2f67eb 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(47, 103, 235, 0.26);
}

.pricing-badge svg {
  width: 16px;
  height: 16px;
}

.pricing-head p,
.setup-fee,
.price-line span {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.pricing-head h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 26px 0 8px;
  color: var(--heading);
}

.price-line strong {
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.price-line span {
  font-size: 18px;
  font-weight: 700;
}

.setup-fee {
  margin-bottom: 28px;
}

.pricing-summary {
  margin: 0 0 28px;
}

.pricing-list {
  gap: 16px;
  margin-bottom: 30px;
}

.pricing-note {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 15px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 544px;
  gap: 70px;
  align-items: start;
}

.about-copy p {
  margin: 0 0 24px;
  max-width: 585px;
}

.about-cards {
  display: grid;
  gap: 28px;
}

.value-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 26px 28px;
}

.value-card .icon-box {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 12px;
}

.value-card .icon-box svg {
  width: 20px;
  height: 20px;
}

.value-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.value-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.contact-copy p {
  max-width: 540px;
  margin: 18px 0 38px;
}

.contact-list {
  display: grid;
  gap: 22px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
}

.contact-item .icon-box {
  width: 48px;
  height: 48px;
  margin: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--muted);
}

.contact-item strong {
  font-size: 18px;
  line-height: 1.3;
  color: var(--heading);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 34px 32px 30px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #d6e0ee;
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group textarea {
  min-height: 128px;
  padding: 16px 18px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
  color: #9baac0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(47, 103, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(47, 103, 235, 0.08);
}

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



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

.submit-btn {
  width: auto;
  min-width: 280px;
  justify-self: start;
}

.contact-privacy-note {
  grid-column: 1 / -1;
  max-width: 100%;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  margin-top: 8px;
  padding: 56px 0 24px;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.footer-brand {
  gap: 10px;
}

.footer-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand-mark svg {
  width: 26px;
  height: 26px;
}

.footer-brand-text {
  color: #ffffff;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 18px 0 20px;
  font-size: 17px;
  color: rgba(220, 228, 243, 0.92);
}

.footer-mail,
.footer-col a,
.footer-bottom span,
.footer-bottom p {
  color: rgba(165, 182, 214, 0.9);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-col h3 {
  margin: 4px 0 8px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-col a {
  font-size: 16px;
  line-height: 1.4;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.footer-col a.is-current {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--footer-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 28px;
  }

  .feature-row,
  .feature-row.reverse,
  .about-grid,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .hero-copy {
    padding-top: 12px;
    max-width: none;
  }

  .hero-media-wrap {
    padding-top: 0;
    max-width: 820px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-floating-card {
    left: 22px;
    bottom: 22px;
  }

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

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
  }

  .desktop-only {
    display: none;
  }

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

  .mobile-only {
    display: inline-flex;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .hero-copy h1 {
    margin-top: 30px;
    max-width: none;
    font-size: clamp(44px, 11vw, 64px);
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy p {
    font-size: 19px;
  }

  .section {
    padding: 88px 0;
  }

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

  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding-top: 16px;
  }

  .hero-section {
    padding: 26px 0 54px;
  }

  .hero-copy h1 {
    margin: 26px 0 18px;
    max-width: none;
    line-height: 1.02;
  }

  .hero-copy p,
  .section-intro,
  .about-copy p,
  .contact-copy p,
  .feature-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .btn,
  .btn-primary,
  .btn-secondary,
  .header-cta {
    width: 100%;
  }



  .contact-form .submit-btn {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .hero-media-card {
    aspect-ratio: 1.08 / 0.9;
    border-radius: 22px;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .feature-stack {
    gap: 48px;
  }

  .feature-row {
    gap: 28px;
  }

  .feature-copy h3,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .feature-media {
    min-height: 220px;
  }

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

  .process-card {
    min-height: 0;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .value-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-card {
    padding: 30px 22px 24px;
  }

  .pricing-badge {
    position: static;
    transform: none;
    margin: 0 auto 16px;
  }

  .pricing-note {
    font-size: 14px;
  }

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

/* =========================
   STICKY HEADER + ANIMATIONS 2026
========================= */

[id] {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0 0;
  transition: padding 0.28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(246, 248, 252, 0.78) 0%,
    rgba(246, 248, 252, 0.52) 100%
  );
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.site-header.is-scrolled::before,
.site-header.nav-open::before {
  opacity: 1;
}

.header-inner {
  position: relative;
  min-height: 78px;
  padding: 0 18px;
  border-radius: 22px;
  transition:
    min-height 0.28s ease,
    padding 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.site-header.is-scrolled .header-inner,
.site-header.nav-open .header-inner {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 229, 241, 0.92);
  box-shadow:
    0 14px 34px rgba(17, 38, 77, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-open .brand-mark {
  transform: scale(0.96);
}

.brand-mark {
  transition: transform 0.28s ease;
}

.main-nav a {
  position: relative;
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f6df2 0%, #7aa8ff 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--heading);
  transform: translateY(-1px);
}

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

.header-cta,
.btn {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    filter 0.22s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta:active,
.btn:active {
  transform: translateY(0);
}

.hero-media-card {
  animation: heroFloat 7s ease-in-out infinite;
  transform-origin: center;
}

.hero-floating-card {
  animation: floatingCard 5.5s ease-in-out infinite;
}

.feature-media,
.process-card,
.pricing-card,
.value-card,
.contact-form {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.feature-row:hover .feature-media,
.process-card:hover,
.pricing-card:hover,
.value-card:hover,
.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(17, 38, 77, 0.10);
  border-color: rgba(47, 103, 235, 0.20);
}

.pricing-card.featured:hover {
  box-shadow: 0 24px 50px rgba(47, 103, 235, 0.16);
}

.feature-row:hover .feature-media img,
.feature-row:hover .feature-media-soft img,
.feature-row:hover .feature-media-blue img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

/* Hero text intro */
.hero-copy .hero-pill,
.hero-copy h1,
.hero-copy p,
.hero-copy .hero-points,
.hero-copy .hero-actions {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy .hero-pill { animation-delay: 0.08s; }
.hero-copy h1 { animation-delay: 0.16s; }
.hero-copy p { animation-delay: 0.24s; }
.hero-copy .hero-points { animation-delay: 0.32s; }
.hero-copy .hero-actions { animation-delay: 0.40s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatingCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* mobile nav modernisé */
@media (max-width: 980px) {
  .site-header {
    padding-top: 12px;
  }

  .header-inner {
    min-height: 70px;
    padding: 0 14px;
  }

  .main-nav {
    margin-top: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(219, 229, 241, 0.9);
    box-shadow: 0 18px 36px rgba(17, 38, 77, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .main-nav a::after {
    bottom: -6px;
  }

  .nav-toggle {
    border-radius: 16px;
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      background-color 0.22s ease,
      border-color 0.22s ease;
  }

  .nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(17, 38, 77, 0.10);
  }

  .site-header.is-scrolled .header-inner,
  .site-header.nav-open .header-inner {
    min-height: 68px;
  }
}

@media (max-width: 700px) {
  [id] {
    scroll-margin-top: 96px;
  }

  .hero-media-card,
  .hero-floating-card {
    animation-duration: 0s;
    animation: none;
  }

  .feature-row:hover .feature-media,
  .process-card:hover,
  .pricing-card:hover,
  .value-card:hover,
  .contact-form:hover {
    transform: none;
  }

  .feature-row:hover .feature-media img,
  .feature-row:hover .feature-media-soft img,
  .feature-row:hover .feature-media-blue img {
    transform: none;
    filter: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* =========================
   MOBILE REFINEMENT PASS
========================= */

.mobile-quickbar {
  display: none;
}

.main-nav .header-cta {
  color: #fff;
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
    overflow: visible;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 17px;
  }

  .nav-toggle {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(214, 224, 238, 0.96);
    background: rgba(255, 255, 255, 0.92);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    margin-top: 0;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(219, 229, 241, 0.96);
    box-shadow: 0 22px 48px rgba(17, 38, 77, 0.14);
  }

  .main-nav > a:not(.header-cta) {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #56729c;
  }

  .main-nav > a:not(.header-cta):hover,
  .main-nav > a:not(.header-cta):focus-visible {
    background: rgba(47, 103, 235, 0.06);
    color: var(--heading);
    transform: none;
  }

  .main-nav > a:not(.header-cta)::after {
    display: none;
  }

  .main-nav .header-cta {
    width: 100%;
    margin-top: 8px;
    min-height: 58px;
    justify-content: center;
    color: #fff;
    box-shadow: 0 14px 28px rgba(47, 103, 235, 0.24);
  }

  .site-header.nav-open .header-inner,
  .site-header.is-scrolled .header-inner {
    box-shadow: 0 16px 40px rgba(17, 38, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

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

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero-pill {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero-copy p {
    max-width: none;
  }

  .hero-points {
    gap: 14px;
  }

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

  .feature-stack {
    gap: 38px;
  }

  .feature-row,
  .feature-row.reverse,
  .about-grid,
  .contact-grid {
    gap: 34px;
  }

  .feature-media,
  .process-card,
  .pricing-card,
  .value-card,
  .contact-form {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(17, 38, 77, 0.06);
  }

  .pricing-grid {
    gap: 20px;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    min-height: 64px;
    padding: 0 12px;
    border-radius: 20px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark,
  .footer-brand-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .brand-text {
    font-size: 16px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .main-nav {
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 22px;
    gap: 6px;
  }

  .main-nav > a:not(.header-cta) {
    min-height: 46px;
    padding: 0 8px;
    font-size: 17px;
  }

  .main-nav .header-cta {
    min-height: 56px;
    margin-top: 10px;
    border-radius: 16px;
    font-size: 16px;
  }

  .hero-section {
    padding: 18px 0 44px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-pill {
    font-size: 13px;
  }

  .hero-copy h1 {
    margin: 20px 0 14px;
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .hero-copy p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-points {
    margin-bottom: 24px;
  }

  .check-list {
    gap: 12px;
  }

  .check-list li {
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .header-cta {
    min-height: 56px;
    padding: 0 20px;
    border-radius: 16px;
  }

  .hero-media-card {
    aspect-ratio: 1.08 / 0.94;
    border-radius: 20px;
  }

  .feature-copy h3,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(30px, 8.7vw, 38px);
    line-height: 1.08;
  }

  .section {
    padding: 70px 0;
  }

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

  .section-intro,
  .about-copy p,
  .contact-copy p,
  .feature-copy p,
  .process-card p,
  .pricing-summary,
  .value-card p,
  .footer-brand-block p {
    font-size: 16px;
    line-height: 1.62;
  }

  .feature-stack {
    gap: 30px;
  }

  .feature-row,
  .feature-row.reverse,
  .about-grid,
  .contact-grid {
    gap: 24px;
  }

  .feature-copy .icon-box,
  .process-top .icon-box,
  .contact-item .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .feature-copy .icon-box {
    margin-bottom: 18px;
  }

  .feature-copy h3 {
    margin-bottom: 12px;
  }

  .feature-media,
  .feature-media-soft,
  .feature-media-blue {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
  }

  .feature-media img,
  .feature-media-soft img,
  .feature-media-blue img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .process-card,
  .pricing-card,
  .value-card {
    border-radius: 20px;
  }

  .process-card {
    padding: 22px 18px 20px;
  }

  .process-number {
    font-size: 42px;
  }

  .process-card h3 {
    font-size: 22px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .pricing-card {
    padding: 24px 18px 20px;
  }

  .price-line {
    margin-top: 18px;
  }

  .price-line strong {
    font-size: 46px;
  }

  .pricing-summary,
  .pricing-list {
    margin-bottom: 22px;
  }

  .value-card {
    padding: 20px 18px;
  }

  .contact-copy p {
    margin-bottom: 28px;
  }

  .contact-list {
    gap: 16px;
  }

  .contact-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .contact-item strong {
    font-size: 17px;
  }

  .contact-form {
    gap: 16px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .form-group {
    gap: 8px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
  }

  .form-group textarea {
    min-height: 120px;
    padding: 14px 16px;
  }

  .site-footer {
    padding: 48px 0 32px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-brand-block p {
    margin: 14px 0 16px;
  }

  .footer-col {
    gap: 12px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
  }



}

@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .brand-text {
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .pricing-card,
  .process-card,
  .value-card,
  .contact-form {
    border-radius: 18px;
  }

}


/* =========================
   LEGAL PAGES
========================= */

.contact-privacy-note {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-privacy-note a {
  color: var(--primary);
  font-weight: 700;
}

.legal-page .site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page main {
  flex: 1;
}

.legal-hero {
  padding: 40px 0 34px;
  background:
    radial-gradient(circle at top right, rgba(47, 103, 235, 0.12) 0%, rgba(47, 103, 235, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(241, 246, 255, 0.92) 100%);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: end;
}

.legal-hero-copy {
  max-width: 820px;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(47, 103, 235, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.legal-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  flex: 0 0 8px;
}

.legal-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: var(--heading);
}

.legal-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.legal-hero-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(219, 229, 241, 0.9);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 32px rgba(17, 38, 77, 0.08);
}

.legal-hero-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.legal-hero-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--heading);
}

.legal-hero-card p {
  font-size: 15px;
  line-height: 1.6;
}

.legal-shell {
  padding: 18px 0 84px;
}

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

.legal-sidebar {
  position: sticky;
  top: 108px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(219, 229, 241, 0.86);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(17, 38, 77, 0.06);
}

.legal-sidebar-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.legal-sidebar-nav {
  display: grid;
  gap: 8px;
}

.legal-sidebar-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #5e779c;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.legal-sidebar-nav a:hover,
.legal-sidebar-nav a:focus-visible {
  background: rgba(47, 103, 235, 0.08);
  color: var(--heading);
  transform: translateX(2px);
}

.legal-main {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 34px 34px 30px;
  border-radius: 26px;
  border: 1px solid rgba(219, 229, 241, 0.88);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(17, 38, 77, 0.06);
}

.legal-card h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--heading);
}

.legal-card h3 {
  margin: 28px 0 12px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--heading);
}

.legal-card p,
.legal-card li {
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
}

.legal-card p {
  margin: 0 0 14px;
}

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

.legal-card ul {
  margin: 10px 0 14px;
  padding-left: 22px;
}

.legal-card li + li {
  margin-top: 8px;
}

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

.legal-info-box,
.legal-highlight {
  padding: 20px 20px 18px;
  border-radius: 20px;
  border: 1px solid rgba(219, 229, 241, 0.78);
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.legal-info-box span,
.legal-highlight span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.legal-info-box strong,
.legal-highlight strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--heading);
}

.legal-info-box p,
.legal-highlight p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #6880a0;
}

.legal-breadcrumb a {
  color: var(--primary);
}

.legal-breadcrumb .sep {
  color: #adc0da;
}

.legal-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 18px 18px 0;
  background: rgba(47, 103, 235, 0.06);
}

.legal-note p {
  margin: 0;
  color: #4f678d;
}

.legal-footer-back {
  margin-top: 8px;
}

.legal-footer-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

@media (max-width: 1080px) {
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  .contact-privacy-note {
    font-size: 12px;
    line-height: 1.55;
  }

  .legal-hero {
    padding: 22px 0 18px;
  }

  .legal-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.02;
  }

  .legal-hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .legal-hero-card,
  .legal-sidebar,
  .legal-card,
  .legal-info-box,
  .legal-highlight {
    border-radius: 20px;
  }

  .legal-hero-card,
  .legal-sidebar {
    padding: 18px;
  }

  .legal-shell {
    padding: 10px 0 58px;
  }

  .legal-layout {
    gap: 18px;
  }

  .legal-main {
    gap: 14px;
  }

  .legal-card {
    padding: 24px 18px 22px;
  }

  .legal-card h2 {
    margin-bottom: 14px;
    font-size: 26px;
  }

  .legal-card h3 {
    margin: 22px 0 10px;
    font-size: 18px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .legal-info-box,
  .legal-highlight {
    padding: 16px;
  }

  .legal-sidebar-nav a {
    padding: 11px 12px;
    font-size: 14px;
  }

  .legal-note {
    margin-top: 14px;
    padding: 16px;
  }
}


/* =========================
   COOKIE CONSENT LAYER
========================= */

html.cookie-consent-pending,
html.cookie-modal-open {
  overflow: hidden;
}

html.cookie-consent-pending .site-wrap {
  filter: blur(10px);
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
  transition: filter 0.28s ease, opacity 0.28s ease;
}

html.cookie-modal-open .site-wrap {
  filter: blur(7px);
  opacity: 0.86;
  pointer-events: none;
  user-select: none;
  transition: filter 0.28s ease, opacity 0.28s ease;
}

.cookie-consent,
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
}

.cookie-consent {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 24, 52, 0.18);
}

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

.cookie-consent__dialog,
.cookie-modal__dialog {
  width: min(100%, 860px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(219, 229, 241, 0.96);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(16, 33, 68, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-consent__dialog {
  padding: 28px;
}

.cookie-consent__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.cookie-consent__dialog h2,
.cookie-modal__dialog h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--heading);
}

.cookie-consent__dialog > p,
.cookie-pref-card p,
.cookie-consent__legal {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cookie-consent__actions .btn,
.cookie-modal__actions .btn {
  min-height: 56px;
  min-width: 190px;
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.86);
}

.cookie-inline-link,
.footer-cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-inline-link:hover,
.footer-cookie-settings:hover,
.cookie-inline-link:focus-visible,
.footer-cookie-settings:focus-visible {
  text-decoration: underline;
}

.footer-cookie-settings {
  justify-self: start;
  font-size: 16px;
  line-height: 1.4;
}

.cookie-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 52, 0.28);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.cookie-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.cookie-modal__close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(219, 229, 241, 0.96);
  background: rgba(244, 247, 252, 0.96);
  color: var(--heading);
  font-size: 28px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.cookie-pref-list {
  display: grid;
  gap: 14px;
}

.cookie-pref-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(219, 229, 241, 0.96);
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
}

.cookie-pref-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  color: var(--heading);
}

.cookie-pref-card p {
  margin-top: 6px;
}

.cookie-pref-card--required {
  background: rgba(234, 240, 255, 0.65);
}

.cookie-status--locked {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 103, 235, 0.12);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch__slider {
  position: relative;
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: #d6e0ee;
  box-shadow: inset 0 0 0 1px rgba(24, 50, 97, 0.06);
  transition: background-color 0.22s ease;
}

.cookie-switch__slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(17, 38, 77, 0.16);
  transition: transform 0.22s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: linear-gradient(180deg, #2f6df2 0%, #2f67eb 100%);
}

.cookie-switch input:checked + .cookie-switch__slider::after {
  transform: translateX(24px);
}

.cookie-switch input:focus-visible + .cookie-switch__slider {
  box-shadow: 0 0 0 4px rgba(47, 103, 235, 0.12);
}

@media (max-width: 700px) {
  .cookie-consent,
  .cookie-modal {
    padding: 14px;
  }

  .cookie-consent {
    align-items: flex-end;
  }

  .cookie-consent__dialog,
  .cookie-modal__dialog {
    width: 100%;
    border-radius: 24px;
  }

  .cookie-consent__dialog,
  .cookie-modal__dialog {
    padding: 20px;
  }

  .cookie-consent__actions,
  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-consent__actions .btn,
  .cookie-modal__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .cookie-pref-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-status--locked {
    min-height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.cookie-consent-pending .site-wrap,
  html.cookie-modal-open .site-wrap {
    transition: none;
  }

  .cookie-switch__slider,
  .cookie-switch__slider::after {
    transition: none;
  }
}


/* =========================
   MOBILE AIR / BREATHING ROOM
========================= */
@media (max-width: 700px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .header-inner {
    padding: 0 14px;
  }

  .hero-grid,
  .feature-row,
  .feature-row.reverse,
  .about-grid,
  .contact-grid {
    gap: 28px;
  }

  .hero-actions {
    gap: 14px;
  }

  .contact-form,
  .process-card,
  .pricing-card,
  .value-card {
    border-radius: 22px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .header-inner {
    padding: 0 13px;
  }

  .hero-copy h1 {
    font-size: 33px;
  }
}
