/* ── PDF Toolkit Studio — Main Stylesheet ────────────────────────
   Dark-themed marketing site for contenta-pdftoolkit.com
   ------------------------------------------------------------------ */

/* ── CSS Variables ───────────────────────────────────────────────── */

:root {
  --bg-root: #0A0E14;
  --bg-panel: #111827;
  --bg-card: #0D1321;
  --border-subtle: #1E2D40;
  --accent: #8B5CF6;
  --accent-hover: #7C3AED;
  --text-main: #E2E8F0;
  --text-dim: #94A3B8;
  --text-muted: #64748B;
  --green: #10B981;
  --red: #8B5CF6;
  --amber: #F59E0B;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --mono: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, .4);
  --shadow-elevated: 0 4px 16px rgba(0, 0, 0, .5);
  --transition: 200ms ease;
  --nav-height: 48px;
}

/* ── Reset & Base ────────────────────────────────────────────────── */

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

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

body {
  background: var(--bg-root);
  color: var(--text-main);
  font-family: var(--font-stack);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 42px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select, button {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--bg-root);
}

/* ── Typography ──────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 1em;
}

.text-muted  { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-amber  { color: var(--amber); }
.text-white  { color: #fff; }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dim);
}

code, .mono {
  font-family: var(--mono);
}

code {
  background: var(--bg-card);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  color: var(--accent);
}

/* ── Layout — Bootstrap-3-style Grid ─────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

/* xs columns — always active */
.col-xs-1  { width: 8.3333%; }
.col-xs-2  { width: 16.6667%; }
.col-xs-3  { width: 25%; }
.col-xs-4  { width: 33.3333%; }
.col-xs-5  { width: 41.6667%; }
.col-xs-6  { width: 50%; }
.col-xs-7  { width: 58.3333%; }
.col-xs-8  { width: 66.6667%; }
.col-xs-9  { width: 75%; }
.col-xs-10 { width: 83.3333%; }
.col-xs-11 { width: 91.6667%; }
.col-xs-12 { width: 100%; }

/* sm columns — 768px+ */
@media (min-width: 768px) {
  .col-sm-1  { width: 8.3333%; }
  .col-sm-2  { width: 16.6667%; }
  .col-sm-3  { width: 25%; }
  .col-sm-4  { width: 33.3333%; }
  .col-sm-5  { width: 41.6667%; }
  .col-sm-6  { width: 50%; }
  .col-sm-7  { width: 58.3333%; }
  .col-sm-8  { width: 66.6667%; }
  .col-sm-9  { width: 75%; }
  .col-sm-10 { width: 83.3333%; }
  .col-sm-11 { width: 91.6667%; }
  .col-sm-12 { width: 100%; }
}

/* md columns — 992px+ */
@media (min-width: 992px) {
  .col-md-1  { width: 8.3333%; }
  .col-md-2  { width: 16.6667%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-5  { width: 41.6667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.3333%; }
  .col-md-8  { width: 66.6667%; }
  .col-md-9  { width: 75%; }
  .col-md-10 { width: 83.3333%; }
  .col-md-11 { width: 91.6667%; }
  .col-md-12 { width: 100%; }
}

/* lg columns — 1200px+ */
@media (min-width: 1200px) {
  .col-lg-1  { width: 8.3333%; }
  .col-lg-2  { width: 16.6667%; }
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.3333%; }
  .col-lg-5  { width: 41.6667%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.3333%; }
  .col-lg-8  { width: 66.6667%; }
  .col-lg-9  { width: 75%; }
  .col-lg-10 { width: 83.3333%; }
  .col-lg-11 { width: 91.6667%; }
  .col-lg-12 { width: 100%; }
}

/* ── Navigation Bar ──────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border-subtle);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-height);
}

.site-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav-brand:hover { color: var(--text-main); text-decoration: none; }
.site-nav-brand img { height: 36px; width: auto; }

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-links li a {
  display: block;
  padding: 6px 12px;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.site-nav-links li a:hover {
  color: var(--accent);
  background: rgba(239, 68, 68, .06);
  text-decoration: none;
}

/* Hamburger toggle — hidden on desktop */
.site-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 1px;
  transition: background var(--transition);
}

.site-nav-toggle:hover span { background: var(--accent); }

/* Mobile: hamburger + vertical dropdown */
@media (max-width: 767px) {
  .site-nav-toggle { display: flex; }

  .site-nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    gap: 0;
  }

  .site-nav-links.open { display: flex; }

  .site-nav-links li a {
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 0;
  }
}

