:root {
  color-scheme: light;
  --page: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4f7;
  --ink: #10202b;
  --ink-soft: #526777;
  --muted: #6f8190;
  --line: rgba(16, 32, 43, 0.13);
  --line-strong: rgba(16, 32, 43, 0.22);
  --teal: #0f9f92;
  --teal-dark: #08786f;
  --blue: #4c8dff;
  --amber: #eeb85f;
  --dark: #14232d;
  --dark-2: #20323f;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(26, 45, 58, 0.16);
  --radius: 10px;
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 6%, rgba(15, 159, 146, 0.14), transparent 30rem),
    linear-gradient(180deg, #f7fafc 0%, #edf4f7 46%, #f7fafc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 32, 43, 0.08);
  background: rgba(247, 250, 252, 0.86);
  backdrop-filter: blur(18px);
}

.nav__inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span {
  font-size: 17px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button,
.button-ghost,
.button-dark,
.pricing-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 16px 38px rgba(15, 159, 146, 0.22);
}

.button:hover,
.button-ghost:hover,
.button-dark:hover {
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav .button-ghost,
.footer .button-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.button-dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.pricing-button {
  width: 100%;
  margin-top: auto;
  color: var(--teal-dark);
  border-color: rgba(15, 159, 146, 0.34);
  background: rgba(15, 159, 146, 0.1);
}

.pricing-card:hover .pricing-button,
.pricing-card:focus-within .pricing-button,
.pricing-button:hover,
.pricing-button:focus {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 16px 38px rgba(15, 159, 146, 0.22);
}

.section,
.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 94px 0;
}

.hero,
.bleed {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 84px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 28, 38, 0.88) 0%, rgba(13, 28, 38, 0.58) 48%, rgba(13, 28, 38, 0.08) 100%),
    url("images/HeroImage7.webp") center / cover fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--page));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: block;
}

.hero__inner--overlay {
  max-width: 1320px;
}

.hero__inner--overlay > div {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-cta .eyebrow,
.pricing-hero .eyebrow {
  color: #8efff2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Roboto Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7.3vw, 108px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
}

p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero p,
.dark-cta p,
.pricing-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.lead {
  max-width: 760px;
  font-size: clamp(18px, 1.8vw, 22px);
}

.proof {
  margin: 20px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.hero .proof,
.dark-cta .proof {
  color: var(--white);
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 44px;
}

.mini-card,
.card,
.pricing-card,
.compare-card,
.step,
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(24, 43, 56, 0.08);
}

.mini-card {
  padding: 22px;
}

.mini-card strong,
.stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 48px;
  align-items: center;
}

.media-split--reverse {
  grid-template-columns: minmax(0, 0.64fr) minmax(280px, 0.36fr);
}

.media-split--reverse .media-split__image {
  order: 2;
}

.media-split--reverse .language-carousel {
  order: 2;
}

.media-split__image {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.media-split__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.media-split__image img[src*="HeroImage"] {
  aspect-ratio: 16 / 10;
}

.comparison-section {
  padding-top: 20px;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

.compare-card {
  min-height: 260px;
  padding: 34px;
}

.compare-card h3 {
  font-size: 22px;
}

.comparison-vs {
  align-self: center;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 32, 43, 0.14);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 18px 46px rgba(15, 159, 146, 0.18);
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.compare-card.good {
  border-color: rgba(15, 159, 146, 0.3);
  background: linear-gradient(180deg, rgba(15, 159, 146, 0.1), rgba(255, 255, 255, 0.86));
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.compare-card.bad .check-list li::before {
  background: var(--amber);
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

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

.step {
  min-height: 248px;
  padding: 20px;
}

.step span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 900;
}

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

.card {
  padding: 24px;
}

.card h2,
.pricing-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.14;
  font-weight: 850;
}

.card p,
.mini-card p,
.step p,
.stat p,
.pricing-card p,
.compare-card p {
  font-size: 14px;
}

.bleed-image {
  width: 100%;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 35, 46, 0.82), rgba(18, 35, 46, 0.2)),
    var(--bleed-image) center / cover fixed;
}

.bleed-image__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.bleed-image h2,
.bleed-image p {
  max-width: 720px;
  color: var(--white);
}

.offline {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: stretch;
}

.stat-grid {
  display: grid;
  gap: 14px;
}

.stat-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.stat {
  padding: 18px;
}

.template-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: center;
}

.template-stack {
  position: relative;
  min-height: 460px;
}

