/* ============================================
   CoolSpeeds preview — main.css
   Palette: DNA of original site (blue + fire accent)
   ============================================ */

/* ---------- Theme tokens ---------- */

:root {
  /* Brand blues (from original site: #02ABFF, #0C60B1, #26D1FF, #93E8FF) */
  --blue-50:  #e6f7ff;
  --blue-100: #c0ebff;
  --blue-200: #93e8ff;
  --blue-300: #5ddbff;
  --blue-400: #26d1ff;
  --blue-500: #02abff;  /* primary */
  --blue-600: #008ad1;
  --blue-700: #0c60b1;
  --blue-800: #0a4b8b;
  --blue-900: #0a1a2e;

  /* Fire accent (from logo) */
  --fire-400: #ffb800;
  --fire-500: #ff8a00;
  --fire-600: #ff6b00;

  /* Radii, shadows, motion */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  --shadow-sm: 0 2px 6px rgba(2, 86, 155, .08);
  --shadow-md: 0 10px 30px rgba(2, 86, 155, .12);
  --shadow-lg: 0 20px 60px rgba(2, 86, 155, .18);

  --tr: .25s cubic-bezier(.2, .8, .2, 1);

  --container-max: 1200px;
  --gutter: 24px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Manrope, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Light theme — blue-based palette.
   Page bg is light cyan so cards/panels (which keep WHITE) visibly stand
   out instead of merging into a flat white sheet. Section alternation
   uses a slightly deeper blue for visual rhythm. */
html[data-theme="light"] {
  --bg:          #e6f7ff;  /* page bg — light cyan */
  --bg-alt:      #d1ecf8;  /* alternating sections — slightly deeper */
  --bg-elevated: #ffffff;  /* cards/panels — white, stands out on blue */
  --bg-muted:    #daecf8;  /* soft hover states */
  --bg-deep:     #b8def0;  /* deeper accent areas */

  --text:        #0a2540;
  --text-muted:  #4a6580;
  --text-soft:   #6a8396;

  --border:      #bedaeb;
  --border-strong: #95c3dc;

  --primary:     var(--blue-500);
  --primary-hover: var(--blue-600);
  --primary-ink: #ffffff;
  --primary-soft: #c0ebff;

  --accent:      var(--fire-500);
  --accent-hover: var(--fire-600);
  --accent-ink:  #ffffff;

  --heading:     #0c60b1;

  /* Hero has its own vivid overlay on top of page bg */
  --hero-grad-1: #b8def0;
  --hero-grad-2: #e6f7ff;
  --hero-glow:   rgba(38, 209, 255, .45);

  --card-bg:     #ffffff;
  --card-border: #bedaeb;
  --shadow-card: 0 4px 16px rgba(2, 86, 155, .08);
  --shadow-card-hover: 0 20px 44px rgba(2, 86, 155, .18);
}

/* Dark theme */
html[data-theme="dark"] {
  --bg:          #081424;
  --bg-alt:      #0c1c33;
  --bg-elevated: #10263f;
  --bg-muted:    #0c1e36;

  --text:        #e6f1fb;
  --text-muted:  #8aa3bd;
  --text-soft:   #5f7896;

  --border:      #1a3352;
  --border-strong: #254a74;

  --primary:     var(--blue-400);
  --primary-hover: var(--blue-300);
  --primary-ink: #031a2e;
  --primary-soft: rgba(38, 209, 255, .12);

  --accent:      var(--fire-400);
  --accent-hover: var(--fire-500);
  --accent-ink:  #031a2e;

  --heading:     #93e8ff;

  --hero-grad-1: #0a1a2e;
  --hero-grad-2: #081424;
  --hero-glow:   rgba(2, 171, 255, .25);

  --card-bg:     #0e2340;
  --card-border: #1a3352;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, .25);
  --shadow-card-hover: 0 16px 40px rgba(2, 171, 255, .15);
}

/* ---------- Reset / base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--tr), color var(--tr);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr), border-color var(--tr);
  white-space: nowrap;
}
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--fire-400), var(--fire-600));
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 0, .25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 0, .35);
  color: #fff;
}
.btn-primary .arrow { transition: transform var(--tr); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

/* Light-theme header: vivid vertical gradient from rich blue at the
   top fading into page bg — DNA homage to the original DLE #top_back
   (#4E91D1 → #93E8FF → #0C60B1). Feels premium, not flat. */
html[data-theme="light"] .site-header {
  background: linear-gradient(180deg,
    #82bfe2 0%,
    #a4d3ec 28%,
    #c4e5f4 62%,
    #e6f7ff 100%);
  border-bottom: 1px solid rgba(12, 96, 177, .22);
  box-shadow: 0 2px 16px rgba(2, 86, 155, .12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Dark-theme header: deep blue gradient with cyan highlight on top */
html[data-theme="dark"] .site-header {
  background: linear-gradient(180deg,
    #0c2548 0%,
    #0a1e3a 50%,
    #081424 100%);
  border-bottom: 1px solid rgba(38, 209, 255, .2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 138, 0, .2));
}
.main-nav {
  display: flex;
  gap: 1.75rem;
  margin-right: auto;
  margin-left: 1.5rem;
}
.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--tr);
}
.main-nav a:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .5rem;
  cursor: pointer;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }
.theme-toggle svg { display: none; }
/* In LIGHT theme show the moon icon (click → go dark).
   In DARK theme show the sun icon (click → go light). */
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }
html[data-theme="dark"]  .theme-toggle .icon-sun  { display: block; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--text-soft);
}
.lang-switch a {
  color: var(--text-muted);
  font-weight: 600;
  padding: .25rem .5rem;
  border-radius: var(--r-sm);
  transition: all var(--tr);
}
.lang-switch a.active { color: var(--primary); background: var(--primary-soft); }
.lang-switch a:hover { color: var(--primary); }

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: .5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, var(--hero-glow), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 60%, var(--hero-glow), transparent 70%),
    linear-gradient(180deg, var(--hero-grad-1), var(--hero-grad-2));
  z-index: -1;
}
.hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Triangle pattern + gradient use currentColor. Visibility is tuned
     per theme via wrapper opacity below, stroke-opacity in the SVG is
     full so we control everything from one place. */
  color: var(--primary);
  opacity: .3;
}
html[data-theme="dark"] .hero-bg-svg {
  color: var(--blue-300);
  opacity: .18;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .85rem;
  background: var(--primary-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: .85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire-500);
  box-shadow: 0 0 10px var(--fire-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero h1 {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 36em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-screenshot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform .5s ease;
}
.hero-screenshot:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(0deg); }
.hero-screenshot img { display: block; width: 100%; height: auto; }

/* ---------- Stats strip ---------- */

.stats-strip {
  padding: 3rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-value .plus, .stat-value .unit {
  font-size: .6em;
  color: var(--accent);
  margin-left: .1em;
}
.stat-label { font-weight: 600; color: var(--text); margin-top: .5rem; }
.stat-sub { font-size: .875rem; color: var(--text-soft); margin-top: .25rem; }

/* ---------- Section head ---------- */

.section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.section-head h2 { margin-bottom: .75rem; color: var(--heading); }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }

/* ---------- Features ---------- */

.features { padding: 6rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
}
.feature-icon::after {
  content: '';
  width: 24px; height: 24px;
  background: currentColor;
  -webkit-mask: var(--icon-url, none) center/contain no-repeat;
  mask: var(--icon-url, none) center/contain no-repeat;
}
/* inline SVG icons via data-icon */
.feature-icon[data-icon]::before {
  content: '';
  width: 28px; height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: invert(1) brightness(2);
}
.feature-icon[data-icon="torrent"]::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 6v6l4 2'/></svg>"); filter: none; }
.feature-icon[data-icon="download"]::before   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/><polyline points='7 10 12 15 17 10'/><line x1='12' y1='15' x2='12' y2='3'/></svg>"); filter: none; }
.feature-icon[data-icon="upload"]::before     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/><polyline points='17 8 12 3 7 8'/><line x1='12' y1='3' x2='12' y2='15'/></svg>"); filter: none; }
.feature-icon[data-icon="archive"]::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='21 8 21 21 3 21 3 8'/><rect x='1' y='3' width='22' height='5'/><line x1='10' y1='12' x2='14' y2='12'/></svg>"); filter: none; }
.feature-icon[data-icon="film"]::before       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='20' rx='2.18' ry='2.18'/><line x1='7' y1='2' x2='7' y2='22'/><line x1='17' y1='2' x2='17' y2='22'/><line x1='2' y1='12' x2='22' y2='12'/><line x1='2' y1='7' x2='7' y2='7'/><line x1='2' y1='17' x2='7' y2='17'/><line x1='17' y1='17' x2='22' y2='17'/><line x1='17' y1='7' x2='22' y2='7'/></svg>"); filter: none; }
.feature-icon[data-icon="image"]::before      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='2' ry='2'/><circle cx='8.5' cy='8.5' r='1.5'/><polyline points='21 15 16 10 5 21'/></svg>"); filter: none; }
.feature-icon[data-icon="automation"]::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/></svg>"); filter: none; }
.feature-icon[data-icon="folder"]::before     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z'/></svg>"); filter: none; }
.feature-icon[data-icon="ftp"]::before        { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='8' rx='2' ry='2'/><rect x='2' y='14' width='20' height='8' rx='2' ry='2'/><line x1='6' y1='6' x2='6.01' y2='6'/><line x1='6' y1='18' x2='6.01' y2='18'/></svg>"); filter: none; }
.feature-icon[data-icon="capture"]::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='2' y1='12' x2='22' y2='12'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>"); filter: none; }
.feature-icon[data-icon="docs"]::before       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='16' y1='13' x2='8' y2='13'/><line x1='16' y1='17' x2='8' y2='17'/></svg>"); filter: none; }
.feature-icon[data-icon="clock"]::before      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>"); filter: none; }
.feature-icon::after { display: none; }

.feature-card h3 { color: var(--text); margin-bottom: .5rem; }
.feature-card p { color: var(--text-muted); margin: 0; font-size: .95rem; }

/* ---------- Use cases ---------- */

.cases {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  position: relative;
  transition: all var(--tr);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.case-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .15;
  line-height: 1;
  margin-bottom: .5rem;
}
.case-card h3 { color: var(--heading); }
.case-card p { color: var(--text-muted); margin: 0; }

/* ---------- Pricing preview ---------- */

.pricing { padding: 6rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.price-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  transition: all var(--tr);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft), var(--shadow-card);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--fire-400), var(--fire-600));
  color: #fff;
  padding: .25rem 1rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 4px 12px rgba(255, 107, 0, .3);
}
.price-disk {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.price-disk span { color: var(--text-muted); font-size: .875em; }
.price-amount {
  margin: 1rem 0 .25rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}
.price-amount .currency { font-size: 1.25rem; vertical-align: super; margin-right: .1em; }
.price-amount .value { font-size: 2.5rem; }
.price-period {
  color: var(--text-muted);
  font-size: .875rem;
  margin-bottom: 1.5rem;
}
.pricing-footer {
  text-align: center;
}
.pricing-trial {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Why ---------- */

.why {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.why-item {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--primary);
}
.why-item h3 { color: var(--heading); }
.why-item p { color: var(--text-muted); margin: 0; }

/* ---------- FAQ ---------- */

.faq { padding: 6rem 0; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--tr);
  margin-left: 1rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}
.faq-answer p { margin: 0; }

/* ---------- Final CTA ---------- */

.final-cta { padding: 6rem 0; }
.cta-card {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--r-xl);
  color: #fff;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 184, 0, .25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(38, 209, 255, .25), transparent 50%);
}
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; margin-bottom: 1rem; }
.cta-card p { color: rgba(255, 255, 255, .85); font-size: 1.1rem; max-width: 32em; margin: 0 auto 2rem; }

