:root {
  --m-bg-primary: #fbfaf8;
  --m-bg-secondary: #f4f4f5;
  --m-bg-card: #ffffff;
  --m-text-primary: #18181b;
  --m-text-secondary: #52525b;
  --m-text-muted: #a1a1aa;
  --m-accent: #2563eb;
  --m-accent-light: #eff6ff;
  --m-accent-hover: #1d4ed8;
  --m-accent-dark: #1e40af;
  --m-border: #e4e4e7;
  --m-success: #10b981;
  --m-radius: 12px;
  --m-radius-lg: 16px;
  --m-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --m-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --m-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --gdpr-bg: rgba(0, 0, 0, 0.02);
  --gdpr-border: rgba(0, 0, 0, 0.075);
  --gdpr-bg-hover: rgba(0, 0, 0, 0.035);
  --gdpr-border-hover: rgba(0, 0, 0, 0.12);
  --gdpr-icon-fill: rgba(0, 0, 0, 0.018);
  --gdpr-icon-stroke: rgba(0, 0, 0, 0.12);
  --gdpr-icon-check: rgba(0, 0, 0, 0.38);
  --gdpr-text: rgba(0, 0, 0, 0.58);
}

[data-theme="dark"] {
  --m-bg-primary: #0a0a0b;
  --m-bg-secondary: #111113;
  --m-bg-card: #18181b;
  --m-text-primary: #f1f5f9;
  --m-text-secondary: #a1a1aa;
  --m-text-muted: #71717a;
  --m-border: rgba(255, 255, 255, 0.12);
  --m-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --m-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
  --m-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --gdpr-bg: rgba(255, 255, 255, 0.055);
  --gdpr-border: rgba(255, 255, 255, 0.15);
  --gdpr-bg-hover: rgba(255, 255, 255, 0.08);
  --gdpr-border-hover: rgba(255, 255, 255, 0.24);
  --gdpr-icon-fill: rgba(255, 255, 255, 0.045);
  --gdpr-icon-stroke: rgba(255, 255, 255, 0.24);
  --gdpr-icon-check: rgba(255, 255, 255, 0.72);
  --gdpr-text: rgba(255, 255, 255, 0.74);
}

[data-theme="light"] .theme-toggle .sun-icon { display: block; }
[data-theme="light"] .theme-toggle .moon-icon { display: none; }
.theme-toggle .sun-icon { display: none; }

body.marketing-page {
  margin: 0;
  background: var(--m-bg-primary);
}


.marketing-shell {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 450;
  background: var(--m-bg-primary);
  color: var(--m-text-primary);
  line-height: 1.6;
}

.share-view .marketing-shell,
.share-view-only .marketing-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.share-view .marketing-shell > .marketing-footer,
.share-view-only .marketing-shell > .marketing-footer {
  margin-top: auto;
}

.marketing-shell .marketing-nav {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--m-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

[data-theme="dark"] .marketing-shell .marketing-nav {
  background: rgba(17, 17, 19, 0.85);
}

.marketing-shell .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketing-shell .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.marketing-shell .nav-logo img {
  height: 32px;
  width: auto;
}

.marketing-shell .nav-logo .nav-logo-dark {
  display: none;
}

[data-theme="dark"] .marketing-shell .nav-logo .nav-logo-light {
  display: none;
}

[data-theme="dark"] .marketing-shell .nav-logo .nav-logo-dark {
  display: block;
}

.marketing-shell .nav-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--m-text-primary);
}

.marketing-shell .nav-logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.marketing-shell .nav-logo-subtext {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--m-text-secondary);
}

@media (max-width: 768px) {
  .marketing-shell .nav-logo-subtext {
    display: none;
  }
}

.marketing-shell .nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.marketing-shell .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.marketing-shell .nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.marketing-shell .nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.marketing-shell .nav-link-dropdown::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
}

.marketing-shell .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--m-border);
  border-radius: 12px;
  box-shadow: 0 14px 28px -18px rgba(15, 23, 42, 0.5);
  padding: 8px;
  display: grid;
  gap: 2px;
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

[data-theme="dark"] .marketing-shell .nav-dropdown-menu {
  background: rgba(20, 20, 22, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 30px -18px rgba(0, 0, 0, 0.72);
}

.marketing-shell .nav-dropdown-menu-tools {
  min-width: 520px;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  column-gap: 10px;
  align-items: start;
}

.marketing-shell .nav-dropdown-col {
  display: grid;
  gap: 2px;
}

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

.marketing-shell .nav-dropdown-item {
  display: block;
  text-decoration: none;
  color: var(--m-text-secondary);
  font-size: 0.845rem;
  line-height: 1.3;
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  white-space: nowrap;
}

.marketing-shell .nav-dropdown-item:hover,
.marketing-shell .nav-dropdown-item:focus-visible {
  color: var(--m-text-primary);
  background: var(--m-bg-secondary);
  outline: none;
}

.marketing-shell .nav-link {
  font-size: 0.875rem;
  color: var(--m-text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.marketing-shell .nav-link:hover {
  color: var(--m-text-primary);
  background: var(--m-bg-secondary);
}

.marketing-shell .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.marketing-shell .lang-selector {
  position: relative;
  display: inline-block;
}

.marketing-shell .lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 9px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--m-border);
  background: var(--m-bg-card);
  color: var(--m-text-primary);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-shadow: var(--m-shadow-sm);
}

.marketing-shell .lang-trigger:hover,
.marketing-shell .lang-selector.open .lang-trigger {
  border-color: color-mix(in srgb, var(--m-border) 68%, var(--m-text-primary));
  background: var(--m-bg-secondary);
}

.marketing-shell .lang-trigger:focus-visible {
  outline: 2px solid var(--m-accent);
  outline-offset: 2px;
}

.marketing-shell .lang-flag {
  font-size: 15px;
  line-height: 1;
}

.marketing-shell .lang-code {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 350;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--m-text-secondary);
}

