@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  --theme: #238a87;
  --theme-dark: #1d7572;
  --theme-light: #42aba7;
  --accent: #66c3bf;
  --accent-soft: #99d7d4;
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --dark-border: rgba(35, 138, 135, 0.22);
  --text-light: #f1f5f9;
  --muted-dark: #94a3b8;
  --muted: #64748b;
  --light-bg: #f8fafc;
  --container: 1140px;
  --glow: rgba(35, 138, 135, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: #0f172a;
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-light);
}

.section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
}

.grid-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 8% 92%, rgba(35, 138, 135, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 30% 25% at 88% 12%, rgba(35, 138, 135, 0.08) 0%, transparent 60%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img.logo-mark {
  width: 40px;
  height: 40px;
}

.brand-wordmark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.section-light .brand-wordmark {
  color: var(--text-light, #101828);
}

.brand img.logo-wordmark {
  display: none;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted-dark);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark-bg);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 1.25rem;
}

.mobile-nav a {
  padding: 0.35rem 0;
  font-weight: 600;
  color: var(--text-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.35rem;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--theme), var(--theme-light));
  color: #fff;
  box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(35, 138, 135, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(35, 138, 135, 0.35);
}

.btn-ghost:hover {
  background: rgba(35, 138, 135, 0.12);
  border-color: rgba(35, 138, 135, 0.55);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: var(--dark-bg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(35, 138, 135, 0.35);
  background: rgba(35, 138, 135, 0.14);
  color: var(--accent);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-light);
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 32rem;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-panel {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(35, 138, 135, 0.12);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  background: var(--dark-bg);
}

.preview-header strong {
  color: #fff;
  font-size: 0.92rem;
}

.preview-pill {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(35, 138, 135, 0.18);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.preview-body {
  padding: 1.1rem;
}

.preview-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: #cbd5e1;
}

.preview-row > :nth-child(2) {
  text-align: center;
}

.preview-row > :nth-child(3) {
  text-align: right;
}

.preview-row.head {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-total {
  display: flex;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.section {
  padding: 6rem 0;
}

.section-light {
  background: var(--light-bg);
  border-top: 1px solid #e2e8f0;
}

.section-light .section-label {
  color: var(--theme);
}

.section-light .section-title {
  color: #0f172a;
}

.section-light .section-lead {
  color: var(--muted);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head .section-lead {
  margin-inline: auto;
}

.feature-grid,
.steps-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card,
.step-card {
  height: 100%;
  padding: 1.6rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(35, 138, 135, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(35, 138, 135, 0.1);
  color: var(--theme);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: #0f172a;
}

.feature-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

.section-dark .section-title {
  color: var(--text-light);
}

.section-dark .section-lead {
  color: var(--muted-dark);
}

.steps-grid {
  counter-reset: step;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: static;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--theme), var(--theme-light));
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.step-card h3 {
  margin: 0;
  color: var(--text-light);
}

.step-card p {
  color: var(--muted-dark);
}

.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(35, 138, 135, 0.1) 0%, transparent 70%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-toggle-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.toggle-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-dark);
  cursor: pointer;
  user-select: none;
}

.toggle-label.active {
  color: var(--text-light);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(35, 138, 135, 0.3);
  transition: background 0.25s ease;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--theme);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.save-badge {
  display: inline-block;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(35, 138, 135, 0.4);
  background: rgba(35, 138, 135, 0.18);
  color: var(--accent);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pricing-grid-4,
.pricing-grid-3 {
  grid-template-columns: 1fr;
}

.feat-star {
  color: var(--accent);
  font-weight: 700;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.35rem;
  border-radius: 18px;
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  background: linear-gradient(160deg, #0e2f2e 0%, #0f2744 100%);
  border-color: rgba(35, 138, 135, 0.55);
  box-shadow:
    0 0 0 1px rgba(35, 138, 135, 0.35),
    0 0 60px rgba(35, 138, 135, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--theme), var(--theme-light));
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(35, 138, 135, 0.45);
  white-space: nowrap;
}

.plan-label {
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.plan-name {
  margin-bottom: 0.35rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-light);
}

.plan-desc {
  margin: 0 0 1.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.price-amount {
  margin-bottom: 0.35rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-light);
}

.price-card.featured .price-amount {
  color: var(--accent);
}

.price-custom {
  font-size: 2.25rem;
}

.price-period {
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.price-strike {
  min-height: 20px;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: #475569;
}

.price-strike s {
  color: var(--muted);
}

/* Seat calculator — per-user pricing only means something once you can see
   your own number, so the card does the arithmetic instead of the visitor. */
.seat-calc {
  margin-bottom: 0.25rem;
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  background: rgba(35, 138, 135, 0.08);
}

.seat-calc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.seat-calc-head label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-dark);
  cursor: pointer;
}

.seat-calc-head output {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

.seat-range {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 6px;
  margin: 0;
  border-radius: 999px;
  background: rgba(35, 138, 135, 0.3);
  cursor: pointer;
}

.seat-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--theme);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}

.seat-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--theme);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}

