/* ==========================================================================
   GLOMARK — Dark Luxury Hero
   ========================================================================== */

:root {
  --navy-deep:     #03131A;
  --navy:          #041C24;
  --black:         #020B10;
  --teal:          #00A7B5;
  --cyan:          #12C7C0;
  --white:         #FFFFFF;
  --text-soft:     #D7E2E5;
  --text-muted:    #9CAFB7;
  --glass-border:  rgba(255, 255, 255, 0.16);
  --glass-bg:      rgba(255, 255, 255, 0.07);

  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:     1480px;
  --header-h:      96px;

  --ease:          0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:     0.65s cubic-bezier(0.4, 0, 0.2, 1);

  --strip-bg:      #101820;
  --light-bg:      #F8FAFC;
  --text-dark:     #101828;
  --text-body:     #667085;
  --text-pill:     #98A2B3;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  background: var(--navy-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.35s ease;
}

body.preloader-active {
  overflow: hidden;
}

body.preloader-active > *:not(.glomark-preloader) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

html.preloader-skip body.preloader-active > *:not(.glomark-preloader) {
  opacity: 1;
  visibility: visible;
}

html.preloader-skip .glomark-preloader {
  display: none !important;
}

body:has(.glomark-preloader) > *:not(.glomark-preloader) {
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

img { max-width: 100%; height: auto; display: block; }
video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 70px;
}

/* Glass utility */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow var(--ease), background var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--header {
  width: 170px;
  height: 58px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(0, 167, 181, 0.35);
}

.btn--header:hover {
  box-shadow: 0 6px 28px rgba(18, 199, 192, 0.45);
}

.btn--primary {
  width: 220px;
  height: 58px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 167, 181, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(18, 199, 192, 0.5);
}

.btn--ghost {
  width: 200px;
  height: 58px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(18, 199, 192, 0.2);
}

.btn__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.btn--primary:hover .btn__icon { transform: translateX(4px); }

.btn__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn__play svg { width: 12px; height: 12px; margin-left: 2px; }

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--ease-slow), transform var(--ease-slow);
}

.animate-fade-up.is-visible { opacity: 1; transform: translateY(0); }
.animate-fade-up[data-delay="0"] { transition-delay: 0.08s; }
.animate-fade-up[data-delay="1"] { transition-delay: 0.18s; }
.animate-fade-up[data-delay="2"] { transition-delay: 0.3s; }
.animate-fade-up[data-delay="3"] { transition-delay: 0.42s; }
.animate-fade-up[data-delay="4"] { transition-delay: 0.54s; }
.animate-fade-up[data-delay="5"] { transition-delay: 0.64s; }
.animate-fade-up[data-delay="6"] { transition-delay: 0.74s; }
.animate-fade-up[data-delay="7"] { transition-delay: 0.84s; }
.animate-fade-up[data-delay="8"] { transition-delay: 0.94s; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--ease);
}

.header.is-scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header__logo { flex-shrink: 0; display: flex; align-items: center; }

.header__logo-img {
  width: 250px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header__nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--ease);
}

.header__nav-link:hover { color: var(--white); }
.header__nav-link:hover::after { width: 100%; }

.header__nav-link--active {
  color: var(--cyan);
}

.header__nav-link--active::after { width: 100%; }

.header__cta { flex-shrink: 0; }
.header__nav-cta { display: none; }

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  z-index: 1001;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity 0.2s ease;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-active .header__hamburger-line:nth-child(2) { opacity: 0; }
.header__hamburger.is-active .header__hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  min-height: 860px;
  overflow: hidden;
  background: var(--navy-deep);
}

/* Full-width hero background — villa on the right */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* CSS fallback if img fails to load */
  background-image: url('image/heroimage.png');
  background-size: cover;
  background-position: 75% center;
  background-repeat: no-repeat;
  background-color: var(--navy-deep);
}

/* Left-only overlay — right side stays clear */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(2, 11, 16, 0.96) 0%,
    rgba(3, 19, 26, 0.88) 24%,
    rgba(3, 19, 26, 0.62) 42%,
    rgba(3, 19, 26, 0.28) 58%,
    rgba(3, 19, 26, 0.06) 76%,
    rgba(3, 19, 26, 0.00) 100%
  );
}

/* Subtle bottom vignette only */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 19, 26, 0) 58%,
    rgba(3, 19, 26, 0.55) 100%
  );
}

/* Decorative left pattern */
.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(18, 199, 192, 0.04) 40px,
      rgba(18, 199, 192, 0.04) 41px
    );
  mask-image: linear-gradient(90deg, black 0%, black 22%, transparent 45%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 22%, transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 90px 70px 30px;
}

/* Left content */
.hero__content {
  width: 680px;
  max-width: 680px;
  position: relative;
  z-index: 3;
  padding-top: 40px;
}

.hero__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(48px, 4.4vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.4px;
  color: var(--white);
  margin: 0 0 26px;
  max-width: 760px;
}

.hero-title span {
  color: var(--teal);
}

@media (min-width: 769px) {
  .hero-title {
    white-space: normal;
  }
}

/* Decorative divider */
.hero__divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 150px;
  margin-bottom: 22px;
}

.hero__divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.hero__divider-spark {
  display: flex;
  color: var(--cyan);
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.hero__divider-spark svg { width: 100%; height: 100%; }

.hero__subheading {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 620px;
  margin-bottom: 0;
}

.hero__highlight { color: var(--cyan); font-weight: 600; }

/* Service glass card — compact */
.hero__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 620px;
  max-width: 620px;
  height: 74px;
  margin-top: 30px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  position: relative;
  z-index: 6;
}

.hero__service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  min-width: 0;
}

.hero__service-item:last-child { border-right: none; }

.hero__service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal);
}

.hero__service-icon svg { width: 18px; height: 18px; }

.hero__service-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
}

/* Buttons */
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  position: relative;
  z-index: 6;
}

/* Floating stats — lower right */
.hero__stats {
  position: absolute;
  right: 95px;
  bottom: 170px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 175px;
  height: 118px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform var(--ease), border-color var(--ease);
}

.hero__stat::before,
.hero__stat::after {
  display: none;
}

.hero__stat:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 199, 192, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.hero__stat-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(18, 199, 192, 0.15);
  border: 1px solid rgba(18, 199, 192, 0.35);
  color: #12C7C0;
  margin-bottom: 8px;
}

.hero__stat-badge svg {
  width: 19px;
  height: 19px;
  color: #12C7C0;
  stroke: #12C7C0;
}

.hero__stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
}

.hero__stat-number--text {
  font-size: 21px;
  line-height: 1.1;
  color: #ffffff !important;
  font-weight: 800;
}

.hero__stat-label {
  font-size: 12px;
  color: #ffffff !important;
  line-height: 1.35;
  margin-top: 8px;
}

/* Trust bar — pinned to hero bottom */
.hero__trust {
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 44px;
  height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  z-index: 4;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  line-height: 1.45;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__trust-item:first-child {
  border-left: none;
  padding-left: 0;
}

.hero__trust-item span:not(.hero__trust-badge):not(.hero__trust-google):not(.hero__trust-stars) {
  min-width: 0;
}

.hero__trust-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--cyan);
  stroke: var(--cyan);
}

.hero__trust-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.hero__trust-google {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.hero__trust-stars {
  color: var(--cyan);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
  background: var(--navy-deep);
  padding: 24px 0;
  min-height: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-strip__inner {
  padding-block: 0;
  min-height: 90px;
  display: flex;
  align-items: center;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 100%;
  min-height: 90px;
}

.stats-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-strip__item:first-child {
  padding-left: 0;
}

.stats-strip__item:last-child {
  border-right: none;
  padding-right: 0;
}

.stats-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(18, 199, 192, 0.12);
  color: var(--cyan);
}

.stats-strip__icon svg {
  width: 18px;
  height: 18px;
}

.stats-strip__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.stats-strip__number {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stats-strip__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
}

/* ==========================================================================
   TRUSTED BY / MARQUEE
   ========================================================================== */
.trusted-section {
  background: var(--light-bg);
  padding: 32px 0 36px;
}

.trusted-section__inner {
  text-align: center;
}

.trusted-section__heading {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
}

.trusted-section__highlight {
  color: var(--teal);
}

.trusted-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.trusted-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-pill);
  white-space: nowrap;
}

.marquee-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 199, 192, 0.10);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .trusted-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
  }

  .marquee-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    padding-right: 0;
  }

  .marquee-list[aria-hidden="true"] {
    display: none;
  }
}

/* ==========================================================================
   BEFORE & AFTER EDITING
   ========================================================================== */
.ba-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #03131A 0%, #041C24 55%, #06242E 100%);
  padding: 90px 0;
}

.ba-section__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.ba-section__glow--left {
  width: 420px;
  height: 420px;
  top: 10%;
  left: -120px;
  background: radial-gradient(circle, rgba(18, 199, 192, 0.14) 0%, transparent 70%);
}

.ba-section__glow--right {
  width: 360px;
  height: 360px;
  bottom: 5%;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 167, 181, 0.10) 0%, transparent 70%);
}

.ba-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
  padding-inline: 70px;
}

.ba-section__visual {
  width: 100%;
  max-width: 590px;
  justify-self: start;
}

