:root {
  --navy: #0b1f33;
  --navy-2: #132f49;
  --green: #2fb673;
  --green-dark: #168956;
  --gold: #d6a84f;
  --ink: #1d2a35;
  --muted: #5f6f7b;
  --line: #dfe8e4;
  --soft: #f4f7f6;
  --soft-green: #e7f6ee;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(11, 31, 51, .12);
  --radius: 8px;
  --max: 1180px;
}

html {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--green-dark);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  max-width: 820px;
}

h3 {
  font-size: 1.18rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(223, 232, 228, .9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 170px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: .95rem;
  font-weight: 650;
  color: #314351;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding-inline: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--soft);
  font-weight: 800;
}

.lang-link:hover {
  color: var(--navy);
  background: var(--soft-green);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--soft-green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(47, 182, 115, .22);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: var(--soft);
  color: var(--navy);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.btn-dark:hover {
  color: var(--white);
  background: var(--navy-2);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: var(--soft);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(248, 251, 250, .98) 0%, rgba(248, 251, 250, .88) 44%, rgba(248, 251, 250, .42) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, calc(100vh - 120px), 760px);
  padding: 80px 0 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 1.16rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.proof-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: .98rem;
}

.proof-item span {
  color: var(--muted);
  font-size: .88rem;
}

.hero-visual {
  position: absolute;
  z-index: 2;
  right: -110px;
  top: 34px;
  width: min(70vw, 820px);
  opacity: .62;
  filter: drop-shadow(0 26px 38px rgba(11, 31, 51, .18));
  pointer-events: none;
}

.section {
  padding: 86px 0;
}

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

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-navy h2,
.section-navy h3,
.section-navy .section-kicker {
  color: var(--white);
}

.section-navy p,
.section-navy .check-list li {
  color: rgba(255, 255, 255, .78);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 540px;
  margin-bottom: 0;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.intro-card,
.feature-card,
.module-card,
.industry-card,
.pricing-card,
.faq-item,
.form-panel,
.testimonial,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.intro-card,
.feature-card,
.module-card,
.industry-card,
.pricing-card,
.testimonial,
.legal-card {
  padding: 24px;
}

.intro-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.1rem;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.module-card,
.industry-card,
.pricing-card,
.testimonial {
  box-shadow: 0 1px 0 rgba(11, 31, 51, .04);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--soft-green);
  font-weight: 850;
}

.icon-box.gold {
  background: #fff4dd;
}

.icon-box.navy {
  color: var(--white);
  background: var(--navy);
}

.module-card p,
.feature-card p,
.industry-card p,
.pricing-card p,
.testimonial p {
  margin: 12px 0 0;
}

.module-card h2,
.pricing-card h2 {
  font-size: 1.18rem;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: .6rem;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  gap: 46px;
  align-items: center;
}

.data-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.data-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
}

.data-row:last-child {
  border-bottom: 0;
}

.data-row strong {
  color: var(--white);
}

.band {
  padding: 46px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.band h2,
.band p {
  color: var(--white);
}

.band p {
  max-width: 700px;
  opacity: .78;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item h3 {
  font-size: 1.08rem;
}

.faq-item p {
  margin: 10px 0 0;
}

.page-hero {
  padding: 80px 0 58px;
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.12rem;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 750;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(47, 182, 115, .5);
  box-shadow: var(--shadow);
}

.plan-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--green-dark);
  background: var(--soft-green);
  font-size: .8rem;
  font-weight: 800;
}

.plan-price {
  margin: 18px 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 850;
}

.pricing-card .check-list {
  margin: 10px 0 24px;
}

.pricing-card .btn {
  margin-top: auto;
}

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

.pricing-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.pricing-toolbar h2 {
  max-width: 720px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 31, 51, .04);
}