.marketing-shell .lang-chev {
  font-size: 8px;
  line-height: 1;
  color: var(--m-text-muted);
  transform-origin: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.marketing-shell .lang-selector.open .lang-chev {
  transform: rotate(180deg);
  color: var(--m-text-secondary);
}

.marketing-shell .lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 220px;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--m-border);
  background: var(--m-bg-card);
  box-shadow: var(--m-shadow-lg);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.18s ease;
  z-index: 240;
}

.marketing-shell .lang-selector.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.marketing-shell .lang-item {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: left;
  color: var(--m-text-primary);
  cursor: pointer;
  transition: background 0.15s ease;
}

.marketing-shell .lang-item:hover {
  background: var(--m-bg-secondary);
}

.marketing-shell .lang-item.is-active {
  background: color-mix(in srgb, var(--m-accent) 10%, transparent);
}

.marketing-shell .lang-item-flag {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.marketing-shell .lang-item-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.marketing-shell .lang-item-name {
  font-size: 12px;
  color: var(--m-text-primary);
}

.marketing-shell .lang-item-locale {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--m-text-muted);
  letter-spacing: 0.08em;
}

.marketing-shell .lang-item-check {
  margin-left: auto;
  font-size: 11px;
  color: var(--m-accent);
  opacity: 0;
}

.marketing-shell .lang-item.is-active .lang-item-check {
  opacity: 1;
}

.marketing-shell .theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--m-bg-card);
  border: 1px solid var(--m-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
  box-shadow: var(--m-shadow-sm);
}

.marketing-shell .theme-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--m-text-secondary);
}

.marketing-shell .theme-toggle:hover {
  background: var(--m-bg-secondary);
}

.marketing-shell .nav-btn {
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.marketing-shell .nav-btn-ghost {
  color: var(--m-text-secondary);
  background: transparent;
}

.marketing-shell .nav-btn-ghost:hover {
  color: var(--m-text-primary);
  background: var(--m-bg-secondary);
}

.marketing-shell .nav-btn-primary {
  background: var(--m-accent);
  color: white;
}

.marketing-shell .nav-btn-primary:hover {
  background: var(--m-accent-hover);
}

#navDashboardBtn:not(.hidden) {
  margin-left: 10px;
}

@media (min-width: 901px) {
  #navDashboardBtn:not(.hidden) {
    min-width: 156px;
    text-align: center;
  }
}

.marketing-shell .nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: 15px;
    margin-right: 0;
}


.marketing-shell .nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--m-text-primary);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.marketing-shell .nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--m-border);
  box-shadow: var(--m-shadow-md);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
}

.marketing-shell .nav-mobile-menu.open {
  display: flex;
}

.marketing-shell .nav-mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--m-text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.marketing-shell .nav-mobile-menu a:hover {
  background: var(--m-bg-secondary);
  color: var(--m-text-primary);
}

.marketing-shell .nav-mobile-menu .mobile-divider {
  height: 1px;
  background: var(--m-border);
  margin: 0.5rem 0;
}

.marketing-shell .nav-mobile-menu .mobile-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0 0;
}

.marketing-shell .nav-mobile-menu .mobile-actions a {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
}

.marketing-shell .nav-mobile-menu .mobile-btn-primary {
  background: var(--m-accent);
  color: white !important;
}

.marketing-shell .nav-mobile-menu .mobile-btn-primary:hover {
  background: var(--m-accent-hover);
}

[data-theme="dark"] .marketing-shell .nav-mobile-menu {
  background: #111113;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .marketing-shell .nav-mobile-menu a {
  color: #d4d4d8;
}

[data-theme="dark"] .marketing-shell .nav-mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

[data-theme="dark"] .marketing-shell .nav-mobile-menu .mobile-divider {
  background: rgba(255, 255, 255, 0.14);
}

.marketing-shell .nav-mobile-toggle.open svg path:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.marketing-shell .nav-mobile-toggle.open svg path:nth-child(2) {
  opacity: 0;
}

.marketing-shell .nav-mobile-toggle.open svg path:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.marketing-shell .nav-mobile-toggle svg path {
  transition: all 0.3s ease;
  transform-origin: center;
}

.marketing-shell .marketing-hero {
  text-align: center;
  padding: 3.5rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.marketing-shell .marketing-hero h1 {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--m-text-primary);
  line-height: 1.15;
  white-space: nowrap;
}

.marketing-shell .hero-title-line {
  display: inline;
  white-space: nowrap;
}

.marketing-shell .hero-title-line + .hero-title-line {
  margin-left: 0.28ch;
}

.marketing-shell .marketing-hero-subtitle {
  margin: 0.95rem auto 0;
  max-width: 660px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.96rem, 1.7vw, 1.06rem);
  font-weight: 450;
  line-height: 1.5;
  color: var(--m-text-secondary);
  opacity: 0.9;
}