.ba-card {
  position: relative;
  width: 100%;
  height: 410px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.ba-before {
  opacity: 1;
  z-index: 1;
}

.ba-after {
  opacity: 0;
  z-index: 2;
}

.ba-card:hover .ba-after,
.ba-card.is-active .ba-after {
  opacity: 1;
}

.ba-card:hover .ba-before,
.ba-card.is-active .ba-before {
  opacity: 0;
}

.ba-card:hover .ba-img,
.ba-card.is-active .ba-img {
  transform: scale(1.03);
}

.ba-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(3, 19, 26, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.ba-label__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.ba-label::after {
  content: "Before — Raw File";
}

.ba-card:hover .ba-label::after,
.ba-card.is-active .ba-label::after {
  content: "After — GLOMARK Edit";
}

.ba-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(3, 19, 26, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.ba-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.ba-badge--top {
  top: 18px;
  right: 18px;
}

.ba-badge--bottom {
  bottom: 18px;
  left: 18px;
}

.ba-section__content {
  max-width: 620px;
}

.ba-section__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.ba-section__heading {
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: var(--white);
  margin-bottom: 24px;
}

.ba-section__highlight {
  color: var(--cyan);
}

.ba-section__lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 34px;
}

.ba-section__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ba-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ba-section__list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(18, 199, 192, 0.10);
  color: var(--cyan);
}

.ba-section__list-icon svg {
  width: 20px;
  height: 20px;
}

.ba-section__list-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  padding-top: 8px;
}

.ba-section__tagline {
  margin-top: 38px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.35;
  color: var(--cyan);
}

.ba-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

@media (hover: none) {
  .ba-card::after {
    content: "Tap to compare";
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 5;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(3, 19, 26, 0.72);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
  }

  .ba-badge--bottom {
    bottom: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ba-img {
    transition: opacity 0.2s ease;
  }

  .ba-card:hover .ba-img,
  .ba-card.is-active .ba-img {
    transform: none;
  }
}

/* ==========================================================================
   QUALITY SLIDER SECTION
   ========================================================================== */
.quality-slider-section {
  background:
    radial-gradient(circle at top center, rgba(18, 199, 192, 0.08), transparent 34%),
    #ffffff;
  padding: 90px 0 100px;
}

.quality-slider-section__inner {
  padding-inline: 70px;
  text-align: center;
}

.quality-slider-section__heading {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #101828;
  margin-bottom: 14px;
}

.quality-slider-section__heading-accent {
  color: var(--cyan);
}

.quality-slider-section__subtitle {
  max-width: 720px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
}

.quality-slider-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.quality-slider-tab {
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: var(--white);
  color: #344054;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform 0.2s ease;
}

.quality-slider-tab:hover {
  border-color: rgba(18, 199, 192, 0.35);
  color: #101828;
  transform: translateY(-1px);
}

.quality-slider-tab.is-active {
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.28);
}

.comparison-slider {
  --position: 50%;
  position: relative;
  max-width: 1080px;
  height: 580px;
  margin: 46px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #E5E7EB;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.comparison-slider__before,
.comparison-slider__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.comparison-slider__before {
  z-index: 1;
}

.comparison-slider__after {
  z-index: 2;
  clip-path: inset(0 0 0 calc(100% - var(--position)));
  will-change: clip-path;
}

.comparison-label {
  position: absolute;
  top: 22px;
  z-index: 4;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(3, 19, 26, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.comparison-label--before {
  left: 22px;
}

.comparison-label--after {
  right: 22px;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 5;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  will-change: left, transform;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(3, 19, 26, 0.72);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  transition: box-shadow 0.2s ease;
  color: var(--white);
}

.slider-handle svg {
  width: 22px;
  height: 22px;
}

.slider-divider:hover .slider-handle,
.slider-divider.is-dragging .slider-handle {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(18, 199, 192, 0.22);
}

.comparison-slider.is-dragging {
  cursor: ew-resize;
}

.comparison-slider.is-dragging *,
.comparison-slider.is-dragging .slider-handle {
  transition: none !important;
}

/* ==========================================================================
   WHY CHOOSE GLOMARK
   ========================================================================== */
.why-glomark-section {
  background:
    radial-gradient(circle at top center, rgba(18, 199, 192, 0.07), transparent 35%),
    #F8FAFC;
  padding: 96px 0;
}

.why-glomark-section__inner {
  padding-inline: 70px;
  text-align: center;
}

.why-glomark-section__heading {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #101828;
  margin-bottom: 14px;
}

.why-glomark-section__highlight {
  color: var(--cyan);
}

.why-glomark-section__subtitle {
  max-width: 780px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
}

.why-glomark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 56px auto 0;
  text-align: left;
}

.why-glomark-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 34px 32px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.why-glomark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
}

.why-glomark-card--accent-gold::before {
  background: linear-gradient(90deg, #C4A052 0%, #D4AF6A 100%);
}

.why-glomark-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.10), transparent 35%),
    #FFFFFF;
}

.why-glomark-card__metric {
  position: absolute;
  top: 30px;
  right: 32px;
  text-align: right;
}

.why-glomark-card__metric-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #101828;
  letter-spacing: -0.02em;
}

.why-glomark-card__metric-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #667085;
  letter-spacing: 0.02em;
}

.why-glomark-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 14px;
  background: rgba(18, 199, 192, 0.10);
  color: var(--teal);
}

.why-glomark-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-glomark-card__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  color: #101828;
  margin-bottom: 14px;
  padding-right: 72px;
}

.why-glomark-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #667085;
}

.why-glomark-section__cta {
  margin-top: 56px;
  text-align: center;
}

.why-glomark-section__cta-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #101828;
}

.why-glomark-section__cta-btn {
  display: inline-flex;
  margin-top: 22px;
  padding: 16px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.28);
  transition: transform 0.2s ease, box-shadow var(--ease);
}

.why-glomark-section__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(18, 199, 192, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .why-glomark-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   CLIENT REVIEWS
   ========================================================================== */
.reviews-section {
  background:
    radial-gradient(circle at top left, rgba(18, 199, 192, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 167, 181, 0.10), transparent 36%),
    linear-gradient(135deg, #03131A 0%, #041C24 55%, #06242E 100%);
  color: #ffffff;
  padding: 96px 0;
}

.reviews-section__inner {
  padding-inline: 70px;
  text-align: center;
}

.reviews-section__heading {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 14px;
}

.reviews-section__highlight {
  color: var(--cyan);
}

.reviews-section__subtitle {
  max-width: 800px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
  color: #D7E2E5;
}

.reviews-section__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  padding: 18px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.reviews-section__badge-stars {
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  line-height: 1;
}

.reviews-section__badge-rating {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.reviews-section__badge-meta {
  font-size: 13px;
  font-weight: 500;
  color: #9CAFB7;
}

.reviews-carousel {
  position: relative;
  margin-top: 48px;
  padding-inline: 56px;
}

.reviews-carousel__viewport {
  overflow: hidden;
}

.reviews-carousel__track {
  display: flex;
  gap: var(--reviews-gap, 24px);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.reviews-carousel__track.is-no-transition {
  transition: none;
}

.reviews-section .review-card {
  flex: 0 0 var(--review-card-width, 100%);
  min-height: 260px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.reviews-section .review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 199, 192, 0.38);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.10), transparent 35%),
    rgba(255, 255, 255, 0.085);
}

.review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.reviews-section .review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(18, 199, 192, 0.13);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.reviews-section .review-card__name {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.reviews-section .review-card__location {
  font-size: 13px;
  font-weight: 500;
  color: #9CAFB7;
  line-height: 1.3;
}

.reviews-section .review-card__score {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 199, 192, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(18, 199, 192, 0.22);
  font-size: 12px;
  font-weight: 800;
}

.reviews-section .review-card__stars {
  margin-top: 18px;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  line-height: 1;
}

.reviews-section .review-card__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18, 199, 192, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(18, 199, 192, 0.22);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.reviews-section .review-card__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #D7E2E5;
}

.reviews-section .reviews-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, border-color var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}

.reviews-section .reviews-carousel__btn svg {
  width: 22px;
  height: 22px;
}

.reviews-section .reviews-carousel__btn:hover {
  transform: translateY(-50%) translateY(-2px);
  background: var(--cyan);
  color: #03131A;
  border-color: var(--cyan);
  box-shadow: 0 12px 32px rgba(18, 199, 192, 0.28);
}

.reviews-carousel__btn--prev {
  left: 0;
}

.reviews-carousel__btn--next {
  right: 0;
}

.reviews-section .reviews-carousel__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-section .review-card:hover {
    transform: none;
  }

  .reviews-carousel__track {
    transition: none;
  }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
  background:
    radial-gradient(circle at top center, rgba(18, 199, 192, 0.08), transparent 35%),
    #F8FAFC;
  padding: 100px 0;
}

.pricing-section__inner {
  padding-inline: 70px;
  text-align: center;
}

.pricing-section__heading {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #101828;
  margin-bottom: 14px;
}

.pricing-section__highlight {
  color: var(--cyan);
}

.pricing-section__subtitle {
  max-width: 820px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
}

.pricing-section__badge {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(18, 199, 192, 0.35);
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 0 0 4px rgba(18, 199, 192, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 56px auto 0;
  text-align: left;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 560px;
  padding: 32px 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.10), transparent 34%),
    #ffffff;
}

.pricing-card--featured {
  border-color: var(--cyan);
  box-shadow:
    0 18px 50px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(18, 199, 192, 0.18),
    0 12px 40px rgba(18, 199, 192, 0.12);
}

.pricing-card--featured::before {
  opacity: 1;
}

