/* ========================================================================== */
/* GOTAVI PWS - Global Stylesheet v2                                          */
/* Reusable, modular styles for all public website pages                      */
/* ========================================================================== */

/* ========================================================================== */
/* 1. RESET & BASE                                                            */
/* ========================================================================== */

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

html {
  font-size: 10px;
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.pws-page {
  background: linear-gradient(180deg, #070b1d 0%, #0d2550 100%);
  /*background: linear-gradient(180deg, #020617 0%, #0F172A 100%);*/
  color: var(--color-white);
  font-family: "Neurial Grotesk Light", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.pws-page.menu-open {
  overflow: hidden;
}

body.pws-page h1,
body.pws-page h2,
body.pws-page h3,
body.pws-page h4,
body.pws-page h5,
body.pws-page h6,
body.pws-page p,
body.pws-page li {
  margin: 0;
}

body.pws-page a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

body.pws-page img {
  border: 0;
  display: block;
  max-width: 100%;
}


body.pws-page figure,
body.pws-page button {
  cursor: pointer;
  margin: 0;
}

body.pws-page ul,
body.pws-page ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ========================================================================== */
/* 2. FONTS                                                                   */
/* ========================================================================== */

@font-face {
  font-family: "Neurial Grotesk Light";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NeurialGrotesk-Light.woff2) format("woff2"),
    url(../fonts/NeurialGrotesk-Light.woff) format("woff");
}

@font-face {
  font-family: "Neurial Grotesk Medium";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NeurialGrotesk-Medium.woff2) format("woff2"),
    url(../fonts/NeurialGrotesk-Medium.woff) format("woff");
}

@font-face {
  font-family: "Neurial Grotesk Bold";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NeurialGrotesk-Bold.woff2) format("woff2"),
    url(../fonts/NeurialGrotesk-Bold.woff) format("woff");
}

/* ========================================================================== */
/* 3. TOKENS                                                                  */
/* ========================================================================== */

