@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Backgrounds */
  --bg-primary:    #000b10;
  --bg-secondary:  #000c12;
  --footer-bg:     #d9fff5;

  /* Accent */
  --accent:        #17cc9e;
  --accent-glow:   rgba(23, 204, 158, 0.2);
  --accent-dim:    rgba(23, 204, 158, 0.15);

  /* Text (on dark) */
  --text-primary:  #d6fff5;
  --text-dim:      rgba(214, 255, 245, 0.698);   /* b2 */
  --text-muted:    rgba(214, 255, 245, 0.5);      /* 80 */

  /* Text (on light) */
  --dark-text:     #000b10;
  --dark-text-dim: rgba(14, 19, 25, 0.698);

  /* UI chrome */
  --glass-bg:      rgba(214, 255, 245, 0.051);   /* 0d */
  --glass-border:  rgba(214, 255, 245, 0.051);
  --divider-light: rgba(214, 255, 245, 0.149);   /* 26 */
  --btn-ghost-bg:  rgba(214, 255, 245, 0.102);   /* 1a */
  --btn-ghost-bdr: rgba(214, 255, 245, 0.2);      /* 33 */
  --pricing-border:#213032;
  --pricing-hl:    rgba(33, 48, 50, 0.4);

  /* Sizing */
  --nav-height:    84px;
  --content-max:   1200px;
  --radius-card:   14px;
  --radius-pill:   9999px;

  /* Button dark fill */
  --btn-dark:      #0e1319;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Display', system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
.step-icon,
.value-icon,
.check-icon,
.feature-card-img,
.logo-icon,
.logo-icon-dark,
.nav-logo img,
.footer-logo img,
.faq-item-image,
.faq-inline-image,
.gradient-logo img { display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 18px;
  pointer-events: auto;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  transition: background 0.2s;
}

.nav-logo:hover {
  background: rgba(214, 255, 245, 0.08);
}

.logo-icon {
  width: 120px;
  height: 26px;
  flex-shrink: 0;
  display: block;
}


.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.14px;
  line-height: 1.143;
  color: var(--text-dim);
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: rgba(214, 255, 245, 0.078);
  color: var(--text-primary);
}

.nav-link:hover img,
.nav-link:hover svg {
  opacity: 1;
}

.nav-link svg,
.nav-link img {
  flex-shrink: 0;
  transform: scale(1.2);
  transform-origin: center;
  opacity: 0.698;
  transition: opacity 0.2s;
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 1.25;
  color: var(--btn-dark);
  transition: background 0.2s, color 0.2s;
}

.btn-nav-cta:hover {
  background: rgba(23, 204, 158, 0.102);
  color: var(--accent);
}

.btn-nav-cta svg {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  pointer-events: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px 18px;
  background: rgba(0, 11, 16, 0.97);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover { background: var(--glass-bg); color: var(--text-primary); }

.mobile-cta {
  margin-top: 8px;
  background: var(--accent);
  color: var(--btn-dark);
  text-align: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-cta:hover {
  background: rgba(23, 204, 158, 0.102);
  color: var(--accent);
  border-color: rgba(23, 204, 158, 0.2);
}

.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-height) 18px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: var(--content-max);
  padding-top: 60px;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.88) translateY(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
  }
}

.hero-word {
  display: inline-block;
  opacity: 0;
  animation: wordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line {
  display: inline;
  opacity: 0;
  animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fc-line {
  display: inline;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card.visible .fc-line {
  opacity: 1;
}

.hero-buttons,
.steps-row {
  opacity: 0;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.hero-heading {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 1;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.444;
  color: var(--text-dim);
  max-width: 467px;
}

.hero-subtitle u {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 1.25;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-light:hover {
  background: rgba(214, 255, 245, 0.102);
  color: var(--text-primary);
  border-color: var(--btn-ghost-bdr);
}

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

.btn-ghost:hover {
  background: var(--btn-ghost-bg);
  border-color: rgba(214, 255, 245, 0.35);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 42px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 98px;
  max-width: 155px;
}

.step-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.step-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 1.25;
  color: var(--text-primary);
  text-align: left;
}


.step-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14px;
  line-height: 1.286;
  color: var(--text-muted);
  text-align: left;
  max-width: 160px;
}

.step--active .step-sub {
  color: rgba(214, 255, 245, 0.5);
}

.step-divider {
  width: 1px;
  height: 64px;
  min-height: 64px;
  background: var(--divider-light);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  align-self: flex-start;
}

.steps-row .step-divider:last-of-type {
  display: none;
}

.features {
  background: var(--bg-secondary);
  padding: 18px;
  scroll-margin-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.feature-card {
  border-radius: var(--radius-card);
  background: var(--footer-bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 616px;
}

.feature-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.38px;
  line-height: 1.053;
  color: var(--dark-text);
}

.feature-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  color: var(--dark-text-dim);
}

.feature-card-visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-prop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  background: rgba(217, 255, 245, 0.07);
  border-radius: var(--radius-card);
}

.value-prop-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-icon { flex-shrink: 0; }

.value-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 1.167;
  color: var(--footer-bg);
}

.value-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286;
  color: var(--text-dim);
}

