:root {
  --site-ink: #071e2c;
  --site-ink-2: #0d3142;
  --site-text: #49636d;
  --site-muted: #6f858d;
  --site-teal: #0b8490;
  --site-teal-dark: #086874;
  --site-teal-light: #27b8c2;
  --site-mint: #dff5f1;
  --site-paper: #f7f8f4;
  --site-paper-2: #edf3ef;
  --site-white: #ffffff;
  --site-line: #d9e4df;
  --site-line-dark: rgba(255, 255, 255, 0.13);
  --site-shadow-sm: 0 10px 30px rgba(7, 30, 44, 0.07);
  --site-shadow-md: 0 22px 60px rgba(7, 30, 44, 0.12);
  --site-shadow-lg: 0 36px 90px rgba(7, 30, 44, 0.2);
  --site-radius-sm: 14px;
  --site-radius: 22px;
  --site-radius-lg: 32px;
  --site-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --theme: var(--site-teal);
  --theme2: var(--site-ink);
  --theme-color3: var(--site-teal-light);
  --header: var(--site-ink);
  --text: var(--site-text);
  --border: var(--site-line);
  --bg: var(--site-paper);
  --bg2: var(--site-ink);
  --title-color: var(--site-ink);
  --text-color: var(--site-text);
  --border-color: var(--site-line);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body.site-body {
  margin: 0;
  overflow-x: hidden;
  background: var(--site-paper);
  color: var(--site-text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.site-body::selection {
  color: #fff;
  background: var(--site-teal);
}

.site-body h1,
.site-body h2,
.site-body h3,
.site-body h4,
.site-body h5,
.site-body h6 {
  color: var(--site-ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.site-body p {
  color: var(--site-text);
}

.site-body a {
  text-decoration: none;
}

.site-body .container {
  max-width: 1320px;
}

.site-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: #fff;
  color: var(--site-ink);
  padding: 10px 16px;
  box-shadow: var(--site-shadow-md);
}

.site-skip-link:focus {
  transform: translateY(0);
}

.section-padding {
  padding: clamp(76px, 8vw, 124px) 0;
}

.site-section-index {
  display: block;
  color: var(--site-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.phase2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--site-teal);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.phase2-kicker::before {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.phase2-kicker-live::before {
  display: none;
}

.phase2-kicker-live {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #bceee9;
  padding: 9px 13px;
  backdrop-filter: blur(12px);
}

.phase2-kicker-live i {
  color: #48d7bb;
  font-size: 7px;
  filter: drop-shadow(0 0 5px rgba(72, 215, 187, 0.8));
}

.phase2-section-heading {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.phase2-section-heading.text-center {
  align-items: center;
}

.phase2-section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 4.25vw, 60px);
  line-height: 1.04;
  text-wrap: balance;
}

.phase2-section-heading p {
  max-width: 720px;
  margin: 2px 0 0;
  font-size: 17px;
  line-height: 1.75;
}

.phase2-section-heading.text-center p {
  margin-right: auto;
  margin-left: auto;
}

.theme-btn,
.site-body .theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--site-teal) !important;
  border-radius: 999px;
  background: var(--site-teal) !important;
  color: #fff !important;
  padding: 13px 23px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: transform 220ms var(--site-ease), background 220ms ease, box-shadow 220ms ease;
}

.theme-btn::before,
.theme-btn::after {
  display: none !important;
}

.theme-btn:hover,
.theme-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--site-teal-dark) !important;
  background: var(--site-teal-dark) !important;
  box-shadow: 0 14px 30px rgba(11, 132, 144, 0.22);
}

.theme-btn.style-border {
  border-color: #b9cbc6 !important;
  background: transparent !important;
  color: var(--site-ink) !important;
}

.theme-btn.style-border:hover,
.theme-btn.style-border:focus-visible {
  border-color: var(--site-ink) !important;
  background: var(--site-ink) !important;
  color: #fff !important;
}

.theme-btn.bg-white {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--site-ink) !important;
}

.theme-btn.bg-white:hover {
  background: #dff5f1 !important;
  border-color: #dff5f1 !important;
}

.phase2-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--site-teal);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: gap 220ms var(--site-ease), color 220ms ease;
}

.phase2-link:hover {
  gap: 14px;
  color: var(--site-teal-dark);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(39, 184, 194, 0.38);
  outline-offset: 3px;
}

/* Desktop header */
.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
}

.site-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--site-ink);
  color: #b9cbd0;
  font-size: 12px;
}

.site-topline .container {
  min-height: 34px;
}

.site-topline i {
  margin-right: 7px;
  color: #67d8d1;
}

.site-topline a {
  color: #cfdddf;
}

.site-topline-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-topline-links > span {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.site-navbar,
.header-3.site-navbar {
  border-bottom: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.site-navbar.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 12px 40px rgba(7, 30, 44, 0.1);
  animation: siteHeaderIn 300ms var(--site-ease) both;
}

.site-navbar .header-main {
  min-height: 78px;
  padding: 0;
}

.site-navbar .header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-navbar .header-logo img {
  width: auto;
  height: 42px;
}

.site-brand-note {
  max-width: 78px;
  border-left: 1px solid var(--site-line);
  color: var(--site-muted);
  padding-left: 13px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-navbar .header-right {
  gap: 19px;
}

.site-navbar .header-main .main-menu ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-navbar .header-main .main-menu ul li {
  margin-inline-end: 0;
}

.site-navbar .header-main .main-menu ul li a {
  position: relative;
  color: #294653;
  padding: 28px 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.site-navbar .header-main .main-menu ul li a::before {
  position: absolute;
  right: 11px;
  bottom: 21px;
  left: 11px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 999px;
  background: var(--site-teal);
  content: "";
  transition: transform 220ms var(--site-ease);
}

.site-navbar .header-main .main-menu ul li a:hover,
.site-navbar .header-main .main-menu ul li a.active {
  color: var(--site-teal);
}

.site-navbar .header-main .main-menu ul li a:hover::before,
.site-navbar .header-main .main-menu ul li a.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.site-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--site-ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.site-portal-link:hover {
  color: var(--site-teal);
}

.site-navbar .header-button .theme-btn {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 13px;
}

/* Hero */
.phase2-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background: var(--site-ink);
  padding: 76px 0 86px;
}

.phase2-hero::before,
.phase2-hero::after {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  filter: blur(1px);
}

.phase2-hero::before {
  top: -320px;
  left: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(28, 176, 185, 0.28), transparent 66%);
}

.phase2-hero::after {
  right: -230px;
  bottom: -390px;
  width: 740px;
  height: 740px;
  background: radial-gradient(circle, rgba(39, 184, 194, 0.2), transparent 66%);
}

.phase2-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}