.pricing-card--featured:hover {
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(18, 199, 192, 0.28),
    0 16px 48px rgba(18, 199, 192, 0.16);
}

.pricing-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.pricing-card__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: #101828;
  padding-right: 48px;
}

.pricing-card--featured .pricing-card__title {
  padding-right: 110px;
}

.pricing-card__subtitle {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
}

.pricing-card__price {
  margin-top: 24px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  color: #101828;
  letter-spacing: -0.02em;
}

.pricing-card__price--text {
  font-size: 28px;
  line-height: 1.2;
}

.pricing-card__price-unit {
  font-size: 16px;
  font-weight: 700;
  color: #667085;
  letter-spacing: 0;
}

.pricing-card__note {
  margin-top: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: #667085;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #475467;
}

.pricing-card__features svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--cyan);
  stroke: var(--cyan);
}

.pricing-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin-top: auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.28);
  transition: transform 0.2s ease, box-shadow var(--ease);
}

.pricing-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(18, 199, 192, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(18, 199, 192, 0.10), transparent 32%),
    linear-gradient(135deg, #03131A 0%, #041C24 60%, #06242E 100%);
  color: var(--text-soft);
}

.footer-top-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
}

.footer-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 70px 70px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.footer-logo:hover {
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 0 24px rgba(18, 199, 192, 0.12);
}

.footer-logo__img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-desc {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-soft);
}

.footer-contact a {
  color: var(--text-soft);
  transition: color var(--ease);
}

.footer-contact a:hover {
  color: var(--cyan);
}

.footer-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(18, 199, 192, 0.10);
  color: var(--cyan);
}

.footer-contact__icon svg {
  width: 18px;
  height: 18px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-soft);
  transition: transform 0.2s ease, background var(--ease), color var(--ease), border-color var(--ease);
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
}

.footer-social__link:hover {
  transform: translateY(-3px);
  background: var(--cyan);
  color: var(--navy-deep);
  border-color: var(--cyan);
}

.footer-heading {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-heading--faq {
  margin-top: 32px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links--company {
  margin-bottom: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  color: var(--text-soft);
  transition: color var(--ease), transform var(--ease);
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  margin-right: 0;
  background: var(--cyan);
  transition: width var(--ease), margin-right var(--ease);
  vertical-align: middle;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.footer-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-faq__item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.footer-faq__item.is-open {
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.footer-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  transition: color var(--ease);
}

.footer-faq__question:hover {
  color: var(--cyan);
}

.footer-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-faq__icon::before,
.footer-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--cyan);
  border-radius: 1px;
  transition: transform var(--ease);
}

.footer-faq__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.footer-faq__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.footer-faq__item.is-open .footer-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.footer-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.footer-faq__answer p {
  padding: 0 16px 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.footer-form-card {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.footer-form-card:hover {
  border-color: rgba(18, 199, 192, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(18, 199, 192, 0.08);
}

.footer-form__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-form__subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

.footer-form__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.4;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.footer-form__input::placeholder {
  color: var(--text-muted);
}

.footer-form__input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 199, 192, 0.18);
}

.footer-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CAFB7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.footer-form__select option {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-form__textarea {
  min-height: 110px;
  resize: vertical;
}

.footer-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  margin-top: 4px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.32);
  transition: transform 0.2s ease, box-shadow var(--ease);
}

.footer-form__btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.footer-form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18, 199, 192, 0.42);
}

.footer-form__btn:hover svg {
  transform: translateX(4px);
}

.footer-form__success {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(18, 199, 192, 0.12);
  border: 1px solid rgba(18, 199, 192, 0.28);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: 54px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 28px;
}

