@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  line-height: 1.6;
  color: #1A1D2E;
  background: #FFFDF7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A1D2E;
}

p {
  color: #3D4055;
}

::selection {
  background: rgba(43, 143, 217, 0.15);
  color: #0F4F8C;
}

:focus-visible {
  outline: 2px solid #2B8FD9;
  outline-offset: 2px;
  border-radius: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(2deg);
  }
  50% {
    transform: translate(-5px, -25px) rotate(-1deg);
  }
  75% {
    transform: translate(-15px, -10px) rotate(1deg);
  }
}
@keyframes float-slow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -20px) scale(1.02);
  }
  66% {
    transform: translate(-10px, -15px) scale(0.98);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounce-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes width-expand {
  from {
    width: 0;
  }
  to {
    width: 40px;
  }
}
@keyframes draw-line {
  from {
    stroke-dashoffset: var(--line-length, 1000);
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes underline-draw {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 8px 0;
}
.app-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
  padding: 4px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 101;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: cover;
  transition: filter 0.3s;
}

.dark-hero .app-header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
}

.nav-link {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 500;
  color: #3D4055;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B8FD9;
  border-radius: 1px;
  transition: width 0.3s ease, background 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: #2B8FD9;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.dark-hero .app-header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}
.dark-hero .app-header:not(.scrolled) .nav-link::after {
  background: #fff;
}
.dark-hero .app-header:not(.scrolled) .nav-link:hover, .dark-hero .app-header:not(.scrolled) .nav-link.active {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  padding: 4px;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1D2E;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dark-hero .app-header:not(.scrolled) .hamburger span {
  background: #fff;
}

/* Mobile overlay — unscoped so it works via Teleport to body */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: flex-end;
}
.mobile-overlay.is-open {
  display: flex;
}

.mobile-panel {
  width: 280px;
  height: 100%;
  background: #0F4F8C;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 32px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.mobile-link:hover, .mobile-link.current-menu-item > a, .mobile-link.current_page_item > a {
  color: #fff;
  border-left-color: #00D4AA;
  padding-left: 20px;
}

.app-footer {
  background: linear-gradient(180deg, #0F4F8C, #0a3d6e);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.footer-cta {
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  margin-bottom: 1rem;
}

.footer-cta-btn {
  display: inline-flex;
  padding: 1rem 2rem;
  background: #2B8FD9;
  color: #fff !important;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.2s;
}
.footer-cta-btn:hover {
  background: #4DA8E8;
  transform: translateY(-1px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo span {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  line-height: 1.7;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links h4, .footer-contact h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a, .footer-links span, .footer-contact a, .footer-contact span {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #fff;
}

.footer-contact__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact__item svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.footer-contact__link {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.3) !important;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.footer-contact__link:hover {
  color: #fff !important;
  text-decoration-color: #fff !important;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-social:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm {
  padding: 8px 20px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
}
.btn--md {
  padding: 12px 28px;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
}
.btn--lg {
  padding: 16px 36px;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
}
.btn--primary {
  background: linear-gradient(135deg, #2B8FD9, #4DA8E8);
  color: #fff;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #4DA8E8, #7FC2F0);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
}
.btn--secondary {
  background: #fff;
  color: #2B8FD9;
  border: 2px solid #B8DCF7;
}
.btn--secondary:hover {
  border-color: #2B8FD9;
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.btn--ghost {
  background: transparent;
  color: #2B8FD9;
}
.btn--ghost:hover {
  background: rgba(43, 143, 217, 0.08);
}
.btn--dark {
  background: #fff;
  color: #1A6FB3;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.btn--dark:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pill-badge--teal {
  color: #00D4AA;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
}
.pill-badge--blue {
  color: #4DA8E8;
  background: rgba(77, 168, 232, 0.1);
  border: 1px solid rgba(77, 168, 232, 0.2);
}
.pill-badge--light {
  color: #3D4055;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 220, 247, 0.5);
}

.section-heading {
  margin-bottom: 3rem;
}
.section-heading--center {
  text-align: center;
}
.section-heading--center .section-heading__accent {
  margin: 0 auto 1rem;
}
.section-heading--left {
  text-align: left;
}
.section-heading--left .section-heading__accent {
  margin-bottom: 1rem;
}

.section-heading__accent {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2B8FD9, #7FC2F0);
  border-radius: 2px;
}

.section-heading__title {
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 1rem;
}

.section-heading__subtitle {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: #6B6E82;
  max-width: 600px;
  line-height: 1.7;
}
.section-heading--center .section-heading__subtitle {
  margin: 0 auto;
}

.section-heading__label {
  display: inline-block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00D4AA;
  margin-bottom: 1rem;
}

.section-heading--dark .section-heading__title {
  color: #fff;
}
.section-heading--dark .section-heading__subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.section-heading--dark .section-heading__label {
  color: #00D4AA;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-cell {
  border-radius: 28px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
@media (max-width: 767px) {
  .bento-cell {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
.bento-cell--white {
  background: #FFFFFF;
}
.bento-cell--blue {
  background: #F0F7FF;
  border: 1px solid rgba(184, 220, 247, 0.5);
}
.bento-cell--lavender {
  background: #F8F5FF;
  border: 1px solid rgba(212, 196, 251, 0.5);
}
.bento-cell--peach {
  background: #FFF8F5;
  border: 1px solid rgba(255, 205, 184, 0.5);
}
.bento-cell--mint {
  background: #F0FFF8;
  border: 1px solid rgba(209, 250, 229, 0.8);
}
.bento-cell--hoverable:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 29, 46, 0.12), 0 4px 12px rgba(26, 29, 46, 0.06);
}

.tab-switcher__tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .tab-switcher__tabs {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
  }
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  background: transparent;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .tab-btn {
    padding: 8px 14px;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  }
}
.tab-btn {
  border: 2px solid #F1F2F5;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.tab-btn:hover {
  color: #1A1D2E;
  border-color: #C4C6D0;
}
.tab-btn--active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.tab-fade-enter-active,
.tab-fade-leave-active {
  transition: all 0.3s ease;
}

.tab-fade-enter-from {
  opacity: 0;
  transform: translateX(20px);
}

.tab-fade-leave-to {
  opacity: 0;
  transform: translateX(-20px);
}

.accordion {
  border: 1px solid #F1F2F5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.accordion--open {
  border-color: #B8DCF7;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.accordion + .accordion {
  margin-top: 1rem;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #1A1D2E;
}

.accordion__icon {
  color: #6B6E82;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion--open .accordion__icon {
  transform: rotate(180deg);
  color: #2B8FD9;
}

.accordion__content {
  padding: 0 1.5rem 1.5rem;
  color: #3D4055;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  line-height: 1.7;
}

.accordion-enter-active,
.accordion-leave-active {
  transition: all 0.3s ease;
  overflow: hidden;
}

.accordion-enter-from,
.accordion-leave-to {
  max-height: 0;
  opacity: 0;
}

.accordion-enter-to,
.accordion-leave-from {
  max-height: 200px;
  opacity: 1;
}

.stat-counter {
  text-align: center;
}

.stat-counter__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.stat-counter__number {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  font-weight: 700;
  background: linear-gradient(135deg, #2B8FD9, #D4C4FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-counter__prefix,
.stat-counter__suffix {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #2B8FD9, #D4C4FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-counter__label {
  margin-top: 1rem;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .form-group {
    grid-template-columns: 1fr;
  }
}

.form-field {
  position: relative;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 18px 16px 8px;
  background: #F0F7FF;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
  transition: all 0.2s;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: #4DA8E8;
  background: #fff;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-field label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  pointer-events: none;
  transition: all 0.2s ease;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 0.7rem;
  color: #2B8FD9;
}

/* Checkbox section -- NOT inside .form-field to avoid absolute label issues */
.checkbox-section {
  padding: 1rem 0;
}

.checkbox-title {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  margin-bottom: 1rem;
  font-weight: 500;
}

.checkbox-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .checkbox-options {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid #C4C6D0;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.checkbox-option input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #2B8FD9;
  flex-shrink: 0;
}
.checkbox-option:has(input:checked) {
  border-color: #4DA8E8;
  background: #F0F7FF;
  color: #1A6FB3;
}

.submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 36px;
  background: linear-gradient(135deg, #2B8FD9, #4DA8E8);
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  min-width: 160px;
}
.submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #4DA8E8, #7FC2F0);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.success-msg {
  text-align: center;
  padding: 4rem 2rem;
}
.success-msg .success-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.success-msg h3 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  margin-bottom: 0.5rem;
  color: #1A1D2E;
}
.success-msg p {
  color: #6B6E82;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
}

.next-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.next-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
}

.next-step__num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F7FF;
  color: #2B8FD9;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  border-radius: 50%;
  flex-shrink: 0;
}

.swap-enter-active,
.swap-leave-active {
  transition: all 0.3s ease;
}

.swap-enter-from {
  opacity: 0;
  transform: translateY(10px);
}

.swap-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}

.quote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem 2rem 2rem;
  transition: all 0.3s ease;
}
.quote-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.quote-card__mark {
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: #00D4AA;
  opacity: 0.15;
  pointer-events: none;
}

.quote-card__text {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-card__cite {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.quote-card__cite::before {
  content: "-- ";
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step__number {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  color: #00D4AA;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.process-step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.process-step__title {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.device-wrap {
  perspective: 1200px;
}

.ipad-frame {
  width: 300px;
  height: 410px;
  background: #1a1a2e;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 12px 40px rgba(26, 29, 46, 0.12), 0 4px 12px rgba(26, 29, 46, 0.06);
  transform: rotateY(-10deg) rotateX(4deg);
  transition: transform 0.5s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.ipad-frame:hover {
  transform: rotateY(-3deg) rotateX(1deg);
}
@media (max-width: 767px) {
  .ipad-frame {
    width: 260px;
    height: 355px;
    transform: rotateY(0) rotateX(0);
  }
  .ipad-frame:hover {
    transform: none;
  }
}

.ipad-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #F0F7FF;
  border-bottom: 1px solid #DCEEFB;
}

.app-bar__icon {
  display: flex;
}

.app-bar__title {
  font-size: 11px;
  font-weight: 700;
  color: #0F4F8C;
  flex: 1;
}

.app-bar__badge {
  font-size: 8px;
  font-weight: 700;
  color: #00D4AA;
  background: rgba(0, 212, 170, 0.1);
  padding: 2px 6px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.doc-section {
  padding: 12px;
  border-bottom: 1px solid #F1F2F5;
}

.doc-title {
  font-size: 12px;
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 2px;
}

.doc-meta {
  font-size: 9px;
  color: #6B6E82;
}

.summary-panel {
  flex: 1;
  padding: 12px;
  overflow: hidden;
}

.summary-label {
  font-size: 9px;
  font-weight: 700;
  color: #2B8FD9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.summary-line {
  font-size: 10px;
  color: #3D4055;
  line-height: 1.5;
  padding: 4px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}
.summary-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.summary-line:nth-child(odd) {
  border-left: 2px solid #B8DCF7;
  padding-left: 8px;
}

.qa-input {
  padding: 8px 12px;
  margin: 0 12px 8px;
  background: #F1F2F5;
  border-radius: 8px;
}

.qa-placeholder {
  font-size: 9px;
  color: #6B6E82;
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #F0FFF8;
  font-size: 8px;
  font-weight: 600;
  color: #22C55E;
}

.card {
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.25s ease;
}
.card--default {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.card--glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.card--tinted {
  border: 1px solid transparent;
}
.card--blue {
  background: #F0F7FF;
  border-color: #B8DCF7;
}
.card--lavender {
  background: #F8F5FF;
  border-color: #D4C4FB;
}
.card--peach {
  background: #FFF8F5;
  border-color: #FFCDB8;
}
.card--hoverable:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
}
.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.glow-orb {
  position: absolute;
  width: var(--orb-size);
  height: var(--orb-size);
  top: var(--orb-top);
  left: var(--orb-left);
  background: radial-gradient(circle, var(--orb-color) 0%, transparent 65%);
  border-radius: 50%;
  opacity: var(--orb-opacity);
  filter: blur(40px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.shield-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* =========================================================
   S1: HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a6fb3, #2B8FD9, #4DA8E8);
  padding-top: 80px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    padding-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-bottom: 3rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .hero__content {
    align-items: center;
  }
}

.hero__pulse-dot {
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.75rem, 1.8rem + 4.75vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 1.5rem 0;
}

.hero__title-never {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero__title-never::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #00D4AA;
  border-radius: 2px;
  animation: underline-draw 0.8s ease forwards;
  animation-delay: 1.2s;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .hero__subtitle {
    margin: 0 auto 2rem;
  }
}

.hero__actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero__visual {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__visual {
    max-width: 320px;
    margin: 0 auto;
  }
}

.hero-person {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.2);
}
.hero-person__img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  animation: bounce-subtle 2s infinite;
  z-index: 1;
}

/* =========================================================
   S2: TRUST BAR
   ========================================================= */
.trust-bar {
  background: #FFFDF7;
  border-bottom: 1px solid #F1F2F5;
  padding: 1.5rem 0;
}

.trust-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .trust-bar__container {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  color: #3D4055;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .trust-badge {
    font-size: 11px;
  }
}

.trust-badge__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.trust-badge__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C4C6D0;
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .trust-badge__dot {
    display: none;
  }
}

/* =========================================================
   S3: THE PROBLEM
   ========================================================= */
.problem-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F4F8C, #1A6FB3);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .problem-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.problem-section__inner {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .problem-section__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.problem-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.problem-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .problem-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.problem-stat {
  text-align: center;
  padding: 2rem;
  position: sticky;
  top: 120px;
}
@media (max-width: 767px) {
  .problem-stat {
    position: static;
    padding: 1rem;
  }
}

.problem-stat__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}

.problem-stat__value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  font-weight: 700;
  background: linear-gradient(135deg, #2B8FD9, #D4C4FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-stat__pct {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #2B8FD9, #D4C4FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-stat__caption {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.problem-stat__source {
  display: block;
  margin-top: 1rem;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: rgba(255, 255, 255, 0.3);
  font-style: normal;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  border-left-width: 4px;
  border-left-style: solid;
  transition: all 0.3s ease;
}
.problem-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}
.problem-card--peach {
  border-left-color: #FF9B6A;
}
.problem-card--lavender {
  border-left-color: #D4C4FB;
}
.problem-card--teal {
  border-left-color: #00D4AA;
}
.problem-card h4 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.problem-card p {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* =========================================================
   S4: THE SOLUTION (Bento Grid)
   ========================================================= */
.solution-section {
  background: #FFFDF7;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .solution-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.solution-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.bento-content h3 {
  margin: 0;
}

.bento-content__title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.bento-content__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bento-content__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}
.bento-content__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #3D4055;
}
.bento-content__list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00D4AA;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .bento-content--horizontal {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .bento-content--horizontal .bento-content__title {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .bento-content--horizontal .bento-content__desc {
    margin-bottom: 0;
  }
}

.bento-chat-mock {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin: 1rem 0;
}

.bento-chat-mock__msg {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  line-height: 1.5;
  max-width: 90%;
}
.bento-chat-mock__msg--user {
  align-self: flex-end;
  background: #D4C4FB;
  color: #1A1D2E;
  border-bottom-right-radius: 4px;
}
.bento-chat-mock__msg--ai {
  align-self: flex-start;
  background: #fff;
  color: #3D4055;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}

/* =========================================================
   S5: INDUSTRY USE CASES
   ========================================================= */
.industry-section {
  background: #F0F7FF;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .industry-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.industry-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.tab-panel-inner {
  max-width: 780px;
  margin: 0 auto;
}

.tab-panel-inner__heading {
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.tab-panel-inner__scenario {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2rem 2rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.8;
  font-style: italic;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}

.tab-panel-inner__quote-mark {
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: #B8DCF7;
  opacity: 0.4;
  pointer-events: none;
}

.tab-panel-inner__uses {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
}
.tab-panel-inner__uses li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  padding: 6px 0;
}
.tab-panel-inner__uses li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4DA8E8;
  flex-shrink: 0;
}

/* =========================================================
   S6: HOW IT WORKS
   ========================================================= */
.how-section {
  background: linear-gradient(160deg, #1A6FB3, #2B8FD9);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .how-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.how-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.how-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.how-steps__connector {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 52px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .how-steps__connector {
    width: 1px;
    height: 24px;
    margin-top: 0;
  }
}

.how-callout {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  border-left: 4px solid #00D4AA;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 12px 12px 0;
}
.how-callout p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   S7: DATA SOVEREIGNTY
   ========================================================= */
.sovereignty-section {
  background: #FFFDF7;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .sovereignty-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.sovereignty-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.sovereignty-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .sovereignty-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.sovereignty-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sovereignty-content__heading {
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 1.5rem 0 2rem;
}

.sovereignty-content__italic {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
}

.sovereignty-content__body p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.sovereignty-content__body p:last-child {
  margin-bottom: 0;
}

.sovereignty-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .sovereignty-visual {
    order: -1;
  }
}

.sovereignty-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .sovereignty-pillars {
    grid-template-columns: 1fr;
  }
}