.phase2-hero-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 44, 0.15), transparent 42%, rgba(7, 30, 44, 0.08));
  content: "";
}

.phase2-hero .container {
  position: relative;
  z-index: 2;
}

.phase2-hero h1 {
  max-width: 690px;
  margin: 22px 0 22px;
  color: #f7fbfa;
  font-size: clamp(50px, 5.1vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.phase2-hero h1 span {
  color: #63d7d0;
}

.phase2-hero p {
  max-width: 630px;
  margin: 0;
  color: #b8cbd0;
  font-size: 18px;
  line-height: 1.75;
}

.phase2-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.phase2-hero .theme-btn.style-border {
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #eaf4f3 !important;
}

.phase2-hero .theme-btn.style-border:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--site-ink) !important;
}

.phase2-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-width: 650px;
  margin-top: 38px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--site-radius-sm);
  background: rgba(255, 255, 255, 0.055);
  padding: 15px 16px;
  backdrop-filter: blur(9px);
}

.metric-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-top: 1px solid rgba(99, 215, 208, 0.45);
  border-right: 1px solid rgba(99, 215, 208, 0.45);
  content: "";
}

.metric-value {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 5px;
  color: #8fa9b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.phase2-hero-visual {
  position: relative;
  min-height: 500px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  padding: 48px 20px 12px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.phase2-hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 10% -8% -8% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 172, 181, 0.22), transparent 67%);
  content: "";
}

.hero-visual-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #a8bec3;
  padding: 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-visual-bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-visual-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48d7bb;
  box-shadow: 0 0 0 5px rgba(72, 215, 187, 0.11);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(8, 35, 48, 0.88);
  color: #c5d5d8;
  padding: 11px 13px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  animation: siteFloat 5s ease-in-out infinite;
}

.hero-float-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(39, 184, 194, 0.14);
  color: #63d7d0;
}

.hero-float-card span,
.hero-float-card strong {
  display: block;
}

.hero-float-card span {
  font-size: 10px;
  line-height: 1.5;
}

.hero-float-card strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
}

.hero-float-card-top {
  top: 76px;
  right: -32px;
}

.hero-float-card-bottom {
  bottom: 32px;
  left: -35px;
  animation-delay: -2.3s;
}

.site-capability-rail {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--site-line);
  background: #fff;
}

.site-capability-rail .container {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 78px;
}

.capability-rail-label {
  flex: 0 0 auto;
  color: var(--site-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-rail-items {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--site-line);
}

.capability-rail-items span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-right: 1px solid var(--site-line);
  color: #294653;
  font-size: 12px;
  font-weight: 700;
}

.capability-rail-items i {
  color: var(--site-teal);
  font-size: 16px;
}

/* About */
.phase2-about {
  position: relative;
  background: var(--site-paper);
}

.phase2-about::before {
  position: absolute;
  top: 0;
  right: 4%;
  width: 1px;
  height: 100%;
  background: var(--site-line);
  content: "";
  opacity: 0.55;
}

.phase2-about-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.phase2-point {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--site-line);
  color: #294653;
  padding: 9px 0 14px;
  font-size: 14px;
  font-weight: 700;
}

.phase2-point i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: var(--site-mint);
  color: var(--site-teal-dark);
  font-size: 13px;
}

.phase2-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.phase2-about-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--site-shadow-sm);
  transition: transform 300ms var(--site-ease), box-shadow 300ms ease, border-color 300ms ease;
}

.phase2-about-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(11, 132, 144, 0.12);
  border-radius: 50%;
  content: "";
}

.phase2-about-card:hover {
  transform: translateY(-7px);
  border-color: #b9d3cd;
  box-shadow: var(--site-shadow-md);
}

.phase2-about-card > small {
  position: absolute;
  top: 21px;
  right: 22px;
  color: #9aaba9;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--site-mint);
  color: var(--site-teal-dark);
}

.phase2-about-card h4 {
  margin: 33px 0 8px;
  font-size: 21px;
}

.phase2-about-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.phase2-about-card-accent {
  border-color: var(--site-ink);
  background: var(--site-ink);
}

.phase2-about-card-accent h4,
.phase2-about-card-accent > small {
  color: #fff;
}

.phase2-about-card-accent p {
  color: #a9c0c5;
}

/* Services */
.phase2-services {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
  background: #fff;
}

.phase2-services::before {
  position: absolute;
  top: -230px;
  right: -170px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 184, 194, 0.1), transparent 68%);
  content: "";
}

.phase2-services-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.phase2-services-head .phase2-section-heading {
  max-width: 850px;
}

.phase2-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-paper);
  padding: 17px 20px 23px;
  transition: transform 320ms var(--site-ease), box-shadow 320ms ease, border-color 320ms ease;
}