.footer-bottom__copy {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-bottom__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer-bottom__nav a:hover {
  color: var(--cyan);
}

@media (prefers-reduced-motion: reduce) {
  .footer-social__link:hover,
  .footer-form__btn:hover {
    transform: none;
  }

  .footer-links a:hover {
    transform: none;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1280px) {
  .hero__stats {
    right: 40px;
    bottom: 160px;
    gap: 10px;
  }

  .hero__stat {
    width: 165px;
    height: 112px;
    padding: 12px 14px;
  }

  .hero__trust {
    left: 40px;
    right: 40px;
    bottom: 40px;
    padding: 0 20px;
  }

  .hero__trust-item {
    padding: 0 14px;
    font-size: 13px;
    gap: 12px;
  }

  .hero__bg {
    background-position: 75% center;
  }

  .stats-strip__item {
    padding: 12px 20px;
  }
}

@media (max-width: 992px) {
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 0;
  }

  .stats-strip__item {
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-strip__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-strip__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-strip__item:first-child {
    padding-left: 0;
  }

  .stats-strip__item:nth-child(even) {
    padding-right: 0;
  }

  .stats-strip {
    padding: 20px 0;
  }

  .stats-strip__inner,
  .stats-strip__grid {
    min-height: auto;
  }

  .stats-strip__item {
    padding: 16px 20px;
  }

  .trusted-section {
    padding: 28px 0 32px;
  }

  .marquee-list {
    gap: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 1100px) {
  .container {
    padding-inline: 40px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero__inner {
    padding: 70px 40px 2rem;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero__services {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 74px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0.75rem;
    gap: 0.25rem;
  }

  .hero__service-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem;
  }

  .hero__service-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero__stats {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 40px 1rem;
  }

  .hero__trust {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 40px;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 1.25rem;
  }

  .hero__trust-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0.5rem;
  }

  .hero__trust-item:nth-child(-n+2) {
    border-top: none;
  }

  .ba-section {
    padding: 70px 0;
  }

  .ba-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-inline: 40px;
  }

  .ba-section__visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .ba-section__content {
    max-width: 100%;
  }

  .quality-slider-section {
    padding: 70px 0 80px;
  }

  .quality-slider-section__inner {
    padding-inline: 40px;
  }

  .comparison-slider {
    height: 460px;
  }

  .why-glomark-section {
    padding: 80px 0;
  }

  .why-glomark-section__inner {
    padding-inline: 40px;
  }

  .why-glomark-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .reviews-section {
    padding: 80px 0;
  }

  .reviews-section__inner {
    padding-inline: 40px;
  }

  .reviews-carousel {
    padding-inline: 48px;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-section__inner {
    padding-inline: 40px;
  }

  .footer-container {
    padding: 60px 40px 26px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-col--form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  :root { --header-h: 78px; }

  .container {
    padding-inline: 40px;
  }

  .header__cta { display: none; }
  .header__hamburger { display: flex; }

  .header__logo-img {
    width: 200px;
    max-height: 60px;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0;
    padding: 0 24px;
    background: #03131A;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    overflow-y: auto;
    transition: opacity var(--ease), visibility var(--ease), max-height 0.4s ease, padding var(--ease);
    z-index: 1001;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: calc(100dvh - var(--header-h));
    padding: 20px 24px 24px;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .header__nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header__nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .header__nav-cta {
    display: inline-flex;
    margin-top: 1.25rem;
    width: 100%;
    height: 52px;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ease), visibility var(--ease);
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .quality-slider-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .quality-slider-tabs::-webkit-scrollbar {
    display: none;
  }

  .quality-slider-tab {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 76px; }

  .container { padding-inline: 24px; }

  .header__logo-img {
    width: 180px;
    max-height: 56px;
  }

  .header__nav {
    padding: 0 20px;
  }

  .header__nav.is-open {
    padding: 20px 20px 24px;
  }

  .header__nav-link {
    padding: 0.875rem 0;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero__inner {
    padding: 48px 24px 1.5rem;
  }

  .hero__bg {
    background-position: 72% center;
  }

  .hero-title {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .hero__eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }

  .hero__subheading { font-size: 16px; }

  .hero__services {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero__service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__service-item:last-child { border-bottom: none; }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 32px;
  }

  .btn--primary,
  .btn--ghost { width: 100%; }

  .hero__stats {
    margin: 2rem 24px 1rem;
    flex-direction: column;
    align-items: center;
  }

  .hero__stat { width: 100%; max-width: 320px; }

  .hero__trust {
    margin: 0 24px;
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .hero__trust-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
  }

  .hero__trust-item:first-child { border-top: none; }

  .stats-strip__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-strip {
    padding: 18px 0;
  }

  .stats-strip__inner,
  .stats-strip__grid {
    min-height: auto;
  }

  .stats-strip__item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
  }

  .stats-strip__item:last-child {
    border-bottom: none;
  }

  .trusted-section {
    padding: 24px 0 28px;
  }

  .trusted-section__heading {
    letter-spacing: 0.04em;
    padding-inline: 8px;
  }

  .marquee-list {
    gap: 36px;
    padding-right: 36px;
  }

  .marquee-item {
    font-size: 14px;
  }

  .ba-section {
    padding: 60px 0;
  }

  .ba-section__inner {
    gap: 40px;
    padding-inline: 24px;
  }

  .ba-card {
    height: 280px;
  }

  .ba-section__heading {
    font-size: clamp(36px, 9vw, 42px);
    letter-spacing: -1px;
  }

  .ba-section__lead {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .ba-section__list-text {
    font-size: 15px;
    padding-top: 6px;
  }

  .ba-section__list-icon {
    width: 38px;
    height: 38px;
  }

  .ba-section__tagline {
    font-size: 18px;
    margin-top: 28px;
  }

  .ba-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ba-section__actions .btn--primary,
  .ba-section__actions .btn--ghost {
    width: 100%;
  }

  .ba-badge {
    font-size: 11px;
    padding: 7px 10px;
  }

  .ba-badge--top {
    top: 12px;
    right: 12px;
  }

  .ba-badge--bottom {
    bottom: 12px;
    left: 12px;
  }

  .ba-label {
    top: 12px;
    left: 12px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .quality-slider-section {
    padding: 60px 0 70px;
  }

  .quality-slider-section__inner {
    padding-inline: 20px;
  }

  .quality-slider-tabs {
    gap: 10px;
    margin-top: 28px;
  }

  .quality-slider-tab {
    padding: 11px 18px;
    font-size: 13px;
  }

  .comparison-slider {
    height: 320px;
    margin-top: 32px;
    border-radius: 14px;
  }

  .slider-handle {
    width: 42px;
    height: 42px;
  }

  .slider-handle svg {
    width: 18px;
    height: 18px;
  }

  .comparison-label {
    top: 14px;
    padding: 7px 12px;
    font-size: 11px;
  }

  .comparison-label--before {
    left: 14px;
  }

  .comparison-label--after {
    right: 14px;
  }

  .why-glomark-section {
    padding: 64px 0;
  }

  .why-glomark-section__inner {
    padding-inline: 22px;
  }

  .why-glomark-section__heading {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: -0.6px;
  }

  .why-glomark-section__subtitle {
    font-size: 16px;
  }

  .why-glomark-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .why-glomark-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .why-glomark-card__metric {
    top: 24px;
    right: 24px;
  }

  .why-glomark-card__title {
    padding-right: 64px;
    font-size: 18px;
  }

  .why-glomark-card__metric-value {
    font-size: 22px;
  }

  .why-glomark-section__cta {
    margin-top: 40px;
  }

  .why-glomark-section__cta-text {
    font-size: 16px;
    padding-inline: 8px;
  }

  .why-glomark-section__cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .reviews-section {
    padding: 64px 0;
  }

  .reviews-section__inner {
    padding-inline: 22px;
  }

  .reviews-section__heading {
    font-size: clamp(28px, 8vw, 38px);
  }

  .reviews-section__subtitle {
    font-size: 16px;
  }

  .reviews-section__badge {
    margin-top: 22px;
    padding: 16px 20px;
    width: 100%;
    max-width: 360px;
  }

  .reviews-carousel {
    margin-top: 36px;
    padding-inline: 0;
  }

  .reviews-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .reviews-carousel__btn--prev {
    left: -4px;
  }

  .reviews-carousel__btn--next {
    right: -4px;
  }

  .review-card {
    min-height: auto;
    padding: 24px;
  }

  .pricing-section {
    padding: 64px 0;
  }

  .pricing-section__inner {
    padding-inline: 22px;
  }

  .pricing-section__heading {
    font-size: clamp(28px, 8vw, 38px);
  }

  .pricing-section__subtitle {
    font-size: 16px;
  }

  .pricing-section__badge {
    font-size: 13px;
    padding: 9px 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .pricing-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .pricing-card__title {
    font-size: 20px;
  }

  .pricing-card--featured .pricing-card__title {
    padding-right: 100px;
  }

  .pricing-card__price {
    font-size: 28px;
  }

  .pricing-card__price--text {
    font-size: 24px;
  }

  .footer-container {
    padding: 50px 22px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-col--form {
    grid-column: auto;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom__nav {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .animate-fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ================= ABOUT PAGE ================= */
.about-page {
  overflow-x: hidden;
}

.about-page .about-container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 70px;
}

.about-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-page .about-highlight {
  color: var(--cyan);
}

.about-page .about-highlight--dark {
  color: var(--teal);
}

.about-page .about-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.about-page .about-section-heading {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #101828;
  margin-bottom: 20px;
}

.about-page .about-section-heading--center {
  text-align: center;
}

.about-page .about-section-subtitle {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
}

.about-page .about-section-subtitle--light {
  color: var(--text-soft);
}

.about-page .about-section-intro {
  margin-bottom: 48px;
}

.about-page .about-section-intro--center {
  text-align: center;
}

.about-page .about-section-intro--center .about-section-subtitle {
  margin-inline: auto;
}

.about-page .about-section-intro--light .about-section-heading {
  color: var(--white);
}

.about-page .about-body-text {
  font-size: 17px;
  line-height: 1.75;
  color: #667085;
  margin-bottom: 18px;
}

.about-page .about-body-text:last-child {
  margin-bottom: 0;
}

/* About Hero */
.about-page .about-hero {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.14), transparent 35%),
    linear-gradient(135deg, #03131A 0%, #041C24 55%, #06242E 100%);
  color: var(--white);
}

.about-page .about-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 80%, rgba(0, 167, 181, 0.08), transparent 40%);
}

.about-page .about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-block: 110px;
}

.about-page .about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.about-page .about-breadcrumb a {
  color: var(--text-soft);
  transition: color var(--ease);
}

.about-page .about-breadcrumb a:hover {
  color: var(--cyan);
}

.about-page .about-breadcrumb span[aria-current] {
  color: var(--cyan);
}

.about-page .about-hero__heading {
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.about-page .about-hero__subtitle {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.about-page .about-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-page .about-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-page .about-stat-pill__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.1;
}

.about-page .about-stat-pill__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.about-page .about-partner-card {
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.about-page .about-partner-card__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18, 199, 192, 0.14);
  border: 1px solid rgba(18, 199, 192, 0.28);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-page .about-partner-card__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.about-page .about-partner-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.about-page .about-partner-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-page .about-partner-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.about-page .about-partner-card__list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--cyan);
}

/* Story */
.about-page .about-story {
  background: #ffffff;
  padding: 96px 0;
}

.about-page .about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-page .about-mini-card {
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-page .about-mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.about-page .about-story__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-page .about-mini-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(18, 199, 192, 0.10);
  color: var(--teal);
}

.about-page .about-mini-card__icon svg {
  width: 22px;
  height: 22px;
}

.about-page .about-mini-card__title {
  font-size: 17px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 8px;
}

.about-page .about-mini-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #667085;
}

/* Mission */
.about-page .about-mission {
  background: #F8FAFC;
  padding: 96px 0;
}

.about-page .about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-page .about-mv-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-page .about-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.about-page .about-mv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.about-page .about-mv-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(18, 199, 192, 0.10);
  color: var(--teal);
}

.about-page .about-mv-card__icon svg {
  width: 24px;
  height: 24px;
}

.about-page .about-mv-card__title {
  font-size: 22px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 14px;
}

.about-page .about-mv-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: #667085;
}

.about-page .about-principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin-top: 40px;
}

.about-page .about-principle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #101828;
}

.about-page .about-principle__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(18, 199, 192, 0.45);
}

/* Expertise */
.about-page .about-expertise {
  background: #03131A;
  padding: 96px 0;
}

.about-page .about-expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-page .about-service-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-page .about-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 199, 192, 0.38);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.about-page .about-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: rgba(18, 199, 192, 0.12);
  color: var(--cyan);
}

.about-page .about-service-card__icon svg {
  width: 22px;
  height: 22px;
}

.about-page .about-service-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.about-page .about-service-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* Process */
.about-page .about-process {
  background: #ffffff;
  padding: 96px 0;
}

.about-page .about-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-page .about-process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 199, 192, 0.15), rgba(18, 199, 192, 0.45), rgba(18, 199, 192, 0.15));
  z-index: 0;
}

.about-page .about-step {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-page .about-step:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.about-page .about-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.32);
}

.about-page .about-step__title {
  font-size: 17px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 10px;
}

.about-page .about-step__text {
  font-size: 14px;
  line-height: 1.65;
  color: #667085;
}

/* Values */
.about-page .about-values {
  background: #F8FAFC;
  padding: 96px 0;
}

.about-page .about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-page .about-value-card {
  padding: 28px 26px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.about-page .about-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.08), transparent 35%),
    #ffffff;
}

.about-page .about-value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: rgba(18, 199, 192, 0.10);
  color: var(--teal);
}

.about-page .about-value-card__icon svg {
  width: 22px;
  height: 22px;
}

.about-page .about-value-card__title {
  font-size: 18px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 10px;
}

.about-page .about-value-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: #667085;
}

/* CTA */
.about-page .about-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, #03131A 0%, #041C24 60%, #06242E 100%);
  text-align: center;
}

.about-page .about-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(18, 199, 192, 0.12), transparent 45%);
}

.about-page .about-cta__inner {
  position: relative;
  z-index: 1;
}

.about-page .about-cta__heading {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}

.about-page .about-cta__subtitle {
  max-width: 620px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.about-page .about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.about-page .about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow var(--ease), border-color var(--ease);
}

.about-page .about-btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 167, 181, 0.35);
}

.about-page .about-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(18, 199, 192, 0.45);
}