/* ── Buttons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform 100ms ease,
    box-shadow var(--transition);
  user-select: none;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 0 16px rgba(239, 68, 68, .3);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
}

.btn-dark {
  background: var(--bg-card);
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ── Cards ───────────────────────────────────────────────────────── */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: #2a3f5a;
  box-shadow: var(--shadow-elevated);
}

.card-highlight {
  border-left: 3px solid var(--accent);
}

.card-body {
  padding: 0;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: var(--text-main);
}

.card-text {
  color: var(--text-dim);
  line-height: 1.7;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
}

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ── Hero Section ────────────────────────────────────────────────── */

.hero {
  padding: calc(var(--nav-height) + 40px) 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(239,68,68,0.10) 0%, rgba(239,68,68,0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-visual {
  flex: 0 0 320px;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(239,68,68,0.08);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-visual img:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(239,68,68,0.15);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6em;
}

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

.hero .subtitle {
  color: var(--text-dim);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2em;
}

.hero .subtitle:last-child {
  margin-bottom: 0;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero { padding: calc(var(--nav-height) + 24px) 0 32px; }
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1rem; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { text-align: center; }
  .hero .subtitle { margin: 0 auto 2em; }
  .hero .hero-actions { justify-content: center; }
  .hero-visual { flex: 0 0 auto; max-width: 280px; }
  .hero-visual img { transform: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-visual { max-width: 220px; }
}

.hero-screenshot {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.hero-screenshot img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(239,68,68,0.08);
}

@media (max-width: 767px) {
  .hero-screenshot { margin-top: 24px; }
}

/* ── Screenshot Collage ─────────────────────────────────────────── */

.screenshot-collage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1060px;
  margin: 32px auto 0;
  padding: 0 20px;
  height: 340px;
}

.collage-item {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
  cursor: pointer;
  flex-shrink: 0;
}

.collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-center {
  width: 56%;
  height: 100%;
  z-index: 3;
  box-shadow: 0 16px 50px rgba(0,0,0,0.6), 0 0 30px rgba(239,68,68,0.08);
}

.collage-left {
  width: 30%;
  height: 80%;
  z-index: 2;
  margin-right: -28px;
  transform: perspective(800px) rotateY(6deg) scale(0.95);
  opacity: 0.85;
}

.collage-right {
  width: 30%;
  height: 80%;
  z-index: 2;
  margin-left: -28px;
  transform: perspective(800px) rotateY(-6deg) scale(0.95);
  opacity: 0.85;
}

.collage-item:hover {
  z-index: 10;
  transform: scale(1.04);
  opacity: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(239,68,68,0.12);
}

.collage-left:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.04);
}

.collage-right:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.04);
}

@media (max-width: 767px) {
  .screenshot-collage {
    flex-direction: column;
    height: auto;
    gap: 12px;
    margin-top: 24px;
  }
  .collage-item {
    width: 90% !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .collage-item img { height: auto; }
}

/* ── Lightbox ───────────────────────────────────────────────────── */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 95vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(239,68,68,0.15);
}

/* ── Section ─────────────────────────────────────────────────────── */

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 0.4em;
}

.section-title p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-dim);
}

.section-alt {
  background: var(--bg-panel);
}

@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .section-title { margin-bottom: 32px; }
}

/* ── Feature Cards ───────────────────────────────────────────────── */

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: #2a3f5a;
  transform: translateY(-2px);
}

.feature-card .feature-icon {
  font-size: 2rem;
  margin: 0 auto 16px;
  line-height: 1;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ── Blog Sidebar ────────────────────────────────────────────────── */

.blog-layout {
  display: flex;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  align-items: flex-start;
}

.blog-layout .blog-wrap {
  flex: 1;
  min-width: 0;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blog-sidebar {
  flex: 0 0 260px;
  position: sticky;
  top: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.blog-sidebar h4 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 16px 0;
  text-align: center;
}

.blog-sidebar .sidebar-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-sidebar .sidebar-benefits li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 6px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.4;
}

.blog-sidebar .sidebar-benefits li::before {
  content: "\2714\FE0F";
  flex-shrink: 0;
  font-size: 0.75rem;
}

.blog-sidebar .sidebar-btn {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--bg-root);
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity var(--transition);
}

.blog-sidebar .sidebar-btn:hover {
  opacity: 0.85;
}