.sovereignty-pillar {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2rem 2rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
  transition: all 0.25s ease;
}
.sovereignty-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
}

.sovereignty-pillar__watermark {
  position: absolute;
  top: -8px;
  right: 12px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: #F1F2F5;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sovereignty-pillar__title {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.sovereignty-pillar__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  line-height: 1.7;
  position: relative;
}

/* =========================================================
   S8: VOICES
   ========================================================= */
.voices-section {
  background: linear-gradient(135deg, #0F4F8C, #1a6fb3);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .voices-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.voices-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.voices-col--left {
  display: flex;
}
.voices-col--left > .quote-card {
  flex: 1;
}
.voices-col--right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   S9: BY THE NUMBERS
   ========================================================= */
.stats-section {
  background: #FFFDF7;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .stats-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.stats-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.stats-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.stats-row__divider {
  width: 1px;
  height: 60px;
  background: #C4C6D0;
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 767px) {
  .stats-row__divider {
    display: none;
  }
}

/* =========================================================
   S10: CTA (HomePage)
   ========================================================= */
.home-page .cta-section {
  background: linear-gradient(135deg, #2B8FD9, #00D4AA);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .home-page .cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.home-page .cta-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-page .cta-section__title {
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .cta-section__subtitle {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

.home-page .cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section__ghost {
  color: #fff !important;
}
.cta-section__ghost:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* ==============================================
   S1: HERO -- About page (Blue gradient)
   ============================================== */
.about-page .page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a6fb3, #2B8FD9, #4DA8E8);
  padding: 200px 0 100px;
}
@media (max-width: 767px) {
  .about-page .page-hero {
    padding: 140px 0 64px;
  }
}

.about-page .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-page .page-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}

.about-page .page-hero__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.75rem, 1.8rem + 4.75vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-hero__strike {
  text-decoration: line-through;
  text-decoration-color: #FF9B6A;
  text-decoration-thickness: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.about-page .page-hero__subtitle {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-style: italic;
  color: #00D4AA;
  line-height: 1.3;
}
.about-page .page-hero__subtitle em {
  font-style: italic;
}

/* ==============================================
   S2: THE PRIVACY PARADOX -- Cream editorial
   ============================================== */
.paradox-section {
  background: #FFFDF7;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .paradox-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.paradox-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.paradox-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .paradox-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.paradox-text__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 2rem;
}

.paradox-text p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.85;
}
.paradox-text p + p {
  margin-top: 1.5rem;
}

.paradox-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .paradox-visual {
    max-width: 280px;
    margin: 0 auto;
  }
}

.paradox-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* ==============================================
   S3: TIMELINE -- Blue gradient section
   ============================================== */
.timeline-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1A6FB3, #2B8FD9);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .timeline-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.timeline-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .timeline-track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .timeline-track {
    grid-template-columns: 1fr;
  }
}