@media (min-width: 769px) {
  .marketing-shell .marketing-hero-subtitle {
    max-width: none;
    white-space: nowrap;
  }
}

.marketing-shell .gdpr-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 16px auto 34px;
  max-width: 640px;
}

.marketing-shell .gdpr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid var(--gdpr-border);
  border-radius: 9px;
  padding: 7px 13px 7px 10px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1px;
  color: var(--gdpr-text);
  text-decoration: none;
  background: var(--gdpr-bg);
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.marketing-shell .gdpr-pill:hover {
  border-color: var(--gdpr-border-hover);
  background: var(--gdpr-bg-hover);
}

.marketing-shell .gdpr-pill-icon {
  width: 19px;
  height: 21px;
  flex: 0 0 auto;
}

.marketing-shell .gdpr-pill-icon-bg {
  fill: var(--gdpr-icon-fill);
  stroke: var(--gdpr-icon-stroke);
}

.marketing-shell .gdpr-pill-icon-check {
  stroke: var(--gdpr-icon-check);
}

.marketing-shell .gdpr-pill-badge-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  color: inherit;
  letter-spacing: 0.1px;
}

[data-theme="dark"] .marketing-shell .gdpr-pill {
  border-color: var(--gdpr-border);
  color: var(--gdpr-text);
  background: var(--gdpr-bg);
}

[data-theme="dark"] .marketing-shell .gdpr-pill:hover {
  border-color: var(--gdpr-border-hover);
  background: var(--gdpr-bg-hover);
}

[data-theme="dark"] .marketing-shell .gdpr-pill-icon-bg {
  fill: var(--gdpr-icon-fill);
  stroke: var(--gdpr-icon-stroke);
}

[data-theme="dark"] .marketing-shell .gdpr-pill-icon-check {
  stroke: var(--gdpr-icon-check);
}

.marketing-shell .social-proof-wrap {
  display: flex;
  justify-content: center;
  padding: 0;
}

.marketing-shell .sp-badge,
.marketing-shell .sp-badge-slot {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
}

.marketing-shell .sp-avatars {
  display: flex;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.14));
}

.marketing-shell .sp-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #f0efe9;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -10px;
}

.marketing-shell .sp-av:first-child {
  margin-left: 0;
}

.marketing-shell .sp-divider {
  width: 1px;
  height: 32px;
  background: #d4d3cc;
}

.marketing-shell .sp-text {
  font-size: 14px;
  color: #444;
  line-height: 1.35;
}

.marketing-shell .sp-text strong {
  font-weight: 700;
  color: #111;
}

.marketing-shell .sp-stars {
  color: #f59e0b;
  font-size: 13px;
  display: block;
  letter-spacing: 1px;
}

[data-theme="dark"] .marketing-shell .sp-av {
  border-color: #1f232b;
}

[data-theme="dark"] .marketing-shell .sp-divider {
  background: #3a414f;
}

[data-theme="dark"] .marketing-shell .sp-text {
  color: #9ca3af;
}

[data-theme="dark"] .marketing-shell .sp-text strong {
  color: #f3f4f6;
}

.marketing-shell .solution-intent {
  max-width: 1100px;
  margin: 2.25rem auto 0;
  padding: 0 1.5rem;
}

.marketing-shell .solution-intent-inner {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.02));
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--m-radius-lg);
  padding: 1.5rem 1.65rem;
}

.marketing-shell .solution-intent-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-accent);
  margin-bottom: 0.5rem;
}

.marketing-shell .solution-intent-title {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.2rem, 1.35vw, 1.45rem);
  line-height: 1.3;
  margin: 0 0 0.55rem;
  color: var(--m-text-primary);
}

.marketing-shell .solution-intent-lead {
  margin: 0;
  color: var(--m-text-secondary);
  font-size: 0.97rem;
  line-height: 1.62;
}

.marketing-shell .solution-intent-list {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--m-text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

.marketing-shell .solution-intent-list strong {
  color: var(--m-text-primary);
  font-weight: 650;
}

.marketing-shell .solution-intent-output {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--m-text-secondary);
}

.marketing-shell .solution-intent-output strong {
  color: var(--m-text-primary);
}

[data-theme="dark"] .marketing-shell .solution-intent-inner {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.06));
  border-color: rgba(147, 197, 253, 0.3);
}

.marketing-shell .marketing-features {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.marketing-shell .marketing-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.marketing-shell .marketing-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--m-accent);
  background: var(--m-accent-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

[data-theme="dark"] .marketing-shell .marketing-section-eyebrow {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.2);
}

.marketing-shell .marketing-section-title {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.marketing-shell .marketing-section-subtitle {
  font-size: 1.05rem;
  color: var(--m-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.marketing-shell .features-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--m-border);
  border-radius: var(--m-radius-lg);
  overflow: hidden;
}

.marketing-shell .feature-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--m-bg-card);
  transition: background 0.2s;
}

.marketing-shell .feature-row:hover {
  background: var(--m-accent-light);
}

.marketing-shell .feature-label {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid var(--m-border);
}

.marketing-shell .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--m-accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marketing-shell .feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--m-accent);
}

.marketing-shell .feature-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--m-text-primary);
}

.marketing-shell .feature-content {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
}