/* ---------- Contacts block ---------- */

.contacts-block, .contacts-page {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all var(--tr);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  color: var(--text);
}
.contact-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.contact-icon::before {
  content: '';
  width: 28px; height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact-icon[data-icon="telegram"]::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z'/></svg>"); }
.contact-icon[data-icon="mail"]::before     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22 6 12 13 2 6'/></svg>"); }
.contact-icon[data-icon="book"]::before     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/><path d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/></svg>"); }

.contact-label {
  color: var(--text-muted);
  font-size: .875rem;
  margin-bottom: .25rem;
}
.contact-value {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}
.contacts-hours {
  text-align: center;
  color: var(--text-soft);
  font-size: .9rem;
}

/* ---------- Page head (prices/contacts subpages) ---------- */

.page-head {
  padding: 5rem 0 3rem;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-head h1 { color: var(--heading); }
.page-head p { color: var(--text-muted); font-size: 1.1rem; max-width: 40em; margin: 0 auto; }

/* ---------- Iframe sections ---------- */

.iframe-section { padding: 3rem 0 6rem; }
.iframe-wrap {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 500px;
}
.iframe-wrap iframe {
  width: 100%;
  height: 1200px;
  border: 0;
  display: block;
}
.iframe-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--card-bg);
  z-index: 1;
}
.cabinet-iframe-section {
  position: relative;
  /* No min-height here — the section auto-fits the iframe height
     reported by iframeResizer, so there is no empty gap below the
     iframe on tall viewports. */
  display: block;
}
.cabinet-iframe-section iframe {
  width: 100%;
  /* Small fallback so the iframe is not collapsed before iframeResizer
     reports the real content height (fraction of a second at most).
     iframeResizer sets inline height that overrides this. */
  min-height: 480px;
  height: 480px;
  border: 0;
  display: block;
}