.timeline-track__line {
  display: none;
}
@media (min-width: 1024px) {
  .timeline-track__line {
    display: block;
    position: absolute;
    top: 42px;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #00D4AA, #4DA8E8, #00D4AA);
    opacity: 0.3;
    z-index: 0;
  }
}

.timeline-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.25s ease;
}
.timeline-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.timeline-card__year {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: #00D4AA;
  margin-bottom: 0.5rem;
}

.timeline-card__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.timeline-card__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

/* ==============================================
   S4: MISSION & VISION -- Cream background
   ============================================== */
.mv-section {
  background: #FFFDF7;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .mv-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.mv-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
  transition: all 0.25s ease;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
}
.mv-card--blue {
  border-left: 4px solid #2B8FD9;
}
.mv-card--teal {
  border-left: 4px solid #00D4AA;
}

.mv-card__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  color: #C4C6D0;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}
.mv-card__icon svg {
  width: 100%;
  height: 100%;
}

.mv-card__inner {
  position: relative;
  z-index: 1;
}

.mv-card__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 1.5rem;
}

.mv-card p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.85;
}

/* ==============================================
   S5: VALUES -- Blue-50 background
   ============================================== */
.values-section {
  background: #F0F7FF;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .values-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.values-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.value-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 767px) {
  .value-block {
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
  }
}

