/* GearSMS — modern dark hero + shared chrome */

:root {
  --color-page-bg: #f8fafc;
  --color-page-dark: #050508;
  --color-hero-bg: #050508;
  --color-mockup-bg: #08090d;
  --color-primary: #2563eb;
  --color-primary-bright: #60a5fa;
  --color-accent-glow: rgba(251, 191, 36, 0.45);
  --color-text-title: #374151;
  --color-text-body: #4b5563;
  --color-image-stroke: rgba(255, 255, 255, 0.08);
  --font-heading: "Inter", system-ui, sans-serif;
  --font-ui: "Roboto", system-ui, sans-serif;
  --radius-btn: 10px;
  --radius-mockup: 16px;
  --header-height: 64px;
  --header-bar-height: 72px;
  --nav-breakpoint: 992px;
  --content-max: 1200px;
  --text-block-max: 640px;
  --mockup-max: 1080px;
  --shadow-mockup: 0 32px 80px -24px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  background: var(--color-page-bg);
  color: var(--color-text-body);
  -webkit-font-smoothing: antialiased;
}

body.body--home {
  background: var(--color-page-dark);
  color: #cbd5e1;
}

body.nav-open {
  overflow: hidden;
}

.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;
}

.page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.band__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Inner pages */
.layout-page {
  padding-top: calc(var(--header-bar-height) + 32px);
  padding-bottom: 56px;
  flex: 1 0 auto;
  background: var(--color-page-bg);
}

.layout-page__title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-title);
  letter-spacing: -0.02em;
}

.layout-page__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-body);
}

/* Inner pages share the dark mockup band under the header (same context as home chrome) */
.layout-page.band--mockup .layout-page__title {
  color: #f8fafc;
}

.layout-page.band--mockup .layout-page__lead {
  color: rgba(226, 232, 240, 0.88);
}