.seat-range:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.seat-total {
  margin: 0.8rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted-dark);
}

.seat-total strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.feature-list {
  list-style: none;
  margin: 0 0 auto;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-dark);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: inline-grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(35, 138, 135, 0.15);
  color: var(--theme-light);
  font-size: 0.65rem;
  font-weight: 700;
}

.price-card.featured .feature-list {
  border-top-color: rgba(35, 138, 135, 0.2);
}

.price-card.featured .feature-list li {
  color: #cbd5e1;
  border-bottom-color: rgba(35, 138, 135, 0.08);
}

.card-cta {
  width: 100%;
  margin-top: 1.75rem;
}

.pricing-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #475569;
}

.pricing-note strong {
  color: var(--text-light);
}

.pricing-note a {
  color: var(--accent);
}

.pricing-note a:hover {
  text-decoration: underline;
}

.price-monthly {
  display: inline;
}

.price-annual {
  display: none;
}

/* ---- Plan comparison matrix ---- */
.compare-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark-surface);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-dark);
  white-space: nowrap;
}

.compare-table thead th {
  position: sticky;
  top: 0;
  background: #223049;
  color: var(--text-light);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  z-index: 1;
}

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

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th[scope="row"] {
  background: rgba(255, 255, 255, 0.02);
}

.compare-feature-col,
.compare-table th[scope="row"] {
  text-align: left;
  color: var(--text-light);
  font-weight: 600;
  white-space: normal;
  min-width: 220px;
}

.compare-pro-col {
  background: rgba(35, 138, 135, 0.08);
  color: var(--text-light);
}

.compare-table thead th.compare-pro-col {
  background: linear-gradient(135deg, var(--theme), var(--theme-dark));
  color: #fff;
}

.compare-table .ok {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(35, 138, 135, 0.16);
  color: var(--theme-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.compare-table .no {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.1);
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
}

.compare-note {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #475569;
}

.annual-strike {
  display: none;
}

body.annual-active .price-monthly {
  display: none;
}

body.annual-active .price-annual {
  display: inline;
}

body.annual-active .annual-strike {
  display: block;
}

.cta-band {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--theme-dark), var(--dark-bg));
  border-top: 1px solid var(--dark-border);
}

.cta-band .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-band p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted-dark);
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #0b121f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.95rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li + li {
  margin-top: 0.45rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .footer-bottom,
  .cta-band .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1100px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .price-card {
    padding: 1.85rem 1.4rem;
  }

  .plan-desc {
    margin-bottom: 1.35rem;
  }

  .feature-list li {
    font-size: 0.9rem;
  }
}

@media (min-width: 1400px) {
  :root {
    --container: 1320px;
  }
}

@media (max-width: 767px) {
  .price-card.featured {
    margin-top: 1rem;
  }
}