.phase2-service-card:hover {
  transform: translateY(-8px);
  border-color: #b8d6d0;
  box-shadow: var(--site-shadow-md);
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8ba09f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.service-card-meta i {
  transform: rotate(0deg);
  transition: transform 300ms var(--site-ease), color 300ms ease;
}

.phase2-service-card:hover .service-card-meta i {
  transform: rotate(45deg);
  color: var(--site-teal);
}

.phase2-service-card .phase2-lottie {
  margin: 3px auto 6px;
}

.phase2-service-card h3 {
  margin: 4px 0 9px;
  font-size: 22px;
  line-height: 1.12;
}

.phase2-service-card p {
  flex: 1;
  margin: 0 0 17px;
  font-size: 14px;
  line-height: 1.65;
}

/* Portal benefits */
.phase2-benefits {
  position: relative;
  background:
    linear-gradient(135deg, rgba(223, 245, 241, 0.72), transparent 44%),
    var(--site-paper-2);
}

.phase2-benefit-card {
  height: 100%;
  min-height: 278px;
  border: 1px solid #cee0d9;
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.84);
  padding: 25px;
  box-shadow: 0 12px 35px rgba(7, 30, 44, 0.055);
  backdrop-filter: blur(8px);
  transition: transform 300ms var(--site-ease), box-shadow 300ms ease;
}

.phase2-benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--site-shadow-md);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border-radius: 15px;
  background: var(--site-ink);
  color: #71dbd4;
  font-size: 19px;
}

.benefit-label {
  display: block;
  margin-bottom: 8px;
  color: var(--site-teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.phase2-benefit-card h4 {
  margin: 0 0 10px;
  font-size: 20px;
}

.phase2-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.phase2-benefits-actions {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 38px;
}

/* Trust */
.phase2-trust {
  position: relative;
  overflow: hidden;
  background: var(--site-ink);
}

.phase2-trust::after {
  position: absolute;
  top: -200px;
  left: 15%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 184, 194, 0.18), transparent 68%);
  content: "";
}

.phase2-trust .container {
  position: relative;
  z-index: 1;
}

.phase2-trust-box {
  height: 100%;
  border: 1px solid var(--site-line-dark);
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 38px;
}

.phase2-trust-box h3 {
  max-width: 480px;
  margin: 21px 0 15px;
  color: #fff;
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1.06;
}

.phase2-trust-box p {
  color: #a9bec3;
  line-height: 1.75;
}

.phase2-trust-box .phase2-link {
  margin-top: 12px;
  color: #6bd9d2;
}

.phase2-trust-list {
  display: grid;
  gap: 10px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.phase2-trust-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr 34px;
  gap: 12px;
  min-height: 86px;
  border: 1px solid var(--site-line-dark);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 13px 17px;
  transition: transform 250ms var(--site-ease), background 250ms ease;
}

.phase2-trust-list li:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.075);
}

.phase2-trust-list li > span {
  color: #6bd9d2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.phase2-trust-list strong,
.phase2-trust-list small {
  display: block;
}

.phase2-trust-list strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}

.phase2-trust-list small {
  margin-top: 3px;
  color: #91aab0;
  font-size: 12px;
}

.phase2-trust-list li > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(99, 215, 208, 0.12);
  color: #6bd9d2;
  font-size: 11px;
}

/* Process */
.phase2-process {
  position: relative;
  background: #fff;
}

.phase2-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 50px;
}

.phase2-process-grid::before {
  position: absolute;
  z-index: 0;
  top: 40px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--site-teal) 0 8px, transparent 8px 14px);
  content: "";
  opacity: 0.35;
}

.phase2-process-step {
  position: relative;
  z-index: 1;
  min-height: 300px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-paper);
  padding: 22px;
  transition: transform 300ms var(--site-ease), background 300ms ease, box-shadow 300ms ease;
}

.phase2-process-step:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: var(--site-shadow-md);
}

.phase2-process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.phase2-process-top > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--site-teal);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 0 8px #e1f3ef;
}

.phase2-process-top i {
  color: #8da09f;
  font-size: 20px;
}

.phase2-process-step > small {
  color: var(--site-teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phase2-process-step h4 {
  margin: 8px 0 11px;
  font-size: 21px;
  line-height: 1.16;
}

.phase2-process-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

/* Pricing */
.phase2-pricing {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0a2938, #071e2c 72%);
}

.phase2-pricing::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(135deg, #000, transparent 70%);
}

.phase2-pricing .container {
  position: relative;
  z-index: 1;
}

.phase2-pricing .site-section-index {
  color: #77969d;
}

.phase2-pricing .phase2-kicker {
  color: #6bd9d2;
}

.phase2-pricing .phase2-section-heading h2 {
  color: #fff;
}

.phase2-pricing .phase2-pricing-note {
  max-width: 720px;
  margin: 0 auto 32px;
  color: #a8bec3;
  text-align: center;
}

.phase2-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 276px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 22px;
  backdrop-filter: blur(10px);
  transition: transform 300ms var(--site-ease), background 300ms ease, border-color 300ms ease;
}

.phase2-price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 215, 208, 0.5);
  background: rgba(255, 255, 255, 0.095);
}

.price-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-bottom: 35px;
  border-radius: 13px;
  background: rgba(99, 215, 208, 0.11);
  color: #6bd9d2;
  font-size: 18px;
}

.phase2-price-card small {
  color: #849fa6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phase2-price-card h5 {
  min-height: 44px;
  margin: 7px 0 9px;
  color: #dfecee;
  font-size: 17px;
  line-height: 1.25;
}

