:root {
  --brand: #23bfb8;
  --brand-dark: #087d7a;
  --ink: #15212a;
  --muted: #66727c;
  --line: #e5ecef;
  --soft: #f4faf9;
  --paper: #ffffff;
  --accent: #ff9b1a;
  --green: #1f9d55;
  --shadow: 0 22px 60px rgba(21, 33, 42, .1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(229, 236, 239, .8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background-color .2s ease;
  z-index: 1030;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(21, 33, 42, .08);
}

.topbar {
  padding: 15px 0 9px;
  color: #374047;
  font-size: .92rem;
  border-bottom: 1px solid var(--line);
}

.topbar-grid {
  display: grid;
  grid-template-columns: 150px minmax(480px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
}

.header-brand {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.header-brand img {
  width: 138px;
  max-height: 118px;
  object-fit: contain;
}

.call-panel {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 18px;
  padding: 10px 20px;
  border: 1px solid var(--brand);
  border-radius: 40px 40px 8px 40px;
}

.call-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 600;
}

.call-panel-title i {
  color: var(--brand);
  font-size: 2rem;
}

.country-numbers {
  line-height: 1.52;
  white-space: nowrap;
}

.country-numbers .flag {
  width: 24px;
  height: 16px;
  margin-right: 5px;
  object-fit: cover;
  vertical-align: -2px;
  box-shadow: 0 0 0 1px rgba(21, 33, 42, .12);
}

.country-numbers a {
  color: inherit;
}

.topbar i,
.topbar-mail i {
  color: var(--brand);
  margin-right: 6px;
}

.topbar-mail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374047;
  white-space: nowrap;
}

.topbar-mail i {
  font-size: 1.55rem;
}

.topbar-mail small,
.topbar-mail span {
  display: block;
}

.topbar-mail small {
  margin-bottom: 1px;
  font-size: .92rem;
}

.language-button {
  display: flex;
  min-width: 86px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  color: #30363b;
  background: #fff;
  border: 1px solid #edf0f1;
  border-radius: 7px;
  box-shadow: 0 6px 18px rgba(21, 33, 42, .1);
}

.language-button::after {
  margin-left: 0;
}

.language-button .flag,
.language-switcher .dropdown-item .flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(21, 33, 42, .12);
}

.language-switcher .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher .dropdown-menu {
  max-height: 310px;
  min-width: 220px;
  overflow-y: auto;
}

.google-translate-engine,
.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.navbar {
  padding: 9px 0;
}

@media (min-width: 992px) {
  .homepage-header .navbar .container-xl {
    gap: 44px;
  }

  .homepage-header .navbar-nav {
    width: 100%;
    justify-content: flex-end;
    gap: clamp(12px, 1.4vw, 28px);
  }

  .homepage-header + main .hero {
    min-height: 760px;
    margin-top: 0;
    padding-top: 72px;
  }
}

/* Homepage header: compact utility bar and calm, product-style navigation. */
.homepage-header {
  background: rgba(255, 255, 255, .88);
  border-bottom-color: rgba(21, 33, 42, .08);
  box-shadow: 0 1px 0 rgba(21, 33, 42, .02);
}

.homepage-header .topbar {
  padding: 0;
  color: #52606a;
  background: #f6faf9;
  border-bottom: 0;
}

.homepage-header .topbar-grid {
  min-height: 50px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 26px;
}

.homepage-header .call-panel {
  min-height: auto;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.homepage-header .call-panel-title {
  gap: 8px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.homepage-header .call-panel-title i {
  font-size: 1rem;
}

.homepage-header .country-numbers {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  white-space: nowrap;
}

.homepage-header .country-numbers > div {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-left: 1px solid #dce7e5;
}

.homepage-header .country-numbers strong {
  color: #334149;
  font-size: .78rem;
}

.homepage-header .country-numbers a,
.homepage-header .country-numbers span {
  font-size: .8rem;
}

.homepage-header .country-numbers a:hover,
.homepage-header .topbar-mail:hover {
  color: var(--brand-dark);
}

.homepage-header .country-numbers .flag {
  width: 20px;
  height: 13px;
  margin: 0 2px 0 0;
  border-radius: 2px;
}

.homepage-header .topbar-mail {
  gap: 9px;
  color: #52606a;
  font-size: .8rem;
}

.homepage-header .topbar-mail i {
  margin: 0;
  font-size: 1rem;
}

.homepage-header .topbar-mail small {
  display: inline;
  margin: 0 6px 0 0;
  color: #7b878e;
  font-size: .75rem;
}

.homepage-header .language-button {
  min-width: 76px;
  height: 34px;
  padding: 0 10px;
  border-color: #dfe8e7;
  border-radius: 10px;
  box-shadow: none;
  font-size: .8rem;
}

.homepage-header .language-button:hover {
  background: #fff;
  border-color: #b9d6d3;
}

.homepage-header .navbar {
  min-height: 88px;
  padding: 8px 0;
}

.homepage-header .navbar-brand {
  flex: 0 0 auto;
  margin: 0;
}

.homepage-header .navbar-brand img {
  width: 102px;
  max-width: none;
  max-height: 68px;
}

.homepage-header .nav-link {
  position: relative;
  padding: 14px 2px !important;
  color: #344149;
  font-size: .9rem;
  font-weight: 600;
}

.homepage-header .nav-link::before {
  position: absolute;
  right: 50%;
  bottom: 7px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--brand);
  border-radius: 2px;
  transition: right .2s ease, left .2s ease;
}

.homepage-header .nav-link:hover::before,
.homepage-header .nav-link.active::before {
  right: 2px;
  left: 2px;
}

.homepage-header .dropdown-toggle::before {
  display: none;
}

.homepage-header .btn-primary {
  padding: 11px 19px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(35, 191, 184, .2);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.homepage-header .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(8, 125, 122, .24);
}

.navbar-brand img {
  width: auto;
  max-width: 124px;
  max-height: 74px;
  height: auto;
}

.navbar-nav {
  gap: 4px;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-dark);
}

.dropdown-menu {
  z-index: 1100;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.navbar .dropdown-item {
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  color: var(--brand-dark);
  background: rgba(35, 191, 184, .1);
}

.btn {
  --bs-btn-border-radius: 8px;
  padding: 13px 22px;
  font-weight: 700;
}

.btn-sm {
  padding: 9px 16px;
}

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
  color: #fff;
}

.btn-outline-dark {
  --bs-btn-border-color: #c9d4d8;
  --bs-btn-color: var(--ink);
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
}

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding-top: 274px;
  padding-bottom: 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(35, 191, 184, .18), transparent 28%),
    radial-gradient(circle at 9% 88%, rgba(255, 155, 26, .1), transparent 25%),
    linear-gradient(135deg, #f9ffff 0%, #effbfa 48%, #ffffff 100%);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  color: var(--brand-dark);
  background: rgba(35, 191, 184, .1);
  border: 1px solid rgba(35, 191, 184, .22);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4.35vw, 4.1rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
}

h3 {
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  color: #46545f;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(229, 236, 239, .92);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(21, 33, 42, .05);
}

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

.hero-metrics strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .88rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 3% 2% 3% 8%;
  content: "";
  background: linear-gradient(145deg, #12252c 0%, #0b4d4c 52%, #22bdb6 100%);
  border-radius: 42px 14px 42px 14px;
  box-shadow: 0 34px 85px rgba(21, 33, 42, .2);
  transform: rotate(-2deg);
  z-index: -2;
}

.hero-visual::after {
  position: absolute;
  inset: 12% 10% 11% 18%;
  content: "";
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px 10px 26px 10px;
  transform: rotate(4deg);
  z-index: -1;
}

.hero-device {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(229, 236, 239, .9);
  border-radius: 24px 10px 24px 10px;
  box-shadow: 0 24px 65px rgba(21, 33, 42, .18);
  z-index: 1;
}

.hero-device img {
  max-height: 320px;
}

.hero-device-side {
  right: 7%;
  bottom: 38px;
  width: 49%;
  z-index: 2;
}

.hero-device-side img {
  max-height: 350px;
}

.hero-solution-pill {
  position: absolute;
  top: 82px;
  left: 3%;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 270px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(12, 50, 56, .88);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(8, 31, 36, .24);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.hero-solution-pill i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #092b30;
  background: #72e0da;
  border-radius: 12px;
  flex: 0 0 auto;
}

.hero-solution-pill small,
.hero-solution-pill span {
  display: block;
}

.hero-solution-pill small {
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
  font-weight: 600;
}

.hero-product-card {
  position: absolute;
  right: 1%;
  top: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.hero-product-card .product-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  background: #050606;
  border-radius: 8px;
  flex: 0 0 auto;
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-product-card span {
  color: var(--muted);
  font-size: .84rem;
}

.hero-badge {
  position: absolute;
  left: 7%;
  right: auto;
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(72%, 350px);
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 700;
  z-index: 4;
  width: auto;
}

.hero-badge i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  flex: 0 0 auto;
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: end;
  max-width: none;
}

.section-heading p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.app-card,
.feature-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(21, 33, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.app-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 191, 184, .42);
  box-shadow: var(--shadow);
}

.app-card span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 800;
}

.app-card p,
.feature-card p {
  color: var(--muted);
}

.app-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 800;
}