:root {
  /* Colors */
  --color-accent: #59d69c;
  --color-accent-strong: #3ec6a7;
  --color-accent-deep: #2f7052;
  --color-blue: #3fa7ff;
  --color-blue-deep: #4F7CFF;
  --color-ink: #010213;
  --color-ink-dark: #07111f;
  --color-page: #0d1021;
  --color-page-alt: #080b1a;
  --color-page-dark: #020617;
  --color-surface: #131829;
  --color-surface-raised: #1a1f34;
  --color-surface-hover: #1e2535;
  --color-surface-muted: #2a3045;
  --color-surface-card: #0F172A;
  --color-surface-card-alt: #172033;
  --color-slate: #334155;
  --color-slate-dark: #1e2535;
  --color-white: #ffffff;
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-40: rgba(255, 255, 255, 0.4);
  --color-white-35: rgba(255, 255, 255, 0.35);
  --color-white-86: rgba(255, 255, 255, 0.86);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-soft: rgba(255, 255, 255, 0.07);
  --color-border-card: rgba(255, 255, 255, 0.09);

  /* Gradients */
  --gradient-accent: linear-gradient(92deg, #1bd982, #56cf96);
  --gradient-accent-linear: linear-gradient(100deg, #59d69c, #22915e);
  --gradient-card: linear-gradient(0deg, #0F172A 0%, #172033 100%);
  --gradient-footer: linear-gradient(180deg, #040919 0%, #060b1b 100%);
  --gradient-meaning: linear-gradient(180deg, #020617 0%, #0F172A 100.01%);

  /* Fonts */
  --font-body: "Neurial Grotesk Light", sans-serif;
  --font-medium: "Neurial Grotesk Medium", sans-serif;
  --font-bold: "Neurial Grotesk Bold", sans-serif;
  --font-geist: "Geist", sans-serif;
  --font-heading: "Geist", var(--font-body), sans-serif;

  /* Spacing */
  --spacing-xs: 0.8rem;
  --spacing-sm: 1.2rem;
  --spacing-md: 1.6rem;
  --spacing-lg: 2.4rem;
  --spacing-xl: 3.2rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-xs: 0.6rem;
  --radius-sm: 0.8rem;
  --radius-md: 1rem;
  --radius-lg: 1.6rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;

  /* Container & Layout */
  --container-width: 1150px;
  --container-wide: 1280px;
  --container-max: 1341px;
  --section-pad-y: clamp(4rem, 6vw, 8rem);
  --section-pad-x: clamp(2rem, 2.5%, 6rem);

  /* Shadows */
  --shadow-soft: 0 2.4rem 6.4rem rgba(0, 0, 0, 0.45);
  --shadow-card: 0 0.8rem 2.2rem rgba(89, 214, 156, 0.2);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* ========================================================================== */
/* 4. TYPE + UTILITIES                                                        */
/* ========================================================================== */

.heading1,
.heading2,
.heading3,
.heading4 {
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.heading1 {
  font-family: var(--font-body);
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  line-height: 1.06;
}

.heading2 {
  align-items: center;
  align-self: stretch;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-geist);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  justify-content: center;
  line-height: normal;
  text-align: center;
}

.heading3 {
  font-family: var(--font-bold);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.heading4 {
  font-family: var(--font-medium);
  font-size: clamp(1.6rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.text-green,
.text-accent,
.section-accent {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-geist);
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: inherit;
}

.text-white,
.text-on-dark {
  color: var(--color-white);
}

.fw-light {
  font-family: var(--font-body);
  font-weight: 400;
}

.caps {
  letter-spacing: 0.026em;
  text-transform: uppercase;
}

/* Responsive Utilities */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}

/* Layout Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.container {
  margin: 0 auto;
  max-width: var(--container-width);
  position: relative;
  width: 100%;
}

.container.wide {
  max-width: var(--container-wide);
}

.container.narrow {
  max-width: 640px;
}

.container.padx {
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.fill {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.cover {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.link {
  display: inline-block;
  font-family: var(--font-medium);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 1.15em 2em;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.link.nopad {
  padding: 0;
}

.overline {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-medium);
  font-size: 1.2rem;
  gap: 1em;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
}

.overline.pill {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 1em 2em;
}

.overline.pill-green {
  border-color: var(--color-accent);
}

.overline img {
  width: 1.4rem;
}

.pill:not(.overline) {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  display: inline-block;
  font-family: var(--font-medium);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  line-height: 1;
  padding: 1em 2em;
  text-transform: uppercase;
}

.pill:not(.overline).pill-green {
  background: var(--color-accent);
  color: var(--color-white);
}

.pill:not(.overline).pill-gray {
  background: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.icon {
  max-height: 1.8rem;
  max-width: 1.8rem;
  width: 100%;
}

.icon.arrow-right {
  transition: transform 0.15s ease-in-out;
}

.icon.arrow-right line,
.icon.arrow-right polyline {
  fill: none;
  stroke: currentColor;
  stroke-miterlimit: 10;
  stroke-width: 0.69px;
  transition: stroke 0.15s ease-in-out;
}

.btn {
  cursor: pointer;
  align-items: center;
  border-radius: var(--radius-pill);
  display: inline-flex;
  font-family: var(--font-geist);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  gap: 1rem;
  justify-content: center;
  line-height: normal;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
}

.btn strong {
  font-family: var(--font-bold);
  text-transform: uppercase;
}

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

.btn.btn-ghost {
  align-items: center;
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  display: flex;
  gap: var(--spacing-xs);
  justify-content: center;
  padding: 0.8rem 1.6rem;
}

.btn.btn-ghost:hover {
  background: var(--color-white);
  color: var(--color-ink);
  opacity: 1;
}

.btn.btn-green {
  background: var(--gradient-accent-linear);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
}

.btn.btn-green:hover {
  box-shadow: var(--shadow-card);
}

.btn.btn-blue {
  background: var(--color-page-alt);
  border: 1px solid var(--color-page-alt);
  color: var(--color-white);
}

.btn.btn-blue:hover {
  background: var(--color-white);
  color: var(--color-page-alt);
}

/* ========================================================================== */
/* 4B. SECTION COMPONENTS (Reusable)                                         */
/* ========================================================================== */

/* Section Header Wrapper */
.section-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin: 0 auto;
  max-width: 910px;
  width: 100%;
}

/* Section Title (H2) */
.section-title {
  align-items: center;
  align-self: stretch;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-geist);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  justify-content: center;
  line-height: normal;
  margin: 0;
  text-align: center;
}

/* Accent text inherits from parent title for consistent sizing */
.section-title .section-accent,
.section-title .text-green {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* Section Subtitle */
.section-subtitle {
  color: var(--color-white);
  display: block;
  font-family: var(--font-geist);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-align: center;
  width: 100%;
}

.services-wrapper {
  display: flex;
  width: 1200px;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.services-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.section-side-header {
  display: flex;
  width: 560px;
  height: 292px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  aspect-ratio: 140 / 73;
}

.section-small-title {
  color: #333;
  font-family: var(--font-geist);
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  text-align: left;
  width: 100%;
}

.section-side-subtitle {
  color: #333;
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-align: left;
  width: 100%;
}

.services-mission-title {
  display: flex;
  padding: 28px 0 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  flex: 1 0 0;

  color: #59D69C;
  text-align: center;
  font-family: var(--font-geist);
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-wrap: balance;
}

.services__select-box-image {
  width: 140px;
  height: 140px;
  aspect-ratio: 1 / 1;

  border-radius: 50%;
  /* cleaner than 70px */
  overflow: hidden;
  /* THIS is what prevents spill */
  flex-shrink: 0;

  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__select-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* key for cropping nicely */
  display: block;
}

/* ========================================================================== */
/* 5. NAVIGATION                                                              */
/* ========================================================================== */

.site-nav {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  display: inline-flex;
  justify-content: space-between;
  padding: 2rem 0;
  position: relative;
  width: 100%;
  z-index: 10000;
}

.site-nav.container {
  max-width: 100%;
}

.site-nav__brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 3rem;
}

.site-nav__brand img {
  width: 14rem;
}

.site-nav__menu {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  justify-content: flex-end;
  padding: 0 3rem 0 0;
}

.site-nav__item {
  align-items: center;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  line-height: 1;
}

.site-nav__menu>.site-nav__item:last-child {
  margin-right: 1.5rem;
}

.site-nav__menu a {
  border-radius: var(--radius-sm);
  color: var(--color-white);
  display: block;
  font-family: var(--font-medium);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

@media (min-width: 1281px) {
  .site-nav__menu a:hover {
    background: var(--color-accent);
    color: var(--color-ink);
  }
}

.site-nav__menu .btn {
  background: transparent;
}

.site-nav__menu .btn:hover {
  background: var(--color-white) !important;
  color: var(--color-surface) !important;
}

.site-nav__menu .btn.btn-green {
  align-items: center;
  background: var(--gradient-accent-linear);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-pill);
  color: var(--color-ink-dark);
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0.8rem 1.6rem;
}

.site-nav__toggle,
.site-nav__hamburger,
.site-nav .hamburger {
  display: none;
}

.site-nav__overlay,
.menu-overlay {
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10015;
}

.site-nav__overlay.active,
.menu-overlay.active {
  display: block;
  pointer-events: auto;
}

.site-nav__dropdown,
.menu-item.dropdown {
  position: relative;
}

.site-nav__dropdown-toggle::after,
.dropdown-toggle::after,
.menu-item.dropdown>a::after {
  aspect-ratio: 1/1;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M5 7.5L10 12.5L15 7.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
  content: "";
  display: inline-block;
  height: 2rem;
  margin-left: 0.4rem;
  transition: transform var(--transition-base);
  vertical-align: middle;
  width: 2rem;
}

.site-nav__dropdown-toggle.open::after,
.dropdown-toggle.open::after,
.menu-item.dropdown>a.open::after {
  transform: rotate(180deg);
}

@media (min-width: 1281px) {

  .site-nav__dropdown:hover .site-nav__dropdown-toggle::after,
  .site-nav__dropdown:hover .dropdown-toggle::after,
  .menu-item.dropdown:hover>a::after {
    transform: rotate(180deg);
  }
}

.site-nav__dropdown-menu,
.dropdown-menu {
  background: rgba(24, 31, 42, 1);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  left: 0;
  min-width: 200px;
  padding: 0.8rem 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 9999;
}

@media (min-width: 1281px) {

  .site-nav__dropdown:hover .site-nav__dropdown-menu,
  .site-nav__dropdown:hover .dropdown-menu,
  .menu-item.dropdown:hover .site-nav__dropdown-menu,
  .menu-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

.site-nav__dropdown-menu li,
.dropdown-menu li {
  list-style: none;
}

.site-nav__dropdown-menu a,
.dropdown-menu a {
  color: var(--color-white);
  display: block;
  font-family: var(--font-medium);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  padding: 1rem 2rem;
  transition: all var(--transition-base);
  width: 100%;
  white-space: nowrap;
}

.site-nav__dropdown-menu a:hover,
.dropdown-menu a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  padding-left: 24px;
}

/* ========================================================================== */
/* MOBILE NAV (<= 1280px)                                                     */
/* --------------------------------------------------------------------------  */
/* Layout:                                                                    */
/*   - Top bar: fixed, full width, logo + hamburger                           */
/*   - Menu panel: slides in from left (85% width, max 320px)                 */
/*   - Overlay: full-viewport backdrop behind the panel                       */
/*                                                                            */
/* Selectors support both BEM (.site-nav__*) and the legacy class names from  */
/* main.css (.hamburger, .menu, .dropdown-menu, .menu-item.dropdown) so the   */
/* same markup works under either stylesheet.                                 */
/*                                                                            */
/* Z-index stack:                                                             */
/*   nav bar / menu panel : 99999                                             */
/*   hamburger button     : 10001                                             */
/*   overlay backdrop     : 10015                                             */
/* ========================================================================== */

@media (max-width: 1280px) {

  /* --- Top bar ----------------------------------------------------------- */
  .site-nav {
    background-color: var(--color-page);
    left: 0;
    padding: 1.6rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
  }

  .site-nav__brand {
    padding-left: 2rem;
  }

  /* --- Hamburger toggle -------------------------------------------------- */
  .site-nav__toggle,
  .site-nav__hamburger,
  .site-nav .hamburger {
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 40px;
    justify-content: center;
    margin-right: 2rem;
    padding: 8px 0;
    position: relative;
    width: 40px;
    z-index: 10001;
  }

  .site-nav__toggle span,
  .site-nav__hamburger span,
  .site-nav .hamburger span {
    background: var(--color-white);
    border-radius: 2px;
    display: block;
    height: 3px;
    margin: 3px 0;
    transform-origin: center;
    transition: all 0.3s ease-in-out;
    width: 28px;
  }

  /* Hamburger → X animation */
  .site-nav__toggle.active span:nth-child(1),
  .site-nav__hamburger.active span:nth-child(1),
  .site-nav .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .site-nav__toggle.active span:nth-child(2),
  .site-nav__hamburger.active span:nth-child(2),
  .site-nav .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .site-nav__toggle.active span:nth-child(3),
  .site-nav__hamburger.active span:nth-child(3),
  .site-nav .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* --- Slide-in menu panel ----------------------------------------------- */
  /* Prefixed with `body.pws-page ul` to outweigh the global ul reset
     (body.pws-page ul { padding: 0 }) which would otherwise win. */
  body.pws-page ul.site-nav__menu,
  .site-nav__menu {
    align-items: stretch;
    background-color: rgba(18, 21, 50, 0.98);
    flex-direction: column;
    gap: 0;
    height: 100vh;
    justify-content: flex-start;
    left: -100%;
    list-style: none;
    margin: 0;
    max-width: 320px;
    overflow-y: auto;
    padding: 8rem 3rem 3rem;
    position: fixed;
    top: 0;
    transition: left 0.3s ease-in-out;
    width: 85%;
    z-index: 99999;
  }

  body.pws-page ul.site-nav__menu.active,
  .site-nav__menu.active {
    left: 0;
  }

  /* --- Menu items -------------------------------------------------------- */
  .site-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
  }

  .site-nav__item:last-child {
    border-bottom: none;
  }

  .site-nav__menu>.site-nav__item:last-child {
    margin-right: 1.5rem;
  }

  /* Link inside a menu item */
  .site-nav__menu a {
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--color-white);
    display: block;
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 1.6rem 0;
    text-align: left;
    text-decoration: none;
    width: 100%;
  }

  .site-nav__menu a:hover {
    background: transparent;
    color: var(--color-accent);
  }

  /* --- Button items (Log In / Sign Up) ----------------------------------- */
  /* Buttons drop the divider and render as compact bordered pills that hug
     their text content (rather than stretching across the panel). */
  .site-nav__item:has(.btn) {
    border-bottom: none;
    padding: 1rem 0;
  }

  /* The repeated selectors raise specificity to (0,3,0) so they override the
     desktop `.site-nav__menu .btn.btn-green` rule (same specificity, defined
     earlier) which otherwise leaks display:flex + gradient background. */
  .site-nav__menu .btn,
  .site-nav__menu a.btn,
  .site-nav__menu .btn.btn-green,
  .site-nav__menu .btn.btn-blue,
  .site-nav__menu a.btn.btn-green,
  .site-nav__menu a.btn.btn-blue {
    align-items: center;
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-pill);
    box-shadow: none;
    color: var(--color-white);
    display: inline-flex;
    font-size: 1.6rem;
    gap: 0;
    justify-content: center;
    padding: 0.8rem 2rem;
    transform: none;
    width: auto;
  }

  .site-nav__menu .btn:hover {
    background: var(--color-white);
    color: var(--color-ink);
  }

  /* --- Dropdown (collapsed accordion, not hover) ------------------------- */
  /* Disable the desktop hover-to-open behaviour on touch devices. */
  .site-nav__dropdown:hover .site-nav__dropdown-menu,
  .site-nav__dropdown:hover .dropdown-menu,
  .menu-item.dropdown:hover .site-nav__dropdown-menu,
  .menu-item.dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Submenu sits in flow under its toggle, indented. */
  .site-nav__dropdown-menu,
  .dropdown-menu {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: none;
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0.5rem 0 0.5rem 2rem;
    position: static;
    width: 100%;
  }

  .site-nav__dropdown-menu li,
  .dropdown-menu li {
    border: none;
    display: block;
    margin: 0;
    padding: 0.5rem 0;
    width: 100%;
  }

  .site-nav__dropdown-menu a,
  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    padding: 0.8rem 1.2rem;
  }

  .site-nav__dropdown-menu a:hover,
  .dropdown-menu a:hover {
    padding-left: 1.6rem;
  }

  /* JS toggles `.open` on the dropdown trigger to reveal the submenu. */
  .site-nav__dropdown.open .site-nav__dropdown-menu,
  .site-nav__dropdown.open .dropdown-menu,
  .menu-item.dropdown.open .site-nav__dropdown-menu,
  .menu-item.dropdown.open .dropdown-menu {
    display: block;
  }
}

/* ========================================================================== */
/* 6. HERO                                                                    */
/* ========================================================================== */

.hero {
  overflow: hidden;
  padding: clamp(8rem, 10vw, 12rem) 0 0;
  position: relative;
}

.hero__bg {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero__bg::before,
.hero__bg::after {
  content: "";
  inset: 0;
  position: absolute;
}

.hero__bg::before {
  background: linear-gradient(180deg, #070b1d 0%, #0d2550 100%);
  /*background: linear-gradient(180deg, #020617 0%, #0F172A 100%);*/
}

.hero__bg::after {
  background-image: linear-gradient(to bottom, rgba(1, 2, 19, 0.78), rgba(1, 2, 19, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 84px);
  opacity: 0.90;
}

.hero__rays {
  align-items: flex-start;
  display: flex;
  height: 100%;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero__rays .greenbar {
  background: var(--color-accent);
  height: 40vh;
  width: 3px;
}

.hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 3vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero__copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 682px;
  text-align: center;
  width: 682px;
}

.hero__eyebrow {
  align-items: center;
  border: 1px solid #59D69C;
  border-radius: 8px;
  color: #FFF;
  display: flex;
  font-family: Geist, var(--font-geist);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  gap: 10px;
  justify-content: center;
  line-height: normal;
  margin: 0;
  padding: 8px 16px;
  text-align: center;
  opacity: 0;
  animation: heroEyebrowSlideDown 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroEyebrowSlideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title-wrap {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px;
  width: 662px;
}

.hero__title {
  font-family: var(--font-large), "Geist", sans-serif;
  font-size: clamp(4.2rem, 7vw, 5.8rem);
  line-height: 1.06;
  max-width: 66rem;
  width: 100%;
}

.hero__title svg {
  width: 100%;
  max-width: 657px;
  height: auto;
}

.hero__subtitle {
  display: flex;
  width: 668px;
  padding: 4px 0 20px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: #FFF;
  /* change to green when needed */
  text-align: center;
  font-family: Geist, var(--font-geist);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  margin: 0 auto;
}

.hero__subtitle span {
  flex: 1 0 0;
}

.hero__subtitle--white {
  color: #FFF;
}

.hero__subtitle--green {
  color: #59D69C;
}

.hero__features {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  gap: 0 32px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}



body.pws-page .hero__feature,
button.hero__feature {
  align-items: center;
  background: transparent;
  border: 1px solid #FFF;
  border-radius: 60px;
  color: #FFF;
  cursor: pointer;
  display: inline-flex;
  font-family: Geist, var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  gap: 8px;
  justify-content: center;
  line-height: normal;
  padding: 8px 16px;
  white-space: nowrap;
  opacity: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

button.hero__feature {
  animation: heroFeatureFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

button.hero__feature:nth-child(1) {
  animation-delay: 0.1s;
}

button.hero__feature:nth-child(2) {
  animation-delay: 0.2s;
}

button.hero__feature:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes heroFeatureFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__feature i,
.hero__feature svg {
  height: 20px;
  width: 20px;
  aspect-ratio: 1/1;
}

.hero__feature:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

body.pws-page .hero__feature--active,
button.hero__feature--active {
  background: linear-gradient(92deg, #59d69c, #22915e);
  border: 1px solid #59D69C;
  border-radius: 60px;
  color: #0F172A;
  font-weight: 500;
}

.hero__mockup {
  align-items: center;
  background: linear-gradient(180deg, rgba(22, 27, 53, 0.98), rgba(13, 16, 33, 0.98));
  border: 1px solid var(--color-border-card);
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: center;
  margin: 4rem 0 0;
  overflow: hidden;
  width: min(920px, 100%);
}

.hero__mockup picture,
.hero__mockup img {
  display: block;
  width: 100%;
}

.hero__mockup img {
  height: auto;
}

@media (min-width: 960px) {

  .hero__content,
  .hero__copy,
  .hero__features {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero__copy {
    width: 100%;
    max-width: 100%;
  }

  .hero__title-wrap {
    width: 100%;
    height: auto;
  }

  .hero__title {
    font-size: clamp(3.6rem, 9vw, 4.6rem);
  }

  .hero__subtitle {
    width: 100%;
    font-size: 14px;
  }

  .hero__features {
    gap: 12px;
  }

  .hero__feature {
    font-size: 14px;
    padding: 8px 16px;
  }

  .services-wrapper {
    width: 100%;
    padding: 0 1rem;
    /* Add some padding for small screens */
  }

  .services-content {
    flex-direction: column;
    gap: 3rem;
  }

  .section-side-header {
    width: 100%;
    height: auto;
    gap: 1.5rem;
  }

  .section-small-title,
  .section-side-subtitle {
    text-align: center;
    width: 100%;
  }

  .services-graphic {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-graphic svg {
    width: 100%;
    height: auto;
  }
}

/* ========================================================================== */
/* 7. PERSONAS SECTION                                                        */
/* ========================================================================== */

.personas {
  align-items: center;
  background: var(--color-page);
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 auto;
  max-width: var(--container-max);
  padding: var(--section-pad-y) 0;
  width: 100%;
}

.personas__grid {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
}

.persona-card {
  align-items: center;
  background: var(--gradient-card);
  border: 1px solid var(--color-slate);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-height: 360px;
  padding: 2rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.persona-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.persona-card__photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  height: 200px;
  overflow: hidden;
  width: 200px;
}

.persona-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.persona-card__description {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: flex-start;
}

.persona-card__name {
  color: var(--color-white);
  font-family: var(--font-geist);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.persona-card__desc {
  align-self: stretch;
  color: var(--color-white);
  font-family: var(--font-geist);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

@media (max-width: 1341px) {
  .personas {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 1100px) {
  .personas__grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .persona-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 240px;
  }
}

@media (max-width: 680px) {
  .personas__grid {
    gap: 20px;
  }

  .persona-card {
    flex: 1 1 calc(50% - 20px);
  }

  .persona-card__photo {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 440px) {
  .personas__grid {
    flex-direction: column;
    align-items: center;
  }

  .persona-card {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================================================== */
/* 8. NEEDS SECTION                                                           */
/* ========================================================================== */

.needs {
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.needs .container {
  max-width: 910px;
  width: 100%;
}

/* Needs section uses .section-header, .section-title, .section-subtitle from utilities */
.needs__header {
  margin-bottom: 48px;
}

.needs__grid {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-bottom: 4.8rem;
}

.needs__row {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: var(--spacing-xl);
}

.needs__item {
  align-items: flex-start;
  background: var(--gradient-card);
  border: 1px solid var(--color-slate);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 2rem;
  position: relative;
  transition: all var(--transition-slow);
  width: 280px;
}

.needs__item:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.needs__item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.needs__item-content {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  width: 100%;
}

.needs__check {
  background: transparent;
  display: inline-block;
  flex-shrink: 0;
  height: 24px;
  position: relative;
  transition: all var(--transition-base);
  width: 24px;
}

.needs__check svg {
  width: 24px;
  height: 24px;
  display: block;
}

.needs__item input:checked~.needs__item-content .needs__check svg path {
  stroke: var(--color-accent);
}

.needs__item input:checked~.needs__item-content .needs__check::after {
  background: var(--color-accent);
  border-radius: 2px;
  content: '';
  height: 12px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
}

.needs__item-label {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.needs__item-label strong {
  color: var(--color-white);
  display: block;
  font-family: var(--font-geist);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.needs__item-label span {
  color: var(--color-white);
  font-family: var(--font-geist);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.needs__action {
  margin-top: 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {

  .needs .container,
  .needs__header {
    width: 100%;
    padding: 0 2rem;
  }

  .needs__row {
    flex-direction: column;
  }

  .needs__item {
    width: 100%;
    max-width: 400px;
  }

  .needs__title,
  .needs__title .text-green,
  .needs__title .section-accent {
    font-size: 32px;
  }
}

@media (max-width: 640px) {

  .needs__title,
  .needs__title .text-green,
  .needs__title .section-accent {
    font-size: 28px;
  }

  .needs .container,
  .needs__header {
    padding: 0 1rem;
  }
}

/* ========================================================================== */
/* 9. MEANING SECTION                                                         */
/* ========================================================================== */

.meaning {
  align-items: center;
  background: var(--gradient-meaning);
  display: flex;
  flex-direction: column;
  gap: 9.2rem;
  justify-content: center;
  padding: 10rem 0;
}

.meaning .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 1200px;
  width: 1200px;
}

.meaning__wordmark {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meaning__wordmark img {
  width: 761.47px;
  height: 204.95px;
}

.meaning__cols {
  align-items: center;
  display: flex;
  gap: 6rem;
  justify-content: center;
  width: 800px;
}

.meaning__col {
  align-items: center;
  display: flex;
  flex: 1 0 0;
  gap: 1rem;
  justify-content: center;
}

.meaning__col:first-child {
  justify-content: flex-end;
}

.meaning__col p {
  color: var(--color-white);
  flex: 1 0 0;
  font-family: var(--font-geist);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.meaning__col:first-child p {
  text-align: right;
}

.meaning__col:last-child p {
  text-align: left;
}

@media (max-width: 1280px) {
  .meaning .container {
    width: 100%;
    max-width: 100%;
  }

  .meaning__wordmark img {
    width: min(761.47px, 90vw);
    height: auto;
  }

  .meaning__cols {
    width: min(800px, 90%);
  }
}

@media (max-width: 640px) {
  .meaning {
    gap: 60px;
    padding: 60px 0;
  }

  .meaning .container {
    gap: 40px;
  }

  .meaning__cols {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .meaning__col:first-child {
    justify-content: center;
  }

  .meaning__col:first-child p,
  .meaning__col:last-child p {
    text-align: center;
  }
}

/* ========================================================================== */
/* 10. PACKAGES SECTION                                                       */
/* ========================================================================== */

.packages {
  background: var(--color-page);
  padding: var(--section-pad-y) 0;
}

.packages .container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1264px;
}

/* Packages section uses .section-header, .section-title, .section-subtitle from utilities */
.packages__header {
  align-self: stretch;
}

.packages__subtitle {
  max-width: 700px;
}

.packages__grid {
  align-items: stretch;
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.package-card {
  align-items: center;
  background: var(--gradient-card);
  border: 1px solid var(--color-slate);
  border-radius: var(--radius-xl);
  display: flex;
  flex: 1 1 300px;
  flex-direction: column;
  gap: 2rem;
  max-width: 400px;
  padding: 2rem;
  width: 400px;
}

.package-card__frame {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.package-card__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-card__icon {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-card__icon svg {
  width: 40px;
  height: 40px;
}

.package-card__title {
  color: var(--color-white);
  font-family: var(--font-geist);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
}

.package-card__subtitle {
  color: var(--color-white);
  font-family: var(--font-geist);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-align: center;
}

.package-card__features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card__features li {
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--color-slate);
  color: var(--color-white);
  display: flex;
  font-family: var(--font-geist);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  line-height: normal;
  padding: 1.2rem 0;
}

.package-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12H19' stroke='%234F7CFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 5V19' stroke='%234F7CFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

.package-card .btn-green {
  width: 100%;
}

@media (max-width: 1280px) {
  .packages__grid {
    justify-content: center;
  }

  .package-card {
    max-width: 400px;
  }
}

@media (max-width: 860px) {
  .packages__grid {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .packages__title {
    font-size: 32px;
  }

  .packages__title .text-green,
  .packages__title .section-accent {
    font-size: 32px;
  }
}

/* ========================================================================== */
/* 10A. HOMEPAGE V3 LAYOUT OVERRIDES                                         */
/* ========================================================================== */

.hero {
  padding: clamp(9rem, 12vw, 14rem) 0 clamp(6rem, 8vw, 14rem);
}

.hero__copy {
  max-width: 860px;
  width: 100%;
}

.hero__title-wrap {
  padding: 0;
  width: 100%;
}

.hero__title {
  font-size: clamp(4.4rem, 6.6vw, 6.1rem);
  letter-spacing: -0.035em;
  max-width: 760px;
}

.hero__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.hero__topic {
  background: rgba(89, 214, 156, 0.12);
  border: 1px solid rgba(89, 214, 156, 0.45);
  border-radius: 8px;
  color: #9ceec8;
  font-family: var(--font-geist);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
  opacity: 1;

}

.hero__features {
  gap: 1.2rem;
}

.hero__feature {
  font-size: 1.4rem;
}

.pipes {
  background: linear-gradient(180deg, #020617 0%, #030a1c 100%);
  padding: 8rem 0;
}

.pipes .container {
  max-width: 1400px;
}

.pipes .section-header {
  margin-bottom: clamp(3rem, 4vw, 4.8rem);
}

.pipes__grid {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto auto;
  justify-content: center;
}

.pipes__slot svg {
  display: block;
  height: auto;
  width: 120%;
  max-width: none;
}

.pipes__label {
  color: var(--color-white-60);
  font-family: var(--font-geist);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.pipes__slot {
  align-items: center;
  display: flex;
  border-radius: 1.4rem;
  justify-content: center;
  min-height: 220px;
  padding: 1.4rem 0;
  width: 100%;
}

.pipes__slot span {
  display: block;
  color: var(--color-white-50);
  font-family: var(--font-geist);
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
}

.pipes__slot svg {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.pipes__center {
  align-items: center;
  background: linear-gradient(180deg, #0f1f44 0%, #0f172a 100%);
  border: 1px solid rgba(79, 124, 255, 0.5);
  border-radius: 1rem;
  box-shadow: 0 0 24px rgba(79, 124, 255, 0.2);
  color: var(--color-white);
  display: inline-flex;
  font-family: var(--font-geist);
  font-size: 1.5rem;
  height: 56px;
  justify-content: center;
  min-width: 92px;
  padding: 0 2rem;
}

.journey {
  background: #fff;
  color: #0f172a;
  padding: 8rem 0;
}

.journey .section-title {
  color: #1e293b;
}

.journey .section-subtitle {
  color: #64748b;

}

.journey__content {
  display: flex;
  flex-direction: column;
  width: 900px;
  margin: 0 auto;
  gap: 20px;
  align-items: stretch;
}

.journey__tabs {
  display: flex;
  gap: 12px;
  width: 100%;
}

.journey__tab {
  flex: 1;
}

.journey__tab {
  align-items: center;
  appearance: none;
  background: #fff;
  border: 1px solid rgba(89, 214, 156, 0.58);
  border-radius: 1.2rem;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-geist);
  font-size: 1.3rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1.2;
  min-height: 4.6rem;
  padding: 1.1rem 1.8rem;
  text-align: center;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.journey__tab:hover {
  background: rgba(89, 214, 156, 0.06);
  border-color: #59D69C;
}

.journey__tab--active {
  background: rgba(89, 214, 156, 0.12);
  border-color: #59D69C;
  box-shadow: 0 0 0 1px rgba(89, 214, 156, 0.12);
  color: #0f5132;
}

.journey__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;

  width: 100%;
  padding: 20px;

  border-radius: 20px;
  border: 1px solid #59D69C;
  background: #fff;
}

.journey__card-title {
  color: #0f172a;
  font-family: var(--font-geist);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.journey__card-subtitle {
  color: #64748b;
  font-family: var(--font-geist);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.journey__steps {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;

  margin: 0;
  padding: 12px;
  list-style: none;

  background: #ffffff;
  border-radius: 1rem;
}

.journey__steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 12px;

  background: #FAFAFA;

  border-radius: 12px;
}

.journey__steps li:last-child {
  border-bottom: 0;
}

.journey__steps li>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}


.journey__steps strong {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.journey__steps li>div span {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.journey__step-number {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #0a2048;
  color: #FFF;
  font-family: var(--font-medium);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.journey__card .btn {
  font-size: 1.3rem;
  padding: 0.95rem 1.6rem;
}

.journey .container.padx {
  display: flex;
  width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.needs {
  background: #020617;
}

.meaning {
  background: #fff;
  gap: 7rem;
}

.meaning__col p {
  color: #1f2937;
}

.faq .container {
  display: flex;
  width: 900px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.faq {
  background: #fff;
  color: #1f2937;
  padding: 8rem 0;
}

.faq .section-title {
  color: #1f2937;
}

.faq__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;

  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.faq__item {
  display: flex;
  flex-direction: column;
  padding: 12px;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;

  border-radius: 8px;
  border: 1px solid #EEE;
  background: #fff;
}

.faq__item summary {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;

  color: #334155;
  cursor: pointer;
  list-style: none;

  font-family: var(--font-geist);
  font-size: 1.5rem;
}

/* Hide default arrow */
.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "⌄";
  /* down chevron */
  width: 20px;
  height: 20px;
  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  flex-shrink: 0;

  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__item p {
  margin: 0;
  padding: 12px;

  color: #64748b;
  font-family: var(--font-geist);
  font-size: 1.4rem;
}

.toggle__tabs {
  display: flex;
  padding: 4px 5px;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0 16px;
  flex-wrap: wrap;

  border-radius: 60px;
  border: 1px solid #334155;
  background: linear-gradient(0deg, #0F172A 0%, #172033 100%);

  width: fit-content;
}

.toggle_tab {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 60px;
  border: 1px solid transparent;
  background: transparent;

  color: #FFF;
  font: inherit;
  cursor: pointer;

  transition: all 0.2s ease;
}

.toggle_tab i,
.toggle_tab svg {
  width: 20px;
  height: 20px;
}

/* Selected tab */
.toggle_tab.active {
  border: 1px solid #59D69C;
  background: #172033;
}

/* Optional hover state */
.toggle_tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04);
}

/* Pricing page refinements */
.pws-page--pricing .hero {
  padding-bottom: clamp(2.4rem, 3vw, 3.6rem);
}

.pws-page--pricing .hero__subtitle {
  justify-content: flex-start;
  margin: 0;
  text-align: left;
  width: min(668px, 100%);
}

.pws-page--pricing .toggle__tabs {
  margin-top: 0.6rem;
}

.pws-page--pricing .packages {
  padding-top: clamp(2.4rem, 3vw, 3.6rem);
}

@media (max-width: 980px) {
  .pipes__grid {
    grid-template-columns: 1fr;
  }

  .pipes__diagram {
    max-width: 637px;
  }

  .pipes__center {
    justify-self: center;
  }

  .meaning__cols {
    width: 100%;
  }

  .journey .container.padx,
  .journey__content,
  .faq .container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .journey__tabs {
    gap: 0.8rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .journey__tab {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 13rem;
    padding: 1rem 1.2rem;
  }

  .journey__card {
    padding: 1.8rem;
  }

  .hero__title {
    font-size: clamp(3.4rem, 9vw, 4.6rem);
  }
}

/* ========================================================================== */
/* 10B. SIMPLE STEPS SECTION (Reusable CTA + 3 numbered steps)                */
/* ========================================================================== */

.simple-steps {
  background: #ffffff;
  padding: 100px 0;
}

.simple-steps .container {
  display: flex;
  justify-content: center;
}

.simple-steps__inner {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: flex-start;
  gap: 40px;
}

/* --- Heading column (left) --- */
.simple-steps__heading {
  display: flex;
  width: 360px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.simple-steps__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.simple-steps__title {
  align-self: stretch;
  color: #0F172A;
  font-family: var(--font-medium), "Geist", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
}

.simple-steps__title .section-accent,
.simple-steps__title .text-green {
  background: radial-gradient(50% 50% at 50% 50%, #59d69c 69.75%, #00a666);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-medium), "Geist", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
}

.simple-steps__subtitle {
  align-self: stretch;
  color: #475569;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.simple-steps__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.simple-steps__cta img {
  width: 16px;
  height: 16px;
}

/* --- Steps list (right) --- */
.simple-steps__list {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-steps__step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  border-radius: 12px;
}

.simple-steps__step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.simple-steps__number {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  border: 1px solid #59D69C;
  color: #0F172A;
  font-family: var(--font-medium), "Geist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  flex-shrink: 0;
}

.simple-steps__line {
  flex: 1 1 auto;
  height: 0;
  border-top: 1px dashed #59D69C;
}

.simple-steps__step-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.simple-steps__step-title {
  align-self: stretch;
  color: #0F172A;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.simple-steps__step-subtitle {
  align-self: stretch;
  color: #475569;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .simple-steps__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .simple-steps__heading {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .simple-steps {
    padding: 64px 0;
  }

  .simple-steps__list {
    flex-direction: column;
    gap: 28px;
  }

  .simple-steps__title,
  .simple-steps__title .section-accent,
  .simple-steps__title .text-green {
    font-size: 32px;
    line-height: 36px;
  }

  /* Hide the connector line when stacked vertically */
  .simple-steps__line {
    display: none;
  }
}

/* ========================================================================== */
/* 11. PROS & CONS SECTION                                                    */
/* ========================================================================== */

.pros-cons {
  padding: var(--section-pad-y) 0;
  background: var(--color-page-alt);
}

.pros-cons .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main wrapper: horizontal flexbox with 3 sections */
.pros-cons__wrapper {
  display: flex;
  width: 1100px;
  max-width: 100%;
  align-items: flex-start;
  gap: 40px;
}

/* ===== LEFT SECTION (CONS) ===== */
.pros-cons__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  /* Flex-grow: 1, flex-shrink: 0, flex-basis: 0 */
}

/* Label at the top (e.g., "The Problem") */
.pros-cons__label {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  font-family: var(--font-geist);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pros-cons__label--problem {
  color: #EF424C;
}

.pros-cons__label--solution {
  color: #59D69C;
}

/* Main title (e.g., "Starting a business is...") */
.pros-cons__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #FFF;
  font-family: var(--font-geist);
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
}

/* Subtitle/description */
.pros-cons__subtitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  flex: 1 0 0;
  color: #FFF;
  font-family: var(--font-geist);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

/* List container */
.pros-cons__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual list item */
.pros-cons__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

/* Icon container */
.pros-cons__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pros-cons__icon svg {
  width: 100%;
  height: 100%;
}

/* Text for each item */
.pros-cons__text {
  flex: 1 0 0;
  color: #FFF;
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* ===== MIDDLE SECTION (LOGO) ===== */
.pros-cons__middle {
  width: 400px;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo frame with border */
.pros-cons__logo-frame {
  display: inline-flex;
  padding: 48px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #4F7CFF;
  background: #020617;
  box-shadow: 0 0 20px rgba(79, 124, 255, 0.3), 0 0 40px rgba(79, 124, 255, 0.15);
}

/* Inner logo container - displays the Gotavi logo */
.pros-cons__logo-container {
  display: flex;
  width: 120px;
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pros-cons__logo-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== RIGHT SECTION (PROS) ===== */
.pros-cons__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .pros-cons__wrapper {
    width: 100%;
    gap: 30px;
  }

  .pros-cons__middle {
    width: 300px;
  }

  .pros-cons__title {
    font-size: 24px;
  }

  .pros-cons__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .pros-cons__wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .pros-cons__middle {
    width: 100%;
    order: -1;
    /* Move logo to top on mobile */
  }

  .pros-cons__left,
  .pros-cons__right {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pros-cons__title {
    font-size: 20px;
  }

  .pros-cons__subtitle {
    font-size: 16px;
  }

  .pros-cons__text {
    font-size: 14px;
  }

  .pros-cons__logo-frame {
    padding: 32px 24px;
  }
}

/* ========================================================================== */
/* 12. SERVICES SECTION                                                       */
/* ========================================================================== */

.services {
  padding: var(--section-pad-y) 0;
  background: #ffffff;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Services section uses .section-header, .section-title, .section-subtitle from utilities */
.services .section-header {
  margin-bottom: 48px;
}

.services .section-title {
  color: #0f172a;
}

.services .section-subtitle {
  color: #475569;
}

/* Wrapper for all select boxes */
.services__select-boxes {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

/* Row containing 5 select boxes */
.services__select-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 32px;
}

/* Individual select box */
.services__select-box {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 0;
  /* All boxes grow and shrink equally from 0 basis */
  min-width: 0;
  /* Allow flex items to shrink below content size */
  height: 200px;
  /* Fixed height for all boxes */
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.services__select-box:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

/* Content inside each select box */
.services__select-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  /* Stretch to fill parent width */
}

/* Icon container */
.services__select-box-icon {
  width: 24px;
  height: 24px;
  color: #4F7CFF;
  /* Blue color */
}

.services__select-box-icon svg {
  width: 100%;
  height: 100%;
}

/* Description wrapper (title + subtitle) */
.services__select-box-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

/* Title text */
.services__select-box-title {
  color: #0f172a;
  font-family: var(--font-medium), "Geist", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

/* Subtitle text */
.services__select-box-subtitle {
  color: #475569;
  text-align: center;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: stretch;
}

/* Team-specific select box styles */
.services[aria-label="Our team"] .services__select-row {
  align-items: stretch;
}

.services[aria-label="Our team"] .services__select-box {
  height: auto;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
  .services__select-row {
    gap: 24px;
  }

  .services__select-box {
    padding: 16px;
  }
}

@media (max-width: 960px) {
  .services__select-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .services__select-box {
    flex: 1 1 calc(50% - 10px);
    /* Two columns on tablet */
    min-width: 200px;
  }
}

@media (max-width: 640px) {
  .services__select-boxes {
    gap: 24px;
  }

  .services__select-row {
    flex-direction: column;
    gap: 16px;
  }

  .services__select-box {
    width: 100%;
  }
}

/* ========================================================================== */
/* 13. CTA SECTION                                                            */
/* ========================================================================== */

.cta {
  background: var(--color-page-alt);
  padding: var(--section-pad-y) 0;
}

.cta__title {
  align-items: center;
  align-self: stretch;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-geist);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  line-height: normal;
  margin-bottom: 1.6rem;
  text-align: left;
}

.cta__copy {
  align-items: center;
  align-self: stretch;
  color: var(--color-white);
  display: flex;
  flex: 1 0 0;
  font-family: var(--font-geist);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  justify-content: center;
  line-height: normal;
  margin-bottom: 3.5rem;
  text-align: left;
}

/* ========================================================================== */
/* 13. FOOTER                                                                 */
/* ========================================================================== */

.site-footer {
  align-items: center;
  background: var(--gradient-footer);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
}

.site-footer>.container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  max-width: 1200px;
  padding-bottom: 6rem;
  padding-top: clamp(4.8rem, 6vw, 7.2rem);
  width: 100%;
}

.site-footer__top {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  gap: 2rem;
}

.site-footer__top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
  padding: 100px 0;
}

.site-footer__logo {
  flex-shrink: 0;
}

.site-footer__logo img,
.site-footer__logo svg {
  display: block;
  width: 120px;
  /* adjust as needed */
  height: auto;
}

.site-footer__content {
  max-width: 600px;
}

.site-footer__content h2 {
  margin: 0 0 1rem;
}

.site-footer__content p {
  margin: 0;
}

.site-footer__description--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
}

.site-footer__description--stacked p {
  text-align: left;
  align-self: flex-start;
  width: 100%;
}

.site-footer__list {
  display: block;
  list-style: disc;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5rem !important;
  margin: 1rem 0;
  text-align: left;
  align-self: flex-start;
  width: 100%;
}

.site-footer__list li {
  display: list-item;
  list-style: disc;
  list-style-type: disc;
  list-style-position: outside;
  text-align: left;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.site-footer__brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 600px;
}

.site-footer__text {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.site-footer__heading {
  align-items: center;
  align-self: stretch;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  line-height: normal;
}

.site-footer__description {
  align-items: center;
  align-self: stretch;
  color: var(--color-white);
  display: flex;
  flex: 1 0 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  justify-content: flex-start;
  line-height: normal;
}

.site-footer__cta-frame {
  height: 148px;
  width: 400px;
}

.site-footer__links {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
}

.site-footer__brand-frame {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 262.855px;
}

.site-footer__logo-wrap {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__logo {
  height: 4.5rem;
  width: auto;
}

.site-footer__social {
  align-items: flex-start;
  display: flex;
  gap: var(--spacing-sm);
}

.site-footer__social a {
  align-items: center;
  border-radius: 50%;
  color: var(--color-white-60);
  display: flex;
  height: 3.8rem;
  justify-content: center;
  transition: color var(--transition-base);
  width: 3.8rem;
}

.site-footer__social a:hover {
  color: var(--color-white);
}

.site-footer__nav {
  align-items: flex-start;
  display: flex;
  gap: 6rem;
}

.site-footer__nav-col {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__nav-col h4,
.site-footer__nav-title {
  align-items: center;
  align-self: stretch;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  gap: 1rem;
  line-height: normal;
}

.site-footer__nav-col ul {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.site-footer__nav-col li {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
}

.site-footer__nav-col a,
.site-footer__nav-link {
  color: var(--color-white);
  font-family: var(--font-medium);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color var(--transition-base);
}

.site-footer__nav-col a:hover,
.site-footer__nav-link:hover {
  color: var(--color-accent);
}

.site-footer__bottom {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 0;
}

.site-footer__bottom-inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.site-footer__copyright-wrap {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 1rem;
}

.site-footer__bottom p,
.site-footer__copyright {
  color: var(--color-white-35);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1280px) {
  .site-footer>.container {
    max-width: 100%;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .site-footer__brand {
    width: 100%;
    max-width: 600px;
  }

  .site-footer__cta-frame {
    width: 100%;
    max-width: 400px;
  }

  .site-footer__brand-frame {
    width: 100%;
    max-width: 262.855px;
  }
}

@media (max-width: 1100px) {
  .site-footer>.container {
    gap: 60px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer__brand {
    max-width: none;
    width: 100%;
  }

  .site-footer__cta-frame {
    height: auto;
    max-width: none;
    width: 100%;
  }

  .site-footer__links {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer__brand-frame {
    max-width: none;
    width: 100%;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-title {
    display: block;
    line-height: 1.2;
  }

  .site-footer__heading {
    font-size: clamp(2.8rem, 7.4vw, 4rem);
  }

  .site-footer__description {
    font-size: 1.5rem;
  }

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

  .site-footer__nav-col h4 {
    font-size: 18px;
  }

  .site-footer__nav-col a {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer>.container {
    gap: 48px;
  }
}

/* ========================================================================== */
/* 13. ANIMATION UTILITIES                                                    */
/* ========================================================================== */

.appear {
  display: block;
  transition: 0.6s;
}

.appear.down {
  transform: translateY(-100%);
}

.appear.up {
  transform: translateY(100%);
}

.appear.in-view {
  transform: translateY(0);
}

.fadeup,
.slidedown,
.slideleft,
.slideright,
.fadein {
  opacity: 0;
}

.fadeup {
  transform: translate3d(0, 8%, 0);
  transition-duration: 1s;
}

.fadeup.in-view {
  opacity: 1;
  transform: none;
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
}

.fadein {
  transition-duration: 1s;
}

.fadein.in-view {
  opacity: 1;
  transition-timing-function: linear;
}

.slidedown {
  transform: translate3d(0, -8%, 0);
  transition-duration: 1s;
}

.slidedown.in-view {
  opacity: 1;
  transform: none;
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
}

.slideleft {
  transform: translate3d(-20px, 0, 0);
  transition-duration: 1s;
}

.slideleft.in-view {
  opacity: 1;
  transform: none;
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
}

.slideright {
  transform: translate3d(20px, 0, 0);
  transition-duration: 1s;
}

.slideright.in-view {
  opacity: 1;
  transform: none;
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
}

.fadeup-cascade>* {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition-duration: 1s;
  transition-delay: 0.15s;
}

.fadeup-cascade.in-view>* {
  opacity: 1;
  transform: translateZ(0);
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
}

.fadeup-cascade>*:nth-child(1) {
  transition-delay: 0.15s;
}

.fadeup-cascade>*:nth-child(2) {
  transition-delay: 0.30s;
}

.fadeup-cascade>*:nth-child(3) {
  transition-delay: 0.45s;
}

.fadeup-cascade>*:nth-child(4) {
  transition-delay: 0.60s;
}

.fadeup-cascade>*:nth-child(5) {
  transition-delay: 0.75s;
}

.fadeup-cascade>*:nth-child(6) {
  transition-delay: 0.90s;
}

.fadeup-cascade>*:nth-child(7) {
  transition-delay: 1.05s;
}

.fadeup-cascade>*:nth-child(8) {
  transition-delay: 1.20s;
}

.fadeup-cascade>*:nth-child(9) {
  transition-delay: 1.35s;
}

.fadeup-cascade>*:nth-child(10) {
  transition-delay: 1.50s;
}

/* ========================================================================== */
/* 14. UTILITIES & HELPERS                                                    */
/* ========================================================================== */

/* Responsive Utilities */
.mobile-hide {
  display: block;
}

@media (max-width: 768px) {
  .mobile-hide {
    display: none;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-only {
    display: block;
  }
}

/* Text Utilities */
.text-balance {
  text-wrap: balance;
}

/* Layout Utilities */
.hide-overflow {
  display: block;
  overflow: hidden;
}

/* ========================================================================== */
/* 15. SECTION COMPONENTS                                                     */
/* ========================================================================== */

/* Section Titles - Various Styles */
.section-title {
  margin-bottom: 1.6rem;
}

.section-title--large {
  color: #fff;
  font-family: var(--font-medium), "Geist", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

@media (max-width: 767px) {
  .section-title--large {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
}

/* Section Subtitles - Various Styles */
.section-subtitle {
  color: #FFF;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto 4.5rem;
  max-width: 60rem;
  text-align: center;
}

.section-subtitle--personas {
  color: #fff;
  font-family: var(--font-medium), "Geist", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto 5rem;
  max-width: 62rem;
  text-align: center;
}

.section-subtitle--packages {
  margin: 0 auto;
  max-width: 68rem;
  text-align: center;
}

/* Section Accent Text - Gradient Effect */
.section-accent {
  background: radial-gradient(50% 50% at 50% 50%, #59d69c 69.75%, #00a666);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Section Grids - Reusable Grid Patterns */
.section-grid {
  display: grid;
}

.section-grid--5-col {
  gap: 0.8rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.section-grid--3-col {
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-grid--cards {
  gap: 2.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Grid Responsive Behavior */
@media (max-width: 1100px) {
  .section-grid.section-grid--5-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section-grid.section-grid--cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section-grid.section-grid--5-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid.section-grid--3-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .section-grid.section-grid--5-col {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
.show-for-sr,
.srt {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/* ========================================================================== */
/* 16. THIRD-PARTY INTEGRATIONS                                               */
/* ========================================================================== */

/* Interactor AI Chat Widget Overrides */
#interactor-fab {
  z-index: 100000 !important;
}

#interactor-chat-container {
  position: fixed !important;
  z-index: 100001 !important;
}

#interactor-chat-container * {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 1000px) {
  #interactor-embed-chat iframe {
    bottom: 0;
    height: 95%;
    position: fixed;
  }
}

/* ========================================================================== */
/* 17. STARTING BUSINESS PAGE                                                 */
/* ========================================================================== */

.pws-page--starting-business {
  min-height: 100vh;
}

.sb-hero {
  padding: clamp(5.6rem, 7vw, 8rem) 0 clamp(4rem, 7vw, 7rem);
}

.sb-hero__frame {
  align-items: flex-start;
  display: inline-flex;
  gap: clamp(2rem, 5vw, 6rem);
  width: 100%;
}

.sb-hero__text {
  align-items: flex-start;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 2.4rem;
  justify-content: center;
  max-width: 58rem;
}

.sb-hero__pre-title {
  align-items: center;
  border: 1px solid #59D69C;
  border-radius: 8px;
  color: #FFF;
  display: inline-flex;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  gap: 1rem;
  line-height: 1.4;
  margin: 0;
  padding: 0.8rem 1.6rem;
}

.sb-hero__pre-title img {
  height: 1.6rem;
  width: 1.6rem;
}

.sb-hero__title {
  color: #FFF;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 1.6rem;
}

.sb-hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 2.4rem;
  max-width: 62rem;
}

.sb-hero__cta {
  margin-top: 0.8rem;
}

.sb-hero__cta img,
.sb-hero__cta i,
.sb-hero__cta svg {
  aspect-ratio: 1 / 1;
  height: 16px;
  width: 16px;
}

.sb-hero__visual {
  align-items: center;
  background: transparent;
  border: none;
  display: inline-flex;
  flex: 0 0 min(46%, 48rem);
  justify-content: center;
  margin: 0;
  min-height: 34rem;
  padding: 1.6rem;
}

.sb-hero__visual span {
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .sb-hero {
    padding-top: 11rem;
  }

  .sb-hero__frame {
    display: flex;
    flex-direction: column;
  }

  .sb-hero__text {
    max-width: none;
  }

  .sb-hero__visual {
    flex: auto;
    min-height: 28rem;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .sb-hero__title {
    font-size: clamp(3.2rem, 9vw, 4rem);
  }

  .sb-hero__subtitle {
    font-size: 1.6rem;
  }
}

/* Stats Section */
.sb-stats {
  padding: clamp(4rem, 6vw, 6rem) 0;
}

.sb-stats .container {
  display: flex;
  justify-content: center;
}

/* Stats Bar Component - Reusable across pages */
.stats-bar {
  align-items: flex-start;
  background: linear-gradient(0deg, #0F172A 0%, #172033 100%);
  border: 1px solid #334155;
  border-radius: 20px;
  display: inline-flex;
  gap: 40px;
  padding: 32px;
}

.stats-bar__frame {
  align-items: center;
  border-right: 1px solid #334155;
  display: flex;
  gap: 12px;
  padding-right: 40px;
}

.stats-bar__frame:last-child {
  border-right: none;
  padding-right: 0;
}

.stats-bar__icon {
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

.stats-bar__icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.stats-bar__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.stats-bar__value {
  align-items: center;
  color: #FFF;
  display: flex;
  font-family: var(--font-body), "Geist", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  gap: 10px;
  justify-content: center;
  line-height: normal;
}

.stats-bar__label {
  align-items: center;
  align-self: stretch;
  color: #FFF;
  display: flex;
  font-family: var(--font-medium), "Geist", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  gap: 10px;
  line-height: normal;
}

@media (max-width: 1024px) {
  .stats-bar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    width: 100%;
  }

  .stats-bar__frame {
    border-right: none;
    border-bottom: 1px solid #334155;
    padding-right: 0;
    padding-bottom: 24px;
    width: 100%;
  }

  .stats-bar__frame:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .stats-bar {
    padding: 20px;
  }

  .stats-bar__value {
    font-size: 18px;
  }

  .stats-bar__label {
    font-size: 11px;
  }
}


@keyframes flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -16;
  }
}

.pipes__slot svg line {
  stroke-dasharray: 4 4 !important;
  stroke-dashoffset: 0;
  animation: flow 1s linear infinite !important;
}

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

/*

.pipes__slot svg rect[height="31"] {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1.3);
}

.pipes__slot svg rect[height="31"] + rect[height="31"] + path {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1.3);
}
*/