.phase2-price-card p {
  margin: 0 0 17px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.phase2-price-card > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #6bd9d2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Products */
.phase2-products {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--site-line);
  background: var(--site-paper);
}

#portfolio-tabs {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  margin: 0 auto 18px !important;
  overflow-x: auto;
  padding: 8px 0 12px !important;
  white-space: nowrap;
  scrollbar-width: thin;
}

#portfolio-tabs .project-item-card,
#portfolio-tabs .project-item-card.style1 {
  display: inline-flex !important;
  align-items: center;
  flex: 0 0 auto !important;
  gap: 8px;
  width: auto !important;
  min-height: 45px !important;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  background: #fff;
  color: #36525d;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 220ms var(--site-ease), background 220ms ease, border-color 220ms ease;
}

#portfolio-tabs .project-item-card:hover {
  transform: translateY(-2px);
  border-color: #aacbc5;
}

#portfolio-tabs .project-item-card.active {
  border-color: var(--site-ink);
  background: var(--site-ink);
  color: #fff;
}

#portfolio-tabs .project-item-card h5 {
  margin: 0;
  color: inherit;
  font-size: 12px;
  letter-spacing: -0.01em;
}

#portfolio-tabs .project-item-card i {
  font-size: 13px;
}

.phase2-catalog-category[hidden] {
  display: none !important;
}

.project-slider-2 {
  overflow: visible;
  padding: 13px 3px 22px;
}

.project-slider-2 .swiper-slide {
  height: auto;
}

.phase2-product-card {
  position: relative;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  box-shadow: var(--site-shadow-sm);
  transition: transform 320ms var(--site-ease), box-shadow 320ms ease, border-color 320ms ease;
}

.phase2-product-card:hover {
  transform: translateY(-9px);
  border-color: #b3d0ca;
  box-shadow: var(--site-shadow-md);
}

.phase2-clickable-product {
  cursor: pointer;
}

.phase2-product-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  overflow: hidden;
  border-bottom: 1px solid var(--site-line);
  background:
    radial-gradient(circle at 55% 45%, color-mix(in srgb, var(--accent, var(--site-teal)) 19%, transparent), transparent 48%),
    var(--site-paper-2);
}

.phase2-product-icon::before,
.phase2-product-icon::after {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--accent, var(--site-teal)) 28%, transparent);
  border-radius: 50%;
  content: "";
}

.phase2-product-icon::before {
  width: 120px;
  height: 120px;
}

.phase2-product-icon::after {
  width: 168px;
  height: 168px;
  opacity: 0.5;
}

.phase2-product-icon i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #fff;
  color: var(--accent, var(--site-teal));
  font-size: 30px;
  box-shadow: 0 14px 35px rgba(7, 30, 44, 0.13);
}

.phase2-product-body {
  padding: 23px;
}

.phase2-product-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--site-mint);
  color: var(--site-teal-dark);
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase2-product-card h3 {
  margin: 0 0 9px;
  font-size: 22px;
}

.phase2-product-card p {
  min-height: 72px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
}

.catalog-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.project-slider-2 .swiper-button-prev,
.project-slider-2 .swiper-button-next {
  position: static;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid var(--site-line);
  border-radius: 50%;
  background: #fff;
  color: var(--site-ink);
  transition: transform 180ms var(--site-ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.project-slider-2 .swiper-button-prev:hover,
.project-slider-2 .swiper-button-next:hover {
  transform: translateY(-2px);
  border-color: var(--site-ink);
  background: var(--site-ink);
  color: #fff;
}

.catalog-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 84px;
}

.catalog-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  border-radius: 999px;
  background: #b8ccc9;
  opacity: 1;
  transition: width 180ms var(--site-ease), background 180ms ease;
}

.catalog-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--site-teal);
}

.project-slider-2 .swiper-button-prev::after,
.project-slider-2 .swiper-button-next::after {
  font-size: 13px;
  font-weight: 800;
}

/* FAQ and CTA */
.site-faq {
  background: #fff;
}

.site-sticky-heading {
  position: sticky;
  top: 120px;
  align-items: flex-start;
}

.site-sticky-heading .theme-btn {
  margin-top: 12px;
}

.site-faq-list {
  border-top: 1px solid var(--site-line);
}

.site-faq-list details {
  border-bottom: 1px solid var(--site-line);
}

.site-faq-list summary {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr 30px;
  gap: 14px;
  min-height: 92px;
  color: var(--site-ink);
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

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

.site-faq-list summary span {
  color: var(--site-teal);
  font-size: 10px;
  font-weight: 800;
}

.site-faq-list summary i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--site-paper-2);
  color: var(--site-teal);
  font-size: 11px;
  transition: transform 220ms ease;
}

.site-faq-list details[open] summary i {
  transform: rotate(45deg);
}

.site-faq-list details p {
  max-width: 650px;
  margin: -7px 0 24px 56px;
  font-size: 14px;
  line-height: 1.75;
}

.phase2-cta {
  background: #fff;
  padding: 0 0 100px;
}

.phase2-cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border-radius: var(--site-radius-lg);
  background: linear-gradient(120deg, var(--site-teal-dark), var(--site-teal));
  color: #fff;
  padding: 50px 56px;
}

.phase2-cta-box::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 400px;
  height: 400px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.phase2-cta-box > * {
  position: relative;
  z-index: 1;
}

.phase2-cta-box .phase2-kicker {
  color: #d6fffa;
}

.phase2-cta-box h3 {
  max-width: 690px;
  margin: 15px 0 9px;
  color: #fff;
  font-size: clamp(31px, 3.4vw, 48px);
  line-height: 1.04;
}

.phase2-cta-box .phase2-cta-lead {
  max-width: 670px;
  margin: 0;
  color: #d5f2ef !important;
}