.marketing-shell .feature-desc {
  font-size: 0.925rem;
  color: var(--m-text-secondary);
  line-height: 1.6;
}

.marketing-shell .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.marketing-shell .feature-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: var(--m-bg-secondary);
  border-radius: 4px;
  color: var(--m-text-secondary);
}

.marketing-shell .marketing-why {
  max-width: 900px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.marketing-shell .why-content {
  background: linear-gradient(135deg, var(--m-accent) 0%, var(--m-accent-dark) 100%);
  border-radius: var(--m-radius-lg);
  padding: 3.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .marketing-shell .why-content {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.marketing-shell .why-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.marketing-shell .why-content::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.marketing-shell .why-inner {
  position: relative;
  z-index: 1;
}

.marketing-shell .why-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1rem;
  text-align: center;
}

.marketing-shell .why-title {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.marketing-shell .why-text {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 700px;
}

.marketing-shell .why-text p {
  margin-bottom: 1.25rem;
}

.marketing-shell .why-text p:last-child {
  margin-bottom: 0;
}

.marketing-shell .why-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marketing-shell .why-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.marketing-shell .why-author {
  font-weight: 600;
  font-size: 0.95rem;
}

.marketing-shell .why-role {
  font-size: 0.85rem;
  opacity: 0.75;
}

.marketing-shell .marketing-pricing {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.marketing-shell .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.marketing-shell .pricing-group {
  margin-top: 1.5rem;
}

.marketing-shell .pricing-payg {
  display: none;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.marketing-shell .plan-card {
  background: var(--m-bg-card);
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.marketing-shell .pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.marketing-shell .pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

[data-theme="dark"] .marketing-shell .pricing-card__header {
  color: var(--m-text-primary);
}

.marketing-shell .pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 0.9rem;
  border-radius: 0 0 0 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #3b82f6;
  color: white;
}

.marketing-shell .pricing-card--popular {
  background: #0f172a;
  border: 2px solid #3b82f6;
  color: white;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

[data-theme="dark"] .marketing-shell .pricing-card--popular {
  background: #0b1220;
}

.marketing-shell .pricing-card--popular .plan-desc {
  color: rgba(226, 232, 240, 0.7);
}

.marketing-shell .pricing-card--popular .price-currency,
.marketing-shell .pricing-card--popular .price-period {
  color: rgba(226, 232, 240, 0.6);
}

.marketing-shell .pricing-card--popular .plan-features li {
  color: rgba(226, 232, 240, 0.8);
  border-bottom-color: rgba(148, 163, 184, 0.2);
}

.marketing-shell .pricing-card--popular .plan-features svg {
  stroke: #60a5fa;
}

.marketing-shell .plan-minutes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #eef2ff;
  color: #2563eb;
  width: fit-content;
}

[data-theme="dark"] .marketing-shell .plan-minutes {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}

.marketing-shell .pricing-card--popular .plan-minutes {
  background: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
}

.marketing-shell .plan-minutes--payg {
  background: #fffbeb;
  color: #d97706;
}

[data-theme="dark"] .marketing-shell .plan-minutes--payg {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.marketing-shell .payg-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  width: fit-content;
}

.marketing-shell .payg-note-toggle {
  border: none;
  background: transparent;
  color: var(--m-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.marketing-shell .payg-note-tooltip {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  border: 1px solid var(--m-border);
  box-shadow: var(--m-shadow-md);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.72rem;
  color: var(--m-text-secondary);
  display: none;
  min-width: 220px;
  z-index: 5;
}

[data-theme="dark"] .marketing-shell .payg-note-toggle {
  color: var(--m-text-muted);
}

[data-theme="dark"] .marketing-shell .payg-note-tooltip {
  background: #0f0f12;
  border-color: rgba(255, 255, 255, 0.16);
  color: #d4d4d8;
}

.marketing-shell .payg-note-tooltip div + div {
  margin-top: 0.35rem;
}

@media (hover: hover) and (pointer: fine) {
  .marketing-shell .payg-note:hover .payg-note-tooltip {
    display: block;
  }
}

@media (hover: none) and (pointer: coarse) {
  .marketing-shell .payg-note.is-open .payg-note-tooltip {
    display: block;
  }
}

.marketing-shell .payg-slider {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.marketing-shell .payg-slider__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--m-text-primary);
}

.marketing-shell .payg-slider__minutes {
  width: 90px;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid var(--m-border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--m-text-primary);
  background: white;
}

[data-theme="dark"] .marketing-shell .payg-slider__minutes {
  background: #111113;
  border-color: rgba(255, 255, 255, 0.16);
  color: #f1f5f9;
}

.marketing-shell .payg-slider__price {
  color: #d97706;
  font-weight: 700;
}

.marketing-shell .payg-slider__input {
  width: 100%;
  accent-color: #f59e0b;
}

.marketing-shell .payg-slider__ticks {
  position: relative;
  height: 16px;
  font-size: 0.7rem;
  color: var(--m-text-muted);
}

[data-theme="dark"] .marketing-shell .payg-slider__labels {
  color: var(--m-text-primary);
}

[data-theme="dark"] .marketing-shell .payg-slider__ticks {
  color: var(--m-text-muted);
}

[data-theme="dark"] .marketing-shell .payg-expiry-note {
  color: var(--m-text-muted);
}

.marketing-shell .payg-slider__ticks span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.marketing-shell .payg-slider__ticks span:first-child {
  transform: translateX(0);
}

.marketing-shell .payg-slider__ticks span:last-child {
  transform: translateX(-100%);
}

.marketing-shell .payg-expiry-note {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: var(--m-text-muted);
}

.marketing-shell .pricing-card--payg {
  border-color: #f5d58c;
}

.marketing-shell .pricing-card--payg .plan-features svg {
  stroke: #f59e0b;
}

.marketing-shell .plan-card:hover {
  box-shadow: var(--m-shadow-lg);
  transform: translateY(-2px);
}

.marketing-shell .plan-card.featured {
  border: 2px solid var(--m-accent);
  background: linear-gradient(to bottom, var(--m-accent-light), var(--m-bg-card));
}

[data-theme="dark"] .marketing-shell .feature-row:hover {
  background: var(--m-bg-secondary);
}

[data-theme="dark"] .marketing-shell .feature-icon {
  background: rgba(37, 99, 235, 0.18);
}

[data-theme="dark"] .marketing-shell .feature-icon svg {
  stroke: #93c5fd;
}

[data-theme="dark"] .marketing-shell .plan-card.featured {
  border-color: #3b82f6;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), var(--m-bg-card));
}

.marketing-shell .plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--m-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marketing-shell .plan-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.marketing-shell .plan-desc {
  font-size: 0.875rem;
  color: var(--m-text-secondary);
  margin-bottom: 1.25rem;
}

.marketing-shell .pricing-card .plan-desc {
  margin-bottom: 0.6rem;
}

.marketing-shell .plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.marketing-shell .price-currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--m-text-secondary);
}

.marketing-shell .price-amount {
  font-family: inherit;
  font-size: 2.5rem;
  font-weight: 600;
}

.marketing-shell .price-period {
  font-size: 0.9rem;
  color: var(--m-text-muted);
}

.marketing-shell .plan-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.marketing-shell .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--m-text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--m-bg-secondary);
}

.marketing-shell .pricing-card .plan-features li {
  border-bottom: none;
  padding: 0.45rem 0;
}

.marketing-shell .plan-features li:last-child {
  border-bottom: none;
}

.marketing-shell .plan-features .feature-subtext {
  display: block;
  font-size: calc(1em - 0.5px);
  line-height: 1.25;
  opacity: 0.9;
}

.marketing-shell .plan-features svg {
  width: 18px;
  height: 18px;
  stroke: var(--m-success);
  flex-shrink: 0;
  margin-top: 1px;
}

.marketing-shell .plan-features[data-show-all="false"] li:nth-child(n + 6) {
  display: none;
}

.marketing-shell .plan-features-toggle {
  border: none;
  background: transparent;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0;
  margin-top: -0.25rem;
  cursor: pointer;
  width: fit-content;
}

.marketing-shell .pricing-card--popular .plan-features-toggle {
  color: #60a5fa;
}

.marketing-shell .plan-features-toggle--payg {
  color: #d97706;
}

.marketing-shell .plan-btn-amber {
  background: #f59e0b;
  color: white;
}

.marketing-shell .plan-btn-amber:hover {
  background: #d97706;
}

.marketing-shell .plan-tier-badge {
  font-size: 0.765rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 5.4px 10.8px;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.marketing-shell .plan-tier-badge--silver {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #475569;
  border-color: #e2e8f0;
}

.marketing-shell .plan-tier-badge--gold {
  background: linear-gradient(135deg, #fff7ed 0%, #fde68a 100%);
  color: #92400e;
  border-color: #fcd34d;
}

.marketing-shell .plan-tier-badge--platinum {
  background: linear-gradient(135deg, #0f172a 0%, #111827 40%, #1f2937 100%);
  color: #e5e7eb;
  border-color: #334155;
}

.marketing-shell .plan-tier-badge--free {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #64748b;
  border-color: #e2e8f0;
}

[data-theme="dark"] .marketing-shell .plan-tier-badge--free {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #cbd5e1;
  border-color: #374151;
}

.marketing-shell .billing-cycle-toggle {
  margin: 1.5rem auto 0;
  padding: 4px;
  background: white;
  border-radius: 12px;
  display: flex;
  width: fit-content;
  gap: 4px;
  border: 1px solid var(--m-border);
  box-shadow: var(--m-shadow-sm);
  justify-content: center;
}

[data-theme="dark"] .marketing-shell .billing-cycle-toggle {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.marketing-shell .billing-cycle-btn {
  border: none;
  background: transparent;
  color: var(--m-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: all 0.2s ease;
}

.marketing-shell .billing-cycle-btn.is-active {
  color: #2563eb;
}

.marketing-shell .billing-cycle-btn__discount {
  font-size: 0.625rem;
  font-weight: 700;
  background: #10b981;
  color: white;
  padding: 2px 6px;
  border-radius: 6px;
}

.marketing-shell .billing-cycle-btn__underline {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 32px;
  height: 2px;
  background: #2563eb;
  border-radius: 999px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.marketing-shell .billing-cycle-btn.is-active .billing-cycle-btn__underline {
  transform: translateX(-50%) scaleX(1);
}

@media (max-width: 720px) {
  .marketing-shell .billing-plan-modal__toggle.billing-cycle-toggle {
    margin: 1.1rem auto 0.85rem;
    padding: 5px;
    gap: 5px;
    width: min(100%, 420px);
  }

  .marketing-shell .billing-cycle-toggle {
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }

  .marketing-shell .billing-plan-modal__toggle.billing-cycle-toggle .billing-cycle-btn {
    font-size: 0.8625rem;
    padding: 9px 11px;
    min-height: 36px;
  }

  .marketing-shell .billing-cycle-btn__underline {
    width: 24px;
    bottom: 4px;
  }

  .marketing-shell .pricing-payg {
    max-width: 100%;
  }
}

.marketing-shell .plan-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  text-decoration: none;
  display: block;
}

.marketing-shell .plan-btn-outline {
  background: transparent;
  border: 1.5px solid var(--m-border);
  color: var(--m-text-primary);
}

.marketing-shell .plan-btn-outline:hover {
  background: var(--m-bg-secondary);
}

.marketing-shell .plan-btn-primary {
  background: var(--m-accent);
  color: white;
}

.marketing-shell .plan-btn-primary:hover {
  background: var(--m-accent-hover);
}

[data-theme="dark"] .marketing-shell .pricing-card .plan-btn-primary,
[data-theme="dark"] .marketing-shell .pricing-card .plan-btn-outline {
  background: var(--m-accent);
  border-color: var(--m-accent);
  color: #fff;
}

[data-theme="dark"] .marketing-shell .pricing-card .plan-btn-primary:hover,
[data-theme="dark"] .marketing-shell .pricing-card .plan-btn-outline:hover {
  background: var(--m-accent-hover);
  border-color: var(--m-accent-hover);
  color: #fff;
}

.marketing-shell .express-toggle {
  display: flex;
  background: var(--m-bg-secondary);
  border-radius: 10px;
  padding: 4px;
  margin-top: 1rem;
}

.marketing-shell .express-option {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
  font-family: inherit;
}

.marketing-shell .express-option:hover {
  background: rgba(255, 255, 255, 0.5);
}

.marketing-shell .express-option.active {
  background: var(--m-bg-card);
  box-shadow: var(--m-shadow-sm);
}

.marketing-shell .express-option-minutes {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--m-text-primary);
}

.marketing-shell .express-option-price {
  font-size: 0.75rem;
  color: var(--m-text-secondary);
}

.marketing-shell .marketing-faq {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.marketing-shell .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.marketing-shell .faq-item {
  background: var(--m-bg-card);
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius);
  overflow: hidden;
}

.marketing-shell .faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--m-text-primary);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.marketing-shell .faq-question:hover {
  background: var(--m-bg-secondary);
}

.marketing-shell .faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--m-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.marketing-shell .faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.marketing-shell .faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--m-text-secondary);
  line-height: 1.7;
}

.marketing-shell .faq-item.open .faq-answer {
  display: block;
}

.marketing-shell .faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.marketing-shell .faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  background: var(--m-accent);
  color: #fff;
  transition: background 0.2s ease;
}

.marketing-shell .faq-cta-btn:hover {
  background: var(--m-accent-hover);
}

.marketing-shell .marketing-footer {
  background: var(--m-text-primary);
  color: var(--m-bg-primary);
  margin-top: 5rem;
  padding: 3rem 2rem 2rem;
}

[data-theme="dark"] .marketing-shell .marketing-footer {
  background: #0a0a0b;
  color: #f4f4f5;
}

[data-theme="dark"] .marketing-shell .footer-logo-subtext,
[data-theme="dark"] .marketing-shell .footer-brand p,
[data-theme="dark"] .marketing-shell .footer-brand-domain,
[data-theme="dark"] .marketing-shell .footer-column a,
[data-theme="dark"] .marketing-shell .footer-copy {
  color: #a1a1aa;
}

.marketing-shell .footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 2fr) repeat(4, minmax(130px, 1fr));
  gap: 2.2rem;
}