.about-page .about-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-page .about-btn--ghost:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .about-page .about-container {
    padding-inline: 40px;
  }

  .about-page .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 80px;
  }

  .about-page .about-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page .about-mission__grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-expertise__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-process__steps::before {
    display: none;
  }

  .about-page .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-story,
  .about-page .about-mission,
  .about-page .about-expertise,
  .about-page .about-process,
  .about-page .about-values,
  .about-page .about-cta {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .about-page .about-container {
    padding-inline: 22px;
  }

  .about-page .about-hero__inner {
    padding-block: 60px;
  }

  .about-page .about-hero__heading {
    font-size: clamp(38px, 9vw, 44px);
  }

  .about-page .about-partner-card__list {
    grid-template-columns: 1fr;
  }

  .about-page .about-story__cards {
    grid-template-columns: 1fr;
  }

  .about-page .about-expertise__grid,
  .about-page .about-process__steps,
  .about-page .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-page .about-btn {
    width: 100%;
    min-width: 0;
  }

  .about-page .about-story,
  .about-page .about-mission,
  .about-page .about-expertise,
  .about-page .about-process,
  .about-page .about-values,
  .about-page .about-cta {
    padding: 60px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-mini-card:hover,
  .about-page .about-mv-card:hover,
  .about-page .about-service-card:hover,
  .about-page .about-step:hover,
  .about-page .about-value-card:hover,
  .about-page .about-btn--primary:hover,
  .about-page .about-btn--ghost:hover {
    transform: none;
  }
}

/* ================= PRICING PAGE ================= */
.pricing-page {
  overflow-x: hidden;
}

.pricing-page .pricing-container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 70px;
}

.pricing-page .visually-hidden-pricing {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-page .pricing-highlight {
  color: var(--cyan);
}

.pricing-page .pricing-highlight--dark {
  color: var(--teal);
}

.pricing-page .pricing-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.pricing-page .pricing-section-heading {
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #101828;
  margin-bottom: 14px;
}

.pricing-page .pricing-section-heading--center {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-page .pricing-section-subtitle {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
}

.pricing-page .pricing-section-intro {
  margin-bottom: 40px;
}

.pricing-page .pricing-section-intro--center {
  text-align: center;
}

.pricing-page .pricing-section-intro--center .pricing-section-subtitle {
  margin-inline: auto;
}

/* Hero */
.pricing-page .pricing-hero {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.16), transparent 35%),
    linear-gradient(135deg, #03131A 0%, #041C24 58%, #06242E 100%);
  color: var(--white);
}

.pricing-page .pricing-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pricing-page .pricing-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-inline: auto;
  padding-block: 110px;
  text-align: center;
}

.pricing-page .pricing-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-page .pricing-breadcrumb a {
  color: var(--text-soft);
  transition: color var(--ease);
}

.pricing-page .pricing-breadcrumb a:hover {
  color: var(--cyan);
}

.pricing-page .pricing-breadcrumb span[aria-current] {
  color: var(--cyan);
}

.pricing-page .pricing-hero__heading {
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pricing-page .pricing-hero__subtitle {
  max-width: 780px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.pricing-page .pricing-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pricing-page .pricing-badge {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

/* Type cards */
.pricing-page .pricing-types {
  background: #ffffff;
  padding: 80px 0;
}

.pricing-page .pricing-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-page .pricing-type-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-page .pricing-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.pricing-page .pricing-type-card--featured {
  border-color: var(--cyan);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(18, 199, 192, 0.18);
}

.pricing-page .pricing-type-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(18, 199, 192, 0.10);
  color: var(--teal);
}

.pricing-page .pricing-type-card__icon svg {
  width: 24px;
  height: 24px;
}

.pricing-page .pricing-type-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.pricing-page .pricing-type-card__title {
  font-size: 24px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 12px;
}

.pricing-page .pricing-type-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: #667085;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Buttons */
.pricing-page .pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow var(--ease), border-color var(--ease);
}

.pricing-page .pricing-btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.28);
}

.pricing-page .pricing-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(18, 199, 192, 0.4);
}

.pricing-page .pricing-btn--outline {
  background: transparent;
  border: 1px solid rgba(16, 24, 40, 0.14);
  color: #101828;
}

.pricing-page .pricing-btn--outline:hover {
  border-color: var(--cyan);
  color: var(--teal);
  transform: translateY(-2px);
}

.pricing-page .pricing-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.pricing-page .pricing-btn--ghost:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.pricing-page .pricing-btn--full {
  width: 100%;
}

/* Table */
.pricing-page .pricing-table-section {
  background: #F8FAFC;
  padding: 80px 0;
}

.pricing-page .pricing-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  -webkit-overflow-scrolling: touch;
}

.pricing-page .pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-page .pricing-table thead {
  background: linear-gradient(135deg, #03131A 0%, #041C24 100%);
}

.pricing-page .pricing-table th {
  padding: 18px 20px;
  text-align: left;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  vertical-align: bottom;
}

.pricing-page .pricing-table__col-title {
  display: block;
  font-size: 15px;
}

.pricing-page .pricing-table__col-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-page .pricing-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: #667085;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  vertical-align: middle;
}

.pricing-page .pricing-table tbody tr {
  transition: background 0.2s ease;
}

.pricing-page .pricing-table tbody tr:hover {
  background: rgba(18, 199, 192, 0.06);
}

.pricing-page .pricing-table td:first-child {
  font-weight: 700;
  color: #101828;
  min-width: 240px;
}

.pricing-page .pricing-table__price {
  font-weight: 800;
  color: var(--teal) !important;
  white-space: nowrap;
}

.pricing-page .pricing-pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(18, 199, 192, 0.10);
  color: #007C89;
  border: 1px solid rgba(18, 199, 192, 0.22);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}

.pricing-page .pricing-pill:hover {
  background: rgba(18, 199, 192, 0.18);
  color: var(--teal);
}

.pricing-page .pricing-table-note {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
  text-align: center;
}

/* Volume CTA */
.pricing-page .pricing-volume-cta {
  background: linear-gradient(135deg, #03131A 0%, #041C24 60%, #06242E 100%);
  padding: 96px 0;
  color: var(--white);
}

.pricing-page .pricing-volume-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pricing-page .pricing-volume-cta__heading {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.pricing-page .pricing-volume-cta__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.pricing-page .pricing-volume-cta__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-page .pricing-volume-cta__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-soft);
}

.pricing-page .pricing-volume-cta__list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--cyan);
}

.pricing-page .pricing-quote-card {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.pricing-page .pricing-quote-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.pricing-page .pricing-quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-page .pricing-quote-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

.pricing-page .pricing-quote-form__field input,
.pricing-page .pricing-quote-form__field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
}

.pricing-page .pricing-quote-form__field input::placeholder,
.pricing-page .pricing-quote-form__field textarea::placeholder {
  color: var(--text-muted);
}

.pricing-page .pricing-quote-form__field input:focus,
.pricing-page .pricing-quote-form__field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 199, 192, 0.18);
}

.pricing-page .pricing-quote-form__field textarea {
  min-height: 100px;
  resize: vertical;
}

.pricing-page .pricing-quote-form__success {
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(18, 199, 192, 0.12);
  border: 1px solid rgba(18, 199, 192, 0.28);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* Process */
.pricing-page .pricing-process {
  background: #ffffff;
  padding: 96px 0;
}

.pricing-page .pricing-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-page .pricing-process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 199, 192, 0.15), rgba(18, 199, 192, 0.45), rgba(18, 199, 192, 0.15));
}

.pricing-page .pricing-step {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-page .pricing-step:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.pricing-page .pricing-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.pricing-page .pricing-step__title {
  font-size: 17px;
  font-weight: 800;
  color: #101828;
  margin-bottom: 10px;
}

.pricing-page .pricing-step__text {
  font-size: 14px;
  line-height: 1.65;
  color: #667085;
}

/* FAQ */
.pricing-page .pricing-faq {
  background: #F8FAFC;
  padding: 96px 0;
}

.pricing-page .pricing-faq__list {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-page .pricing-faq__item {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.10);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.pricing-page .pricing-faq__item.is-open {
  border-color: rgba(18, 199, 192, 0.35);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.pricing-page .pricing-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  color: #101828;
  cursor: pointer;
}

.pricing-page .pricing-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.pricing-page .pricing-faq__icon::before,
.pricing-page .pricing-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--cyan);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

.pricing-page .pricing-faq__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.pricing-page .pricing-faq__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.pricing-page .pricing-faq__item.is-open .pricing-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.pricing-page .pricing-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pricing-page .pricing-faq__answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #667085;
}

/* Final CTA */
.pricing-page .pricing-final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, #03131A 0%, #041C24 60%, #06242E 100%);
  text-align: center;
}

.pricing-page .pricing-final-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(18, 199, 192, 0.12), transparent 45%);
  pointer-events: none;
}

.pricing-page .pricing-final-cta__inner {
  position: relative;
  z-index: 1;
}