.template-stack img {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.template-stack img:nth-child(1) {
  left: 0;
  top: 0;
}

.template-stack img:nth-child(2) {
  right: 0;
  top: 86px;
}

.template-stack img:nth-child(3) {
  left: 18%;
  bottom: 0;
}

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

.workflow__cards .card {
  min-height: 300px;
}

.language-carousel {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

.language-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: languageFade 12s infinite;
}

.language-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.language-carousel img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes languageFade {
  0%, 8% {
    opacity: 0;
  }
  14%, 38% {
    opacity: 1;
  }
  46%, 100% {
    opacity: 0;
  }
}

.fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.field-pill {
  padding: 10px 13px;
  border: 1px solid rgba(15, 159, 146, 0.24);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 159, 146, 0.08);
  font-size: 13px;
  font-weight: 850;
}

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

.pricing-section {
  padding-top: 42px;
}

.billing-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 54px rgba(24, 43, 56, 0.08);
}

.billing-control h2 {
  margin-bottom: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.billing-control p:last-child {
  margin-bottom: 0;
}

.billing-toggle {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(15, 159, 146, 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(15, 159, 146, 0.07);
  cursor: pointer;
  user-select: none;
}

.billing-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.billing-toggle__track {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: rgba(16, 32, 43, 0.16);
  transition: background 0.18s ease;
}

.billing-toggle__track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(16, 32, 43, 0.2);
  transition: transform 0.18s ease;
}

.billing-toggle input:checked + .billing-toggle__track {
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.billing-toggle input:checked + .billing-toggle__track::after {
  transform: translateX(22px);
}

.billing-toggle__label {
  font-size: 14px;
  font-weight: 850;
}

.billing-toggle strong {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
}

.pricing-card:hover,
.pricing-card:focus-within,
.pricing-card:focus {
  border-color: rgba(15, 159, 146, 0.42);
  background: linear-gradient(180deg, rgba(15, 159, 146, 0.12), rgba(255, 255, 255, 0.92));
  box-shadow: 0 28px 90px rgba(15, 159, 146, 0.18);
  transform: translateY(-4px);
}

.pricing-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}

.pricing-card .check-list {
  margin-bottom: auto;
}

.billing-note {
  min-height: 44px;
  margin: -8px 0 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.price {
  color: var(--ink);
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.price [data-price] {
  color: var(--ink);
  font-family: "Roboto Condensed", Inter, sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.dark-cta {
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 35, 46, 0.9), rgba(18, 35, 46, 0.28)),
    url("images/HeroImage6.webp") center / cover fixed;
  box-shadow: var(--shadow);
}

.dark-cta__inner {
  max-width: 780px;
  padding: 70px;
}

.footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 22px;
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 32, 43, 0.58);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(16, 32, 43, 0.04);
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f7fafc;
  padding: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(var(--parallax-y, 0));
}

[data-parallax] {
  will-change: transform;
}

.pricing-hero {
  width: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 42px 0 34px;
  text-align: left;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 35, 46, 0.82), rgba(18, 35, 46, 0.58)),
    url("images/HeroImage9.webp") center / cover fixed;
}

.pricing-hero .section-inner {
  max-width: 1360px;
}

.pricing-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.7vw, 66px);
}

.pricing-hero .lead {
  max-width: 740px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 650;
  line-height: 1.48;
}

.policy-page {
  background:
    linear-gradient(180deg, rgba(18, 35, 46, 0.8), rgba(18, 35, 46, 0.34)),
    url("images/HeroImage.webp") center / cover fixed;
}

.policy-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.policy-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.policy-card h1 {
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1;
}

.policy-card h2 {
  margin-top: 30px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

.policy-card p,
.policy-card li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

.policy-card ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .nav__links {
    display: none;
  }

  .hero__inner,
  .split,
  .media-split,
  .media-split--reverse,
  .offline,
  .template-showcase {
    grid-template-columns: 1fr;
  }

  .media-split--reverse .media-split__image,
  .media-split--reverse .language-carousel {
    order: 0;
  }

  .feature-strip,
  .stat-grid--wide,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .billing-control {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 760px) {
  .nav__inner,
  .section,
  .section-inner,
  .footer,
  .hero__inner,
  .bleed-image__inner {
    width: min(100% - 28px, var(--max));
  }

  .nav__inner {
    min-height: 68px;
  }

  .nav .button {
    min-height: 38px;
    padding-inline: 13px;
  }

  .nav__actions {
    gap: 8px;
  }

  .nav__actions .button-dark {
    min-height: 38px;
    padding-inline: 13px;
  }

  .brand span {
    display: none;
  }

  .hero,
  .pricing-hero,
  .bleed-image,
  .dark-cta {
    background-attachment: scroll;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 56px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .feature-strip,
  .comparison,
  .grid-3,
  .steps,
  .workflow__cards,
  .stat-grid--wide,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .comparison-vs {
    justify-self: center;
  }

  .section {
    padding: 68px 0;
  }

  .bleed-image {
    min-height: 460px;
  }

  .dark-cta__inner {
    padding: 42px 24px;
  }

  .template-stack {
    min-height: 360px;
  }

  .footer {
    flex-direction: column;
  }
}