/* ---------- 404 ---------- */

.error-page { padding: 8rem 0; text-align: center; }
.error-inner { max-width: 500px; margin: 0 auto; }
.error-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .3;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  /* margin-top removed — was leaving a 64px white gap above the footer */
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; max-width: 28em; }
.footer-links h4 {
  color: var(--text);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--text-muted); font-size: .95rem; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-soft);
  font-size: .875rem;
}

/* ---------- Pipeline (animated SVG flow + cards) ---------- */

.pipeline {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pipeline-svg-wrap {
  margin: 0 auto 3rem;
  max-width: 1100px;
}
.pipeline-svg {
  width: 100%;
  height: auto;
  display: block;
}
.pipeline-node circle { transition: transform .3s ease; transform-origin: center; transform-box: fill-box; }
.pipeline-node:hover circle { transform: scale(1.1); }
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pipeline-card {
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  position: relative;
}
.pipeline-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .25;
  font-family: var(--font-mono);
}
.pipeline-card h3 { color: var(--text); margin-bottom: .5rem; padding-right: 2rem; }
.pipeline-card p { color: var(--text-muted); margin: 0; font-size: .9rem; }
.pipeline-caption {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Pricing (3-button cards) ---------- */

.price-card .price-buttons {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
}
.price-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1rem;
  border-radius: var(--r-sm);
  background: var(--bg-muted);
  border: 1px solid var(--card-border);
  text-decoration: none;
  color: var(--text);
  transition: all var(--tr);
}
.price-btn:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(2px);
}
.price-btn-days { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.price-btn:hover .price-btn-days { color: var(--primary); }
.price-btn-amount { font-weight: 700; font-size: 1rem; color: var(--text); }
.price-btn:hover .price-btn-amount { color: var(--primary); }
.price-btn.primary {
  background: linear-gradient(135deg, var(--fire-400), var(--fire-600));
  border-color: transparent;
  color: #fff;
}
.price-btn.primary .price-btn-days,
.price-btn.primary .price-btn-amount { color: #fff; }
.price-btn.primary:hover {
  transform: translateX(2px) translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 107, 0, .3);
}
.price-btn.primary.big { padding: 1rem 1.25rem; }
.price-btn.primary.big .price-btn-amount { font-size: 1.25rem; }

.price-card.monthly { border-color: var(--fire-500); }
.popular-badge.monthly-badge {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  text-transform: none;
}

/* ---------- Extras (premium traffic + MC) ---------- */

.extras { padding: 6rem 0; }
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.extra-card {
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--tr);
}
.extra-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
}
.extra-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.extra-card h3 { color: var(--heading); margin-bottom: .5rem; }
.extra-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
.extra-card p { color: var(--text-muted); margin: 0; }