.app-card-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.app-card-dark span {
  color: var(--ink);
  background: #fff;
}

.app-card-dark p,
.app-card-dark a {
  color: rgba(255, 255, 255, .82);
}

.surface {
  background: var(--soft);
}

.feature-grid {
  align-items: stretch;
}

.feature-card {
  padding: 16px;
  text-align: center;
}

.feature-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-card h3 {
  min-height: 56px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.mission {
  background:
    linear-gradient(180deg, #fff 0%, #f6fbfb 100%);
}

.mission-shell {
  position: relative;
  overflow: hidden;
  padding: 56px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(35, 191, 184, .25), transparent 34%),
    linear-gradient(135deg, #111f26 0%, #16333a 56%, #0d706d 100%);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(21, 33, 42, .16);
}

.mission-shell::before {
  position: absolute;
  inset: auto -12% -46% 42%;
  width: 520px;
  height: 520px;
  content: "";
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.mission-img {
  position: relative;
  display: block;
  width: min(440px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .22));
  z-index: 1;
}

.mission-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: end center;
  padding: 28px;
}

.mission-visual::before {
  position: absolute;
  inset: 11% 7% 2% 7%;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .72)) padding-box,
    linear-gradient(145deg, rgba(126, 227, 220, .82), rgba(255, 155, 26, .56)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
}

.mission-visual::after {
  position: absolute;
  inset: 18% 2% 14% auto;
  width: 42%;
  content: "";
  background: rgba(126, 227, 220, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  transform: rotate(5deg);
  z-index: 0;
}

.mission-card {
  position: absolute;
  z-index: 2;
  padding: 15px 17px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(229, 236, 239, .85);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.mission-card-top {
  top: 72px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.mission-card-top i {
  color: var(--green);
  font-size: 1.25rem;
}

.mission-card-bottom {
  right: 0;
  bottom: 56px;
}

.mission-card-bottom strong,
.mission-card-bottom span {
  display: block;
}

.mission-card-bottom span {
  color: var(--muted);
  font-size: .86rem;
}

.mission p:not(.eyebrow),
.titan-overview p:not(.eyebrow),
.promo-section p {
  color: var(--muted);
  max-width: 650px;
}

.mission .eyebrow {
  color: #7ee3dc;
}

.mission h2 {
  max-width: 650px;
  color: #fff;
}

.mission p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.mission-lead {
  font-size: 1.1rem;
}

.mission-points {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
}

.mission-points div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
}

.mission-points i {
  color: #7ee3dc;
}

.titan-overview {
  background: linear-gradient(180deg, #fff 0%, #eefcfb 100%);
}

.phone-gallery {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.titan-phone-frame {
  display: grid;
  min-height: 560px;
  max-height: 720px;
  place-items: center;
  overflow: hidden;
  padding: 44px 38px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8ffff 100%) padding-box,
    linear-gradient(145deg, rgba(35, 191, 184, .72), rgba(255, 155, 26, .72)) border-box;
  border: 1px solid transparent;
  border-radius: 46px 8px 46px 8px;
  box-shadow: 0 28px 72px rgba(21, 33, 42, .14);
}

.titan-phone-frame::before,
.titan-phone-frame::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.titan-phone-frame::before {
  inset: 34px 24px 28px 54px;
  background:
    linear-gradient(145deg, rgba(35, 191, 184, .14), rgba(8, 125, 122, .08)),
    linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .22));
  border: 1px solid rgba(35, 191, 184, .14);
  border-radius: 36px 8px 36px 8px;
  transform: rotate(-4deg);
}

.titan-phone-frame::after {
  right: 30px;
  bottom: 30px;
  width: 126px;
  height: 126px;
  background: rgba(255, 155, 26, .14);
  border-radius: 32px 8px 32px 8px;
}

.titan-phone-frame img {
  position: relative;
  width: min(430px, 100%);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(21, 33, 42, .16));
  z-index: 1;
}

.contact-chip {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-chip i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  flex: 0 0 auto;
  font-size: 1.45rem;
}

.contact-chip span,
.contact-chip a {
  display: block;
}

.contact-chip span {
  color: var(--muted);
  font-size: .94rem;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 21, 27, .94), rgba(13, 21, 27, .72)),
    url("../images/mid3-hero.png") center/cover no-repeat;
}

.contact-section .eyebrow,
.contact-section a {
  color: #7ee3dc;
}

.contact-section p {
  color: rgba(255, 255, 255, .82);
}

.contact-form {
  padding: 34px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.form-label,
.form-check-label {
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
}

.form-control {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
}

textarea.form-control {
  min-height: 130px;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefit-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(21, 33, 42, .06);
}

.benefit-list i {
  color: var(--green);
  flex: 0 0 auto;
}

.dashboard-showcase {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.dashboard-showcase::before {
  position: absolute;
  inset: 34px 22px 52px 54px;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .68) 32%, transparent 33%) padding-box,
    linear-gradient(140deg, rgba(255, 255, 255, .94), rgba(235, 253, 252, .86) 48%, rgba(255, 248, 235, .88)) padding-box,
    linear-gradient(135deg, rgba(35, 191, 184, .55), rgba(255, 155, 26, .5), rgba(35, 191, 184, .28)) border-box;
  border: 1px solid transparent;
  border-radius: 52px 8px 52px 8px;
  box-shadow: 0 24px 70px rgba(21, 33, 42, .09);
  transform: rotate(-1.5deg);
  z-index: -2;
}

.dashboard-showcase::after {
  position: absolute;
  left: 2%;
  bottom: 56px;
  width: 78%;
  height: 132px;
  content: "";
  background: linear-gradient(90deg, rgba(35, 191, 184, .16), rgba(255, 155, 26, .14));
  border-radius: 8px 34px 8px 34px;
  transform: rotate(2.5deg);
  z-index: -1;
}

.dashboard-showcase img {
  position: absolute;
  object-fit: cover;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow:
    0 22px 50px rgba(21, 33, 42, .12),
    0 0 0 1px rgba(35, 191, 184, .1);
}

.dashboard-showcase img:first-child {
  left: 5%;
  top: 32px;
  width: 44%;
  height: 500px;
  object-position: center top;
  border-radius: 34px;
  transform: rotate(-2deg);
  z-index: 1;
}

.dashboard-showcase img:nth-child(2) {
  right: 4%;
  bottom: 58px;
  width: 58%;
  height: 350px;
  object-position: center;
  border-radius: 8px 34px 8px 34px;
  transform: rotate(1.5deg);
  z-index: 2;
}

.dashboard-showcase .btn {
  position: absolute;
  right: 8%;
  top: 38px;
  border: 3px solid #fff;
  box-shadow: 0 16px 36px rgba(8, 125, 122, .18);
  z-index: 3;
}

.dashboard-live-indicator {
  position: absolute;
  right: 8%;
  top: 38px;
  z-index: 3;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 11px 14px;
  color: #092d30;
  background: rgba(255, 255, 255, .94);
  border: 3px solid #fff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(8, 125, 122, .18);
  animation: dashboardIndicatorFloat 3.8s ease-in-out infinite;
}

.dashboard-live-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 12px;
  place-items: center;
}

.dashboard-live-copy { display: grid; line-height: 1.15; }
.dashboard-live-copy small { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.dashboard-live-copy strong { margin-top: 3px; font-size: .84rem; white-space: nowrap; }
.dashboard-live-bars { display: flex; gap: 3px; align-items: end; height: 30px; }
.dashboard-live-bars i { width: 4px; height: 35%; background: var(--brand); border-radius: 4px; transform-origin: bottom; animation: dashboardBarRise 1.25s ease-in-out infinite alternate; }
.dashboard-live-bars i:nth-child(2) { height: 62%; animation-delay: -.65s; }
.dashboard-live-bars i:nth-child(3) { height: 85%; animation-delay: -.3s; }
.dashboard-live-bars i:nth-child(4) { height: 100%; animation-delay: -.9s; }

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

@keyframes dashboardBarRise {
  from { transform: scaleY(.45); opacity: .55; }
  to { transform: scaleY(1); opacity: 1; }
}

.cta-band {
  background: #fbfcfc;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  height: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(21, 33, 42, .06);
}

.cta-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.feedback-panel {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  overflow: visible;
  padding-right: 28px;
}

.feedback-panel img {
  height: 260px;
  align-self: stretch;
  object-position: center;
  border-radius: 8px;
  box-shadow: none;
}

.consultation img {
  height: 260px;
  align-self: stretch;
  object-position: center;
  border-radius: 8px;
  box-shadow: none;
}

.cta-panel p:not(.eyebrow) {
  color: var(--muted);
}

.site-footer {
  padding: 72px 0 28px;
  color: #d6e2e3;
  background: #101b22;
}

.footer-logo {
  width: 134px;
  margin-bottom: 20px;
}

.site-footer h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.35rem;
}

.site-footer p,
.footer-list {
  color: #aebdc0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.social-links a:hover {
  background: var(--brand);
}

.footer-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.footer-list i {
  color: var(--brand);
  margin-right: 8px;
}

.site-footer a {
  color: #dffafa;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #aebdc0;
  font-size: .92rem;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--brand-dark);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 20;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.about-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-top: 190px;
  padding-bottom: 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(35, 191, 184, .18), transparent 31%),
    linear-gradient(135deg, #f7ffff 0%, #eefbfa 48%, #fff 100%);
}