.marketing-shell .footer-brand {
  max-width: 280px;
}

.marketing-shell .footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.marketing-shell .footer-logo img {
  height: 28px;
}

.marketing-shell .footer-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.marketing-shell .footer-logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.marketing-shell .footer-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.marketing-shell .footer-logo-subtext {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--m-text-muted);
}

.marketing-shell .footer-brand p {
  font-size: 0.875rem;
  color: var(--m-text-muted);
  line-height: 1.6;
}

.marketing-shell .footer-brand-domain {
  font-size: 0.85rem;
  color: var(--m-text-muted);
  margin: -0.25rem 0 0.75rem;
}

.marketing-shell .footer-column h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--m-text-muted);
}

.marketing-shell .footer-column a {
  display: block;
  font-size: 0.875rem;
  color: var(--m-bg-secondary);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.marketing-shell .footer-column a:hover {
  color: white;
}

.marketing-shell .footer-solutions-link {
  display: none !important;
}

.marketing-shell .footer-lang-row {
  width: 100%;
  max-width: none;
  margin: 2rem 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.marketing-shell .footer-bottom {
  max-width: 1100px;
  margin: 1.25rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.marketing-shell .footer-copy {
  font-size: 0.8rem;
  color: var(--m-text-muted);
}

.marketing-shell .footer-lang-selector .lang-trigger {
  width: 90px;
  position: relative;
  justify-content: flex-start;
  gap: 0;
  padding: 4px 18px 4px 8px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f5f6fa;
  box-shadow: none;
}

.marketing-shell .footer-lang-selector .lang-trigger:hover,
.marketing-shell .footer-lang-selector.open .lang-trigger {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.marketing-shell .footer-lang-selector .lang-trigger .lang-code {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11.5px;
  color: rgba(245, 246, 250, 0.9);
}

.marketing-shell .footer-lang-selector .lang-trigger .lang-flag {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.marketing-shell .footer-lang-selector .lang-trigger .lang-chev {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 246, 250, 0.7);
}

.marketing-shell .footer-lang-selector.open .lang-trigger .lang-chev {
  transform: translateY(-50%) rotate(180deg);
}

.marketing-shell .footer-lang-selector .lang-dropdown {
  width: 90px;
  top: auto;
  right: 0;
  left: auto;
  bottom: calc(100% + 6px);
  transform: translateY(6px) scale(0.98);
  transform-origin: bottom right;
  background: #12161f;
  border-color: rgba(255, 255, 255, 0.12);
}

.marketing-shell .footer-lang-selector.open .lang-dropdown {
  transform: translateY(0) scale(1);
}

.marketing-shell .footer-lang-selector .lang-item {
  position: relative;
  justify-content: flex-start;
  padding: 7px 8px;
}

.marketing-shell .footer-lang-selector .lang-item-info,
.marketing-shell .footer-lang-selector .lang-item-check {
  display: none;
}

.marketing-shell .footer-lang-selector .lang-item {
  color: #f5f6fa;
}

.marketing-shell .footer-lang-selector .lang-item-flag {
  position: relative;
  z-index: 1;
  font-size: 15px;
}

.marketing-shell .footer-lang-selector .lang-item::after {
  content: attr(data-lang-code);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: rgba(245, 246, 250, 0.9);
  pointer-events: none;
}

.marketing-shell .footer-lang-selector .lang-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .marketing-shell .billing-plan-modal__toggle.billing-cycle-toggle {
    margin: 1.25rem auto 0.95rem;
  }

  .marketing-shell .feature-row {
    grid-template-columns: 1fr;
  }

  .marketing-shell .feature-label {
    border-right: none;
    border-bottom: 1px solid var(--m-border);
    padding: 1.25rem 1.5rem;
  }

  .marketing-shell .feature-content {
    padding: 1rem 1.5rem 1.25rem;
  }

  .marketing-shell .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 1.15rem auto 0;
  }

  .marketing-shell .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .marketing-shell .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .marketing-shell .marketing-hero {
    padding: 3rem 1rem 1.75rem;
    max-width: 100%;
  }

  .marketing-shell .solution-intent {
    margin-top: 1.5rem;
    padding: 0 1rem;
  }

  .marketing-shell .solution-intent-inner {
    padding: 1.1rem 1rem;
  }

  .marketing-shell .solution-intent-title {
    font-size: 1.06rem;
  }

  .marketing-shell .marketing-hero h1 {
    font-size: clamp(1.575rem, calc(8vw - 2px), 2.075rem);
    white-space: normal;
    max-width: none;
    margin: 0 auto;
    text-wrap: auto;
  }

  html[lang="de"] .marketing-shell .marketing-hero h1 {
    font-size: clamp(1.5125rem, calc(8vw - 3px), 2.0125rem);
  }

  .marketing-shell .hero-title-line {
    display: block;
  }

  .marketing-shell .hero-title-line + .hero-title-line {
    margin-left: 0;
    margin-top: 0.08em;
  }

  .marketing-shell .marketing-nav {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .marketing-shell #mainThemeToggle {
    display: inline-flex;
  }

  .marketing-shell .nav-logo {
    margin-left: -5px;
    gap: 0.15rem;
  }

  .marketing-shell .nav-logo-copy {
    display: flex;
    line-height: 1.02;
  }

  html[lang="de"] .marketing-shell .nav-logo-copy {
    display: none;
  }

  .marketing-shell .nav-logo-text {
    font-size: 1.02rem;
  }

  .marketing-shell .nav-links {
    display: none;
  }

  .marketing-shell .nav-actions {
    gap: 0.28rem;
  }

  .marketing-shell .nav-actions .lang-trigger {
    height: 34px;
    padding: 4px 10px 4px 8px;
    gap: 6px;
  }

  .marketing-shell .nav-actions .lang-code {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .marketing-shell .nav-actions .lang-dropdown {
    width: 198px;
  }

  .marketing-shell .nav-actions #navDashboardBtn {
    display: none !important;
  }

  .marketing-shell .nav-actions #navLoginBtn,
  .marketing-shell .nav-actions .nav-btn-ghost {
    padding: calc(0.52rem + 1px) calc(0.78rem + 1px);
    font-size: calc(0.88rem + 1px);
    display: inline-flex;
  }

  .marketing-shell .nav-actions #navSignupBtn,
  .marketing-shell .nav-actions a.nav-btn-primary[href*='mode=signup'] {
    display: inline-flex;
    padding: calc(0.52rem + 1px) calc(0.78rem + 1px);
    font-size: calc(0.88rem + 1px);
    line-height: 1;
  }

  .marketing-shell .footer-column a {
    display: block;
    width: fit-content;
    padding-right: 10px;
  }

  .marketing-shell .footer-solutions-link {
    display: block !important;
  }

  .marketing-shell .footer-lang-selector .lang-item::after {
    font-size: 12.5px;
  }

  .marketing-shell .nav-mobile-toggle {
    display: none !important;
    margin-left: 8px;
    margin-right: 10px;
  }

  .marketing-shell .nav-mobile-menu {
    display: none !important;
  }

  .solution-detail-page .marketing-shell .marketing-nav {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .solution-detail-page .marketing-shell .nav-inner {
    justify-content: space-between;
    gap: 0.3rem;
  }

  .solution-detail-page .marketing-shell .nav-logo {
    display: inline-flex;
    order: 1;
    margin-left: 0;
    gap: 0.2rem;
  }

  .solution-detail-page .marketing-shell .nav-logo img {
    height: 30px;
  }

  .solution-detail-page .marketing-shell .nav-logo-copy {
    display: flex;
    line-height: 1.02;
  }

  .solution-detail-page .marketing-shell .nav-mobile-toggle {
    order: 3;
    margin-left: 0.14rem;
    margin-right: 10px;
    padding: 0.42rem;
  }

  .solution-detail-page .marketing-shell .nav-actions {
    order: 2;
    display: flex;
    align-items: center;
    gap: 0.24rem;
    flex-wrap: nowrap;
    margin-left: auto;
  }

  .solution-detail-page .marketing-shell .nav-actions #navSignupBtn {
    display: inline-flex;
    order: 3;
    padding: calc(0.5rem + 1px) calc(0.68rem + 1px);
    font-size: calc(0.84rem + 1px);
    line-height: 1;
  }

  .solution-detail-page .marketing-shell .nav-actions #navLoginBtn {
    display: inline-flex;
    order: 2;
    padding: calc(0.5rem + 1px) calc(0.68rem + 1px);
    font-size: calc(0.84rem + 1px);
    line-height: 1;
  }

  .solution-detail-page .marketing-shell .nav-actions #mainThemeToggle {
    order: 1;
    display: inline-flex;
    width: 34px;
    height: 34px;
  }

  .solution-detail-page .marketing-shell .nav-actions #navDashboardBtn {
    display: none !important;
  }

  .marketing-shell .why-content {
    padding: 2.5rem 1.5rem;
  }

  .marketing-shell .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .marketing-shell .gdpr-pill-wrap {
    margin-top: 0.85rem;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .marketing-shell .gdpr-pill-wrap::-webkit-scrollbar {
    display: none;
  }

  .marketing-shell .gdpr-pill {
    gap: 5px;
    padding: 5px 8px 5px 7px;
    border-radius: 8px;
    font-size: 10.25px;
  }

  .marketing-shell .gdpr-pill-icon {
    width: 15px;
    height: 17px;
  }

  .marketing-shell .gdpr-pill-badge-label {
    font-size: 10.25px;
    letter-spacing: 0;
  }
}