.phase2-cta-box > .theme-btn {
  flex: 0 0 auto;
}

/* Service catalog */
.site-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--site-ink);
  padding: 82px 0 72px;
}

.site-page-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(39, 184, 194, 0.24), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  content: "";
}

.site-page-hero .container {
  position: relative;
  z-index: 1;
}

.site-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #91aab0;
  font-size: 12px;
  font-weight: 700;
}

.site-breadcrumb a {
  color: #6bd9d2;
}

.site-page-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
}

.site-page-hero p {
  max-width: 690px;
  margin: 0;
  color: #a9bec3;
  font-size: 17px;
}

.site-page-stats {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.site-page-stat {
  min-width: 135px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
}

.site-page-stat strong,
.site-page-stat small {
  display: block;
}

.site-page-stat strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.site-page-stat small {
  color: #8da8ae;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase2-service-catalog {
  background: var(--site-paper);
}

.phase2-catalog-filters {
  position: sticky;
  z-index: 20;
  top: 91px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px !important;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px;
  box-shadow: var(--site-shadow-sm);
  backdrop-filter: blur(16px);
}

.phase2-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #36525d;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease;
}

.phase2-filter-chip:hover,
.phase2-filter-chip.active {
  background: var(--site-ink);
  color: #fff;
}

.phase2-catalog-category {
  margin-bottom: 42px !important;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-lg);
  background: #fff;
  padding: 36px;
  box-shadow: var(--site-shadow-sm);
}

.phase2-catalog-category-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 1fr);
  gap: 30px;
  margin-bottom: 27px;
  border-bottom: 1px solid var(--site-line);
  padding-bottom: 25px;
}

.phase2-catalog-category-head h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.phase2-catalog-category-head p {
  margin: 0;
  line-height: 1.7;
}

.phase2-catalog-card {
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-paper);
  padding: 25px;
}

.phase2-catalog-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 22px;
}

.phase2-catalog-card-head h4 {
  margin: 0 0 7px;
  font-size: 25px;
}

.phase2-catalog-card-head p {
  max-width: 680px;
  margin: 0;
}

.phase2-catalog-head-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.phase2-catalog-head-actions .theme-btn {
  min-height: 44px;
  padding: 11px 17px;
}

.phase2-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.phase2-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 17px;
  background: #fff;
  padding: 20px;
  transition: transform 280ms var(--site-ease), box-shadow 280ms ease, border-color 280ms ease;
}

.phase2-package-card:hover {
  transform: translateY(-5px);
  border-color: #b4d1ca;
  box-shadow: var(--site-shadow-sm);
}

.phase2-package-card.is-recommended {
  border-color: var(--site-teal);
  box-shadow: inset 0 3px 0 var(--site-teal);
}

.package-recommended-label {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 16px 0 12px;
  background: var(--site-teal);
  color: #fff;
  padding: 5px 9px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase2-package-name {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--site-mint);
  color: var(--site-teal-dark);
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase2-package-price {
  margin: 14px 0 16px;
  color: var(--site-ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  font-weight: 700;
}

.phase2-package-card ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.phase2-package-card li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  color: #45616c;
  font-size: 13px;
  line-height: 1.5;
}

.phase2-package-card li i {
  margin-top: 4px;
  color: var(--site-teal);
  font-size: 11px;
}

.phase2-package-cta {
  width: 100%;
  min-height: 43px;
  margin-top: 15px !important;
  padding: 10px 12px;
  font-size: 12px;
}

/* Contact */
.phase2-contact {
  background: var(--site-paper);
}

.phase2-contact-panel,
.phase2-contact-form-wrap {
  height: 100%;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-lg);
  background: #fff;
  padding: 34px;
  box-shadow: var(--site-shadow-sm);
}

.phase2-contact-panel {
  position: relative;
  overflow: hidden;
  border-color: var(--site-ink);
  background: var(--site-ink);
}

.phase2-contact-panel::after {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(39, 184, 194, 0.08);
  border-radius: 50%;
  content: "";
}

.phase2-contact-panel > * {
  position: relative;
  z-index: 1;
}

.phase2-contact-panel h3,
.phase2-contact-form-wrap h3 {
  margin: 0 0 11px;
  font-size: 30px;
}

.phase2-contact-panel h3 {
  color: #fff;
}

.phase2-contact-panel > p {
  color: #a8bec3;
}

.phase2-contact-points {
  display: grid;
  gap: 9px;
  margin-top: 30px;
}

.phase2-contact-point {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  padding: 13px;
}

.phase2-contact-point > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(99, 215, 208, 0.12);
  color: #6bd9d2;
}

.phase2-contact-point h4 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 14px;
}

.phase2-contact-point p {
  margin: 0;
  color: #91aab0;
  font-size: 12px;
}

.phase2-contact-point a {
  color: #c7d7da;
}

.site-form-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  border-radius: 12px;
  background: var(--site-mint);
  color: var(--site-teal-dark);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
}

/* Forms and modals */
.site-body .form-label {
  margin-bottom: 7px;
  color: #2a4652;
  font-size: 12px;
  font-weight: 800;
}

.site-body .form-control,
.site-body .form-select {
  min-height: 51px;
  border: 1px solid #ccdad6;
  border-radius: 12px;
  background-color: #fbfcfa;
  color: #101d22 !important;
  padding: 12px 14px;
  font-size: 14px;
  box-shadow: none;
}

.site-body textarea.form-control {
  min-height: 112px;
  resize: vertical;
}

.site-body .form-control::placeholder {
  color: #859597;
}

.site-body .form-control:focus,
.site-body .form-select:focus {
  border-color: var(--site-teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 132, 144, 0.09);
}

.site-body .form-select option {
  background: #fff;
  color: #111 !important;
}