.pricing-page .pricing-final-cta__heading {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-page .pricing-final-cta__subtitle {
  max-width: 620px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.pricing-page .pricing-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 1100px) {
  .pricing-page .pricing-container {
    padding-inline: 40px;
  }

  .pricing-page .pricing-types__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .pricing-page .pricing-volume-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-page .pricing-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-page .pricing-process__steps::before {
    display: none;
  }

  .pricing-page .pricing-hero__inner {
    padding-block: 80px;
  }

  .pricing-page .pricing-types,
  .pricing-page .pricing-table-section,
  .pricing-page .pricing-volume-cta,
  .pricing-page .pricing-process,
  .pricing-page .pricing-faq,
  .pricing-page .pricing-final-cta {
    padding-block: 80px;
  }
}

@media (max-width: 768px) {
  .pricing-page .pricing-container {
    padding-inline: 22px;
  }

  .pricing-page .pricing-hero__inner {
    padding-block: 60px;
  }

  .pricing-page .pricing-hero__heading {
    font-size: clamp(36px, 9vw, 42px);
  }

  .pricing-page .pricing-process__steps {
    grid-template-columns: 1fr;
  }

  .pricing-page .pricing-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-page .pricing-btn {
    width: 100%;
  }

  .pricing-page .pricing-types,
  .pricing-page .pricing-table-section,
  .pricing-page .pricing-volume-cta,
  .pricing-page .pricing-process,
  .pricing-page .pricing-faq,
  .pricing-page .pricing-final-cta {
    padding-block: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-page .pricing-type-card:hover,
  .pricing-page .pricing-step:hover,
  .pricing-page .pricing-btn--primary:hover,
  .pricing-page .pricing-btn--outline:hover,
  .pricing-page .pricing-btn--ghost:hover {
    transform: none;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-page {
  overflow-x: hidden;
}

.contact-page .contact-container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 70px;
}

.contact-page .contact-highlight {
  color: #12C7C0;
}

.contact-page .contact-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #12C7C0;
  margin-bottom: 18px;
}

.contact-page .contact-section-heading {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #101828;
  margin-bottom: 16px;
}

.contact-page .contact-section-heading--center {
  text-align: center;
  margin-bottom: 48px;
}

.contact-page .contact-section-subtitle {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
}

.contact-page .contact-section-intro {
  margin-bottom: 48px;
}

.contact-page .contact-section-intro--center {
  text-align: center;
}

.contact-page .contact-section-intro--center .contact-section-subtitle {
  margin-inline: auto;
}

/* Contact Hero */
.contact-page .contact-hero {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.16), transparent 35%),
    linear-gradient(135deg, #03131A 0%, #041C24 58%, #06242E 100%);
  color: #FFFFFF;
}

.contact-page .contact-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 85%, rgba(0, 167, 181, 0.08), transparent 42%);
}

.contact-page .contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin-inline: auto;
  padding: 110px 70px;
  text-align: center;
}

.contact-page .contact-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #9CAFB7;
  margin-bottom: 28px;
}

.contact-page .contact-breadcrumb a {
  color: #D7E2E5;
  transition: color 0.2s;
}

.contact-page .contact-breadcrumb a:hover {
  color: #12C7C0;
}

.contact-page .contact-hero__heading {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.contact-page .contact-hero__subtitle {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.75;
  color: #D7E2E5;
}

.contact-page .contact-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-page .contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Contact Main */
.contact-page .contact-main {
  background: #F8FAFC;
  padding: 90px 0;
}

.contact-page .contact-main__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  align-items: start;
}

/* Form Card */
.contact-page .contact-form-card {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
}

.contact-page .contact-form-card__glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 199, 192, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-page .contact-form-card__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #101828;
  margin-bottom: 10px;
}

.contact-page .contact-form-card__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: #667085;
  margin-bottom: 28px;
}

.contact-page .contact-form {
  position: relative;
  z-index: 1;
}

.contact-page .contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-page .contact-form__field {
  margin-bottom: 18px;
}

.contact-page .contact-form__field--consent {
  margin-bottom: 24px;
}

.contact-page .contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 8px;
}

.contact-page .contact-form__input,
.contact-page .contact-form__select,
.contact-page .contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: #101828;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.10);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-page .contact-form__input:focus,
.contact-page .contact-form__select:focus,
.contact-page .contact-form__textarea:focus {
  outline: none;
  border-color: #00A7B5;
  box-shadow: 0 0 0 3px rgba(0, 167, 181, 0.12);
}

.contact-page .contact-form__input.is-invalid,
.contact-page .contact-form__select.is-invalid,
.contact-page .contact-form__textarea.is-invalid {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.contact-page .contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-page .contact-form__error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  font-size: 13px;
  color: #E53935;
}

.contact-page .contact-form__hint {
  margin-top: 8px;
  font-size: 13px;
  color: #667085;
  line-height: 1.5;
}

/* Service checkboxes */
.contact-page .contact-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  background: #F8FAFC;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.contact-page .contact-services.is-invalid {
  border-color: #E53935;
}

.contact-page .contact-service-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #101828;
  cursor: pointer;
  line-height: 1.4;
}

.contact-page .contact-service-check input {
  margin-top: 3px;
  accent-color: #00A7B5;
  flex-shrink: 0;
}

/* File upload */
.contact-page .contact-file-upload {
  position: relative;
}

.contact-page .contact-file-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.contact-page .contact-file-upload__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #667085;
  background: #F8FAFC;
  border: 2px dashed rgba(16, 24, 40, 0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.contact-page .contact-file-upload__label svg {
  width: 28px;
  height: 28px;
  color: #00A7B5;
}

.contact-page .contact-file-upload__label:hover {
  border-color: #00A7B5;
  background: rgba(0, 167, 181, 0.04);
}

.contact-page .contact-file-upload__input:focus + .contact-file-upload__label {
  border-color: #00A7B5;
  box-shadow: 0 0 0 3px rgba(0, 167, 181, 0.12);
}

/* Consent */
.contact-page .contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #667085;
  cursor: pointer;
  line-height: 1.5;
}

.contact-page .contact-consent input {
  margin-top: 3px;
  accent-color: #00A7B5;
  flex-shrink: 0;
}

.contact-page .contact-consent.is-invalid {
  color: #E53935;
}

/* Contact buttons */
.contact-page .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.contact-page .contact-btn svg {
  width: 18px;
  height: 18px;
}

.contact-page .contact-btn--primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #00A7B5 0%, #12C7C0 100%);
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.28);
}

.contact-page .contact-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 167, 181, 0.35);
}

.contact-page .contact-btn--outline {
  color: #00A7B5;
  background: transparent;
  border: 2px solid #00A7B5;
  margin-top: 12px;
}

.contact-page .contact-btn--outline:hover {
  background: rgba(0, 167, 181, 0.06);
}

.contact-page .contact-btn--ghost {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-page .contact-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-page .contact-btn--full {
  width: 100%;
}

.contact-page .contact-form__success {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 167, 181, 0.08);
  border: 1px solid rgba(0, 167, 181, 0.2);
  border-radius: 14px;
  text-align: center;
}

.contact-page .contact-form__success p {
  font-size: 15px;
  font-weight: 600;
  color: #041C24;
  margin-bottom: 0;
}

.contact-page .contact-form__email-line {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: #667085;
}

.contact-page .contact-form__email-line a {
  color: #00A7B5;
  font-weight: 600;
}

.contact-page .contact-form__email-line a:hover {
  text-decoration: underline;
}

/* Sidebar info cards */
.contact-page .contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page .contact-info-card {
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.contact-page .contact-info-card--dark {
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.12), transparent 55%),
    linear-gradient(160deg, #041C24 0%, #03131A 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  box-shadow: 0 20px 60px rgba(3, 19, 26, 0.25);
}

.contact-page .contact-info-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  color: inherit;
}

.contact-page .contact-info-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 18px;
}

.contact-page .contact-info-card--dark .contact-info-card__title {
  color: #FFFFFF;
}

.contact-page .contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page .contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.contact-page .contact-info-list a {
  color: #D7E2E5;
  transition: color 0.2s;
}

.contact-page .contact-info-list a:hover {
  color: #12C7C0;
}

.contact-page .contact-info-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(18, 199, 192, 0.12);
}

.contact-page .contact-info-list__icon svg {
  width: 20px;
  height: 20px;
  color: #12C7C0;
}

.contact-page .contact-info-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-page .contact-info-card__badges span {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #00A7B5;
  background: rgba(0, 167, 181, 0.08);
  border-radius: 999px;
}

.contact-page .contact-best-for {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page .contact-best-for li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #667085;
  line-height: 1.5;
}

.contact-page .contact-best-for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12C7C0;
}

/* Service inquiry cards */
.contact-page .contact-service-options {
  background: #FFFFFF;
  padding: 90px 0;
}

.contact-page .contact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-page .contact-service-card {
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.contact-page .contact-service-card:hover {
  transform: translateY(-4px);
  border-color: #00A7B5;
  box-shadow: 0 16px 48px rgba(0, 167, 181, 0.12);
}

.contact-page .contact-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(0, 167, 181, 0.08);
}

.contact-page .contact-service-card__icon svg {
  width: 26px;
  height: 26px;
  color: #00A7B5;
}

.contact-page .contact-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 10px;
}

.contact-page .contact-service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #667085;
}

/* Process */
.contact-page .contact-process {
  background: #F8FAFC;
  padding: 90px 0;
}

.contact-page .contact-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-page .contact-process__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #00A7B5, #12C7C0);
  z-index: 0;
}

.contact-page .contact-step {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.contact-page .contact-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, #00A7B5, #12C7C0);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.25);
}

.contact-page .contact-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 10px;
}

.contact-page .contact-step p {
  font-size: 14px;
  line-height: 1.65;
  color: #667085;
}

/* FAQ */
.contact-page .contact-faq {
  background: #FFFFFF;
  padding: 90px 0;
}

.contact-page .contact-faq__list {
  max-width: 860px;
  margin-inline: auto;
}

.contact-page .contact-faq__item {
  border-bottom: 1px solid rgba(16, 24, 40, 0.10);
}

.contact-page .contact-faq__item:first-child {
  border-top: 1px solid rgba(16, 24, 40, 0.10);
}

.contact-page .contact-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: #101828;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.contact-page .contact-faq__question:hover {
  color: #00A7B5;
}

.contact-page .contact-faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-page .contact-faq__icon::before,
.contact-page .contact-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #00A7B5;
  transition: transform 0.3s;
}

.contact-page .contact-faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.contact-page .contact-faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.contact-page .contact-faq__item.is-open .contact-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.contact-page .contact-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.contact-page .contact-faq__answer p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: #667085;
}