/* ——— Hero (Huly-inspired: beam + grid + left copy) ——— */
.band--hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-bar-height);
  padding-bottom: 0;
  min-height: min(72vh, 820px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 65% at 50% -5%, rgba(96, 165, 250, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 50% 105%, rgba(251, 191, 36, 0.12), transparent 50%),
    radial-gradient(ellipse 35% 80% at 50% 50%, rgba(255, 255, 255, 0.06), transparent 70%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, min(520px, 100%));
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

@media (max-width: 992px) {
  .band--hero {
    padding-top: calc(var(--header-bar-height) + 40px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
    padding-bottom: 20px;
  }
}

.hero-copy {
  max-width: var(--text-block-max);
  margin: 0;
  padding: clamp(40px, 8vw, 72px) 0 clamp(20px, 4vw, 40px);
  text-align: left;
  min-width: 0;
}

@media (max-width: 992px) {
  .hero-copy {
    margin: 0;
    text-align: left;
  }
}

.hero-copy__title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: #ffffff;
  /* Subtle depth for premium feel */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

@media (max-width: 992px) {
  .text-gradient {
    margin-top: 12px;
  }
}

.hero-features {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.95);
  text-align: left;
}

.hero-feature-icon {
  width: 20px;
  height: 20px;
  color: #60a5fa;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .hero-features {
    display: flex;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}

.hero-copy__body {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(226, 232, 240, 0.88);
}

@media (max-width: 992px) {
  .hero-copy__body {
    margin: 0;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.35), 0 0 48px -8px var(--color-accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.4), 0 0 56px -4px var(--color-accent-glow);
}

.hero-cta__arrow {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.hero-cta:hover .hero-cta__arrow {
  transform: translateX(4px);
}

.hero-preview {
  position: relative;
  min-width: 0;
  padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 8vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-preview__card {
  border-radius: 20px;
  background: linear-gradient(145deg,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(15, 23, 42, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Base Picker Card (Underlying) */
.hero-card--picker {
  width: 100%;
  max-width: 360px;
  padding: 32px 28px 40px;
  /* More bottom padding */
  transform: translateX(-80px);
  /* Move further left */
  z-index: 1;
}

/* Notifications Card (Overlapping) */
.hero-card--notifications {
  position: absolute;
  top: 50px;
  right: -40px;
  width: 100%;
  max-width: 380px;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 40px 100px -12px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

@media (max-width: 992px) {
  .hero-card--picker {
    display: none;
  }

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

.hero-card__header {
  background: #1a1a1a;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card__window-controls {
  display: flex;
  gap: 6px;
}

.hero-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-card__dot--red {
  background: #ff5f57;
}

.hero-card__dot--yellow {
  background: #febc2e;
}

.hero-card__dot--green {
  background: #28c840;
}

.hero-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-preview__section-title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
}

.hero-preview__feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 16px 18px;
}

.hero-preview__sms {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}

/* SVG Icon Utility Classes */
.hero-icon {
  display: block;
}

.hero-icon--sm {
  width: 18px;
  height: 18px;
}

.hero-icon--md {
  width: 22px;
  height: 22px;
}

.hero-icon--lg {
  width: 24px;
  height: 24px;
}

/* Brand Colors for Icons */
.icon-fill-airbnb {
  fill: #ff5a5f;
}

.icon-fill-paypal-1 {
  fill: #253b80;
}

.icon-fill-paypal-2 {
  fill: #179bd7;
}

.icon-fill-paypal-3 {
  fill: #003087;
}

.icon-fill-google-blue {
  fill: #4285f4;
}

.icon-fill-google-green {
  fill: #34a853;
}

.icon-fill-google-yellow {
  fill: #fbbc05;
}

.icon-fill-google-red {
  fill: #ea4335;
}

/* Facebook Brand Color */
.icon-fill-facebook {
  fill: #1877f2;
}

/* Microsoft Brand Colors */
.icon-fill-ms-red {
  fill: #f25022;
}

.icon-fill-ms-green {
  fill: #7fba00;
}

.icon-fill-ms-blue {
  fill: #00a1f1;
}

.icon-fill-ms-yellow {
  fill: #ffb900;
}

.hero-preview__sms-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.hero-preview__sms-icon--paypal {
  background: #fff;
}

.hero-preview__sms-icon--google {
  background: #fff;
}

.hero-preview__sms-icon--discord {
  background: #5865f2;
  color: #fff;
}

.hero-preview__sms-icon--airbnb {
  background: #fff;
}

.hero-preview__sms-body {
  min-width: 0;
}

.hero-preview__sms-app {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #f8fafc;
}

.hero-preview__sms-msg {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #94a3b8;
}

.hero-preview__sms-msg strong {
  font-weight: 700;
  color: #f8fafc;
}

.hero-preview__picker {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-preview__picker-label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
}

.hero-preview__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-preview__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.hero-preview__option--active {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.hero-preview__option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.hero-preview__option-icon--discord {
  background: #5865f2;
  color: #fff;
}

.hero-preview__option-icon--twitch {
  background: #9146ff;
  color: #fff;
}

.hero-preview__option-icon--flag {
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
}

.hero-preview__option-text {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
}

.hero-preview__btn {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
}

.hero-preview__btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* ——— Services Scrolling Section (White Theme) ——— */
.band--services {
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.services-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.services-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.services-desc {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 0;
  width: fit-content;
  padding: 14px 32px;
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.services-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Infinite Scroll Slider */
.services-slider {
  position: relative;
  width: 100%;
  padding: 20px 0;
  background: #fff;
  overflow: hidden;
  display: flex;
}

/* Gradient Mask for seamless edges */
.services-slider::before,
.services-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.services-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.services-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.services-track {
  display: flex;
  width: fit-content;
  gap: 60px;
  animation: scrollTrack 60s linear infinite;
  padding-left: 60px;
}

.services-slider:hover .services-track {
  animation-play-state: paused;
}

.service-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: auto;
}

.service-logo-item img {
  height: 100%;
  width: auto;
  max-width: 160px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.service-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .band--services {
    padding: 60px 0;
  }

  .services-track {
    gap: 25px;
    animation: scrollTrack 40s linear infinite;
  }

  .service-logo-item {
    height: 28px;
  }
}

@media (max-width: 768px) {
  .hero-preview {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

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

  .hero-card--notifications {
    position: static;
    transform: none;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }
}

/* ——— Mockup strip ——— */
.band--mockup {
  flex: 1;
  position: relative;
  background: linear-gradient(180deg, #050508 0%, var(--color-mockup-bg) 12%);
  padding-top: 0;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.band__inner--mockup {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.mockup-glow {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: min(90%, 720px);
  height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
      rgba(147, 197, 253, 0.35) 0%,
      transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.mockup-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--mockup-max);
  border-radius: var(--radius-mockup);
  box-shadow: var(--shadow-mockup);
  background: #0f172a;
  line-height: 0;
  margin-top: -48px;
}

.mockup-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--color-image-stroke);
  border-radius: var(--radius-mockup);
}

/* ——— Header ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.header.header--hidden {
  transform: translateY(-100%);
}

.header__bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.header.header--scrolled .header__bar {
  background: rgba(15, 23, 42, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-height);
  padding-top: 6px;
  padding-bottom: 6px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 420;
}

.logo img {
  width: 154px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

.header__toggle {
  display: none;
  position: relative;
  z-index: 420;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.header__toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header.header--scrolled .header__toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.header__toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.header__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__collapse {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  position: relative;
  z-index: 350;
}

.header__panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-main__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main__item {
  position: relative;
}

.nav-main__link,
.nav-main__trigger {
  color: rgba(248, 250, 252, 0.78);
}

.nav-main__link:hover,
.nav-main__link:focus-visible,
.nav-main__trigger:hover,
.nav-main__trigger:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header.header--scrolled .nav-main__link,
.header.header--scrolled .nav-main__trigger {
  color: rgba(226, 232, 240, 0.9);
}

.header.header--scrolled .nav-main__link:hover,
.header.header--scrolled .nav-main__link:focus-visible,
.header.header--scrolled .nav-main__trigger:hover,
.header.header--scrolled .nav-main__trigger:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-main__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-main__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

/* Active States - Higher contrast for clear visibility */
.header .nav-main__link.is-active,
.header .nav-main__trigger.is-active,
.header .nav-main__sublink.is-active {
  color: #3b82f6 !important;
  background: rgba(59, 130, 246, 0.12) !important;
  font-weight: 700 !important;
}

/* Ensure active sublinks have a clear visual indicator */
.nav-main__sublink.is-active {
  border-left: 3px solid #3b82f6;
  padding-left: 10px !important;
}

.nav-main__chevron {
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-main__sub {
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 188px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.nav-main__item--dropdown:hover .nav-main__sub,
.nav-main__item--dropdown:focus-within .nav-main__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-main__item--dropdown:hover .nav-main__chevron,
.nav-main__item--dropdown:focus-within .nav-main__chevron {
  transform: rotate(180deg);
}

.nav-main__sublink {
  display: block;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-main__sublink:hover,
.nav-main__sublink:focus-visible {
  color: #fff;
  background: rgba(59, 130, 246, 0.2);
  outline: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s ease, background-color 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn--header {
  min-width: auto;
  min-height: 34px;
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 999px;
}

.btn--header.btn--outline {
  color: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.btn--header.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.btn--header.btn--primary {
  background: #2563eb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn--header.btn--primary:hover {
  background: #1d4ed8;
  opacity: 1;
  transform: translateY(-1px);
}

.header.header--scrolled .btn--header.btn--outline {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.25);
}

.header.header--scrolled .btn--header.btn--primary {
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25);
}

.btn:hover {
  opacity: 0.94;
}

.btn--primary {
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

@media (min-width: 992px) {
  .nav-main__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 4px;
    transform: translate(-50%, -6px);
  }

  .nav-main__item--dropdown:hover .nav-main__sub,
  .nav-main__item--dropdown:focus-within .nav-main__sub,
  .nav-main__item--dropdown.dropdown--grace .nav-main__sub {
    transform: translate(-50%, 0);
  }

  /* Keep Services submenu open briefly after pointer leaves (see main.js) */
  .nav-main__item--dropdown.dropdown--grace .nav-main__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-main__item--dropdown.dropdown--grace .nav-main__chevron {
    transform: rotate(180deg);
  }
}

@media (max-width: 991px) {
  .header__toggle {
    display: inline-flex;
  }

  /* Logo z-index (420) was above the drawer (360); keep drawer over logo, toggle above drawer */
  .logo {
    z-index: 0;
  }

  .header__collapse {
    position: fixed;
    inset: 0;
    z-index: 360;
    flex: none;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .header__collapse.header__collapse--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__panel {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 60%;
    max-width: 70%;
    align-self: stretch;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100%;
    margin: 0;
    padding: 24px 18px 28px;
    gap: 20px;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header__collapse.header__collapse--open .header__panel {
    transform: translateX(0);
  }

  .nav-main {
    flex: 0;
    justify-content: flex-start;
  }

  .nav-main__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 30px;
  }

  .nav-main__link,
  .nav-main__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 15px;
    color: rgba(248, 250, 252, 0.92);
  }

  .nav-main__link:hover,
  .nav-main__trigger:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-main__sub {
    position: static;
    display: none;
    margin: 4px 0 10px;
    padding: 8px 10px 10px 12px;
    min-width: unset;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    border-left: 2px solid rgba(59, 130, 246, 0.35);
  }

  .nav-main__item--dropdown.is-open .nav-main__sub {
    display: block;
  }

  .nav-main__item--dropdown:hover .nav-main__chevron,
  .nav-main__item--dropdown:focus-within .nav-main__chevron {
    transform: none;
  }

  .nav-main__item--dropdown.is-open .nav-main__chevron {
    transform: rotate(180deg);
  }

  .nav-main__sublink {
    padding: 10px 12px;
    color: #94a3b8;
  }

  .nav-main__sublink:hover {
    color: #fff;
  }

  .header__actions {
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    gap: 10px;
  }

  .header__actions .btn--header {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    font-size: 14px;
  }
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  overflow: hidden;
  background: #020617;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.site-footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  max-width: 720px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
      transparent,
      rgba(59, 130, 246, 0.45),
      rgba(251, 191, 36, 0.25),
      transparent);
  opacity: 0.9;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 32px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 2fr);
  gap: 48px 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.site-footer__brand {
  max-width: 260px;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
}

.site-footer__logo img {
  width: 148px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.site-footer__social-link:hover {
  color: #f8fafc;
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-1px);
}

.site-footer__social-link svg {
  flex-shrink: 0;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  align-items: start;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.site-footer__col .site-footer__heading {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 14px;
  border-bottom: none;
}

.site-footer__col .site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: rgba(148, 163, 184, 0.22);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col .site-footer__list {
  list-style: disc;
  padding-left: 1.2rem;
}

.site-footer__col .site-footer__list li::marker {
  color: #64748b;
}

.site-footer__list li {
  margin-bottom: 11px;
}

.site-footer__col .site-footer__list li {
  padding-left: 0.35rem;
}

.site-footer__list a {
  font-size: 14px;
  font-weight: 450;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__list a:hover {
  color: #f1f5f9;
}

.site-footer__spotlight {
  margin: 0;
  padding: 18px 18px 20px;
  max-width: 22rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.site-footer__spotlight-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #f1f5f9;
}

.site-footer__spotlight-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #94a3b8;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 28px;
  width: 100%;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

@media (max-width: 900px) {
  .logo img {
    width: min(136px, 44vw);
    max-height: 32px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    padding: 0 0 clamp(32px, 8vw, 48px);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    padding-top: 28px;
    padding-bottom: clamp(20px, 5vw, 36px);
  }

  .band--mockup {
    padding-top: 8px;
  }

  .mockup-card {
    margin-top: -32px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__spotlight {
    grid-column: 1 / -1;
    max-width: none;
  }
}

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

  .site-footer__spotlight {
    grid-column: auto;
  }
}

/* ——— Features Grid Section (Dark Theme) ——— */
.band--features {
  background: #f8fafc;
  padding: 40px 0;
  color: #0f172a;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.features-header {
  max-width: 700px;
  margin-bottom: 64px;
}

.features-subheadline {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.features-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Vertical Tabs list */
.features-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.feature-tab {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid transparent;
  padding: 24px;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-tab:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.feature-tab.active {
  background: #ffffff;
  /* Pop against light slate */
  border-color: rgba(0, 0, 0, 0.05);
  border-left-color: #2563eb;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.feature-tab-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.feature-tab-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Display / Screenshot Area */
.features-display {
  position: sticky;
  top: 100px;
  margin-top: 30px;
  background: #ffffff;
  /* Pop against light slate */
  border-radius: 15px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.features-display img.active {
  opacity: 1;
}

/* Placeholder for now */
.features-placeholder {
  font-size: 14px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 991px) {
  .features-header {
    margin-bottom: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-tabs {
    flex-direction: row;
    justify-content: center;
    overflow-x: auto;
    padding: 0 4px 12px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 10;
  }

  .features-tabs::-webkit-scrollbar {
    display: none;
  }

  .feature-tab {
    flex-shrink: 0;
    padding: 10px 14px;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .feature-tab-title {
    font-size: 0.9375rem;
    pointer-events: none;
    /* Let the tab wrap handle the click */
  }

  .feature-tab:hover {
    transform: none;
  }

  .feature-tab.active {
    background: #ffffff;
    border-bottom-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .feature-tab-desc {
    display: none;
  }

  /* Label Toggling */
  .feature-tab-title .features-tab-full {
    display: none;
  }

  .feature-tab-title .features-tab-short {
    display: inline;
  }

  .features-display {
    position: relative;
    /* Fixed: was static, causing absolute images to drift */
    top: 0 !important;
    /* Fixed: override global 100px shift from sticky rule */
    margin: 4px auto 32px;
    /* Tightened margin-top */
    max-width: 440px;
    width: 100%;
    aspect-ratio: 2 / 1;
    z-index: 1;
  }
}

/* Base helper for desktop label visibility */
.features-tab-short {
  display: none;
}

/* ——— Why Choose GearSMS Section ——— */
.band--why {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  text-align: center;
}

.why-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
  margin-bottom: 12px;
}

.why-headline {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.why-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.why-image-wrapper {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.why-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.why-card:hover {
  box-shadow: 0 20px 20px -12px rgba(107, 107, 107, 0.08);
}

.why-card__icon {
  font-size: 32px;
  line-height: 1;
}

.why-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.why-card__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  flex-grow: 1;
}

.why-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.2s ease;
}

.why-card__link:hover {
  gap: 10px;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .why-grid {
    gap: 40px;
  }

  .why-cards {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .band--why {
    padding: 64px 0;
  }

  .why-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-image-wrapper {
    display: none;
  }

  .why-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .why-card {
    padding: 24px;
  }
}

/* ——— Testimonials Section ——— */
.band--testimonials {
  background: #f8fafc;
  padding: 40px 0;
  overflow: hidden;
}

.testimonials-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  text-align: center;
}

.testimonials-headline {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.testimonials-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.testimonials-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

/* Gradient Mask for seamless edges */
.testimonials-container::before,
.testimonials-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-container::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.testimonials-container::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.testimonials-track {
  display: flex;
  width: fit-content;
  gap: 15px;
}

/* LTR moves from left to right: starts at -50% and moves to 0 */
.testimonials-track--ltr {
  animation: scroll-ltr 80s linear infinite;
}

/* RTL moves from right to left: starts at 0 and moves to -50% */
.testimonials-track--rtl {
  animation: scroll-rtl 80s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.04),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: none;
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  color: #e2e8f0;
  opacity: 0.5;
}



.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
  font-style: italic;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-role {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

@keyframes scroll-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ——— Testimonials CTA ——— */
.testimonials-footer-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 10px;
  position: relative;
  z-index: 2;
}

.testimonials-footer-cta .hero-cta {
  background: #2563eb;
  padding: 16px 40px;
  color: #ffffff;
}



/* Mobile Adjustments for Testimonials */
@media (max-width: 768px) {
  .band--testimonials {
    padding: 40px 0;
  }

  .testimonial-card {
    width: 280px;
    padding: 24px;
  }

  .testimonials-container::before,
  .testimonials-container::after {
    width: 100px;
  }

  .testimonials-track--ltr,
  .testimonials-track--rtl {
    animation-duration: 40s;
  }
}

/* ——— Methods of Payment ——— */
.band--payments {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.payments-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.payments-headline {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.payments-description {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #64748b;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .payment-item {
    padding: 24px;
  }

  .payment-name {
    font-size: 15px;
  }
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-item:hover {
  background: #ffffff;
}

.payment-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  padding: 4px;
}



.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.payment-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #334155;
  letter-spacing: -0.01em;
}

@media (max-width: 992px) {
  .payments-grid {
    gap: 24px;
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .band--payments {
    padding: 60px 0 30px;
  }

  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }

  .payment-item {
    padding: 32px 20px;
  }
}

/* ——— Final CTA Section ——— */
.band--cta {
  padding: 60px 0 70px;
  background: var(--color-hero-bg);
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient "blury type" glow behind the card */
.band--cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

/* Replicating the cross/plus pattern with branding blue */
.band--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 2px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.cta-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 60px;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.cta-button {
  display: inline-block;
  padding: 20px 64px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-bright) 100%);
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
}

@media (max-width: 768px) {
  .band--cta {
    padding: 40px 0 60px;
  }

  .cta-card {
    padding: 56px 24px;
    margin: 0 16px;
    border-radius: 32px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 36px;
  }

  .cta-button {
    padding: 16px 40px;
    font-size: 1.05rem;
    width: 100%;
    max-width: 100%;
  }
}

/* ——— Contact Page Specifics ——— */

.band--contact-hero {
  padding-top: calc(var(--header-bar-height) + 60px);
  padding-bottom: 80px;
  text-align: center;
  background: var(--color-hero-bg);
  position: relative;
  overflow: hidden;
}

.contact-hero__header {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero__header .hero-copy__body {
  margin: 0 auto;
}

.band--contact-methods {
  background: #ffffff;
  padding-bottom: 30px;
}

.contact-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
}

.contact-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

/* Brand Colors */
.icon--telegram {
  color: #0088cc;
  background: rgba(0, 136, 204, 0.08) !important;
  border: none !important;
}

.text--telegram {
  color: #0088cc !important;
}

.icon--discord {
  color: #5865f2;
  background: rgba(88, 101, 242, 0.08) !important;
  border: none !important;
}

.text--discord {
  color: #5865f2 !important;
}

.icon--email {
  color: #ea4335;
  background: rgba(234, 67, 53, 0.08) !important;
  border: none !important;
}

.text--email {
  color: #ea4335 !important;
}

.icon--youtube {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.08) !important;
  border: none !important;
}

.text--youtube {
  color: #ff0000 !important;
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.contact-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
  flex-grow: 1;
}

.contact-card__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background: var(--color-primary);
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: none;
}

.contact-card:hover .contact-card__action {
  background: #1d4ed8;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 800px) {

  .contact-grid,
  .support-grid {
    grid-template-columns: 1fr !important;
    /* Force stack for better mobile UX */
    gap: 20px;
  }

  .support-item {
    text-align: center;
    align-items: center;
  }

  .band--contact-hero {
    padding-top: calc(var(--header-bar-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-copy__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    padding: 0 10px;
  }
}

/* Support Features Matrix */
.band--support-features {
  background: #ffffff;
  padding: 40px 0;
}

.band--faq {
  background: #ffffff;
  padding: 80px 0;
}

.centered-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.support-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.support-item__icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.support-item__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* Legal Pages (Privacy, Terms, etc.) */
.legal-page {
  padding: 120px 0;
  background: var(--color-page-dark);
  font-family: 'Space Grotesk', sans-serif;
  color: #cbd5e1;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.legal-welcome {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 60px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.legal-last-updated {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 80px 0;
  }

  .legal-title {
    font-size: 2.25rem;
  }
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: var(--color-primary-bright);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 24px 32px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e293b;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 32px 32px;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

/* Dark FAQ Overrides for Legal/FAQ Pages */
.legal-page .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page .faq-item[open] {
  border-color: var(--color-primary-bright);
  background: rgba(255, 255, 255, 0.05);
}

.legal-page .faq-question {
  color: #ffffff;
}

.legal-page .faq-answer {
  color: #94a3b8;
}

.faq-category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 80px 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-category-title:first-of-type {
  margin-top: 0;
}

.faq-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.faq-jump-link {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.faq-jump-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* FAQ Hero (Dark) */
.faq-hero {
  background: var(--color-page-dark);
  padding: 100px 0 80px;
  text-align: center;
}

.faq-hero .legal-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
}

.faq-hero .legal-welcome {
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-weight: 400;
}

/* White Theme FAQs & Legal */
.legal-page--white {
  background: #ffffff;
  color: #1e293b;
  font-family: var(--font-heading);
  /* Inter parity */
}

.legal-page--white .faq-category-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  border-bottom-color: #e2e8f0;
  margin-top: 64px;
  /* Added spacing between categories */
  letter-spacing: -0.02em;
}

.legal-page--white .legal-section__title {
  color: #0f172a;
  font-family: var(--font-heading);
}

.legal-page--white .why-description {
  color: #475569;
}

.faq-contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-contact-card .legal-section__title {
  font-size: 1.75rem;
  margin-bottom: 12px;
  justify-content: center;
}

.faq-contact-card .why-description {
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.faq-contact-card .cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-page--white section:first-child .faq-category-title {
  margin-top: 0;
  /* Keep first section aligned */
}

.legal-page--white .faq-item {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.legal-page--white .faq-item[open] {
  background: #ffffff;
  border-color: var(--color-primary-bright);
}

.legal-page--white .faq-question {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #1e293b;
  padding: 16px 24px;
}

.legal-page--white .faq-answer {
  color: #475569;
  padding: 0 24px 20px;
}

/* Simplified FAQ Layout */
.faq-layout {
  display: block;
  /* Remove sidebar grid */
  max-width: 800px;
  margin: 60px auto 0;
}

@media (max-width: 992px) {
  .faq-layout {
    margin-top: 40px;
  }

  .faq-container {
    padding: 0 4px;
    /* Ensure some spacing from screen edges */
  }
}

/* ——— Premium About Page Redesign ——— */
.about-hero {
  background: var(--color-page-dark);
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.05), transparent 40%);
  pointer-events: none;
}

.about-hero .legal-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero .legal-welcome {
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Premium White Sections */
.about-section-premium {
  padding: 40px 0;
  background: #ffffff;
  position: relative;
  color: #1e293b;
}

.section-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.50rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 0px;
}

/* Cinematic Story Layout */
.cinematic-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.cinematic-story__content {
  position: relative;
  z-index: 2;
}

.cinematic-story__visual {
  position: relative;
}

.cinematic-story__image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.cinematic-story__image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-accent {
  position: absolute;
  background: var(--color-primary);
  width: 120px;
  height: 120px;
  border-radius: 20px;
  top: -40px;
  right: -40px;
  z-index: -1;
  opacity: 0.1;
}

/* Mission Interlock */
.mission-interlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.interlock-card {
  padding: 60px;
  border-radius: 32px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.interlock-card:hover {
  background: #ffffff;
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.08);
  border-color: var(--color-primary-bright);
}

.interlock-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(37, 99, 235, 0.03) 50%);
}

.interlock-icon-box {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
  color: var(--color-primary);
}

.mission-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.mission-card__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* Feature Stagger List */
.feature-stagger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stagger-card {
  padding: 48px 40px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.stagger-card:nth-child(even) {
  transform: translateY(40px);
}

.stagger-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

/* Values Grid Custom Markers */
.values-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.value-detail-item {
  display: flex;
  gap: 32px;
}

.value-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.1);
  color: var(--color-primary-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

/* Us vs Them Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f8fafc;
  border-radius: 40px;
  padding: 60px;
  margin-top: 40px;
}

.comparison-box {
  padding: 40px;
  border-radius: 24px;
}

.comparison-box--others {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  opacity: 0.7;
}

.comparison-box--gearsms {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.comp-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.comp-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #334155;
}

.comparison-box--gearsms .comp-list li {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Minimalist Stats */
.minimal-stats {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid #f1f5f9;
}

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

.stat-unit__val {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.stat-unit__label {
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* Founder Note Style */
.founder-note {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 80px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  text-align: center;
}

.founder-note blockquote {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin: 0 0 40px;
  font-style: italic;
  position: relative;
}

.founder-note blockquote::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  opacity: 0.05;
  font-family: serif;
}

@media (max-width: 992px) {

  .cinematic-story,
  .mission-interlock,
  .feature-stagger,
  .values-detail-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    /* Reduced from 60px for better vertical rhythm */
  }

  .cinematic-story {
    text-align: center;
  }

  .cinematic-story__image-wrapper {
    transform: none;
    /* Flatten 3D effect on smaller screens for cleaner look */
    max-width: 500px;
    margin: 0 auto;
  }

  .interlock-card {
    padding: 40px;
    /* Reduced from 60px */
  }

  .stagger-card {
    padding: 32px 24px;
  }

  .stagger-card:nth-child(even) {
    transform: translateY(0);
  }

  .minimal-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .stat-unit {
    text-align: center;
    width: 45%;
  }

  .comparison-grid {
    padding: 40px 24px;
  }
}

@media (max-width: 640px) {
  .stat-unit {
    width: 100%;
  }

  .stat-unit__val {
    font-size: 2.75rem;
    /* Slightly smaller for mobile */
  }

  .about-section-premium {
    padding: 32px 0;
    /* Tighter padding for mobile */
  }

  .founder-note {
    padding: 40px 24px;
  }

  .founder-note blockquote {
    font-size: 1.35rem;
  }

  .interlock-card {
    padding: 32px 20px;
  }

  .mission-interlock {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .legal-title {
    font-size: 2rem;
  }

  .section-headline {
    font-size: 1.75rem;
  }

  .about-cta-banner h2 {
    font-size: 2rem;
  }

  .about-cta-banner p {
    font-size: 1.1rem;
    padding: 0 16px;
  }
}

/* Final CTA Banner (Premium Dark) */
.about-cta-banner {
  padding-top: 30px;
  padding-bottom: 35px;
  background: #050508;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.12), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.about-cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px !important;
  /* Ensure it stays focused */
  margin: 0 auto;
}

.about-cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.about-cta-banner p {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-cta-banner {
    padding: 80px 0;
  }

  .about-cta-banner h2 {
    font-size: 2.5rem;
  }
}

/* ——— Premium eSIM Page Redesign ——— */

.esim-hero {
  background: var(--color-page-dark);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Sophisticated Mesh Glow */
.esim-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.esim-hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.esim-hero .hero-copy__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
}

.esim-hero .hero-copy__body {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 720px;
  margin: 0 auto 48px;
}

/* Feature Section: Premium Cinematic */
.esim-section--features {
  background: #ffffff;
  padding: 35px 0;
}

.esim-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.esim-feature-card {
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  position: relative;
  /* Remove hover transform as requested */
}

.esim-feature-card__icon {
  width: 64px;
  height: 64px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 32px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.esim-feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.esim-feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

/* Pricing Section: Sleek Glass & Slate */
.esim-section--pricing {
  background: #f8fafc;
  padding: 35px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  /* Remove hover transform */
}

.pricing-card--popular {
  border: none;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.25);
  position: relative;
}

.pricing-card--popular .pricing-card__price,
.pricing-card--popular h3,
.pricing-card--popular .pricing-card__item {
  color: #ffffff;
}

.pricing-card--popular .pricing-card__item svg {
  color: #60a5fa !important;
}

.pricing-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #3b82f6;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
  margin: 24px 0 12px;
}

.pricing-card__price span {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 48px;
}

.pricing-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #475569;
  font-weight: 500;
}

/* Compatibility: Precise & Authoritative */
.esim-section--compatibility {
  padding: 40px 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.esim-section--compatibility .section-headline {
  color: #ffffff;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.compatibility-card {
  padding: 40px;
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(12px);
}

.compatibility-card h3 {
  color: #ffffff !important;
}

.compatibility-card p {
  color: #94a3b8 !important;
}

.compatibility-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.compatibility-note {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 32px;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  align-items: center;
  color: #e2e8f0;
}

/* ——— Blog & Resources Styles ——— */
.blog-hero {
  position: relative;
  padding: 80px 0 60px;
  background: #0f172a;
  overflow: hidden;
  text-align: center;
}

.blog-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%);
  z-index: 1;
}

.blog-hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
}

.blog-hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.blog-hero__subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.6;
}

.band--blog-feed {
  padding: 80px 0;
  background: #f8fafc;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-card {
  display: flex;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  overflow: hidden;
  transition: none;
  /* Simple flat shadow */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-color: rgba(226, 232, 240, 0.8);
}

.blog-card__image-wrap {
  width: 28%;
  min-width: 160px;
  background: #f1f5f9;
  overflow: hidden;
  position: relative;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card__image {
  transform: none;
}

.blog-card__content {
  flex: 1;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
}

.blog-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-tag {
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-tag--alt {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.blog-tag--security {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.blog-read-time {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-read-time::before {
  content: '•';
  color: #cbd5e1;
}

.blog-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
  color: #3b82f6;
}

.blog-card__excerpt {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.blog-card__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
}

.blog-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3b82f6;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-card__link .arrow {
  transition: transform 0.3s ease;
}

.blog-card__link:hover {
  gap: 10px;
}

.blog-card__link:hover .arrow {
  transform: translateX(4px);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 20px;
}

.sidebar-widget__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list__item {
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.sidebar-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-list__item:first-child {
  padding-top: 0;
}

.sidebar-list__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}

/* Custom Bullet Marker */
.sidebar-list__link::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 2px;
  margin-top: 8px;
  /* Alignment with line height */
  transition: all 0.3s ease;
  opacity: 0.7;
}

.sidebar-list__link:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

.sidebar-list__link:hover::before {
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.sidebar-list__link--cta {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 8px 0;
  background: transparent;
  color: #3b82f6 !important;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.sidebar-list__link--cta .arrow {
  transition: transform 0.3s ease;
}

.sidebar-list__link--cta:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
  gap: 10px;
}

.sidebar-list__link--cta:hover .arrow {
  transform: translateX(4px);
}

.sidebar-list__link--cta::before {
  display: none;
}

/* ——— Blog Responsive ——— */
@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    order: 2;
  }

  .sidebar-widget--search {
    display: none;
  }
}

@media (max-width: 640px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-card__image-wrap {
    width: 100%;
    height: 200px;
  }

  .blog-card__content {
    padding: 24px;
  }
}

/* ——— Blog Tabs ——— */
.blog-tabs {
  margin-bottom: 40px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0px;
}

.blog-tab-btn {
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.blog-tab-btn:hover {
  color: #3b82f6;
}

.blog-tab-btn.is-active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

/* ——— Blog Pagination ——— */
.blog-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-item:hover:not(.is-active) {
  border-color: #3b82f6;
  color: #3b82f6;
}

.pagination-item.is-active {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.pagination-item--next,
.pagination-item--prev {
  width: auto;
  padding: 0 20px;
}

.pagination-item--dots {
  border: none;
  background: transparent;
  cursor: default;
}

/* ——— Animation: Fade In ——— */
.fade-in {
  animation: blogFadeIn 0.4s ease forwards;
}

@keyframes blogFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ——— Responsive Adjustments ——— */
@media (max-width: 1024px) {

  .esim-features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .esim-hero {
    padding: 140px 20px 80px;
  }

  .esim-features-grid,
  .pricing-grid,
  .compatibility-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--popular {
    order: -1;
  }

  .compatibility-note {
    flex-direction: column;
    text-align: center;
  }
}

/* ——— Blog Search Styles ——— */
.sidebar-widget--search {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
}

.search-input-wrap {
  position: relative;
}

#blog-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: #0f172a;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

#blog-search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: none;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.3s ease;
}

#blog-search-input:focus+.search-icon {
  color: #3b82f6;
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-height: 400px;
  overflow-y: auto;
}

.search-results-dropdown.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(241, 245, 249, 0.5);
  transition: background 0.2s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #f8fafc;
}

.search-result-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-result-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-result-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.search-result-arrow {
  width: 18px;
  height: 18px;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.search-result-item:hover .search-result-arrow {
  color: #3b82f6;
  transform: translate(2px, -2px);
}

.search-no-results {
  padding: 24px;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.search-no-results strong {
  color: #0f172a;
}