.about-hero-frame {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  isolation: isolate;
}

.about-hero-frame::before {
  position: absolute;
  inset: 7% 3% 4% 12%;
  content: "";
  background: linear-gradient(160deg, rgba(18, 37, 44, .96), rgba(8, 125, 122, .92));
  border-radius: 46px 8px 46px 8px;
  box-shadow: 0 34px 84px rgba(21, 33, 42, .18);
  transform: rotate(-2deg);
  z-index: -2;
}

.about-hero-frame::after {
  position: absolute;
  inset: 18% 14% 16% 4%;
  content: "";
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px 34px 8px 34px;
  transform: rotate(4deg);
  z-index: -1;
}

.about-hero-frame img {
  width: min(430px, 88%);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(21, 33, 42, .26));
}

.about-hero-card {
  position: absolute;
  left: 2%;
  bottom: 64px;
  display: flex;
  gap: 14px;
  align-items: center;
  width: min(86%, 390px);
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-hero-card i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  flex: 0 0 auto;
  font-size: 1.25rem;
}

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

.about-hero-card span {
  color: var(--muted);
  font-size: .9rem;
}

.about-intro {
  background: #fff;
}

.about-photo-frame {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: end center;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, #f9ffff) padding-box,
    linear-gradient(145deg, rgba(35, 191, 184, .7), rgba(255, 155, 26, .58)) border-box;
  border: 1px solid transparent;
  border-radius: 42px 8px 42px 8px;
  box-shadow: 0 24px 70px rgba(21, 33, 42, .1);
}

.about-photo-frame::before {
  position: absolute;
  inset: 16% 8% 0 8%;
  content: "";
  background: linear-gradient(145deg, rgba(35, 191, 184, .11), rgba(255, 155, 26, .1));
  border-radius: 8px 34px 8px 34px;
  transform: rotate(-4deg);
}

.about-photo-frame img {
  position: relative;
  width: min(430px, 100%);
  filter: drop-shadow(0 26px 36px rgba(21, 33, 42, .16));
  z-index: 1;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-stat-grid div {
  padding: 20px;
  background: #f8ffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-stat-grid strong,
.about-stat-grid span {
  display: block;
}

.about-stat-grid strong {
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.about-stat-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .88rem;
}

.values-section {
  background: var(--soft);
}

.value-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(21, 33, 42, .06);
}

.value-card i {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 1.35rem;
}

.value-card p,
.about-intro p,
.about-cta p {
  color: var(--muted);
}

.about-mission-band {
  color: #fff;
  background:
    radial-gradient(circle at 76% 14%, rgba(35, 191, 184, .25), transparent 34%),
    linear-gradient(135deg, #111f26 0%, #16333a 58%, #0d706d 100%);
}

.about-mission-band .eyebrow {
  color: #7ee3dc;
}

.about-mission-band h2 {
  color: #fff;
}

.about-mission-band p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.08rem;
}

.about-cta {
  background: #fbfcfc;
}

.about-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-cta-panel h2,
.about-cta-panel p {
  max-width: 760px;
}

.about-cta-panel .btn {
  flex: 0 0 auto;
}

.apps-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-top: 190px;
  padding-bottom: 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 155, 26, .16), transparent 30%),
    linear-gradient(135deg, #f8ffff 0%, #eefbfa 48%, #fff 100%);
}

.apps-hero-creative {
  background:
    linear-gradient(90deg, rgba(248, 255, 255, .97), rgba(238, 251, 250, .9)),
    linear-gradient(135deg, #fff 0%, #eefbfa 100%);
}

.apps-orbit-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 34px;
}

.apps-orbit-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(229, 236, 239, .92);
  border-radius: 8px;
}

.apps-orbit-stats strong,
.apps-orbit-stats span {
  display: block;
}

.apps-orbit-stats strong {
  font-size: 1.42rem;
  line-height: 1;
}

.apps-orbit-stats span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .86rem;
}

.apps-orbit {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.apps-orbit::before {
  position: absolute;
  inset: 4% 4% 3% 7%;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .88) 0 21%, transparent 22%),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(35, 191, 184, .18) 39% 40%, transparent 41%),
    linear-gradient(145deg, rgba(18, 37, 44, .96), rgba(8, 125, 122, .9));
  border-radius: 46px 8px 46px 8px;
  box-shadow: 0 34px 85px rgba(21, 33, 42, .2);
  transform: rotate(-2deg);
  z-index: -2;
}

.apps-orbit::after {
  position: absolute;
  inset: 16% 12% 12% 13%;
  content: "";
  border: 1px dashed rgba(255, 255, 255, .42);
  border-radius: 50%;
  transform: rotate(-10deg);
  z-index: -1;
}

.apps-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 186px;
  height: 186px;
  place-items: center;
  padding: 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.apps-orbit-core img {
  width: 76px;
}

.apps-orbit-core strong,
.apps-orbit-core span {
  display: block;
}

.apps-orbit-core strong {
  line-height: 1.1;
}

.apps-orbit-core span {
  color: var(--muted);
  font-size: .82rem;
}

.orbit-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(72%, 310px);
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.orbit-card img,
.orbit-card i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  object-fit: cover;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
  flex: 0 0 auto;
  font-size: 1.5rem;
}

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

.orbit-card span {
  color: var(--muted);
  font-size: .86rem;
}

.orbit-card-pos {
  top: 36px;
  left: 3%;
}

.orbit-card-customer {
  top: 114px;
  right: 0;
}

.orbit-card-mango {
  left: 0;
  bottom: 88px;
}

.orbit-card-saas {
  right: 5%;
  bottom: 38px;
}

.apps-orbit-note {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(76%, 390px);
  padding: 16px;
  color: #fff;
  background: rgba(17, 31, 38, .88);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  transform: translateX(-50%);
  z-index: 4;
}

.apps-orbit-note i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  flex: 0 0 auto;
}

.apps-hero-showcase {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.apps-hero-showcase::before {
  position: absolute;
  inset: 7% 2% 5% 9%;
  content: "";
  background: linear-gradient(145deg, #12252c 0%, #0b4d4c 52%, #22bdb6 100%);
  border-radius: 46px 8px 46px 8px;
  box-shadow: 0 34px 85px rgba(21, 33, 42, .2);
  transform: rotate(-3deg);
  z-index: -2;
}

.apps-hero-showcase::after {
  position: absolute;
  inset: 16% 12% 14% 18%;
  content: "";
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  transform: rotate(4deg);
  z-index: -1;
}

.apps-shot {
  position: absolute;
  padding: 24px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(229, 236, 239, .9);
  border-radius: 8px;
  box-shadow: 0 24px 65px rgba(21, 33, 42, .18);
}

.apps-shot-main {
  top: 24px;
  left: 3%;
  width: 48%;
}

.apps-shot-side {
  right: 4%;
  bottom: 20px;
  width: 42%;
}

.apps-hero-note {
  position: absolute;
  left: 5%;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(82%, 400px);
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 700;
  z-index: 3;
}

.apps-hero-note i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  flex: 0 0 auto;
}

.apps-suite {
  background: #fff;
}

.suite-card {
  height: 100%;
  padding: 16px 16px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(21, 33, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.suite-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 191, 184, .42);
  box-shadow: var(--shadow);
}

.suite-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.suite-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.suite-card p {
  color: var(--muted);
}

.suite-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 800;
}

.suite-card-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.suite-card-dark span {
  color: var(--ink);
  background: #fff;
}

.suite-card-dark p,
.suite-card-dark a {
  color: rgba(255, 255, 255, .82);
}

.app-detail {
  background: var(--soft);
}

.app-detail-alt {
  background: #fff;
}

.detail-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(180deg, #fff, #f9ffff) padding-box,
    linear-gradient(145deg, rgba(35, 191, 184, .7), rgba(255, 155, 26, .58)) border-box;
  border: 1px solid transparent;
  border-radius: 42px 8px 42px 8px;
  box-shadow: 0 24px 70px rgba(21, 33, 42, .1);
  overflow: hidden;
}

.detail-visual::before {
  position: absolute;
  inset: 13% 8% 10% 12%;
  content: "";
  background: linear-gradient(145deg, rgba(35, 191, 184, .12), rgba(255, 155, 26, .1));
  border-radius: 8px 34px 8px 34px;
  transform: rotate(-4deg);
}

.detail-visual-light::before {
  background: linear-gradient(145deg, rgba(8, 125, 122, .1), rgba(35, 191, 184, .1));
}

.detail-visual img {
  position: relative;
  width: min(430px, 100%);
  max-height: 620px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 26px 36px rgba(21, 33, 42, .16));
  z-index: 1;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(21, 33, 42, .06);
  font-weight: 700;
}

.feature-list i {
  color: var(--green);
  flex: 0 0 auto;
}

.apps-cta {
  background: #fbfcfc;
}

.apps-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(35, 191, 184, .22), transparent 34%),
    linear-gradient(135deg, #111f26 0%, #16333a 58%, #0d706d 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.apps-cta-panel .eyebrow {
  color: #7ee3dc;
}

.apps-cta-panel h2,
.apps-cta-panel p {
  max-width: 760px;
}

.apps-cta-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, .8);
}