.pricing {
  background: var(--bg-primary);
  padding: 160px 120px;
  min-height: 100vh;
  scroll-margin-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-heading {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 1;
  color: var(--text-primary);
  text-align: center;
}

.pricing-wrap {
  width: 100%;
  overflow: hidden;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.pricing-table::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pricing-border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.pricing-wrap.borders-visible .pricing-table::after {
  transform: scaleX(1);
}

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

.pricing-col--ultimate {
  position: relative;
}

.pricing-col--ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(to left, transparent 0%, var(--pricing-hl) 100%);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.pricing-col--ultimate.gradient-visible::before {
  width: 100%;
}

.pricing-header {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.pricing-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pricing-border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.pricing-wrap.borders-visible .pricing-header::after {
  transform: scaleX(1);
}

.pricing-header--border-r {
  position: relative;
}

.pricing-header--border-r::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--pricing-border);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.pricing-wrap.borders-visible .pricing-header--border-r::before {
  transform: scaleY(1);
}

.plan-name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 1.167;
  color: var(--footer-bg);
}

.plan-name--ultimate {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(23, 204, 158, 0.2));
  display: flex;
  align-items: center;
  gap: 10px;
}

.ultimate-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.plan-price {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.36px;
  line-height: 1;
  color: var(--footer-bg);
}

.plan-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-price-original {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 1;
  color: var(--text-dim);
  text-decoration: line-through;
}

.plan-gens {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286;
  color: var(--text-dim);
}

.pricing-features {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.pricing-features--border-r {
  position: relative;
}

.pricing-features--border-r::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--pricing-border);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.pricing-wrap.borders-visible .pricing-features--border-r::after {
  transform: scaleY(1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  line-height: 1.25;
  color: var(--footer-bg);
}

.feature-item--disabled {
  opacity: 0.3;
}

.check-icon { flex-shrink: 0; }
.check-icon--hidden { visibility: hidden; }

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 1.25;
  margin-top: auto;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-plan--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--btn-ghost-bdr);
}

.btn-plan--ghost:hover {
  background: var(--btn-ghost-bg);
  border-color: rgba(214, 255, 245, 0.35);
}

.btn-plan--accent {
  background: var(--text-primary);
  color: var(--btn-dark);
  border: 1px solid transparent;
}

.btn-plan--accent:hover {
  background: rgba(214, 255, 245, 0.102);
  color: var(--text-primary);
  border-color: var(--btn-ghost-bdr);
}

.payg-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.payg-left {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 4px;
}

.payg-name {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.24px;
  line-height: 1.167;
  color: var(--text-primary);
}

.payg-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.payg-price {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.36px;
  line-height: 1;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.btn-try-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: var(--btn-dark);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 1.25;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-try-now:hover {
  background: rgba(214, 255, 245, 0.102);
  color: var(--text-primary);
  border-color: var(--btn-ghost-bdr);
}

.payg-note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286;
  color: var(--text-dim);
}

.page-hero {
  background: var(--bg-primary);
  min-height: 100vh;
  padding: var(--nav-height) 18px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.page-card {
  width: 100%;
  max-width: 840px;
  background: #0b171b;
  border-radius: 32px;
  border: 1px solid #162326;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  overflow: hidden;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .page-card {
    margin-top: 18px;
  }
}

.page-tabs-wrap {
  padding: 12px;
  border-bottom: 1px solid #162326;
}

.page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  width: fit-content;
}

.page-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.14px;
  line-height: 1.143;
  color: var(--text-dim);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.page-tab:hover {
  background: rgba(214, 255, 245, 0.078);
  color: var(--text-primary);
}

.page-tab--active {
  background: rgba(214, 255, 245, 0.078);
  color: var(--text-primary);
}

.page-tab img { flex-shrink: 0; opacity: 0.698; transition: opacity 0.2s; }
.page-tab--active img,
.page-tab:hover img { opacity: 1; }

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid #162326;
}

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