/* ---------- Extra feature icons ---------- */

.feature-icon[data-icon="link"]::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/><path d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/></svg>"); filter: none; }
.feature-icon[data-icon="check"]::before   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>"); filter: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-screenshot { transform: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid, .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-grid { grid-template-columns: 1fr; }
  .pipeline-svg-wrap { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-elevated);
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--border);
    margin-left: 0;
  }
  .main-nav.open a { padding: .75rem 0; border-bottom: 1px solid var(--border); }
  .mobile-menu-toggle { display: flex; }
  .header-inner { padding: .75rem var(--gutter); }

  .features-grid, .cases-grid, .contacts-grid, .pricing-grid, .pipeline-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero { padding: 3rem 0 2rem; }
  .features, .cases, .pricing, .why, .faq, .final-cta, .contacts-block { padding: 4rem 0; }
  .cta-card { padding: 3rem 1.5rem; }
}

/* ============================================
   Prices page — native rendering (no iframe)
   ============================================ */

.prices-main { padding: 3rem 0 6rem; }

.prices-switch {
  display: inline-flex;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px;
  margin: 0 auto 2.5rem;
  gap: 4px;
}
.prices-main .container { text-align: center; }
.prices-switch-btn {
  background: transparent;
  border: 0;
  padding: .6rem 1.5rem;
  border-radius: var(--r-full);
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-muted);
  transition: all var(--tr);
}
.prices-switch-btn:hover { color: var(--text); }
.prices-switch-btn.active {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 4px 12px var(--primary-soft);
}