.blog-sidebar .sidebar-trial {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 991px) {
  .blog-layout {
    flex-direction: column-reverse;
  }
  .blog-sidebar {
    position: static;
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ── Compact Feature List ────────────────────────────────────────── */

.feature-list-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.fl-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 6px 0;
}

.fl-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
}

@media (max-width: 575px) {
  .feature-list-compact { grid-template-columns: 1fr; }
}

/* ── Preset Cards ────────────────────────────────────────────────── */

.preset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.preset-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition);
}

.preset-card:hover {
  border-color: #2a3f5a;
}

.preset-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.preset-card-header h4 {
  margin-bottom: 0;
}

.preset-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.preset-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.preset-savings {
  display: inline-block;
  font-weight: 700;
  color: var(--green);
}

/* ── Pricing Cards ───────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(239, 68, 68, .15);
}

.pricing-card .pricing-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card .pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.pricing-card .pricing-price .currency {
  font-size: 1.4rem;
  vertical-align: super;
}

.pricing-card .pricing-period {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  color: var(--text-dim);
  margin-bottom: 10px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  content: "\2717";
  color: var(--text-muted);
}

.pricing-cta {
  width: 100%;
}

@media (max-width: 767px) {
  .pricing-card.featured {
    transform: none;
  }
}

/* ── FAQ Accordion ───────────────────────────────────────────────── */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: #2a3f5a;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  user-select: none;
  gap: 16px;
}

.faq-question::after {
  content: none;
}

.faq-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  margin-bottom: 0;
}

/* ── Tables ──────────────────────────────────────────────────────── */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5em;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

th {
  background: var(--bg-panel);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

td {
  background: var(--bg-card);
  color: var(--text-dim);
}

tr:nth-child(even) td {
  background: rgba(17, 24, 39, .5);
}

tr:hover td {
  background: rgba(239, 68, 68, .04);
}

/* ── Forms ────────────────────────────────────────────────────────── */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
}

.form-control {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ── Badges ──────────────────────────────────────────────────────── */

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-cyan {
  background: rgba(239, 68, 68, .15);
  color: var(--accent);
}

.badge-green {
  background: rgba(16, 185, 129, .15);
  color: var(--green);
}

.badge-amber {
  background: rgba(245, 158, 11, .15);
  color: var(--amber);
}

.badge-red {
  background: rgba(239, 68, 68, .15);
  color: var(--red);
}

.badge-dark {
  background: var(--bg-panel);
  color: var(--text-dim);
}

/* ── Trust Strip ─────────────────────────────────────────────────── */

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
}

.trust-strip img {
  height: 28px;
  opacity: .5;
  transition: opacity var(--transition);
  filter: grayscale(1) brightness(1.8);
}

.trust-strip img:hover {
  opacity: .8;
}

/* ── Cookie Banner ───────────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  padding: 16px 0;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 400ms ease;
}

.cookie-banner.dismissed {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  flex: 1;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────────── */

.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.footer-brand img {
  height: 28px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-main);
  text-decoration: none;
}

/* Language selector */
.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.language-list a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
}

.language-list a:hover {
  color: var(--text-main);
}

.language-list img {
  width: 16px;
  height: 11px;
  display: inline-block;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}

.social-icons a:hover {
  color: var(--accent);
  background: rgba(239, 68, 68, .1);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--text-main);
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Animations ──────────────────────────────────────────────────── */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

.animate-fade-in {
  animation: fadeIn 600ms ease forwards;
  opacity: 0;
}

.animate-fade-in-up {
  animation: fadeInUp 600ms ease forwards;
  opacity: 0;
}

/* Staggered children delays */
.stagger > :nth-child(1) { animation-delay: 0ms; }
.stagger > :nth-child(2) { animation-delay: 100ms; }
.stagger > :nth-child(3) { animation-delay: 200ms; }
.stagger > :nth-child(4) { animation-delay: 300ms; }
.stagger > :nth-child(5) { animation-delay: 400ms; }
.stagger > :nth-child(6) { animation-delay: 500ms; }

/* ── Utility Classes ─────────────────────────────────────────────── */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.d-flex      { display: flex; }
.d-block     { display: block; }
.d-none      { display: none; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Margin top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

/* Margin bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* Padding Y */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }

/* Padding X */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 8px; padding-right: 8px; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.px-3 { padding-left: 24px; padding-right: 24px; }

.hidden { display: none !important; }

/* Responsive visibility */
.visible-xs,
.visible-sm { display: none; }