.value-block__number {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 800;
  color: #C4C6D0;
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.5rem;
}
@media (max-width: 767px) {
  .value-block__number {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  }
}

.value-block__accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.value-block__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 1rem;
}

.value-block__content p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.85;
  max-width: 780px;
}

/* ==============================================
   S6: TEAM -- Cream background
   ============================================== */
.team-section {
  background: #FFFDF7;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .team-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.team-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .team-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.team-card {
  text-align: center;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 3rem 2rem;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}

.team-card__avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.team-card__name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 4px;
}

.team-card__role {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 600;
  color: #2B8FD9;
  margin-bottom: 1.5rem;
}

.team-card__bio {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.75;
  text-align: left;
}

.team-info__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 1.5rem;
}

.team-info p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.85;
}
.team-info p + p {
  margin-top: 1.5rem;
}

/* ==============================================
   S7: CTA -- About page (Blue-to-teal gradient)
   ============================================== */
.about-page .cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2B8FD9, #1A6FB3, #00D4AA);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .about-page .cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.about-page .cta-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.about-page .cta-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-page .cta-section__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.about-page .cta-section__subtitle {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about-page .cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section__ghost-btn {
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
}
.cta-section__ghost-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}

/* --- SHARED SECTION SCAFFOLDING --- */
.contact-page .section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .contact-page .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.contact-page .section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

.contact-page .section--cream {
  background: #FFFDF7;
}

.contact-page .section--white {
  background: #fff;
}

/* --- S1: PAGE HERO (Contact) --- */
.contact-page .page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F0F7FF, #FFFDF7);
}
@media (max-width: 767px) {
  .contact-page .page-hero {
    padding: 120px 0 56px;
  }
}

.contact-page .page-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

.contact-page .page-hero__title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.75rem, 1.8rem + 4.75vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.contact-page .page-hero__title .gradient {
  background: linear-gradient(135deg, #2B8FD9, #D4C4FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .contact-page .page-hero__title {
    font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  }
}

.contact-page .page-hero__subtitle {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  color: #3D4055;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .contact-page .page-hero__subtitle {
    font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
    max-width: 420px;
  }
}

/* --- S2: CONTACT SPLIT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-form-col__heading {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1A1D2E;
}

.contact-form-intro {
  color: #6B6E82;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Info Card */
.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F7FF;
  border-radius: 8px;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.info-value {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
  font-weight: 500;
}
.info-value[href] {
  color: #2B8FD9;
  text-decoration: none;
}
.info-value[href]:hover {
  text-decoration: underline;
}

/* Process Card (Contact page) */
.process-card {
  background: #F0F7FF;
  border-left: 3px solid #2B8FD9;
  border-radius: 20px;
  padding: 2rem;
}

.process-card__heading {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 1.5rem;
}

.contact-page .process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-page .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 0;
}

.contact-page .process-step__num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2B8FD9, #4DA8E8);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-page .process-step__title {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 600;
  color: #1A1D2E;
  margin-bottom: 2px;
}

.contact-page .process-step__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* Security Callout */
.security-callout {
  background: #F0FFF8;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.security-callout__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.security-callout__text {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.65;
  margin: 0;
}