.prices-panel { display: none; text-align: left; }
.prices-panel.active { display: block; }

/* Disk-range selector (20-100, 120-200, 600-2TB) */
.prices-range-switch {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin: 0 0 2rem;
}
.range-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: .6rem 1.25rem;
  border-radius: var(--r-full);
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-muted);
  transition: all var(--tr);
}
.range-btn:hover { color: var(--primary); border-color: var(--primary); }
.range-btn.active {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px var(--primary-soft);
}

/* Plan cards grid within a range */
.prices-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.prices-grid.active { display: grid; }

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  text-align: center;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
}

.plan-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .3rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}
.plan-disk {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.02em;
}
.plan-unit {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.plan-buttons {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.plan-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  text-decoration: none;
  transition: all var(--tr);
  font-size: .9rem;
}
.plan-btn:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
  transform: translateX(2px);
}
.plan-btn.primary {
  background: linear-gradient(135deg, var(--fire-400), var(--fire-600));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 0, .25);
}
.plan-btn.primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, .35);
}
.plan-btn-days { font-weight: 500; opacity: .9; }
.plan-btn-price { font-weight: 700; }

/* "Included with every plan" block */
.prices-included {
  margin: 3rem 0 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.prices-included h3 {
  text-align: center;
  color: var(--heading);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.prices-included ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.prices-included li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
  font-size: .95rem;
}
.prices-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

.prices-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin: 1.5rem auto 0;
  max-width: 56em;
}

/* Monthly panel */
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.monthly-card {
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--tr);
}
.monthly-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.monthly-disk {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.monthly-disk span { color: var(--text-muted); font-size: .75em; font-weight: 500; }
.monthly-price {
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  margin: 1rem 0 .25rem;
}
.monthly-price .currency { font-size: 1.25rem; vertical-align: super; margin-right: .1em; }
.monthly-price .value { font-size: 2.75rem; }
.monthly-period {
  color: var(--text-muted);
  font-size: .875rem;
  margin-bottom: 1.5rem;
}

/* Info cards below tables */
.prices-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.prices-info-card {
  padding: 1.75rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--primary);
}
.prices-info-card h3 {
  color: var(--heading);
  margin-bottom: .5rem;
  font-size: 1.05rem;
}
.prices-info-card p { color: var(--text-muted); margin: 0 0 .5rem; font-size: .95rem; }
.prices-info-card p.muted { color: var(--text-soft); font-size: .85rem; margin-top: .75rem; }

@media (max-width: 900px) {
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-included ul { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .prices-grid { grid-template-columns: 1fr; }
  .monthly-grid { grid-template-columns: 1fr; }
  .prices-info { grid-template-columns: 1fr; }
  .prices-included { padding: 1.5rem; }
  .range-btn { padding: .5rem 1rem; font-size: .85rem; }
}