.apps-cta-panel .btn {
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .about-hero-frame {
    min-height: 500px;
  }

  .apps-hero-showcase {
    min-height: 500px;
  }

  .apps-orbit {
    min-height: 520px;
  }
}

@media (max-width: 991.98px) {
  .homepage-header .topbar-grid {
    display: flex;
    min-height: 48px;
    justify-content: flex-end;
  }

  .homepage-header .call-panel,
  .homepage-header .topbar-mail {
    display: none;
  }

  html {
    scroll-padding-top: 86px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .navbar-collapse {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    padding: 18px 0 10px;
  }

  .hero {
    padding-top: 140px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .apps-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mission {
    background: #fff;
  }

  .mission-shell {
    padding: 38px;
  }

  .mission-visual {
    min-height: 460px;
  }

  .dashboard-showcase {
    min-height: 540px;
  }

  .dashboard-showcase img:first-child {
    height: 450px;
  }

  .dashboard-showcase img:nth-child(2) {
    height: 320px;
  }

  .titan-phone-frame {
    min-height: 460px;
  }

  .about-hero-frame,
  .about-photo-frame {
    min-height: 460px;
  }

  .about-cta-panel {
    display: block;
  }

  .about-cta-panel .btn {
    margin-top: 10px;
  }

  .apps-hero-showcase,
  .apps-orbit,
  .detail-visual {
    min-height: 460px;
  }

  .apps-cta-panel {
    display: block;
  }

  .apps-cta-panel .btn {
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 60px 0;
  }

  .hero {
    padding-top: 142px;
  }

  .about-hero {
    padding-top: 142px;
  }

  .apps-hero {
    padding-top: 142px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics div {
    padding: 13px 10px;
  }

  .hero-metrics strong {
    font-size: 1.2rem;
  }

  .hero-metrics span {
    font-size: .76rem;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-device {
    padding: 14px;
  }

  .hero-device-main {
    width: 51%;
    left: 0;
  }

  .hero-device-side {
    right: 3%;
    bottom: 18px;
    width: 58%;
  }

  .hero-solution-pill {
    top: 34px;
    left: 0;
    max-width: 245px;
    padding: 12px 14px;
  }

  .hero-badge {
    left: 0;
    right: auto;
    bottom: 28px;
    width: 100%;
  }

  .hero-product-card {
    right: 0;
    top: 18px;
    max-width: 240px;
  }

  .contact-chip,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .about-hero-frame,
  .about-photo-frame {
    min-height: 380px;
    padding: 22px;
  }

  .about-hero-card {
    left: 0;
    bottom: 24px;
    width: 100%;
  }

  .apps-hero-showcase {
    min-height: 330px;
  }

  .apps-orbit {
    display: grid;
    min-height: 0;
    gap: 14px;
    padding: 22px;
    background:
      linear-gradient(145deg, rgba(18, 37, 44, .96), rgba(8, 125, 122, .9));
    border-radius: 32px 8px 32px 8px;
    box-shadow: 0 24px 65px rgba(21, 33, 42, .16);
  }

  .apps-orbit::before,
  .apps-orbit::after {
    display: none;
  }

  .apps-orbit-core,
  .orbit-card,
  .apps-orbit-note {
    position: static;
    width: 100%;
    transform: none;
  }

  .apps-orbit-core {
    display: flex;
    width: 100%;
    height: auto;
    gap: 14px;
    justify-content: flex-start;
    text-align: left;
    border-radius: 8px;
  }

  .apps-orbit-core img {
    width: 56px;
  }

  .apps-orbit-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .apps-orbit-stats div {
    padding: 13px 10px;
  }

  .apps-orbit-stats strong {
    font-size: 1.15rem;
  }

  .apps-orbit-stats span {
    font-size: .76rem;
  }

  .apps-shot {
    padding: 14px;
  }

  .apps-shot-main {
    left: 0;
    width: 51%;
  }

  .apps-hero-note {
    left: 0;
    bottom: 28px;
    width: 100%;
  }

  .detail-visual {
    min-height: 380px;
    padding: 22px;
  }

  .titan-phone-frame {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 32px 8px 32px 8px;
  }

  .titan-phone-frame::before {
    inset: 22px 16px 18px 32px;
  }

  .feedback-panel {
    padding-right: 28px;
  }

  .feedback-panel img {
    height: 260px;
  }

  .contact-chip {
    display: block;
  }

  .contact-chip i {
    margin-bottom: 14px;
  }

  .contact-form {
    padding: 24px;
  }

  .dashboard-showcase {
    display: grid;
    gap: 16px;
    min-height: 0;
    padding: 22px;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, rgba(35, 191, 184, .68), rgba(255, 155, 26, .58)) border-box;
    border: 1px solid transparent;
    border-radius: 28px 8px 28px 8px;
    box-shadow: 0 18px 44px rgba(21, 33, 42, .1);
  }

  .dashboard-showcase::before,
  .dashboard-showcase::after {
    display: none;
  }

  .dashboard-showcase img,
  .dashboard-showcase .btn,
  .dashboard-live-indicator {
    position: static;
    width: 100%;
    transform: none;
  }

  .dashboard-showcase img:first-child,
  .dashboard-showcase img:nth-child(2) {
    height: min(68vw, 380px);
    border-width: 6px;
    border-radius: 8px;
  }

  .dashboard-showcase .btn {
    justify-self: stretch;
    border-width: 0;
    text-align: center;
    box-shadow: none;
  }

  .dashboard-live-indicator {
    justify-content: center;
    width: auto;
    border-width: 1px;
    animation: none;
  }

  .cta-panel.consultation img {
    order: 2;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    max-width: 112px;
    max-height: 66px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
  }

  .about-hero-frame,
  .about-photo-frame {
    min-height: 320px;
  }

  .about-hero-frame img,
  .about-photo-frame img {
    width: min(300px, 86%);
  }

  .about-hero-card {
    position: relative;
    bottom: auto;
    margin-top: -34px;
    padding: 14px;
    font-size: .9rem;
  }

  .about-cta-panel {
    padding: 28px 20px;
  }

  .apps-hero-showcase {
    min-height: 290px;
  }

  .apps-orbit {
    padding: 18px;
  }

  .orbit-card,
  .apps-orbit-note {
    padding: 13px;
  }

  .orbit-card img,
  .orbit-card i {
    width: 50px;
    height: 50px;
  }

  .apps-shot,
  .detail-visual img {
    max-height: 240px;
  }

  .apps-hero-showcase::before {
    inset: 10% 0 4% 0;
  }

  .apps-hero-showcase::after {
    display: none;
  }

  .apps-hero-note {
    padding: 14px;
    font-size: .92rem;
  }

  .apps-cta-panel {
    padding: 28px 20px;
  }

  .hero-visual::before {
    inset: 10% 0 4% 0;
  }

  .hero-visual::after {
    display: none;
  }

  .hero-device img {
    max-height: 178px;
  }

  .hero-product-card {
    display: none;
  }

  .hero-badge {
    left: 0;
    bottom: 0;
  }

  .mission-shell {
    padding: 28px 20px;
  }

  .mission-visual {
    min-height: 320px;
  }

  .mission-img {
    width: min(285px, 86%);
  }

  .mission-visual::before {
    inset: 14% 4% 0 4%;
  }

  .mission-card-top {
    top: 14px;
    left: 0;
    padding: 11px 12px;
    font-size: .82rem;
  }

  .mission-card-bottom {
    right: 0;
    bottom: 18px;
    padding: 11px 12px;
  }

  .mission-card-bottom span {
    font-size: .78rem;
  }

  .hero-badge {
    padding: 14px;
    font-size: .92rem;
    width: auto;
  }

  .feature-card h3 {
    min-height: auto;
  }

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

/* Gallery, promo, and contact pages */
.inner-hero {
  padding: 92px 0 104px;
  background: linear-gradient(135deg, #f2fbfa 0%, #fff 58%, #e7f7f6 100%);
  overflow: hidden;
}

.inner-hero > .container-xl {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
  gap: 72px;
  align-items: center;
}

.inner-hero-copy h1,
.contact-page-intro h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.065em;
}

.inner-hero-copy > p:not(.eyebrow),
.contact-page-intro > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-device-stack {
  position: relative;
  min-height: 540px;
}

.hero-device-stack img {
  position: absolute;
  width: 58%;
  height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 32px 34px rgba(9, 32, 36, .16));
}

.hero-device-stack img:first-child { left: 0; top: 20px; transform: rotate(-7deg); }
.hero-device-stack img:nth-child(2) { right: 0; bottom: 0; transform: rotate(7deg); }
.hero-device-stack span { position: absolute; right: 8%; bottom: 7%; z-index: 2; padding: 12px 17px; color: #fff; background: #092d30; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow); }
.hero-device-stack span i { margin-right: 7px; color: #7ee3dc; }

.section-heading { max-width: 730px; margin-bottom: 54px; }
.section-heading h2 { font-size: clamp(2.4rem, 4vw, 4.2rem); letter-spacing: -.05em; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.gallery-modern-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.gallery-modern-grid article { display: flex; min-height: 430px; flex-direction: column; justify-content: space-between; padding: 34px; background: #f1f8f7; border: 1px solid #dcebea; border-radius: 28px; overflow: hidden; }
.gallery-modern-grid article:nth-child(3) { background: #092d30; color: #fff; }
.gallery-modern-grid img { width: 100%; height: 330px; object-fit: contain; transition: transform .35s ease; }
.gallery-modern-grid article:hover img { transform: translateY(-8px) scale(1.02); }
.gallery-modern-grid article span { color: var(--brand-dark); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gallery-modern-grid article:nth-child(3) span { color: #7ee3dc; }
.gallery-modern-grid h3 { margin: 7px 0 0; font-size: 1.55rem; }
.gallery-modern-grid p { max-width: 430px; color: var(--muted); }
.gallery-feature, .gallery-wide { grid-column: 1 / -1; display: grid !important; grid-template-columns: .7fr 1.3fr; align-items: center; }
.gallery-wide { grid-template-columns: 1.25fr .75fr; background: #e8fbf8 !important; }
.gallery-band, .promo-strip { padding: 80px 0; color: #fff; background: linear-gradient(120deg, #073f42, #087d7a); }
.gallery-band .container-xl { text-align: center; }
.gallery-band h2 { max-width: 760px; margin: 0 auto 26px; font-size: clamp(2.2rem, 4vw, 4rem); }
.gallery-band .eyebrow { color: #7ee3dc; }

.promo-page-hero { background: radial-gradient(circle at 80% 20%, rgba(35,191,184,.18), transparent 30%), #f7faf9; }
.promo-hero-card { position: relative; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 32px; box-shadow: 0 35px 70px rgba(9,45,48,.14); transform: rotate(2deg); }
.promo-hero-card img, .promo-art img { width: 100%; border-radius: 20px; }
.promo-chip { position: absolute; top: -18px; left: -24px; padding: 12px 18px; color: #fff; background: #092d30; border-radius: 999px; font-size: .86rem; font-weight: 800; box-shadow: var(--shadow); }
.promo-art { padding: 20px; background: #092d30; border-radius: 32px; box-shadow: 0 30px 60px rgba(9,45,48,.16); }
.promo-feature h2 { font-size: clamp(2.5rem, 4vw, 4.3rem); letter-spacing: -.05em; }
.promo-benefits { display: grid; gap: 14px; margin: 28px 0 34px; }
.promo-benefits > div { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: #f4f9f8; border-radius: 16px; }
.promo-benefits i { display: grid; width: 44px; height: 44px; place-items: center; color: #fff; background: var(--brand-dark); border-radius: 12px; }
.promo-benefits span { display: grid; color: var(--muted); font-size: .9rem; }
.promo-benefits strong { color: var(--ink); font-size: 1rem; }
.promo-strip .container-xl { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.promo-strip span { color: #7ee3dc; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.promo-strip h2 { max-width: 760px; margin: 8px 0 0; font-size: clamp(2rem, 3.5vw, 3.5rem); }

.contact-page { padding: 92px 0 110px; background: radial-gradient(circle at 10% 15%, rgba(35,191,184,.16), transparent 28%), #f7faf9; }
.contact-page-intro { margin-bottom: 58px; }
.contact-page-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; }
.contact-info-panel, .contact-form-card { border-radius: 28px; }
.contact-info-panel { display: flex; flex-direction: column; gap: 34px; padding: 42px; color: #fff; background: linear-gradient(145deg, #092d30, #087d7a); }
.contact-info-panel > div:not(.contact-availability) { display: grid; }
.contact-info-panel small { margin: 14px 0 6px; color: #a9dfdb; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.contact-info-panel a { color: #fff; }
.contact-icon { display: grid; width: 46px; height: 46px; place-items: center; color: #092d30; background: #7ee3dc; border-radius: 14px; }
.contact-availability { display: flex; gap: 14px; margin-top: auto; padding: 18px; background: rgba(255,255,255,.1); border-radius: 16px; }
.contact-availability span { display: grid; color: #bfe6e3; font-size: .9rem; }
.contact-availability strong { color: #fff; }
.contact-form-card { padding: 46px; background: #fff; box-shadow: 0 26px 60px rgba(9,45,48,.1); }
.form-heading { margin-bottom: 30px; }
.form-heading > span { color: var(--brand-dark); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h2 { margin: 7px 0; font-size: clamp(2.2rem, 3vw, 3.3rem); letter-spacing: -.045em; }
.form-heading p { color: var(--muted); }
.contact-form label { margin-bottom: 8px; font-weight: 700; }
.contact-form-card .form-check-label { color: var(--ink); }
.contact-form .form-control, .contact-form .form-select { min-height: 54px; padding: 14px 16px; background-color: #f7faf9; border-color: #dce7e6; border-radius: 12px; }
.contact-form textarea.form-control { min-height: 150px; }
.contact-form .form-control:focus, .contact-form .form-select:focus { background: #fff; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(35,191,184,.12); }

@media (max-width: 991.98px) {
  .inner-hero > .container-xl, .contact-page-grid { grid-template-columns: 1fr; }
  .hero-device-stack { max-width: 620px; min-height: 500px; }
  .promo-strip .container-xl { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767.98px) {
  .inner-hero, .contact-page { padding: 68px 0 80px; }
  .inner-hero > .container-xl { gap: 30px; }
  .inner-hero-copy h1, .contact-page-intro h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .hero-device-stack { min-height: 390px; }
  .hero-device-stack img { height: 370px; }
  .gallery-modern-grid { grid-template-columns: 1fr; }
  .gallery-modern-grid article, .gallery-feature, .gallery-wide { grid-column: auto; display: flex !important; min-height: 390px; }
  .gallery-modern-grid img { height: 270px; }
  .contact-info-panel, .contact-form-card { padding: 28px 22px; }
}

/* Modern homepage system */
main section[id] {
  position: relative;
  scroll-margin-top: 20px;
}

.homepage-header + main .section-pad {
  padding-top: clamp(82px, 8vw, 124px);
  padding-bottom: clamp(82px, 8vw, 124px);
}

.homepage-header + main .hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(35, 191, 184, .2), transparent 26%),
    radial-gradient(circle at 7% 82%, rgba(255, 155, 26, .11), transparent 24%),
    linear-gradient(135deg, #fbffff 0%, #edfafa 50%, #fff 100%);
}

.homepage-header + main .hero::before {
  position: absolute;
  top: 9%;
  left: 48%;
  width: 460px;
  height: 460px;
  content: "";
  background-image: radial-gradient(rgba(8, 125, 122, .16) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  pointer-events: none;
}

.hero h1 {
  letter-spacing: -.045em;
}

.hero-copy {
  line-height: 1.8;
}

.hero-actions .btn,
.cta-panel .btn,
.mission-shell .btn,
.contact-form .btn {
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hero-actions .btn:hover,
.cta-panel .btn:hover,
.mission-shell .btn:hover,
.contact-form .btn:hover {
  transform: translateY(-2px);
}

.hero-metrics div {
  border-radius: 18px;
}

.hero-device,
.hero-solution-pill,
.hero-product-card,
.hero-badge {
  animation: gentle-float 6s ease-in-out infinite;
}

.hero-product-card {
  animation-delay: -1.6s;
}

.hero-badge {
  animation-delay: -3.2s;
}

.section-heading h2,
.mission h2,
.contact-section h2,
.promo-section h2,
.cta-panel h2 {
  letter-spacing: -.035em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  letter-spacing: .1em;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
}

#apps {
  overflow: hidden;
}

#apps::after {
  position: absolute;
  top: 12%;
  right: -130px;
  width: 320px;
  height: 320px;
  content: "";
  background: rgba(35, 191, 184, .06);
  border-radius: 50%;
  pointer-events: none;
}

.app-card,
.feature-card {
  overflow: hidden;
  border-color: rgba(21, 33, 42, .08);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(21, 33, 42, .07);
}

.app-card::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(35, 191, 184, .08);
  border-radius: 50%;
  transition: transform .35s ease;
}

.app-card {
  position: relative;
}

.app-card:hover::after {
  transform: scale(1.45);
}

.app-card span {
  border-radius: 15px;
}

.app-card-dark {
  background: linear-gradient(145deg, #132229, #0c5d5b);
}

.feature-card {
  padding: 14px 14px 24px;
}

.feature-card img {
  height: 172px;
  border-radius: 16px;
  transition: transform .45s ease;
}

.feature-card:hover img {
  transform: scale(1.035);
}

.surface {
  background:
    radial-gradient(circle at 0 100%, rgba(35, 191, 184, .09), transparent 28%),
    #f4faf9;
}

.mission-shell {
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(21, 33, 42, .18);
}

.mission-visual::before,
.mission-visual::after,
.mission-card {
  border-radius: 22px;
}

.mission-points div {
  width: fit-content;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
}

.titan-phone-frame {
  border-radius: 38px;
}

.contact-chip {
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(21, 33, 42, .07);
}

.contact-chip i {
  border-radius: 15px;
}

.contact-section {
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(10, 23, 29, .97), rgba(8, 65, 65, .82)),
    url("../images/mid3-hero.png") center/cover no-repeat;
}

.contact-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: -1;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.form-control {
  padding-right: 16px;
  padding-left: 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(35, 191, 184, .18);
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 650;
}

.form-alert-success { color: #067647; background: #ecfdf3; border-color: #abefc6; }
.form-alert-error { color: #b42318; background: #fef3f2; border-color: #fecdca; }

.benefit-list div {
  border-radius: 16px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.benefit-list div:hover {
  transform: translateX(6px);
  border-color: rgba(35, 191, 184, .38);
  box-shadow: 0 18px 42px rgba(21, 33, 42, .09);
}

.dashboard-showcase img,
.dashboard-showcase::before,
.dashboard-showcase::after {
  border-radius: 26px;
}

.cta-band {
  background:
    radial-gradient(circle at 50% 0, rgba(35, 191, 184, .08), transparent 30%),
    #f8fbfb;
}

.cta-panel {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 20px 54px rgba(21, 33, 42, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(21, 33, 42, .13);
}

.cta-panel img,
.feedback-panel img,
.consultation img {
  border-radius: 18px;
  transition: transform .45s ease;
}

.cta-panel:hover img {
  transform: scale(1.025);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  background: linear-gradient(135deg, #0c171d, #10272c);
}

.site-footer::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 420px;
  height: 420px;
  content: "";
  background: rgba(35, 191, 184, .08);
  border-radius: 50%;
}

.social-links a {
  border-radius: 12px;
  transition: transform .2s ease, background-color .2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.footer-nav a,
.footer-link {
  transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover,
.footer-link:hover {
  transform: translateX(3px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #72e0da, var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1080;
  pointer-events: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease var(--reveal-delay, 0ms), transform .72s cubic-bezier(.2, .75, .25, 1) var(--reveal-delay, 0ms);
}

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

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 991.98px) {
  main section[id] {
    scroll-margin-top: 20px;
  }

  .homepage-header + main .section-pad {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .homepage-header + main .hero {
    padding-top: 78px;
  }

  .mission-shell {
    border-radius: 24px;
  }
}

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

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

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

/* Modern footer */
.site-footer {
  padding: 0 0 26px;
  color: #dbe8e8;
  background: radial-gradient(circle at 90% 12%, rgba(35, 191, 184, .13), transparent 28%), linear-gradient(145deg, #09151a 0%, #10292d 100%);
}

.site-footer::before {
  top: auto;
  right: auto;
  bottom: -230px;
  left: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(126, 227, 220, .1);
  background: transparent;
}

.footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 50px 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-cta::after {
  position: absolute;
  right: 23%;
  bottom: -1px;
  width: 120px;
  height: 2px;
  content: "";
  background: var(--brand);
}

.footer-kicker {
  display: block;
  margin-bottom: 10px;
  color: #7ee3dc;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer .footer-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -.045em;
}

.footer-cta-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding: 15px 21px;
  color: #fff;
  background: var(--brand-dark);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 16px 35px rgba(35, 191, 184, .18);
}

.footer-cta-button:hover {
  color: #fff;
  background: #056562;
  transform: translateY(-2px);
}

.footer-main {
  position: relative;
  padding-top: 58px;
  padding-bottom: 52px;
}

.footer-main > div:first-child {
  padding-right: clamp(24px, 5vw, 72px);
}

.footer-logo {
  width: 116px;
  margin-bottom: 22px;
}

.site-footer .footer-main > div:first-child p {
  max-width: 320px;
  font-size: .95rem;
  line-height: 1.75;
}

.site-footer .footer-main h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer .footer-main h2 span {
  color: #64d5ce;
  font-size: .68rem;
}

.footer-list {
  gap: 9px;
}

.footer-list li {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 11px;
  font-size: .88rem;
}

.footer-list li:hover {
  background: rgba(255, 255, 255, .065);
  border-color: rgba(126, 227, 220, .18);
}

.footer-list i {
  display: grid;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  place-items: center;
  background: rgba(35, 191, 184, .12);
  border-radius: 7px;
  font-size: .75rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  color: #7ee3dc !important;
  font-size: .86rem;
  font-weight: 700;
}

.footer-link::after {
  content: "\2192";
}

.footer-nav {
  gap: 8px 12px;
}

.footer-nav a {
  padding: 9px 0;
  color: #becdce;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .9rem;
}

.footer-nav a:hover {
  color: #7ee3dc;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
}

.footer-bottom {
  justify-content: space-between;
  gap: 12px 22px;
  margin-top: 0;
  padding-top: 22px;
  color: #75898b;
  border-top-color: rgba(255, 255, 255, .1);
  font-size: .78rem;
}

.footer-bottom a {
  color: #94aaab;
}

@media (max-width: 767.98px) {
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 44px 0 36px;
  }

  .footer-cta::after {
    right: auto;
    left: 0;
  }

  .footer-main {
    padding-top: 44px;
    padding-bottom: 38px;
  }

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

/* Gallery v2 */
.gallery-v2-hero { position: relative; padding: 96px 0 88px; color: #fff; background: #071c21; overflow: hidden; }
.gallery-v2-hero::before { position: absolute; inset: 0; content: ""; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to right, #000, transparent 65%); }
.gallery-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.gallery-glow-one { width: 540px; height: 540px; right: -170px; top: -260px; background: radial-gradient(circle, rgba(35,191,184,.28), transparent 68%); }
.gallery-glow-two { width: 400px; height: 400px; left: 28%; bottom: -330px; background: radial-gradient(circle, rgba(126,227,220,.18), transparent 70%); }
.gallery-v2-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.gallery-overline { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; color: #9fded9; font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.gallery-overline span { width: 42px; height: 2px; background: #39c7bf; }
.gallery-v2-copy h1 { max-width: 680px; margin-bottom: 26px; color: #fff; font-size: clamp(3.7rem, 6.7vw, 7.2rem); line-height: .88; letter-spacing: -.075em; }
.gallery-v2-copy h1 em { display: block; color: #6ddbd4; font-family: Georgia, serif; font-weight: 400; letter-spacing: -.055em; }
.gallery-v2-copy > p { max-width: 620px; color: #b6cacc; font-size: 1.08rem; line-height: 1.8; }
.gallery-v2-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.gallery-text-link { color: #fff; font-weight: 700; }
.gallery-text-link:hover { color: #7ee3dc; }
.gallery-v2-stats { display: flex; gap: 0; margin-top: 64px; border-top: 1px solid rgba(255,255,255,.13); }
.gallery-v2-stats > div { display: grid; min-width: 128px; padding: 22px 28px 0 0; }
.gallery-v2-stats strong { color: #fff; font-size: 1.35rem; }
.gallery-v2-stats span { color: #7f9da0; font-size: .75rem; }
.gallery-v2-visual { position: relative; min-height: 590px; }
.phone-shot { position: absolute; padding: 14px; background: #f5faf9; border: 1px solid rgba(255,255,255,.3); border-radius: 32px; box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.phone-shot::after { position: absolute; top: 22px; left: 50%; width: 46px; height: 5px; content: ""; background: #142c30; border-radius: 10px; transform: translateX(-50%); }
.phone-shot > span { position: absolute; z-index: 2; top: -17px; right: -17px; display: grid; width: 48px; height: 48px; place-items: center; color: #071c21; background: #7ee3dc; border: 5px solid #071c21; border-radius: 50%; font-size: .72rem; font-weight: 800; }
.phone-shot img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 22px; }
.phone-shot-a { z-index: 2; width: 52%; height: 540px; left: 2%; top: 0; transform: rotate(-5deg); }
.phone-shot-b { z-index: 1; width: 48%; height: 500px; right: 2%; bottom: 0; transform: rotate(7deg); }
.gallery-float-note { position: absolute; z-index: 4; right: 4%; bottom: 55px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; color: #13272a; background: #fff; border-radius: 16px; box-shadow: 0 20px 45px rgba(0,0,0,.25); }
.gallery-float-note i { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--brand-dark); border-radius: 11px; }
.gallery-float-note span { display: grid; color: var(--muted); font-size: .74rem; }
.gallery-float-note strong { color: var(--ink); font-size: .9rem; }
.gallery-v2-work { padding: 112px 0; background: #f4f7f6; }
.gallery-v2-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.gallery-v2-heading h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.065em; }
.gallery-v2-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.gallery-v2-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.gallery-v2-card { display: grid; min-height: 650px; grid-template-rows: auto 1fr; padding: 36px 36px 0; background: #fff; border: 1px solid #e2e9e8; border-radius: 26px; overflow: hidden; }
.gallery-v2-card-main, .gallery-v2-card-wide { grid-column: 1 / -1; min-height: 560px; grid-template-columns: .72fr 1.28fr; grid-template-rows: 1fr; gap: 30px; padding: 42px 0 0 46px; }
.gallery-v2-card-dark { color: #fff; background: #0a2c31; border-color: #0a2c31; }
.gallery-card-copy { position: relative; z-index: 2; align-self: center; padding-bottom: 36px; }
.gallery-card-copy > span { color: var(--brand-dark); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gallery-v2-card-dark .gallery-card-copy > span { color: #7ee3dc; }
.gallery-card-copy h3 { margin: 10px 0 14px; font-size: clamp(1.9rem, 3vw, 3.35rem); letter-spacing: -.045em; }
.gallery-card-copy p { max-width: 450px; color: var(--muted); line-height: 1.75; }
.gallery-v2-card-dark .gallery-card-copy p { color: #adc1c3; }
.gallery-card-copy a { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; color: var(--brand-dark); font-weight: 800; }
.gallery-screen-stage { display: flex; min-height: 390px; align-items: flex-end; justify-content: center; padding: 40px 40px 0; background: #dfecea; border-radius: 24px 24px 0 0; overflow: hidden; }
.gallery-screen-stage img { width: 76%; max-height: 480px; object-fit: contain; filter: drop-shadow(0 24px 25px rgba(8,35,39,.18)); transition: transform .4s ease; }
.gallery-v2-card:hover .gallery-screen-stage img { transform: translateY(-9px); }
.stage-mint { background: linear-gradient(145deg, #dff7f4, #b9e8e3); }
.stage-sand { background: linear-gradient(145deg, #f5efe5, #eaddc8); }
.stage-teal { background: linear-gradient(145deg, #b4e5df, #6fc9c0); }
.gallery-v2-card-wide { grid-template-columns: .8fr 1.2fr; background: #eaf7f5; }
.gallery-v2-card-wide .gallery-screen-stage { order: 2; }
.gallery-v2-cta { padding: 90px 0; color: #fff; background: linear-gradient(115deg, #087d7a, #064b4d); }
.gallery-v2-cta .container-xl { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.gallery-v2-cta span { color: #a8e4df; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gallery-v2-cta h2 { max-width: 820px; margin: 10px 0 0; color: #fff; font-size: clamp(2.2rem, 4.4vw, 4.6rem); line-height: 1; letter-spacing: -.055em; }
.gallery-v2-cta .btn { flex: 0 0 auto; }

@media (max-width: 991.98px) {
  .gallery-v2-hero-grid, .gallery-v2-heading { grid-template-columns: 1fr; }
  .gallery-v2-visual { max-width: 650px; min-height: 550px; }
  .gallery-v2-card-main, .gallery-v2-card-wide { grid-template-columns: 1fr 1.2fr; }
}

@media (max-width: 767.98px) {
  .gallery-v2-hero { padding: 70px 0 58px; }
  .gallery-v2-hero-grid { gap: 42px; }
  .gallery-v2-copy h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .gallery-v2-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .gallery-v2-stats { justify-content: space-between; margin-top: 45px; }
  .gallery-v2-stats > div { min-width: 0; padding-right: 12px; }
  .gallery-v2-visual { min-height: 410px; }
  .phone-shot-a { width: 57%; height: 390px; }
  .phone-shot-b { width: 53%; height: 360px; }
  .gallery-float-note { right: 0; bottom: 18px; }
  .gallery-v2-work { padding: 78px 0; }
  .gallery-v2-heading { gap: 20px; margin-bottom: 38px; }
  .gallery-v2-grid { grid-template-columns: 1fr; }
  .gallery-v2-card, .gallery-v2-card-main, .gallery-v2-card-wide { grid-column: auto; min-height: 560px; grid-template-columns: 1fr; grid-template-rows: auto 1fr; padding: 30px 24px 0; }
  .gallery-v2-card-wide .gallery-screen-stage { order: initial; }
  .gallery-screen-stage { min-height: 320px; padding: 28px 20px 0; }
  .gallery-v2-cta .container-xl { align-items: flex-start; flex-direction: column; }
}

/* Gallery image clarity and refined device proportions */
.gallery-v2-visual {
  min-height: 520px;
}

.phone-shot {
  width: 230px;
  height: 500px;
  padding: 9px;
  background: #061417;
  border: 1px solid rgba(126, 227, 220, .28);
  border-radius: 34px;
}

.phone-shot img,
.gallery-screen-stage img {
  image-rendering: -webkit-optimize-contrast;
}

.phone-shot img {
  border-radius: 25px;
}

.phone-shot-a {
  left: 12%;
  top: 4px;
  transform: rotate(-4deg);
}

.phone-shot-b {
  right: 8%;
  bottom: 0;
  width: 216px;
  height: 470px;
  transform: rotate(5deg);
}

.gallery-v2-card {
  min-height: 500px;
  padding: 32px 32px 0;
  border-radius: 22px;
}

.gallery-v2-card-main,
.gallery-v2-card-wide {
  min-height: 470px;
  padding: 34px 28px 0 42px;
}

.gallery-screen-stage {
  min-height: 280px;
  margin: 0 4px;
  padding: 30px 28px 0;
  border-radius: 22px 22px 0 0;
}

.gallery-screen-stage img {
  width: auto;
  height: 300px;
  max-width: 170px;
  max-height: none;
  padding: 7px;
  background: #07191c;
  border-radius: 25px 25px 0 0;
  filter: drop-shadow(0 18px 18px rgba(8,35,39,.2));
}

.gallery-v2-card-main .gallery-screen-stage img,
.gallery-v2-card-wide .gallery-screen-stage img {
  height: 405px;
  max-width: 230px;
}

.gallery-card-copy h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

@media (max-width: 991.98px) {
  .phone-shot-a { left: 10%; }
  .phone-shot-b { right: 14%; }
  .gallery-v2-card-main,
  .gallery-v2-card-wide { min-height: 500px; }
}

@media (max-width: 767.98px) {
  .gallery-v2-visual { min-height: 390px; }
  .phone-shot { width: 170px; height: 370px; border-radius: 27px; }
  .phone-shot-b { width: 160px; height: 348px; right: 5%; }
  .phone-shot-a { left: 5%; }
  .phone-shot img { border-radius: 19px; }
  .gallery-v2-card,
  .gallery-v2-card-main,
  .gallery-v2-card-wide { min-height: 500px; padding: 28px 22px 0; }
  .gallery-screen-stage { min-height: 300px; padding-top: 24px; }
  .gallery-screen-stage img,
  .gallery-v2-card-main .gallery-screen-stage img,
  .gallery-v2-card-wide .gallery-screen-stage img { height: 320px; max-width: 190px; }
}

/* Professional unified gallery board */
.gallery-product-board {
  padding: 24px 28px 44px;
  color: #fff;
  background: #081f24;
  border: 1px solid #163a3f;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(8, 31, 36, .16);
}

.gallery-board-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
  color: #8fabad;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-board-top span:first-child { color: #7ee3dc; }

.gallery-device-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, .1);
}

.gallery-device-row > article {
  min-width: 0;
  padding: 10px 28px 0;
  background: #081f24;
}

.gallery-device {
  display: flex;
  height: 350px;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(165deg, rgba(126, 227, 220, .12), rgba(255, 255, 255, .025));
  border: 1px solid rgba(126, 227, 220, .12);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.gallery-device img {
  display: block;
  width: 158px;
  height: 344px;
  padding: 6px 6px 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  background: #050f12;
  border-radius: 23px 23px 0 0;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, .26));
  transition: transform .3s ease;
}

.gallery-device-row article:hover .gallery-device img { transform: translateY(-6px); }

.gallery-device-caption {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 24px 0 10px;
}

.gallery-device-caption > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #081f24;
  background: #7ee3dc;
  border-radius: 50%;
  font-size: .67rem;
  font-weight: 800;
}

.gallery-device-caption h3 {
  margin: 1px 0 7px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.gallery-device-caption p {
  margin: 0;
  color: #829da0;
  font-size: .78rem;
  line-height: 1.55;
}

.gallery-case-summary {
  display: grid;
  grid-template-columns: .7fr 1.1fr auto;
  gap: 50px;
  align-items: center;
  padding: 42px 4px 0;
}

.gallery-case-summary span {
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-case-summary h3 { margin: 7px 0 0; font-size: 2rem; letter-spacing: -.035em; }
.gallery-case-summary p { margin: 0; color: var(--muted); line-height: 1.75; }
.gallery-case-summary a { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-dark); font-weight: 800; white-space: nowrap; }

@media (max-width: 991.98px) {
  .gallery-device-row { grid-template-columns: repeat(2, 1fr); gap: 28px 1px; }
  .gallery-case-summary { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gallery-case-summary a { grid-column: 1 / -1; }
}

@media (max-width: 575.98px) {
  .gallery-product-board { padding: 20px 18px 30px; }
  .gallery-board-top { align-items: flex-start; flex-direction: column; gap: 7px; }
  .gallery-device-row { grid-template-columns: 1fr; gap: 24px; }
  .gallery-device-row > article { padding: 0; }
  .gallery-device { height: 330px; }
  .gallery-device img { width: 148px; height: 324px; }
  .gallery-case-summary { grid-template-columns: 1fr; gap: 18px; }
  .gallery-case-summary a { grid-column: auto; white-space: normal; }
}

/* Homepage 2026 refresh */
.homepage-header + main .hero {
  position: relative;
  min-height: calc(100vh - 142px);
  display: flex;
  align-items: center;
  padding: 82px 0 94px;
  background:
    radial-gradient(circle at 78% 18%, rgba(35, 191, 184, .17), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(126, 227, 220, .16), transparent 25%),
    linear-gradient(135deg, #f9fcfb 0%, #edf8f7 100%);
  overflow: hidden;
}

.homepage-header + main .hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .35;
  background-image: radial-gradient(rgba(8, 125, 122, .25) .7px, transparent .7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
  pointer-events: none;
}

.homepage-header + main .hero .container-xl { position: relative; z-index: 1; }
.homepage-header + main .hero h1 { max-width: 750px; font-size: clamp(3.7rem, 6.3vw, 6.9rem); line-height: .89; letter-spacing: -.075em; }
.homepage-header + main .hero h1 span { display: block; color: var(--brand-dark); font-family: Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -.055em; }
.homepage-header + main .hero-copy { max-width: 670px; font-size: 1.08rem; }
.homepage-header + main .hero-kicker { padding: 9px 14px; color: var(--brand-dark); background: rgba(255,255,255,.7); border: 1px solid rgba(8,125,122,.2); border-radius: 999px; backdrop-filter: blur(10px); }
.homepage-header + main .hero-actions { margin-top: 30px; }
.homepage-header + main .hero-actions .btn { padding: 14px 21px; border-radius: 12px; }
.homepage-header + main .hero-metrics { gap: 0; max-width: 520px; margin-top: 48px; border-top: 1px solid rgba(8,125,122,.18); }
.homepage-header + main .hero-metrics div { padding: 20px 26px 0 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.homepage-header + main .hero-metrics strong { color: #092d30; font-size: 1.65rem; }

.homepage-header + main .hero-visual { min-height: 590px; perspective: 1100px; transform-style: preserve-3d; transition: transform .18s ease-out; }
.homepage-header + main .hero-visual::before { inset: 4% 0 2% 7%; background: linear-gradient(145deg, #071c21 0%, #0a4447 54%, #18aca5 100%); border-radius: 48% 18px 48% 18px; transform: rotate(-2deg) translateZ(-20px); }
.homepage-header + main .hero-visual::after { inset: 9% 8% 12% 14%; border-radius: 42% 12px 42% 12px; }
.homepage-header + main .hero-device { border-radius: 24px; animation: homeFloat 5.8s ease-in-out infinite; }
.homepage-header + main .hero-device-side { width: 50%; right: 8%; bottom: 35px; }
.homepage-header + main .hero-product-card { animation: homeFloat 6.5s ease-in-out -1.6s infinite; }
.homepage-header + main .hero-solution-pill { animation: homeFloat 5.4s ease-in-out -.8s infinite; }
.homepage-header + main .hero-badge { animation: homeFloat 7s ease-in-out -2.1s infinite; }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(126,227,220,.25); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 430px; height: 430px; right: -45px; top: 4px; animation: orbitSpin 24s linear infinite; }
.hero-orbit-two { width: 270px; height: 270px; left: 24px; bottom: 0; border-style: dashed; animation: orbitSpin 18s linear infinite reverse; }

.capability-marquee { position: relative; z-index: 2; padding: 18px 0; color: #fff; background: #08262b; overflow: hidden; }
.capability-track { display: flex; width: max-content; animation: capabilityScroll 32s linear infinite; }
.capability-track span { display: flex; align-items: center; gap: 30px; padding-right: 30px; color: #d7e9e8; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.capability-track i { width: 6px; height: 6px; background: #61d7d0; border-radius: 50%; box-shadow: 0 0 14px rgba(97,215,208,.75); }

.homepage-header + main #apps { padding-top: 112px; background: #fff; }
.homepage-header + main .split-heading h2 { max-width: 680px; font-size: clamp(2.8rem, 5vw, 5.1rem); line-height: .98; letter-spacing: -.06em; }
.homepage-header + main .app-card { position: relative; min-height: 360px; padding: 32px; border-radius: 20px; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; overflow: hidden; }
.homepage-header + main .app-card::after { position: absolute; right: -45px; bottom: -45px; width: 120px; height: 120px; content: ""; background: rgba(35,191,184,.08); border-radius: 50%; transition: transform .4s ease; }
.homepage-header + main .app-card:hover { transform: translateY(-10px); border-color: rgba(35,191,184,.4); box-shadow: 0 24px 50px rgba(8,45,48,.12); }
.homepage-header + main .app-card:hover::after { transform: scale(1.65); }
.homepage-header + main .feature-card { border-radius: 20px; transition: transform .3s ease, box-shadow .3s ease; }
.homepage-header + main .feature-card:hover { transform: translateY(-7px); box-shadow: 0 22px 45px rgba(8,45,48,.1); }
.homepage-header + main .mission-shell,
.homepage-header + main .contact-wrap,
.homepage-header + main .promo-shell { border-radius: 30px; }

@keyframes homeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes capabilityScroll { to { transform: translateX(-50%); } }

@media (max-width: 991.98px) {
  .homepage-header + main .hero { min-height: auto; padding: 72px 0 82px; }
  .homepage-header + main .hero-visual { min-height: 520px; margin-top: 18px; }
}

@media (max-width: 575.98px) {
  .homepage-header + main .hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .homepage-header + main .hero-metrics div { padding-right: 10px; }
  .homepage-header + main .hero-metrics span { font-size: .72rem; }
  .homepage-header + main .hero-visual { min-height: 400px; }
  .homepage-header + main .hero-product-card { right: 0; }
  .homepage-header + main .hero-solution-pill { left: 0; }
  .homepage-header + main .app-card { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-header + main .hero-device,
  .homepage-header + main .hero-product-card,
  .homepage-header + main .hero-solution-pill,
  .homepage-header + main .hero-badge,
  .hero-orbit,
  .capability-track,
  .dashboard-live-indicator,
  .dashboard-live-bars i { animation: none !important; }
}

/* Classy services grid */
.homepage-header + main #apps {
  position: relative;
  padding: 124px 0;
  background: linear-gradient(180deg, #fff 0%, #f5f8f7 100%);
  overflow: hidden;
}

.homepage-header + main #apps::before {
  position: absolute;
  top: 90px;
  right: -120px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(8, 125, 122, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(8, 125, 122, .025), 0 0 0 100px rgba(8, 125, 122, .018);
}

.homepage-header + main #apps .container-xl { position: relative; z-index: 1; }
.homepage-header + main #apps .split-heading { margin-bottom: 64px; padding-bottom: 36px; border-bottom: 1px solid #dbe6e4; }
.homepage-header + main #apps .section-heading.split-heading {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(540px, 1.15fr) minmax(360px, .85fr);
  align-items: end;
}
.homepage-header + main #apps .split-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 4.8vw, 5.4rem);
  line-height: .9;
}
.homepage-header + main #apps .split-heading > p { max-width: 400px; font-size: 1.04rem; line-height: 1.75; }

.services-luxe-grid { --bs-gutter-x: 1.4rem; --bs-gutter-y: 1.4rem; }
.homepage-header + main .services-luxe-grid .app-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 38px 40px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #dce7e5;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(8, 42, 45, .055);
  overflow: hidden;
}

.homepage-header + main .services-luxe-grid .app-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--brand-dark), #6ee0d9);
  transition: width .45s ease;
}

.homepage-header + main .services-luxe-grid .app-card:hover::before { width: 100%; }
.homepage-header + main .services-luxe-grid .app-card:hover { transform: translateY(-7px); box-shadow: 0 26px 60px rgba(8, 42, 45, .11); }
.homepage-header + main .services-luxe-grid .app-card::after { width: 180px; height: 180px; right: -105px; bottom: -105px; }

.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 55px; }
.homepage-header + main .services-luxe-grid .service-card-top span {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  color: var(--brand-dark);
  background: transparent;
  border-radius: 0;
  font-size: .76rem;
  letter-spacing: .15em;
}

.service-card-top > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--brand-dark);
  background: #e8f6f4;
  border-radius: 50%;
  font-size: 1.35rem;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.app-card:hover .service-card-top > i { color: #fff; background: var(--brand-dark); transform: rotate(7deg); }
.homepage-header + main .services-luxe-grid .app-card > small { margin-bottom: 11px; color: #71878a; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.homepage-header + main .services-luxe-grid .app-card h3 { max-width: 450px; margin-bottom: 16px; font-size: clamp(1.65rem, 2.6vw, 2.45rem); line-height: 1.08; letter-spacing: -.04em; }
.homepage-header + main .services-luxe-grid .app-card p { max-width: 500px; margin-bottom: 24px; line-height: 1.7; }
.homepage-header + main .services-luxe-grid .app-card > a { margin-top: auto; align-self: flex-start; }

.homepage-header + main .services-luxe-grid .app-card-dark { background: linear-gradient(145deg, #071f24, #0a383a); border-color: #0a383a; }
.homepage-header + main .services-luxe-grid .app-card-dark .service-card-top span,
.homepage-header + main .services-luxe-grid .app-card-dark > small { color: #7ee3dc; }
.homepage-header + main .services-luxe-grid .app-card-dark .service-card-top > i { color: #071f24; background: #7ee3dc; }
.homepage-header + main .services-luxe-grid .app-card-dark h3 { color: #fff; }
.homepage-header + main .services-luxe-grid .app-card-dark p { color: #adc1c2; }
.homepage-header + main .services-luxe-grid .app-card-dark > a { color: #7ee3dc; }

@media (max-width: 767.98px) {
  .homepage-header + main #apps { padding: 84px 0; }
  .homepage-header + main #apps .split-heading { margin-bottom: 40px; }
  .homepage-header + main .services-luxe-grid .app-card { min-height: 350px; padding: 30px 26px; }
  .service-card-top { margin-bottom: 38px; }
}

@media (max-width: 991.98px) {
  .homepage-header + main #apps .section-heading.split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .homepage-header + main #apps .split-heading > p { max-width: 620px; }
}