/* --- S3: FAQ --- */
.faq-container {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

/* --- S4: LOCATION --- */
.location-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .location-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.location-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.uk-outline {
  width: 80px;
  height: auto;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.location-label {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  letter-spacing: 0.02em;
}

.privacy-page .section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .privacy-page .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.privacy-page .section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.privacy-page .section--cream {
  background: #FFFDF7;
}

.privacy-page .page-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F2F5;
}

.privacy-page .page-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.privacy-page .page-hero__title {
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-page .page-hero__subtitle {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #6B6E82;
}

/* KEY TAKEAWAY */
.key-takeaway {
  background: rgba(0, 212, 170, 0.08);
  border-left: 4px solid #00D4AA;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.key-takeaway p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.8;
  margin: 0;
}

/* LAYOUT */
.privacy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
}
@media (max-width: 767px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* TOC */
@media (min-width: 1024px) {
  .privacy-toc {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.toc-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #FFFFFF;
  border: 1px solid #F1F2F5;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  margin-bottom: 1rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .toc-toggle {
    display: flex;
  }
}
.toc-toggle svg {
  transition: transform 0.2s;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 767px) {
  .toc-nav {
    display: none;
  }
  .privacy-toc--open .toc-nav {
    display: flex;
    margin-bottom: 1.5rem;
  }
}
.toc-nav a {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  padding: 6px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.toc-nav a:hover {
  color: #2B8FD9;
  background: #F0F7FF;
  border-left-color: #2B8FD9;
}
.toc-nav .toc-active {
  color: #2B8FD9 !important;
  background: #F0F7FF;
  border-left-color: #2B8FD9 !important;
  font-weight: 600;
}

/* CONTENT */
.privacy-content {
  max-width: 740px;
}

.policy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}
.policy-section h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F1F2F5;
}
.policy-section h3 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  margin: 1.5rem 0 0.5rem;
}
.policy-section p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.policy-section ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}
.policy-section ul li {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.policy-section strong {
  color: #1A1D2E;
  font-weight: 600;
}
.policy-section a {
  color: #2B8FD9;
}
.policy-section a:hover {
  text-decoration: underline;
}

.contact-box {
  background: #F0F7FF;
  border: 1px solid #B8DCF7;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.contact-box p {
  margin-bottom: 4px;
}
.contact-box p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   VOICES CTA (Front Page)
   ============================================================ */
.voices-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   SOLUTIONS PAGE STYLES
   ============================================================ */
.solutions-page .section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.solutions-page .section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}
.solutions-page .section--cream { background: #FFFDF7; }
.solutions-page .section--white { background: #FFFFFF; }
.solutions-page .section--blue-light { background: #F0F7FF; }
.solutions-page .section--blue-gradient {
  background: linear-gradient(135deg, #1a6fb3, #2B8FD9, #4DA8E8);
  color: #fff;
}
.solutions-page .section--blue-gradient h1,
.solutions-page .section--blue-gradient h2,
.solutions-page .section--blue-gradient h3,
.solutions-page .section--blue-gradient h4 { color: #fff; }
.solutions-page .section--blue-gradient p { color: rgba(255,255,255,0.8); }
.solutions-page .section--cta {
  background: linear-gradient(135deg, #2B8FD9, #1A6FB3, #00D4AA);
  color: #fff;
}

.sol-hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a6fb3, #2B8FD9, #4DA8E8);
}
@media (max-width: 767px) {
  .sol-hero { padding: 140px 0 64px; }
}
.sol-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sol-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}
.sol-hero__title {
  font-size: clamp(2.75rem, 1.8rem + 4.75vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin: 1.5rem 0;
  line-height: 1.1;
}
.sol-hero__accent {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: rgba(255,255,255,0.95);
}
.sol-hero__subtitle {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.sol-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.overview-lead {
  font-size: 18px;
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.overview-text p {
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.overview-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .overview-highlights { grid-template-columns: 1fr; }
}
.overview-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  background: #F0F7FF;
  border-radius: 12px;
  border: 1px solid rgba(184, 220, 247, 0.5);
}
.overview-highlight strong {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
}
.overview-highlight span {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
}
.overview-highlight__icon {
  flex-shrink: 0;
  display: flex;
  margin-top: 2px;
}

/* Overview Device Mockup */
.overview-device__frame {
  max-width: 400px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 12px 40px rgba(26, 29, 46, 0.12), 0 4px 12px rgba(26, 29, 46, 0.06);
}
.overview-device__screen {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.overview-device__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #F0F7FF;
  font-size: 11px;
  font-weight: 700;
  color: #0F4F8C;
  border-bottom: 1px solid #DCEEFB;
}
.overview-device__badge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 700;
  color: #00D4AA;
  background: rgba(0, 212, 170, 0.1);
  padding: 2px 6px;
  border-radius: 100px;
  text-transform: uppercase;
}
.overview-device__content {
  display: flex;
  gap: 4px;
  padding: 12px;
}
.overview-device__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  color: #6B6E82;
  transition: all 0.2s;
}
.overview-device__feature.active {
  background: #F0F7FF;
  color: #1A6FB3;
}
.overview-device__status {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #F0FFF8;
  font-size: 8px;
  font-weight: 600;
  color: #22C55E;
}

/* Features Deep Dive */
.features-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .features-deep { grid-template-columns: 1fr; }
}
.feature-deep {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid #F1F2F5;
  transition: all 0.3s;
}
.feature-deep:hover {
  border-color: #B8DCF7;
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
  transform: translateY(-4px);
}
.feature-deep__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.feature-deep__num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  color: #7FC2F0;
  letter-spacing: 0.1em;
}
.feature-deep__icon {
  display: flex;
}
.feature-deep__header h3 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
}
.feature-deep__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.feature-deep__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.feature-deep__detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.5;
}
.feature-deep__detail svg { flex-shrink: 0; margin-top: 2px; }
.feature-deep__example {
  background: #F0F7FF;
  border-radius: 12px;
  padding: 1rem;
  border-left: 3px solid #4DA8E8;
}
.feature-deep__example-label {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  color: #2B8FD9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.feature-deep__example p {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.7;
  font-style: italic;
}

/* Comparison Table */
.comparison-table {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.comparison-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: #F1F2F5;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
}
@media (max-width: 767px) {
  .comparison-header {
    grid-template-columns: 1fr 1fr 1fr;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  }
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-top: 1px solid #F1F2F5;
}
@media (max-width: 767px) {
  .comparison-row { grid-template-columns: 1fr 1fr 1fr; }
}
.comparison-row:hover { background: #F0F7FF; }
.comparison-cell {
  padding: 1rem 1.5rem;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .comparison-cell {
    padding: 0.5rem 1rem;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  }
}
.comparison-cell--label { font-weight: 600; color: #1A1D2E; }
.comparison-cell--other { color: #6B6E82; }
.comparison-cell--skipjak { color: #1A1D2E; font-weight: 500; }

/* Architecture */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .arch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .arch-grid { grid-template-columns: 1fr; }
}
.arch-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #F1F2F5;
  transition: all 0.3s;
}
.arch-card:hover {
  border-color: #B8DCF7;
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
  transform: translateY(-4px);
}
.arch-card h4 {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  margin: 1rem 0 0.5rem;
}
.arch-card p {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  line-height: 1.7;
}
.arch-card__icon { display: flex; }

/* Formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .formats-grid { grid-template-columns: 1fr; }
}
.format-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #F1F2F5;
  transition: all 0.2s;
}
.format-card:hover {
  border-color: #B8DCF7;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.format-card__ext {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F7FF;
  color: #2B8FD9;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  border-radius: 8px;
  flex-shrink: 0;
}
.format-card__info strong {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
}
.format-card__info span {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
  line-height: 1.5;
}

/* Security */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .security-grid { grid-template-columns: 1fr; }
}
.security-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.security-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.security-card h4 {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  margin: 0.5rem 0;
  color: #fff;
}
.security-card p {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.security-card__icon { display: flex; }
.security-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 12px;
}
.security-callout p {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
  line-height: 1.7;
}
.security-callout svg { flex-shrink: 0; margin-top: 2px; }

/* Requirements */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .requirements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .requirements-grid { grid-template-columns: 1fr; }
}
.req-card {
  text-align: center;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #F1F2F5;
}
.req-card h4 {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  margin: 1rem 0 0.5rem;
}
.req-card p {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  line-height: 1.7;
}
.req-card__icon { display: flex; justify-content: center; }