@media (max-width: 767px) {
  .visible-xs { display: block; }
  .hidden-xs  { display: none !important; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm { display: block; }
  .hidden-sm  { display: none !important; }
}

@media (min-width: 992px) {
  .hidden-md  { display: none !important; }
}

/* ── RTL Support ─────────────────────────────────────────────────── */

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .text-left  { text-align: right; }
[dir="rtl"] .text-right { text-align: left; }

[dir="rtl"] .navbar-contenta .navbar-nav { float: left; }
[dir="rtl"] .navbar-contenta .navbar-brand { float: right; }

[dir="rtl"] .card-highlight {
  border-left: none;
  border-right: 3px solid var(--accent);
}

[dir="rtl"] .pricing-features li {
  padding-left: 0;
  padding-right: 28px;
}

[dir="rtl"] .pricing-features li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .faq-question {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] select.form-control {
  background-position: left 12px center;
  padding-right: 14px;
  padding-left: 36px;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

/* ── Responsive Breakpoints ──────────────────────────────────────── */

/* Tablet — 768px */
@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .btn { padding: 10px 20px; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }

  .row > [class*="col-md-"],
  .row > [class*="col-lg-"] {
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  html { font-size: 15px; }

  .container { padding: 0 16px; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }

  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .trust-strip {
    gap: 20px;
  }

  .trust-strip img {
    height: 22px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  th, td {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}

/* ── Site Footer ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 0;
  margin-top: 60px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

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

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text-main);
  text-decoration: none;
}

.footer-promo-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom .cookie-preferences {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom .cookie-preferences:hover {
  color: var(--text-main);
}

@media (max-width: 767px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Sprite Icons: Language Flags ────────────────────────────────── */

.langs-icon {
  width: 37.5px;
  height: 22.5px;
  background-image: url("../images/flagsnew_big.png");
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 84px 273px;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* Mobile-first flag positions (flagsnew_big.png 84x273) */
.langs-en { background-position: -3px -5px; }
.langs-de { background-position: -46px -35px; }
.langs-fr { background-position: -46px -5px; }
.langs-es { background-position: -3px -35px; }
.langs-it { background-position: -3px -65px; }
.langs-pt { background-position: -46px -65px; }
.langs-nl { background-position: -3px -95px; }
.langs-no { background-position: -3px -215px; }
.langs-da { background-position: -46px -215px; }
.langs-sv { background-position: -3px -125px; }
.langs-ar { background-position: -3px -155px; }

@media (min-width: 992px) {
  .langs-icon {
    width: 25px;
    height: 15px;
    background-image: url("../images/flagsnew.png");
    background-size: 56px 182px;
  }
  /* Desktop flag positions (flagsnew.png 56x182) */
  .langs-en { background-position: -2px -3px; }
  .langs-de { background-position: -29px -23px; }
  .langs-fr { background-position: -29px -3px; }
  .langs-es { background-position: -2px -23px; }
  .langs-it { background-position: -2px -43px; }
  .langs-pt { background-position: -29px -43px; }
  .langs-nl { background-position: -2px -63px; }
  .langs-no { background-position: -2px -143px; }
  .langs-da { background-position: -29px -143px; }
  .langs-sv { background-position: -2px -83px; }
  .langs-ar { background-position: -2px -103px; }
}

.footer-langs {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
}

.langs-container {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

/* ── Sprite Icons: Social (followus.png) ────────────────────────── */

.share-icon {
  width: 110px;
  height: 75px;
  background-image: url("../images/followus.png");
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 15px;
}

.share-fb      { background-position: -27px -15px; }
.share-tweeter { background-position: -172px -15px; }
.share-twitter { background-position: -172px -15px; }
.share-google  { background-position: -315px -15px; }

.footer-social {
  text-align: center;
  padding: 12px 0;
}

/* ── How It Works Steps ──────────────────────────────────────────── */

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ── Stats Bar ───────────────────────────────────────────────────── */

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 36px 20px;
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(16,185,129,0.04) 100%);
  border-top: 1px solid rgba(239,68,68,0.15);
  border-bottom: 1px solid rgba(239,68,68,0.15);
  flex-wrap: wrap;
}

.stat-item { text-align: center; min-width: 120px; }

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 480px) {
  .stats-bar { gap: 24px; }
  .stat-value { font-size: 1.5rem; }
  .stat-item { min-width: 80px; }
}

/* ── Feature Card Icons ─────────────────────────────────────────── */

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card {
  border-left: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 0 20px rgba(239,68,68,0.08);
}

/* ── Before/After Comparison ────────────────────────────────────── */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-card {
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.comparison-before {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
}

.comparison-after {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
}

.comparison-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.comparison-before .comparison-label { color: var(--red); }
.comparison-after .comparison-label { color: var(--green); }

.comparison-filename {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.comparison-size {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.comparison-size-before { color: var(--red); }
.comparison-size-after { color: var(--green); }

.comparison-codec {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comparison-arrow {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
}

.comparison-savings-bar {
  max-width: 500px;
  margin: 32px auto 0;
  text-align: center;
  padding: 0 20px;
}

.savings-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.savings-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 4px;
  transition: width 1s ease;
}

.savings-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 575px) {
  .comparison-grid { grid-template-columns: 1fr; gap: 16px; }
  .comparison-arrow { transform: rotate(90deg); }
  .comparison-size { font-size: 2rem; }
}

/* ── How It Works Steps (enhanced) ──────────────────────────────── */

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.step-item {
  text-align: center;
  flex: 1;
  padding: 0 16px;
}

.step-item .step-number {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  border: 2px solid rgba(239,68,68,0.3);
  color: var(--accent);
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(239,68,68,0.1);
  font-size: 1.5rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(239,68,68,0.3), rgba(239,68,68,0.1));
  margin-top: 32px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .steps-grid { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { width: 2px; height: 32px; background: linear-gradient(180deg, rgba(239,68,68,0.3), rgba(239,68,68,0.1)); }
}

/* ── Testimonials ───────────────────────────────────────────────── */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(239,68,68,0.3);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #F5B731;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.85rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ── Pricing CTA ────────────────────────────────────────────────── */

.cta-pricing {
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(16,185,129,0.03) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(239,68,68,0.2);
  padding: 56px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-pricing h2 {
  margin-bottom: 0.5em;
}

.cta-pricing .lead {
  margin-bottom: 24px;
}

.price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.price-tag .currency {
  font-size: 1.6rem;
  vertical-align: super;
}

@media (max-width: 480px) {
  .cta-pricing { padding: 36px 20px; }
  .price-tag { font-size: 2.5rem; }
}

/* ── 4-column feature grid ───────────────────────────────────────── */

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

@media (max-width: 900px) {
  .feature-grid.feature-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .feature-grid.feature-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ── Comparison Table ────────────────────────────────────────────── */

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th {
  padding: 14px 18px;
  font-weight: 600;
  text-align: center;
  color: var(--text-main);
  border-bottom: 2px solid var(--border-subtle);
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table th:last-child {
  color: var(--accent);
}

.compare-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-dim);
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-main);
  font-weight: 500;
}

.compare-table td:last-child {
  background: rgba(239, 68, 68, 0.04);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  color: var(--green);
  font-weight: 600;
  font-size: 1.15rem;
}

.compare-table .cross {
  color: var(--text-dim);
  opacity: 0.5;
  font-size: 1.15rem;
}

@media (max-width: 600px) {
  .compare-table th,
  .compare-table td {
    padding: 10px 10px;
    font-size: 0.85rem;
  }
}

/* ── Notify / Coming Soon Form ─────────────────────────────────── */

.coming-soon-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 20px;
  margin-bottom: 20px;
}

.notify-form {
  max-width: 480px;
  margin: 0 auto;
}

.notify-input-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  transition: border-color var(--transition);
  background: var(--bg-card);
}

.notify-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.notify-input-group input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  min-width: 0;
}

.notify-input-group input[type="email"]::placeholder {
  color: var(--text-muted);
}

.notify-input-group .btn {
  border-radius: 0;
  border: none;
  padding: 14px 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.notify-status {
  margin-top: 10px;
  font-size: 0.9rem;
  min-height: 1.4em;
  text-align: center;
}

.notify-status.notify-success {
  color: var(--green);
}

.notify-status.notify-error {
  color: var(--red);
}

@media (max-width: 480px) {
  .notify-input-group {
    flex-direction: column;
  }
  .notify-input-group .btn {
    border-radius: 0;
    padding: 14px;
  }
}

/* ── Badge accent color ────────────────────────────────────────── */

.badge-accent {
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent);
}

.hero-content-centered {
  justify-content: center;
}

/* ── Print ───────────────────────────────────────────────────────── */

@media print {
  .navbar,
  .cookie-banner,
  .footer,
  .site-footer { display: none; }

  body {
    background: #fff;
    color: #000;
  }

  a { color: #000; text-decoration: underline; }

  .card, .feature-card, .pricing-card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}