img.faq-item-image {
  width: 293px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

div.faq-item-image {
  width: 293px;
  height: 97px;
  background: rgba(214, 255, 245, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

#tab-passport .faq-item-image,
#tab-faq .faq-item-image { display: none; }

.faq-item-text { display: flex; flex-direction: column; gap: 10px; }

.faq-item-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 1.143;
  color: var(--text-primary);
}

.faq-item-body {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16px;
  line-height: 1.571;
  color: var(--text-dim);
}

.faq-item-body p { margin-bottom: 10px; }
.faq-item-body p:last-child { margin-bottom: 0; }

.faq-item-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16px;
  line-height: 1.571;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-inline-image {
  display: block;
  max-width: 100%;
  width: 580px;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.faq-table-wrap { overflow-x: auto; }

.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}

.faq-table th,
.faq-table td {
  text-align: left;
  padding: 8px 12px;
  border: 1px solid #162326;
}

.faq-table th {
  color: var(--text-primary);
  background: rgba(214, 255, 245, 0.05);
  font-weight: 600;
}

.faq-table td:first-child { color: var(--text-primary); white-space: nowrap; }

.terms-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid #162326;
}

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

.terms-download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.22px;
  line-height: 1.3;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 8px;
}

.terms-download-link:hover {
  opacity: 0.75;
}

.terms-download-link svg {
  flex-shrink: 0;
}

.terms-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.terms-pdf-preview {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 8px;
  background: rgba(214, 255, 245, 0.05);
}

@media (max-width: 768px) {
  .page-tabs { width: 100%; border-radius: 24px; }
  div.faq-item-image { width: 100%; height: 160px; }
  img.faq-item-image { width: 100%; }
  .terms-pdf-preview { height: 300px; }
}

.gradient-section {
  height: 480px;
  width: 100%;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--accent) 50%, var(--footer-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gradient-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  filter: blur(24px);
  will-change: transform, opacity, filter;
}

.gradient-logo .logo-icon-dark {
  width: 477px;
  height: 96px;
}


.footer {
  background: var(--footer-bg);
  padding: 18px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 0.75; }


.footer-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286;
  color: var(--dark-text);
  max-width: 280px;
}

.footer-copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286;
  color: var(--dark-text);
  opacity: 0.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col-heading {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 1.25;
  color: var(--dark-text);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286;
  color: var(--dark-text);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-nav-link:hover { opacity: 1; }

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.286;
  color: var(--dark-text);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-contact-link:hover { opacity: 1; }
.footer-contact-link img { flex-shrink: 0; }

@media (max-width: 1100px) {
  .pricing {
    padding: 80px 40px;
  }

  .pricing-heading {
    font-size: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: 48px;
  }
}

@media (max-width: 768px) {

  .nav-links-wrap { display: none; }
  .nav-cta        { display: none; }
  .nav-hamburger  { display: flex; pointer-events: auto; }
  .header         { height: auto; background: var(--bg-primary); }

  .hero {
    padding: 100px 18px 60px;
    min-height: auto;
  }

  .hero-content {
    gap: 40px;
    padding-top: 20px;
  }

  .hero-heading {
    font-size: 36px;
    letter-spacing: -0.36px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn { width: 100%; justify-content: center; }

  .steps-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 320px;
    margin: 0 auto;
  }

  .step {
    align-items: center;
    text-align: center;
    max-width: none;
    min-width: 0;
  }

  .step-label,
  .step-sub {
    text-align: center;
  }

  .step-divider { display: none; }

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

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

  .feature-card-visual {
    aspect-ratio: 1 / 1;
  }

  .feature-card-title {
    font-size: 28px;
  }

  .value-props {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: 60px 0;
    min-height: auto;
  }

  .pricing-heading {
    font-size: 36px;
    padding: 0 18px;
  }

  .pricing-table {
    grid-template-columns: 1fr;
  }

  .pricing-table::after {
    display: none;
  }

  .pricing-col {
    border-bottom: 1px solid var(--pricing-border);
  }

  .pricing-col--ultimate::before {
    background: linear-gradient(to bottom, transparent 0%, var(--pricing-hl) 100%);
  }

  .pricing-header--border-r::before,
  .pricing-features--border-r::after {
    display: none;
  }

  .payg-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }

  .payg-left {
    align-items: flex-start;
  }

  .payg-right {
    width: 100%;
  }

  .btn-try-now {
    width: 100%;
  }

  .gradient-section {
    height: 360px;
  }

  .gradient-logo .logo-icon-dark {
    width: 240px;
    height: 48px;
  }

  .footer {
    padding: 18px 18px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 24px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 28px;
  }

  .pricing-heading {
    font-size: 28px;
  }
}