/* Solutions CTA */
.sol-cta {
  text-align: center;
}
.sol-cta h2 {
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sol-cta p {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.sol-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BLOG PAGE STYLES
   ============================================================ */
.blog-page .section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.blog-page .section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}
.blog-page .section--cream { background: #FFFDF7; }
.blog-page .section--white { background: #FFFFFF; }
.blog-page .section--blue-gradient {
  background: linear-gradient(135deg, #1a6fb3, #2B8FD9, #4DA8E8);
}

/* Blog Hero */
.blog-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F2F5;
}
@media (max-width: 767px) {
  .blog-hero { padding: 120px 0 56px; }
}
.blog-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}
.blog-hero__title {
  font-size: clamp(2.75rem, 1.8rem + 4.75vw, 5rem);
  font-weight: 700;
  color: #1A1D2E;
  margin: 1rem 0;
}
.blog-hero__subtitle {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  color: #6B6E82;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Featured Post */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
  cursor: pointer;
  transition: all 0.3s;
}
.featured-post:hover {
  box-shadow: 0 12px 40px rgba(26, 29, 46, 0.12), 0 4px 12px rgba(26, 29, 46, 0.06);
  transform: translateY(-4px);
}
@media (max-width: 767px) {
  .featured-post {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.featured-post__image {
  position: relative;
  min-height: 300px;
  background: linear-gradient(135deg, #F0F7FF, #DCEEFB, #F8F5FF);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .featured-post__image { min-height: 200px; }
}
.featured-post__placeholder { opacity: 0.4; }
.featured-post__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #2B8FD9;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.featured-post__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .featured-post__content { padding: 1.5rem; }
}
.featured-post__title {
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-weight: 700;
  color: #1A1D2E;
  margin: 1rem 0;
  line-height: 1.3;
}
.featured-post__excerpt {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Meta Elements */
.featured-post__meta, .post-card__meta, .post-modal__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.post-category {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.post-category--blue { background: #F0F7FF; color: #1A6FB3; }
.post-category--teal { background: rgba(0, 212, 170, 0.1); color: #009e7f; }
.post-category--lavender { background: #F8F5FF; color: #6a4db8; }
.post-category--peach { background: #FFF8F5; color: #d47a4f; }
.post-date, .post-read {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
}

/* Author */
.featured-post__author, .post-modal__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.post-author__avatar img {
  border-radius: 50%;
  object-fit: cover;
}
.post-author__name {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 600;
  color: #1A1D2E;
}
.post-author__role {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
}

/* Filters */
.blog-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .blog-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .blog-filters::-webkit-scrollbar { display: none; }
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  color: #6B6E82;
  background: transparent;
  border: 1px solid #C4C6D0;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-btn:hover {
  color: #1A1D2E;
  border-color: #4DA8E8;
}
.filter-btn--active {
  background: #2B8FD9;
  color: #fff;
  border-color: #2B8FD9;
}

/* Post Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .posts-grid { grid-template-columns: 1fr; }
}
.post-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #F1F2F5;
  cursor: pointer;
  transition: all 0.3s;
}
.post-card:hover {
  border-color: #B8DCF7;
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
  transform: translateY(-4px);
}
.post-card:hover .post-card__arrow {
  color: #2B8FD9;
  transform: translateX(4px);
}
.post-card__image { height: 180px; overflow: hidden; }
.post-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card__placeholder--blue { background: linear-gradient(135deg, #F0F7FF, #DCEEFB); }
.post-card__placeholder--teal { background: linear-gradient(135deg, #F0FFF8, rgba(0, 212, 170, 0.1)); }
.post-card__placeholder--lavender { background: linear-gradient(135deg, #F8F5FF, #EDE5FF); }
.post-card__placeholder--peach { background: linear-gradient(135deg, #FFF8F5, #FFE8DE); }
.post-card__placeholder span { opacity: 0.3; }
.post-card__body { padding: 1.5rem; }
.post-card__title {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  font-weight: 700;
  color: #1A1D2E;
  margin: 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__excerpt {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-card__arrow {
  color: #6B6E82;
  transition: all 0.3s;
  display: flex;
}

/* Empty State */
.blog-empty {
  text-align: center;
  padding: 4rem;
  color: #6B6E82;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
}

/* Newsletter */
.blog-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 767px) {
  .blog-newsletter {
    flex-direction: column;
    text-align: center;
  }
}
.blog-newsletter__content { flex: 1; }
.blog-newsletter__content h2 {
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-newsletter__content p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: rgba(255,255,255,0.8);
  max-width: 400px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .blog-newsletter__content p { margin: 0 auto; }
}
.blog-newsletter__form {
  flex: 1;
  max-width: 420px;
}
@media (max-width: 767px) {
  .blog-newsletter__form { max-width: 100%; width: 100%; }
}
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  background: #fff;
  outline: none;
  min-width: 0;
}
.newsletter-btn {
  padding: 14px 24px;
  background: #1A6FB3;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-btn:hover { background: #0F4F8C; }
.newsletter-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Post Modal */
.post-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem;
}
.post-modal__panel {
  background: #FFFFFF;
  border-radius: 28px;
  max-width: 760px;
  width: 100%;
  margin: 4rem 0;
  position: relative;
  box-shadow: 0 12px 40px rgba(26, 29, 46, 0.12), 0 4px 12px rgba(26, 29, 46, 0.06);
}
.post-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F1F2F5;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6B6E82;
  transition: all 0.2s;
  z-index: 1;
}
.post-modal__close:hover { background: #C4C6D0; color: #1A1D2E; }
.post-modal__article {
  padding: 3rem;
}
@media (max-width: 767px) {
  .post-modal__article { padding: 1.5rem; }
}
.post-modal__article h1 {
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.3;
}
.post-modal__title {
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.3;
}
.post-modal__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #F1F2F5;
}
.post-modal__author strong {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
}
.post-modal__author span {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
}
.post-modal__author-name {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
  font-weight: 600;
}
.post-modal__author-role {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
}
.post-modal__body p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.post-modal__body h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: #1A1D2E;
  margin: 2rem 0 1rem;
}
.post-modal__body ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.post-modal__body ul li {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.post-modal__body strong {
  color: #1A1D2E;
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS PAGE STYLES
   ============================================================ */
.testimonials-page .section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.testimonials-page .section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}
.testimonials-page .section--cream { background: #FFFDF7; }
.testimonials-page .section--white { background: #FFFFFF; }
.testimonials-page .section--blue-soft { background: #F0F7FF; }
.testimonials-page .section--cta {
  background: linear-gradient(135deg, #2B8FD9, #1A6FB3, #00D4AA);
  color: #fff;
}

/* Testimonials Hero */
.testi-hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a6fb3, #2B8FD9, #4DA8E8);
}
@media (max-width: 767px) {
  .testi-hero { padding: 140px 0 64px; }
}
.testi-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testi-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}
.testi-hero__title {
  font-size: clamp(2.75rem, 1.8rem + 4.75vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin: 1.5rem 0;
  line-height: 1.1;
}
.testi-hero__accent {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: rgba(255,255,255,0.95);
}
.testi-hero__subtitle {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #F1F2F5;
  padding: 2rem 0;
}
.stats-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .stats-bar__container { gap: 2rem; }
}
.stat-item { text-align: center; }
.stat-item__number {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #2B8FD9, #D4C4FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
  margin-top: 2px;
}

/* Highlight Testimonial */
.highlight-testimonial {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .highlight-testimonial { padding: 2rem 1rem; }
}
.highlight-testimonial__quote-mark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  color: #DCEEFB;
  margin-bottom: 1rem;
}
.highlight-testimonial__text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-style: italic;
  color: #1A1D2E;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .highlight-testimonial__text { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem); }
}
.highlight-testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.highlight-testimonial__author strong {
  display: block;
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #1A1D2E;
}
.highlight-testimonial__author span {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #6B6E82;
}
.highlight-testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  flex-shrink: 0;
}
.highlight-testimonial__avatar--blue { background: #DCEEFB; color: #1A6FB3; }
.highlight-testimonial__stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}
.highlight-testimonial__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2rem;
  padding: 6px 16px;
  background: #F0F7FF;
  border: 1px solid #B8DCF7;
  border-radius: 100px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  color: #1A6FB3;
}

/* Testimonial Filters */
.testi-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  color: #6B6E82;
  background: transparent;
  border: 1px solid #C4C6D0;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-pill:hover { color: #1A1D2E; border-color: #4DA8E8; }
.filter-pill--active {
  background: #2B8FD9;
  color: #fff;
  border-color: #2B8FD9;
}

/* Testimonial Grid */
.testi-grid {
  columns: 3;
  column-gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .testi-grid { columns: 2; }
}
@media (max-width: 767px) {
  .testi-grid { columns: 1; }
}
.testi-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #F1F2F5;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: #B8DCF7;
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
  transform: translateY(-2px);
}
.testi-card--blue { border-top: 3px solid #4DA8E8; }
.testi-card--lavender { border-top: 3px solid #D4C4FB; }
.testi-card--teal { border-top: 3px solid #00D4AA; }
.testi-card--peach { border-top: 3px solid #FF9B6A; }
.testi-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.testi-card__stars {
  display: flex;
  gap: 2px;
}
.testi-card__industry {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.testi-card__industry--blue { background: #F0F7FF; color: #1A6FB3; }
.testi-card__industry--lavender { background: #F8F5FF; color: #6a4db8; }
.testi-card__industry--teal { background: rgba(0, 212, 170, 0.1); color: #009e7f; }
.testi-card__industry--peach { background: #FFF8F5; color: #d47a4f; }
.testi-card__quote {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-card__author strong {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
  font-style: normal;
}
.testi-card__author span {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
  font-style: normal;
}
.testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  flex-shrink: 0;
}
.testi-card__avatar--blue { background: #DCEEFB; color: #1A6FB3; }
.testi-card__avatar--lavender { background: #EDE5FF; color: #5a3fa8; }
.testi-card__avatar--teal { background: rgba(0, 212, 170, 0.15); color: #00b894; }
.testi-card__avatar--peach { background: #FFE8DE; color: #e0854a; }
.testi-card__highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #F1F2F5;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  color: #2B8FD9;
}

/* Case Studies */
.case-studies-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.case-study {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
  transition: all 0.3s;
}
.case-study:hover {
  box-shadow: 0 4px 12px rgba(26, 29, 46, 0.08), 0 2px 4px rgba(26, 29, 46, 0.04);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .case-study { grid-template-columns: 1fr; }
}
.case-study__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  min-height: 200px;
}
.case-study__visual--blue { background: linear-gradient(135deg, #F0F7FF, #DCEEFB); }
.case-study__visual--lavender { background: linear-gradient(135deg, #F8F5FF, #EDE5FF); }
.case-study__visual--peach { background: linear-gradient(135deg, #FFF8F5, #FFE8DE); }
.case-study__icon { opacity: 0.6; }
.case-study__industry-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3D4055;
}
.case-study__content {
  padding: 2rem;
}
.case-study__content h3 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.case-study__challenge,
.case-study__solution {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #3D4055;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.case-study__challenge strong,
.case-study__solution strong { color: #1A1D2E; }
.case-study__results {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F2F5;
}
@media (max-width: 767px) {
  .case-study__results { gap: 1rem; }
}
.case-study__result { text-align: center; }
.case-study__result-value {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #2B8FD9, #D4C4FB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-study__result-label {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
  margin-top: 2px;
}

/* Trust Industries */
.trust-industries {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .trust-industries { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .trust-industries { grid-template-columns: repeat(2, 1fr); }
}
.trust-industry {
  text-align: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #F1F2F5;
  transition: all 0.2s;
}
.trust-industry:hover {
  border-color: #B8DCF7;
  box-shadow: 0 1px 3px rgba(26, 29, 46, 0.06), 0 1px 2px rgba(26, 29, 46, 0.04);
}
.trust-industry strong {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
  margin: 0.5rem 0 2px;
}
.trust-industry span {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
}
.trust-industry__icon {
  display: flex;
  justify-content: center;
}

/* Testimonials CTA */
.testi-cta {
  text-align: center;
}
.testi-cta h2 {
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.testi-cta p {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.testi-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/*# sourceMappingURL=main.css.map */

/* ===== HERO BRAND ILLUSTRATION ===== */
.hero-brand-illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-brand-svg {
  width: 100%;
  height: auto;
}
.hero-fish {
  animation: fish-pulse 4s ease-in-out infinite;
}
@keyframes fish-pulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.95; transform: translateY(-3px); }
}
.hero-float--1 { animation: float-1 6s ease-in-out infinite; }
.hero-float--2 { animation: float-2 6s ease-in-out infinite 1.5s; }
.hero-float--3 { animation: float-3 6s ease-in-out infinite 3s; }
.hero-float--4 { animation: float-4 6s ease-in-out infinite 4.5s; }
@keyframes float-1 {
  0%, 100% { transform: translate(55px, 80px); }
  50% { transform: translate(55px, 70px); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(390px, 100px); }
  50% { transform: translate(390px, 90px); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(70px, 350px); }
  50% { transform: translate(70px, 340px); }
}
@keyframes float-4 {
  0%, 100% { transform: translate(390px, 330px); }
  50% { transform: translate(390px, 320px); }
}
.hero-orbit {
  animation: orbit-spin 20s linear infinite;
  transform-origin: 250px 250px;
}
.hero-orbit--1 { animation-duration: 25s; }
.hero-orbit--2 { animation-duration: 30s; animation-direction: reverse; }
.hero-orbit--3 { animation-duration: 22s; }
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-shield-bg {
  animation: shield-breathe 4s ease-in-out infinite;
  transform-origin: 250px 210px;
}
@keyframes shield-breathe {
  0%, 100% { opacity: 0.88; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
.hero-line {
  animation: line-fade 4s ease-in-out infinite;
}
@keyframes line-fade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.hero-ring--outer {
  animation: ring-rotate 60s linear infinite;
  transform-origin: 250px 250px;
}
.hero-ring--middle {
  animation: ring-rotate 45s linear infinite reverse;
  transform-origin: 250px 250px;
}
@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fish, .hero-float--1, .hero-float--2, .hero-float--3, .hero-float--4,
  .hero-orbit, .hero-shield-bg, .hero-line, .hero-ring--outer, .hero-ring--middle {
    animation: none !important;
  }
}

/* Overview section restructured layout */
.overview-second-para {
  font-size: 18px;
  color: #3D4055;
  line-height: 1.8;
  margin: 1rem 0 2rem;
  max-width: 900px;
}
.overview-highlights--horizontal {
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .overview-highlights--horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .overview-highlights--horizontal {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT FORM 7 — make CF7 markup match the site form design
   CF7 doesn't emit a placeholder, so the site's floating-label
   trick (:placeholder-shown) can't work and labels overlap the
   typed text. For CF7 we use a STATIC label-above layout instead,
   which is robust regardless of CF7's markup.
   ============================================================ */
.contact-form .wpcf7-form-control-wrap {
  display: block;
  position: static;
}
/* Label sits ABOVE the field as a normal block — no overlap */
.contact-form .form-field {
  display: flex;
  flex-direction: column;
}
.contact-form .form-field label {
  position: static;
  order: -1;               /* render label before the input wrapper */
  top: auto;
  left: auto;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #3D4055;
  pointer-events: auto;
}
/* Inputs no longer need the top padding that made room for a floating label */
.contact-form .form-field input,
.contact-form .form-field textarea {
  padding: 12px 16px;
}
/* CF7 adds its own validation outline colours — keep them subtle */
.contact-form .wpcf7-not-valid {
  border-color: #FF9B6A !important;
}
.contact-form .wpcf7-not-valid-tip {
  color: #d9534f;
  font-size: 0.75rem;
  margin-top: 4px;
}
/* CF7 spinner — reuse the site spinner look */
.contact-form .wpcf7-spinner {
  background: rgba(43, 143, 217, 0.15);
}
/* CF7 response banner (success / error) styled to match success-msg tone */
.wpcf7-response-output {
  margin: 1.5rem 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  border: none !important;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
}
.wpcf7 form.sent .wpcf7-response-output {
  background: #D1FAE5;
  color: #1A6FB3;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background: #FFE8DE;
  color: #d9534f;
}
/* CF7 acceptance / checkbox list reuse the checkbox-option look */
.contact-form .wpcf7-checkbox .wpcf7-list-item {
  display: inline-flex;
  margin: 0 1rem 0.5rem 0;
}
.contact-form .wpcf7-checkbox .wpcf7-list-item-label {
  margin-left: 6px;
}

/* ============================================================
   DYNAMIC BLOG — cards are now <a> links; featured images;
   single-post page; pagination. Reuses existing card/modal design.
   ============================================================ */

/* Cards are anchors now — strip link styling, keep card look */
.featured-post,
.post-card {
  text-decoration: none;
  color: inherit;
}

/* Real featured images fill the card image areas */
.featured-post__image .featured-post__img,
.featured-post__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card__image {
  position: relative;
}
.post-card__image .post-card__img,
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination (Older / Newer) — pills matching .filter-btn */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  color: #6B6E82;
  background: transparent;
  border: 1px solid #C4C6D0;
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination a.page-numbers:hover {
  color: #1A1D2E;
  border-color: #4DA8E8;
}
.blog-pagination .page-numbers.current {
  background: #2B8FD9;
  color: #fff;
  border-color: #2B8FD9;
}
.blog-pagination .page-numbers.dots {
  border-color: transparent;
}

/* ===== SINGLE POST PAGE ===== */
.single-post {
  background: #FFFDF7;
  padding-top: 40px;
}
/* Neutralise any stray top margin on the first elements (e.g. from WP
   block/global styles) that would create phantom space under the header. */
.single-post > *:first-child,
.single-post__head,
.single-post__head > *:first-child,
.single-post__container > *:first-child {
  margin-top: 0 !important;
}
.single-post__container {
  max-width: 760px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}
.single-post__head {
  padding: 0.5rem 0 1.5rem;
}
.single-post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 600;
  color: #2B8FD9;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: gap 0.2s;
}
.single-post__back:hover { gap: 12px; }
.single-post__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.single-post__title {
  font-size: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  font-weight: 700;
  color: #1A1D2E;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}
.single-post__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #F1F2F5;
}
.single-post__author img { border-radius: 50%; }
.single-post__author-name {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: #1A1D2E;
}
.single-post__author-role {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #6B6E82;
}
.single-post__hero-image {
  margin: 2rem 0;
}
.single-post__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
.single-post__body-wrap {
  padding-bottom: 4rem;
}
/* Body typography mirrors the old modal body */
.single-post__body p {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.single-post__body h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: #1A1D2E;
  margin: 2rem 0 1rem;
}
.single-post__body h3 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
  color: #1A1D2E;
  margin: 1.5rem 0 0.75rem;
}
.single-post__body ul,
.single-post__body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.single-post__body ul { list-style: disc; }
.single-post__body ol { list-style: decimal; }
.single-post__body li {
  font-size: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  color: #3D4055;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.single-post__body strong { color: #1A1D2E; font-weight: 600; }
.single-post__body a { color: #2B8FD9; text-decoration: underline; }
.single-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}
.single-post__body blockquote {
  border-left: 4px solid #00D4AA;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: #3D4055;
  font-style: italic;
}
.single-post__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F2F5;
}

/* Follow Skipjak — company social links inside the post */
.single-post__follow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F2F5;
}
.single-post__follow-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6B6E82;
}
.single-post__follow-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.single-post__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #C4C6D0;
  color: #3D4055;
  transition: all 0.2s;
}
.single-post__social:hover {
  border-color: #2B8FD9;
  color: #2B8FD9;
  transform: translateY(-2px);
}