.billing-option {
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.billing-option span {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: calc(var(--radius) - 2px);
  color: var(--green-dark);
  background: var(--soft-green);
  font-size: .75rem;
  line-height: 1;
}

.billing-option.is-active {
  color: var(--white);
  background: var(--navy);
}

.billing-option.is-active span {
  color: var(--navy);
  background: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card-top {
  min-height: 156px;
}

.pricing-card-top p {
  margin-top: 12px;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 18px;
  padding: 7px 11px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-size: .78rem;
  font-weight: 850;
}

.price-block {
  min-height: 80px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-value {
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.price-period {
  color: var(--muted);
  font-weight: 750;
}

.enterprise-card .price-value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.pricing-notes p {
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: .9rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.addon-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.addon-card p {
  margin: 10px 0 0;
  color: var(--green-dark);
  font-weight: 850;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--navy);
  background: var(--soft);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.comparison-table tbody th {
  width: 20%;
  color: var(--navy);
  font-weight: 850;
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

html[data-theme="dark"] body {
  color: #e8eef3;
  background: #081521;
}

html[data-theme="dark"] .site-header {
  background: rgba(8, 21, 33, .96);
  border-bottom-color: rgba(61, 84, 105, .7);
}

html[data-theme="dark"] .brand img,
html[data-theme="dark"] .footer-brand img {
  padding: 6px 8px;
  border-radius: var(--radius);
  background: var(--white);
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] label,
html[data-theme="dark"] .proof-item strong,
html[data-theme="dark"] .intro-card strong,
html[data-theme="dark"] .price-value,
html[data-theme="dark"] .comparison-table tbody th {
  color: #f7fbff;
}

html[data-theme="dark"] p,
html[data-theme="dark"] .check-list li,
html[data-theme="dark"] .proof-item span,
html[data-theme="dark"] .module-card p,
html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .industry-card p,
html[data-theme="dark"] .pricing-card p,
html[data-theme="dark"] .testimonial p,
html[data-theme="dark"] .price-period,
html[data-theme="dark"] .comparison-table td {
  color: #b9c7d3;
}

html[data-theme="dark"] .main-nav {
  color: #dce6ee;
}

html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-hero {
  background: linear-gradient(180deg, #0b1f33 0%, #081521 100%);
}

html[data-theme="dark"] .hero::before {
  background: #0f2234;
}

html[data-theme="dark"] .hero::after {
  background: linear-gradient(90deg, rgba(8, 21, 33, .96) 0%, rgba(8, 21, 33, .82) 48%, rgba(8, 21, 33, .36) 100%);
}

html[data-theme="dark"] .section-soft {
  background: #0f2234;
}

html[data-theme="dark"] .intro-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .module-card,
html[data-theme="dark"] .industry-card,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .form-panel,
html[data-theme="dark"] .testimonial,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .addon-card,
html[data-theme="dark"] .proof-item,
html[data-theme="dark"] .comparison-wrap {
  border-color: #20384e;
  background: #102438;
}

html[data-theme="dark"] .data-panel {
  background: rgba(255, 255, 255, .07);
}

html[data-theme="dark"] .pricing-notes p,
html[data-theme="dark"] .comparison-table thead th,
html[data-theme="dark"] .lang-link,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .checkbox-item {
  border-color: #29455f;
  color: #e8eef3;
  background: #132f49;
}

html[data-theme="dark"] .lang-link:hover,
html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .btn-secondary:hover {
  color: #f7fbff;
  background: #173a59;
}

html[data-theme="dark"] .nav-toggle,
html[data-theme="dark"] .main-nav.is-open {
  border-color: #29455f;
  color: #e8eef3;
  background: #102438;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  border-color: #29455f;
  color: #f7fbff;
  background: #0b1f33;
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: #94a7b7;
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .section-navy,
html[data-theme="dark"] .band {
  background: #06111d;
}

html[data-theme="dark"] .icon-box {
  color: #f7fbff;
  background: #173a59;
}

html[data-theme="dark"] .icon-box.gold {
  color: #0b1f33;
  background: var(--gold);
}

html[data-theme="dark"] .icon-box.navy {
  color: #0b1f33;
  background: #f7fbff;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: right;
}

html[dir="rtl"] .nav-wrap,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .split,
html[dir="rtl"] .grid-2,
html[dir="rtl"] .grid-3,
html[dir="rtl"] .grid-4,
html[dir="rtl"] .pricing-grid,
html[dir="rtl"] .addons-grid,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .form-grid {
  direction: rtl;
}

html[dir="rtl"] .hero::after {
  background: linear-gradient(270deg, rgba(248, 251, 250, .98) 0%, rgba(248, 251, 250, .88) 44%, rgba(248, 251, 250, .42) 100%);
}

html[dir="rtl"][data-theme="dark"] .hero::after {
  background: linear-gradient(270deg, rgba(8, 21, 33, .96) 0%, rgba(8, 21, 33, .82) 48%, rgba(8, 21, 33, .36) 100%);
}

html[dir="rtl"] .hero-visual {
  right: auto;
  left: -110px;
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .check-list li {
  padding-right: 28px;
  padding-left: 0;
}

html[dir="rtl"] .check-list li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .check-list li::after {
  right: 5px;
  left: auto;
}

html[dir="rtl"] .comparison-table {
  text-align: right;
}

html[dir="rtl"] .popular-badge {
  right: auto;
  left: 18px;
}

html[dir="rtl"] .checkbox-item {
  justify-content: flex-start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-panel {
  padding: 28px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 750;
  font-size: .94rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cddad5;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 182, 115, .18);
  border-color: var(--green);
}

.field-error {
  border-color: #b42318;
}

.error-text {
  min-height: 18px;
  color: #b42318;
  font-size: .84rem;
}

.form-note,
.form-success {
  margin-top: 16px;
  font-size: .92rem;
}

.form-success {
  display: none;
  padding: 14px;
  border-radius: var(--radius);
  color: #0f5f3c;
  background: var(--soft-green);
  font-weight: 750;
}

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

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .94rem;
}

.checkbox-item input {
  width: 16px;
  min-height: 16px;
}

.legal-content {
  display: grid;
  gap: 20px;
}

.legal-card h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.site-footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, .76);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}

.footer-brand img {
  width: 170px;
  height: auto;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px 8px;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  padding: 5px 0;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .9rem;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 14px;
    font-size: .9rem;
  }

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

  .hero-grid {
    min-height: 680px;
  }

  .hero-visual {
    right: -170px;
    top: 160px;
    width: 900px;
    opacity: .38;
  }

  html[dir="rtl"] .hero-visual {
    right: auto;
    left: -170px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(248, 251, 250, .98) 0%, rgba(248, 251, 250, .86) 54%, rgba(248, 251, 250, .5) 100%);
  }

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

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

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

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .main-nav .lang-link,
  .main-nav .theme-toggle {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .main-nav .btn {
    margin-top: 8px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head,
  .pricing-toolbar,
  .cta-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand img {
    width: 146px;
  }

  .hero-grid {
    padding: 54px 0 40px;
    min-height: 700px;
  }

  .hero-visual {
    right: -250px;
    top: 260px;
    width: 780px;
    opacity: .3;
  }

  html[dir="rtl"] .hero-visual {
    right: auto;
    left: -250px;
  }

  .hero-proof,
  .grid-4,
  .pricing-grid,
  .addons-grid,
  .pricing-notes,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-option {
    flex: 1;
  }

  .pricing-card-top {
    min-height: auto;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .band .btn,
  .form-panel .btn {
    width: 100%;
  }

  .band {
    padding: 28px;
  }

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