/* Final CTA */
.contact-page .contact-final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.16), transparent 35%),
    linear-gradient(135deg, #03131A 0%, #041C24 58%, #06242E 100%);
  padding: 90px 0;
  color: #FFFFFF;
}

.contact-page .contact-final-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 50%, rgba(0, 167, 181, 0.1), transparent 45%);
}

.contact-page .contact-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.contact-page .contact-final-cta__heading {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-page .contact-final-cta__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #D7E2E5;
  margin-bottom: 32px;
}

.contact-page .contact-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Contact page responsive */
@media (max-width: 1100px) {
  .contact-page .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page .contact-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page .contact-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page .contact-process__steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-page .contact-container {
    padding-inline: 22px;
  }

  .contact-page .contact-hero__inner {
    padding: 60px 22px;
  }

  .contact-page .contact-hero__subtitle {
    margin-inline: auto;
  }

  .contact-page .contact-main,
  .contact-page .contact-service-options,
  .contact-page .contact-process,
  .contact-page .contact-faq,
  .contact-page .contact-final-cta {
    padding-block: 60px;
  }

  .contact-page .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-services {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-service-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-process__steps {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-page .contact-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page .contact-service-card:hover,
  .contact-page .contact-btn--primary:hover,
  .contact-page .contact-btn--ghost:hover {
    transform: none;
  }
}

/* ================= SERVICES PAGE ================= */

.services-page {
  overflow-x: hidden;
}

.services-page .services-container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 70px;
}

.services-page .services-highlight {
  color: #12C7C0;
}

.services-page .services-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #12C7C0;
  margin-bottom: 18px;
}

.services-page .services-section-heading {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #101828;
  margin-bottom: 16px;
}

.services-page .services-section-heading--center {
  text-align: center;
  margin-bottom: 48px;
}

.services-page .services-section-subtitle {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
}

.services-page .services-section-intro {
  margin-bottom: 48px;
}

.services-page .services-section-intro--center {
  text-align: center;
}

.services-page .services-section-intro--center .services-section-subtitle {
  margin-inline: auto;
}

.services-page .services-section-intro--light .services-section-heading {
  color: #FFFFFF;
}

.services-page .services-section-intro--light .services-section-subtitle {
  color: #D7E2E5;
}

/* Services buttons */
.services-page .services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.services-page .services-btn--primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #00A7B5 0%, #12C7C0 100%);
  box-shadow: 0 8px 24px rgba(0, 167, 181, 0.28);
}

.services-page .services-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 167, 181, 0.35);
}

.services-page .services-btn--ghost {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.services-page .services-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.services-page .services-btn--outline-light {
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: auto;
}

.services-page .services-btn--outline-light:hover {
  background: rgba(18, 199, 192, 0.12);
  border-color: #12C7C0;
}

/* Hero */
.services-page .services-hero {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(135deg, #03131A 0%, #041C24 58%, #06242E 100%);
  color: #FFFFFF;
}

.services-page .services-hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('image/heroimage.png') right center / cover no-repeat;
  opacity: 0.12;
}

.services-page .services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #03131A 0%, rgba(3, 19, 26, 0.92) 55%, rgba(3, 19, 26, 0.75) 100%);
}

.services-page .services-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(18, 199, 192, 0.16), transparent 35%);
}

.services-page .services-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 115px;
}

.services-page .services-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #9CAFB7;
  margin-bottom: 28px;
}

.services-page .services-breadcrumb a {
  color: #D7E2E5;
  transition: color 0.2s;
}

.services-page .services-breadcrumb a:hover {
  color: #12C7C0;
}

.services-page .services-hero__heading {
  max-width: 920px;
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.services-page .services-hero__subtitle {
  max-width: 780px;
  font-size: 17px;
  line-height: 1.75;
  color: #D7E2E5;
  margin-bottom: 28px;
}

.services-page .services-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.services-page .services-badge {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.services-page .services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Overview nav cards */
.services-page .services-overview {
  background: #F8FAFC;
  padding: 90px 0;
}

.services-page .services-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-page .services-nav-card {
  display: block;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.services-page .services-nav-card:hover {
  transform: translateY(-6px);
  border-color: #00A7B5;
  box-shadow: 0 16px 48px rgba(0, 167, 181, 0.14);
}

.services-page .services-nav-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(0, 167, 181, 0.08);
}

.services-page .services-nav-card__icon svg {
  width: 24px;
  height: 24px;
  color: #00A7B5;
}

.services-page .services-nav-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
  line-height: 1.35;
}

.services-page .services-nav-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #667085;
}

/* Detail grid */
.services-page .services-detail-section {
  background: #FFFFFF;
  padding: 90px 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.services-page .services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-page .services-detail-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.services-page .services-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #00A7B5, #12C7C0);
  opacity: 0;
  transition: opacity 0.3s;
}

.services-page .services-detail-card:hover {
  transform: translateY(-8px);
  border-color: #00A7B5;
  box-shadow: 0 24px 64px rgba(0, 167, 181, 0.12);
}

.services-page .services-detail-card:hover::before {
  opacity: 1;
}

.services-page .services-detail-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(0, 167, 181, 0.08);
}

.services-page .services-detail-card__icon svg {
  width: 26px;
  height: 26px;
  color: #00A7B5;
}

.services-page .services-detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
  line-height: 1.3;
}

.services-page .services-detail-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 14px;
}

.services-page .services-detail-card__best {
  font-size: 14px;
  line-height: 1.6;
  color: #101828;
  margin-bottom: 16px;
}

.services-page .services-detail-card__best strong {
  color: #00A7B5;
}

.services-page .services-detail-card__features {
  list-style: none;
  margin-bottom: 20px;
}

.services-page .services-detail-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
  margin-bottom: 8px;
}

.services-page .services-detail-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12C7C0;
}

.services-page .services-detail-card__link {
  font-size: 14px;
  font-weight: 700;
  color: #00A7B5;
  text-decoration: none;
  transition: color 0.2s;
}

.services-page .services-detail-card__link:hover {
  color: #12C7C0;
}

/* Showcase */
.services-page .services-showcase {
  background: #03131A;
  padding: 90px 0;
  color: #FFFFFF;
}

.services-page .services-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.services-page .services-showcase__heading {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.services-page .services-showcase__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #D7E2E5;
  margin-bottom: 28px;
}

.services-page .services-showcase__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.services-page .services-showcase__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-page .services-showcase__stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #12C7C0;
  line-height: 1;
}

.services-page .services-showcase__stat-label {
  font-size: 13px;
  color: #9CAFB7;
}

.services-page .services-ba-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.services-page .services-ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.services-page .services-ba-before {
  opacity: 1;
  z-index: 1;
}

.services-page .services-ba-after {
  opacity: 0;
  z-index: 2;
}

.services-page .services-ba-card:hover .services-ba-after,
.services-page .services-ba-card.is-active .services-ba-after {
  opacity: 1;
}

.services-page .services-ba-card:hover .services-ba-before,
.services-page .services-ba-card.is-active .services-ba-before {
  opacity: 0;
}

.services-page .services-ba-card:hover .services-ba-img,
.services-page .services-ba-card.is-active .services-ba-img {
  transform: scale(1.03);
}

.services-page .services-ba-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(3, 19, 26, 0.72);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.services-page .services-ba-label__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12C7C0;
}

.services-page .services-ba-label::after {
  content: "Before";
}

.services-page .services-ba-card:hover .services-ba-label::after,
.services-page .services-ba-card.is-active .services-ba-label::after {
  content: "After";
}

/* Workflow */
.services-page .services-workflow {
  background: #F8FAFC;
  padding: 90px 0;
}

.services-page .services-workflow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.services-page .services-workflow__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #00A7B5, #12C7C0);
  z-index: 0;
}

.services-page .services-workflow-step {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.services-page .services-workflow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, #00A7B5, #12C7C0);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 167, 181, 0.25);
}

.services-page .services-workflow-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.services-page .services-workflow-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #667085;
}

/* Audience */
.services-page .services-audience {
  background: #FFFFFF;
  padding: 90px 0;
}

.services-page .services-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-page .services-audience-card {
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.services-page .services-audience-card:hover {
  transform: translateY(-4px);
  border-color: #00A7B5;
  box-shadow: 0 16px 48px rgba(0, 167, 181, 0.1);
}

.services-page .services-audience-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(0, 167, 181, 0.08);
}

.services-page .services-audience-card__icon svg {
  width: 24px;
  height: 24px;
  color: #00A7B5;
}

.services-page .services-audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 10px;
}

.services-page .services-audience-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #667085;
}

/* Packages CTA */
.services-page .services-packages-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.16), transparent 35%),
    linear-gradient(135deg, #03131A 0%, #041C24 58%, #06242E 100%);
  padding: 90px 0;
  color: #FFFFFF;
}

.services-page .services-packages-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 80%, rgba(0, 167, 181, 0.08), transparent 42%);
}

.services-page .services-packages-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-page .services-package-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.services-page .services-package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 199, 192, 0.5);
  box-shadow: 0 20px 60px rgba(0, 167, 181, 0.15);
}

.services-page .services-package-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(18, 199, 192, 0.12);
}

.services-page .services-package-card__icon svg {
  width: 26px;
  height: 26px;
  color: #12C7C0;
}

.services-page .services-package-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-page .services-package-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.services-page .services-package-card li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #D7E2E5;
  margin-bottom: 8px;
}