.site-body .form-control[readonly] {
  background: #edf4f0;
  color: #36525d !important;
}

.site-body .nice-select {
  display: none !important;
}

.site-body select.form-select {
  display: block !important;
}

#quoteForm .form-select {
  height: 54px;
  min-height: 54px;
  line-height: 1.25;
  padding: 0.9rem 3rem 0.9rem 1rem;
  background-position: right 1rem center;
  background-size: 14px 10px;
  -webkit-appearance: auto;
  appearance: auto;
}

#quoteForm .form-select:not([multiple]):not([size]) {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

#quoteForm .form-select option {
  line-height: 1.35;
}

.modal-backdrop.show {
  opacity: 0.72;
  backdrop-filter: blur(4px);
}

.site-body .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px !important;
  background: #fff;
  box-shadow: var(--site-shadow-lg) !important;
}

.site-body .modal-header,
.quote-modal-header,
.contact-modal-shell,
.career-modal-shell {
  min-height: 74px;
  border: 0;
  border-radius: 0 !important;
  background: var(--site-ink) !important;
  padding: 18px 24px;
}

.site-body .modal-title {
  color: #fff !important;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.site-body .btn-close {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  background-size: 11px;
  opacity: 0.8;
}

.quote-modal-body,
.site-body .modal-body {
  background: #f8faf7;
}

.quote-modal-subtitle {
  color: var(--site-text) !important;
  font-size: 14px;
}

.quote-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 15px 0 21px;
}

.quote-flow-item {
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: #fff;
  color: #4d6770;
  padding: 9px 10px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.quote-context,
.quote-helper,
.career-modal-intro {
  border: 1px solid #c7dfd9;
  border-radius: 14px;
  background: var(--site-mint);
  padding: 15px;
}

.quote-context .label {
  color: var(--site-teal-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-context h6 {
  margin: 7px 0 2px;
}

.quote-context p,
.quote-helper p,
.career-modal-intro p {
  margin: 0;
  color: #49636d;
}

.quote-helper h6 {
  margin: 0 0 8px;
  font-size: 15px;
}

.quote-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-feature-list li {
  position: relative;
  color: #36525d;
  padding-left: 17px;
  font-size: 12px;
}

.quote-feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--site-teal);
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}

.contact-modal-info {
  margin-bottom: 9px;
  border: 1px solid var(--site-line);
  border-radius: 13px;
  background: #fff;
  padding: 13px;
}

.contact-modal-info h6 {
  margin: 0 0 4px;
  font-size: 13px;
}

.contact-modal-info p,
.contact-modal-info a {
  margin: 0;
  color: var(--site-text);
  font-size: 12px;
}

.contact-modal-info .text-primary,
.contact-modal-info .text-success {
  color: var(--site-teal) !important;
}

.swal2-popup {
  border-radius: 22px !important;
  font-family: "Manrope", sans-serif !important;
}

.swal2-title {
  color: var(--site-ink) !important;
  font-family: "Space Grotesk", sans-serif !important;
}

.swal2-confirm {
  border-radius: 999px !important;
  background: var(--site-teal) !important;
  padding: 11px 25px !important;
  box-shadow: none !important;
}

/* Generic content pages */
.site-content-section {
  background: var(--site-paper);
}

.site-content-card {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-lg);
  background: #fff;
  padding: clamp(26px, 5vw, 56px);
  box-shadow: var(--site-shadow-sm);
}

.site-content-card > :last-child {
  margin-bottom: 0;
}

.site-content-card h2,
.site-content-card h3 {
  margin-top: 1.5em;
}

.site-about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 38px;
}

.site-about-principle {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 25px;
}

.site-about-principle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-bottom: 25px;
  border-radius: 13px;
  background: var(--site-mint);
  color: var(--site-teal-dark);
}

.site-about-principle h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.site-about-principle p {
  margin: 0;
  font-size: 14px;
}

.site-service-static-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.site-service-static-card {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--site-shadow-sm);
}

.site-service-static-card h2 {
  font-size: 30px;
}

.site-service-feature-list {
  display: grid;
  gap: 10px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.site-service-feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--site-line);
  padding-bottom: 10px;
}

.site-service-feature-list i {
  color: var(--site-teal);
}

.site-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 150px;
  border: 1px dashed #b8cdc7;
  border-radius: var(--site-radius);
  background: #fff;
  color: var(--site-teal);
}

.site-empty-state p {
  margin: 0;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #061923;
  color: #9eb3b8;
  padding-top: 34px;
}

.site-footer::before {
  position: absolute;
  top: -320px;
  left: 30%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 184, 194, 0.13), transparent 67%);
  content: "";
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--site-line-dark);
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.035);
}

.site-footer-contact {
  display: grid;
  align-items: center;
  grid-template-columns: 43px 1fr 20px;
  gap: 13px;
  min-height: 94px;
  border-right: 1px solid var(--site-line-dark);
  color: #fff;
  padding: 16px 20px;
  transition: background 220ms ease;
}

.site-footer-contact:last-child {
  border-right: 0;
}

.site-footer-contact:hover {
  background: rgba(255, 255, 255, 0.055);
}

.site-footer-contact > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: rgba(99, 215, 208, 0.1);
  color: #67d8d1;
}

.site-footer-contact small,
.site-footer-contact strong {
  display: block;
}

.site-footer-contact small {
  color: #728e95;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer-contact strong {
  margin-top: 3px;
  color: #eaf2f2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.site-footer-contact > i {
  color: #5f7f87;
  font-size: 11px;
}

.site-footer-main {
  padding: 74px 0 65px;
}

.site-footer-logo {
  display: inline-flex;
  margin-bottom: 24px;
}