@media (max-width: 1220px) {
  .marketing-shell .nav-dropdown-menu-tools {
    min-width: 260px;
    grid-template-columns: 1fr;
  }

  .marketing-shell .nav-dropdown-col {
    gap: 2px;
  }
}

@media (max-width: 480px) {
  .marketing-shell .gdpr-pill-wrap {
    gap: 5px;
  }

  .marketing-shell .gdpr-pill {
    gap: 4px;
    padding: 4px 7px 4px 6px;
    font-size: 9.3px;
  }

  .marketing-shell .gdpr-pill-icon {
    width: 13px;
    height: 15px;
  }

  .marketing-shell .gdpr-pill-badge-label {
    font-size: 9.3px;
  }

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

  .marketing-shell .footer-brand {
    grid-column: span 1;
  }
}

@keyframes m-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marketing-shell .marketing-hero,
.marketing-shell .marketing-features,
.marketing-shell .marketing-why,
.marketing-shell .marketing-pricing,
.marketing-shell .marketing-faq {
  animation: m-fadeInUp 0.5s ease-out both;
}

.marketing-shell .marketing-features { animation-delay: 0.05s; }
.marketing-shell .marketing-why { animation-delay: 0.1s; }
.marketing-shell .marketing-pricing { animation-delay: 0.15s; }
.marketing-shell .marketing-faq { animation-delay: 0.2s; }

.marketing-shell.focus-mode .marketing-hero,
.marketing-shell.focus-mode .social-proof-wrap,
.marketing-shell.focus-mode .marketing-features,
.marketing-shell.focus-mode .marketing-why,
.marketing-shell.focus-mode .marketing-pricing,
.marketing-shell.focus-mode .marketing-faq,
.marketing-shell.focus-mode .marketing-footer {
  display: none;
}

.marketing-shell.focus-mode .container {
  padding-top: 16px;
  max-width: 1000px;
  width: 100%;
}

html.mp4-handoff-pending .marketing-shell .marketing-hero,
html.mp4-handoff-pending .marketing-shell .social-proof-wrap,
html.mp4-handoff-pending .marketing-shell .marketing-features,
html.mp4-handoff-pending .marketing-shell .marketing-why,
html.mp4-handoff-pending .marketing-shell .marketing-pricing,
html.mp4-handoff-pending .marketing-shell .marketing-faq,
html.mp4-handoff-pending .marketing-shell .marketing-footer {
  display: none;
}

html.mp4-handoff-pending .marketing-shell .container {
  visibility: hidden;
}