.services-page .services-package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12C7C0;
}

/* FAQ */
.services-page .services-faq {
  background: #F8FAFC;
  padding: 90px 0;
}

.services-page .services-faq__list {
  max-width: 860px;
  margin-inline: auto;
}

.services-page .services-faq__item {
  border-bottom: 1px solid rgba(16, 24, 40, 0.10);
}

.services-page .services-faq__item:first-child {
  border-top: 1px solid rgba(16, 24, 40, 0.10);
}

.services-page .services-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: #101828;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.services-page .services-faq__question:hover {
  color: #00A7B5;
}

.services-page .services-faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.services-page .services-faq__icon::before,
.services-page .services-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #00A7B5;
  transition: transform 0.3s, opacity 0.3s;
}

.services-page .services-faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.services-page .services-faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.services-page .services-faq__item.is-open .services-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.services-page .services-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.services-page .services-faq__answer p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: #667085;
}

/* Final CTA */
.services-page .services-final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(18, 199, 192, 0.16), transparent 35%),
    linear-gradient(135deg, #03131A 0%, #041C24 58%, #06242E 100%);
  padding: 90px 0;
  color: #FFFFFF;
}

.services-page .services-final-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 50%, rgba(0, 167, 181, 0.1), transparent 45%);
}

.services-page .services-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.services-page .services-final-cta__heading {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.services-page .services-final-cta__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #D7E2E5;
  margin-bottom: 32px;
}

.services-page .services-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Services responsive */
@media (max-width: 1100px) {
  .services-page .services-nav-grid,
  .services-page .services-detail-grid,
  .services-page .services-audience-grid,
  .services-page .services-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page .services-showcase__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-page .services-workflow__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-page .services-workflow__steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-page .services-container {
    padding-inline: 22px;
  }

  .services-page .services-hero__inner {
    padding-block: 60px;
  }

  .services-page .services-hero__heading {
    font-size: clamp(34px, 9vw, 42px);
  }

  .services-page .services-hero__actions,
  .services-page .services-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-page .services-btn {
    width: 100%;
  }

  .services-page .services-overview,
  .services-page .services-detail-section,
  .services-page .services-showcase,
  .services-page .services-workflow,
  .services-page .services-audience,
  .services-page .services-packages-cta,
  .services-page .services-faq,
  .services-page .services-final-cta {
    padding-block: 60px;
  }

  .services-page .services-nav-grid,
  .services-page .services-detail-grid,
  .services-page .services-audience-grid,
  .services-page .services-packages-grid,
  .services-page .services-workflow__steps {
    grid-template-columns: 1fr;
  }

  .services-page .services-ba-card {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-page .services-nav-card:hover,
  .services-page .services-detail-card:hover,
  .services-page .services-audience-card:hover,
  .services-page .services-package-card:hover,
  .services-page .services-btn--primary:hover,
  .services-page .services-btn--ghost:hover {
    transform: none;
  }
}

/* ================= RESPONSIVE ENHANCEMENTS ================= */

.nav-overlay {
  display: none;
}

@media (max-width: 991px) {
  .about-page .about-container,
  .pricing-page .pricing-container,
  .contact-page .contact-container,
  .services-page .services-container {
    padding-inline: 40px;
  }

  .pricing-page .pricing-table-wrap {
    margin-inline: 0;
  }

  .about-page .about-hero__stats {
    flex-wrap: wrap;
  }

  .about-page .about-cta__actions {
    flex-wrap: wrap;
  }

  .pricing-page .pricing-volume-cta__inner {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-main__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .container,
  .footer-container {
    padding-inline: 22px;
  }

  .about-page .about-container,
  .pricing-page .pricing-container,
  .contact-page .contact-container,
  .services-page .services-container {
    padding-inline: 22px;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 46px);
    letter-spacing: -1px;
  }

  .hero__inner {
    padding: 48px 22px 1.5rem;
  }

  .hero__stats {
    margin: 2rem 22px 1rem;
  }

  .hero__trust {
    margin: 0 22px;
  }

  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stats-strip__item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 12px;
  }

  .stats-strip__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-strip__item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .ba-card {
    height: 320px;
  }

  .comparison-slider {
    height: 320px;
  }

  .footer-contact a,
  .footer-desc,
  .footer-links a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-page .contact-form__email-line,
  .contact-page .contact-form__email-line a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-page .contact-form-card {
    padding: 24px 20px;
  }

  .contact-page .contact-services {
    grid-template-columns: 1fr;
  }

  .pricing-page .pricing-final-cta__actions,
  .about-page .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-page .pricing-btn,
  .about-page .about-btn {
    width: 100%;
  }

  .services-page .services-workflow__steps {
    grid-template-columns: 1fr;
  }

  .services-page .services-nav-grid,
  .services-page .services-detail-grid,
  .services-page .services-audience-grid,
  .services-page .services-packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container,
  .footer-container,
  .about-page .about-container,
  .pricing-page .pricing-container,
  .contact-page .contact-container,
  .services-page .services-container {
    padding-inline: 20px;
  }

  .header__nav.is-open {
    padding: 16px 20px 20px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 42px);
  }

  .hero__services {
    grid-template-columns: 1fr;
  }

  .hero__service-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__service-item:last-child {
    border-bottom: none;
  }

  .stats-strip__grid {
    grid-template-columns: 1fr;
  }

  .stats-strip__item:nth-child(odd) {
    border-right: none !important;
  }

  .ba-card {
    height: 300px;
  }

  .comparison-slider {
    height: 300px;
  }

  .marquee-item {
    font-size: 13px;
  }
}

/* ================= HOME PRELOADER ================= */

.glomark-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(18, 199, 192, 0.18), transparent 38%),
    linear-gradient(135deg, #03131A 0%, #041C24 58%, #06242E 100%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.glomark-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(18, 199, 192, 0.12);
  filter: blur(60px);
  animation: glowPulse 2.2s ease-in-out infinite alternate;
}

.preloader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.preloader-frame {
  position: relative;
  padding: 34px 38px 30px;
  border-radius: 24px;
  animation: frameIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preloader-logo-wrap {
  width: 240px;
  max-width: 72vw;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  animation: logoReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.preloader-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.preloader-tagline {
  margin-top: 20px;
  color: #D7E2E5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  animation: taglineReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.preloader-line {
  width: 180px;
  height: 2px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #12C7C0, transparent);
  box-shadow: 0 0 18px rgba(18, 199, 192, 0.55);
  transform-origin: center;
  animation: lineDraw 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

.preloader-caption {
  margin-top: 14px;
  color: #9CAFB7;
  font-size: 13px;
  animation: captionReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.88s both;
}

.corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(18, 199, 192, 0.65);
  opacity: 0;
  animation: cornerReveal 0.8s ease 0.65s both;
}

.corner-tl {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner-tr {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

@keyframes glowPulse {
  from {
    transform: scale(0.85);
    opacity: 0.45;
  }
  to {
    transform: scale(1.12);
    opacity: 0.85;
  }
}

@keyframes frameIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes taglineReveal {
  from {
    opacity: 0;
    letter-spacing: 10px;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    letter-spacing: 5px;
    transform: translateY(0);
  }
}

@keyframes lineDraw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes captionReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cornerReveal {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .preloader-frame {
    padding: 28px 26px 26px;
  }

  .preloader-logo-wrap {
    width: 220px;
    padding: 14px 16px;
  }

  .preloader-tagline {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .preloader-line {
    width: 140px;
  }

  .preloader-caption {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glomark-preloader,
  .preloader-bg-glow,
  .preloader-frame,
  .preloader-logo-wrap,
  .preloader-tagline,
  .preloader-line,
  .preloader-caption,
  .corner {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ================= HOME MOBILE FIXES (767px) ================= */

@media (max-width: 767px) {
  .hero,
  .quality-slider-section,
  .stats-strip {
    max-width: 100%;
  }

  /* Hero service cards — horizontal scroll row */
  .hero__services {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    width: calc(100vw - 44px);
    max-width: none;
    height: auto;
    min-height: 64px;
    padding: 10px;
    margin-top: 24px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
  }

  .hero__services::-webkit-scrollbar {
    display: none;
  }

  .hero__service-item {
    flex: 0 0 190px;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    scroll-snap-align: start;
    border-right: 0 !important;
    border-bottom: none !important;
  }

  .hero__service-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero__service-text {
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  /* Stats strip — icon left, text right */
  .stats-strip {
    padding: 34px 0;
  }

  .stats-strip__inner {
    min-height: auto;
  }

  .stats-strip__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-strip__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    column-gap: 18px;
    padding: 18px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    text-align: left;
  }

  .stats-strip__item:last-child {
    border-bottom: 0;
  }

  .stats-strip__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .stats-strip__icon svg {
    width: 22px;
    height: 22px;
  }

  .stats-strip__number {
    font-size: 34px;
    line-height: 1;
    margin: 0 0 6px;
  }

  .stats-strip__label {
    font-size: 17px;
    line-height: 1.35;
    margin: 0;
  }

  /* Quality slider tabs — horizontal scroll, no clipping */
  .quality-slider-section__inner {
    overflow: visible;
    padding-inline: 22px;
  }

  .quality-slider-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 0 22px 8px;
    margin-left: -22px;
    margin-right: -22px;
    width: calc(100% + 44px);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .quality-slider-tabs::-webkit-scrollbar {
    display: none;
  }

  .quality-slider-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }
}