.site-footer-logo img {
  width: auto;
  height: 48px;
}

.site-footer-intro {
  max-width: 460px;
  margin: 0 0 24px;
  color: #8da6ac !important;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer-socials {
  display: flex;
  gap: 8px;
}

.site-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--site-line-dark);
  border-radius: 50%;
  color: #9eb3b8;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--site-ease);
}

.site-footer-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--site-teal);
  background: var(--site-teal);
  color: #fff;
}

.site-footer-title {
  margin: 0 0 21px;
  color: #fff !important;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.site-footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-links a {
  color: #8da6ac;
  font-size: 13px;
  transition: color 180ms ease, padding 180ms ease;
}

.site-footer-links a:hover {
  color: #67d8d1;
  padding-left: 4px;
}

.site-footer-newsletter-copy {
  margin: 0 0 14px;
  color: #78949b !important;
  font-size: 12px;
  line-height: 1.6;
}

.site-subscribe-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  overflow: hidden;
  border: 1px solid var(--site-line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

.site-subscribe-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 10px 11px;
  font-size: 12px;
}

.site-subscribe-form input::placeholder {
  color: #708a91;
}

.site-subscribe-form button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9px;
  background: var(--site-teal);
  color: #fff;
}

.site-footer-privacy {
  display: block;
  margin-top: 9px;
  color: #5e7a82;
  font-size: 9px;
}

.site-footer-privacy i {
  margin-right: 4px;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-top: 1px solid var(--site-line-dark);
}

.site-footer-bottom p {
  margin: 0;
  color: #5f7b83;
  font-size: 11px;
}

.site-footer-bottom div {
  display: flex;
  gap: 20px;
}

.site-footer-bottom a {
  color: #6e8990;
  font-size: 11px;
}

/* Reveal and card light */
.site-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--site-ease), transform 650ms var(--site-ease);
}

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

.site-reveal:nth-child(2) { transition-delay: 70ms; }
.site-reveal:nth-child(3) { transition-delay: 140ms; }
.site-reveal:nth-child(4) { transition-delay: 210ms; }

@keyframes siteHeaderIn {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

@media (max-width: 1199px) {
  .site-navbar .header-main .main-menu ul li a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }

  .site-portal-link {
    display: none;
  }

  .phase2-hero h1 {
    font-size: 56px;
  }

  .hero-float-card-top {
    right: -8px;
  }

  .hero-float-card-bottom {
    left: -8px;
  }

  .phase2-package-card {
    padding: 17px;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 78px;
  }

  body.site-body {
    padding-top: 70px;
    padding-bottom: 80px;
    background: #eef3ef;
  }

  .site-body .container {
    max-width: 760px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-padding {
    padding: 64px 0;
  }

  .phase2-section-heading h2 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .phase2-services-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .phase2-process-grid::before {
    display: none;
  }

  .phase2-package-grid {
    grid-template-columns: 1fr;
  }

  .phase2-package-card {
    min-height: 0;
  }

  .phase2-catalog-category-head {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .phase2-catalog-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .phase2-catalog-head-actions {
    justify-content: flex-start;
  }

  .phase2-cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px;
  }

  .site-about-principles {
    grid-template-columns: 1fr;
  }

  .site-service-static-grid {
    grid-template-columns: 1fr;
  }

  /* App-like mobile shell */
  .phase2-mobile-header {
    position: fixed;
    z-index: 1040;
    top: 0;
    right: 0;
    left: 0;
    height: 70px;
    border-bottom: 1px solid rgba(7, 30, 44, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 28px rgba(7, 30, 44, 0.08);
    backdrop-filter: blur(18px);
  }

  .phase2-mobile-header .container {
    height: 100%;
  }

  .phase2-mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .phase2-mobile-logo img {
    width: auto;
    height: 34px;
  }

  .mobile-logo-text {
    display: flex;
    flex-direction: column;
  }

  .mobile-logo-text strong {
    color: var(--site-ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    line-height: 1.1;
  }

  .mobile-logo-text small {
    margin-top: 2px;
    color: var(--site-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .phase2-mobile-header .btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 39px;
    border-radius: 999px;
    background: var(--site-ink);
    color: #fff;
    padding: 9px 14px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
  }

  .phase2-mobile-header .btn-quote i {
    color: #67d8d1;
  }

  .mobile-footer-nav {
    position: fixed;
    z-index: 1040;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    left: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(7, 30, 44, 0.96);
    box-shadow: 0 18px 45px rgba(7, 30, 44, 0.28);
    padding: 5px;
    backdrop-filter: blur(18px);
  }

  .mobile-footer-nav ul {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-footer-nav li {
    min-width: 0;
  }

  .mobile-footer-nav a {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-height: 57px;
    border-radius: 16px;
    color: #78969d;
    font-size: 9px;
    font-weight: 700;
    transition: color 260ms ease, transform 260ms var(--site-ease);
  }

  .mobile-footer-nav a i {
    font-size: 16px;
  }

  .mobile-footer-nav a.active {
    transform: translateY(-1px);
    color: #e8fffc;
  }

  .mobile-footer-nav a.active i {
    color: #67d8d1;
  }

  .mobile-nav-indicator {
    position: absolute;
    z-index: 1;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: 60px;
    border: 1px solid rgba(99, 215, 208, 0.13);
    border-radius: 16px;
    background: rgba(99, 215, 208, 0.1);
    transition: left 360ms var(--site-ease), width 360ms var(--site-ease);
  }

  .phase2-hero {
    min-height: 0;
    padding: 48px 0 62px;
  }

  .phase2-hero h1 {
    max-width: 650px;
    font-size: clamp(44px, 8.5vw, 64px);
  }

  .phase2-hero-visual {
    max-width: 650px;
    min-height: 430px;
    margin: 10px auto 0;
  }

  .site-capability-rail .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .capability-rail-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border-top: 1px solid var(--site-line);
  }

  .capability-rail-items span {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 10px;
  }

  .phase2-catalog-filters {
    top: 78px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-sticky-heading {
    position: static;
  }
}

@media (max-width: 767px) {
  body.site-body {
    font-size: 15px;
  }

  .site-body .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .section-padding {
    padding: 52px 0;
  }

  .phase2-section-heading {
    gap: 10px;
  }

  .phase2-section-heading h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .phase2-section-heading p {
    font-size: 14px;
  }

  .theme-btn,
  .site-body .theme-btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .phase2-hero {
    padding: 35px 0 46px;
  }

  .phase2-hero::before {
    top: -350px;
    left: -420px;
  }

  .phase2-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(40px, 12.5vw, 54px);
    line-height: 1;
  }

  .phase2-hero p {
    font-size: 15px;
    line-height: 1.65;
  }

  .phase2-hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .phase2-hero-cta .theme-btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 11px;
  }

  .phase2-metrics {
    gap: 6px;
    margin-top: 27px;
  }

  .metric-card {
    padding: 11px 9px;
  }

  .metric-value {
    font-size: 17px;
  }

  .metric-label {
    font-size: 8px;
  }

  .phase2-hero-visual {
    min-height: 315px;
    border-radius: 22px;
    padding: 44px 10px 0;
  }

  .phase2-lottie-hero {
    height: 280px !important;
  }

  .hero-float-card-top {
    display: none;
  }

  .hero-float-card-bottom {
    bottom: 14px;
    left: 10px;
    min-width: 175px;
  }

  .capability-rail-items span {
    font-size: 10px;
  }

  .phase2-about::before {
    display: none;
  }

  .phase2-about-grid,
  .phase2-process-grid {
    grid-template-columns: 1fr;
  }

  .phase2-about-card {
    min-height: 190px;
  }

  .phase2-services-head {
    margin-bottom: 28px;
  }

  .phase2-service-card {
    min-height: 405px;
  }

  .phase2-benefit-card {
    min-height: 245px;
  }

  .phase2-benefits-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .phase2-trust-box {
    padding: 26px;
  }

  .phase2-trust-list li {
    grid-template-columns: 34px 1fr 28px;
    min-height: 80px;
    padding: 11px 13px;
  }

  .phase2-process-step {
    min-height: 260px;
  }

  .phase2-process-top {
    margin-bottom: 35px;
  }

  .phase2-price-card {
    min-height: 232px;
    padding: 16px;
  }

  .price-card-icon {
    width: 39px;
    height: 39px;
    margin-bottom: 26px;
  }

  .phase2-price-card h5 {
    min-height: 48px;
    font-size: 14px;
  }

  .phase2-price-card p {
    font-size: 21px;
  }

  #portfolio-tabs {
    justify-content: flex-start;
  }

  .phase2-product-card {
    min-height: 410px;
  }

  .site-faq-list summary {
    grid-template-columns: 30px 1fr 28px;
    min-height: 80px;
    font-size: 15px;
  }

  .site-faq-list details p {
    margin-left: 44px;
    font-size: 13px;
  }

  .phase2-cta {
    padding: 0 0 35px;
  }

  .phase2-cta-box {
    gap: 25px;
    border-radius: 24px;
    padding: 28px 23px;
  }

  .phase2-cta-box h3 {
    font-size: 31px;
  }

  .site-page-hero {
    padding: 50px 0 45px;
  }

  .site-page-hero h1 {
    font-size: 42px;
  }

  .site-page-hero p {
    font-size: 14px;
  }

  .site-page-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-page-stat {
    min-width: 0;
  }

  .phase2-catalog-filters {
    margin-right: -15px;
    margin-left: -15px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding-right: 15px;
    padding-left: 15px;
  }

  .phase2-catalog-category {
    border-radius: 22px;
    padding: 20px 14px;
  }

  .phase2-catalog-card {
    padding: 17px;
  }

  .phase2-catalog-head-actions {
    width: 100%;
  }

  .phase2-catalog-head-actions .theme-btn,
  .phase2-catalog-head-actions .phase2-link {
    flex: 1;
  }

  .phase2-contact-panel,
  .phase2-contact-form-wrap {
    border-radius: 22px;
    padding: 23px;
  }

  .site-body .modal-dialog {
    align-items: flex-end;
    min-height: calc(100% - 12px);
    margin: 6px;
  }

  .site-body .modal-content {
    max-height: calc(100vh - 12px);
    border-radius: 24px !important;
  }

  .site-body .modal-header {
    min-height: 64px;
    padding: 14px 17px;
  }

  .site-body .modal-title {
    font-size: 19px;
  }

  .site-body .modal-body,
  .quote-modal-body {
    padding: 18px !important;
  }

  .quote-flow {
    gap: 4px;
  }

  .quote-flow-item {
    padding: 8px 4px;
    font-size: 8px;
  }

  .quote-feature-list {
    grid-template-columns: 1fr;
  }

  .site-about-principle,
  .site-service-static-card,
  .site-content-card {
    border-radius: 20px;
    padding: 22px;
  }
}

@media (max-width: 390px) {
  .mobile-logo-text {
    display: none;
  }

  .phase2-hero h1 {
    font-size: 39px;
  }

  .phase2-hero-cta,
  .phase2-benefits-actions {
    grid-template-columns: 1fr;
  }

  .phase2-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .metric-label {
    max-width: 110px;
    text-align: right;
  }

  .capability-rail-items {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .site-reveal {
    opacity: 1;
    transform: none;
  }
}
