/* =============================================================================
   RESTOMUSIC — Main Stylesheet
   Design system: CSS custom properties + utility classes
   ============================================================================= */

/* === CUSTOM PROPERTIES === */
:root {
  /* Brand */
  --c-primary:       #C8253D;
  --c-primary-light: #E5294A;
  --c-primary-dark:  #A01E31;
  --c-primary-glow:  rgba(200, 37, 61, 0.35);

  /* Neutrals */
  --c-dark:     #0A0A0F;
  --c-dark-2:   #13131A;
  --c-dark-3:   #1E1E2A;
  --c-text:     #1A1A2E;
  --c-muted:    #6B7280;
  --c-border:   #E5E7EB;
  --c-surface:  #F8F7FA;
  --c-white:    #FFFFFF;

  /* Semantic */
  --c-success: #16A34A;
  --c-danger:  #DC2626;

  /* Typography */
  --font-head: 'Syne',  sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Container */
  --container-max:     1280px;
  --container-narrow:  780px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Spacing */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  1.5rem;
  --gap-lg:  3rem;
  --gap-xl:  5rem;
  --gap-xxl: 8rem;

  /* Radius */
  --r-sm:   0.5rem;
  --r-md:   1rem;
  --r-lg:   1.5rem;
  --r-xl:   2rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --shadow-pri: 0 6px 24px var(--c-primary-glow);

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;

  /* Header height */
  --header-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}
.container--narrow {
  max-width: var(--container-narrow);
}

/* === TYPOGRAPHY === */
.text-gradient {
  background: linear-gradient(135deg, var(--c-primary) 0%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--shadow-pri);
}
.btn--primary:hover {
  background: var(--c-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--c-primary-glow);
}

.btn--outline {
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--ghost {
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-primary);
  font-weight: 700;
}
.btn--white:hover {
  background: #F0F0F5;
  transform: translateY(-1px);
}

.btn--ghost-white {
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--sm  { padding: 0.4rem 1rem;    font-size: 0.875rem; }
.btn--lg  { padding: 0.875rem 2rem;  font-size: 1.0625rem; }
.btn--block { width: 100%; justify-content: center; }

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.875rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
}
.badge--glow {
  background: rgba(200, 37, 61, 0.12);
  color: var(--c-primary);
  border: 1px solid rgba(200, 37, 61, 0.25);
}

/* === SECTION UTILITIES === */
.section { padding-block: var(--gap-xl); }
.section--sm { padding-block: var(--gap-lg); }
.section--dark {
  background: var(--c-dark);
  color: var(--c-white);
}
.section--surface { background: var(--c-surface); }

.section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.section-header--light { color: var(--c-white); }

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}
.section-tag--light { color: rgba(255,255,255,0.65); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-family: var(--font-head);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-footer {
  display: flex;
  justify-content: center;
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
  flex-wrap: wrap;
}

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

/* =============================================================================
   HEADER / NAVIGATION
   ============================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--t-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--c-primary);
}
.logo--light { color: rgba(255,255,255,0.7); }
.logo__icon { width: 36px; height: 36px; }
.logo__text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.logo--light .logo__text { color: var(--c-white); }

/* Main nav */
.main-nav { margin-left: auto; }
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav__item { position: relative; }

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.main-nav__link:hover,
.main-nav__link.is-active { color: var(--c-primary); background: rgba(200,37,61,0.06); }

.main-nav__chevron { width: 14px; height: 14px; transition: transform var(--t-fast); }
.has-dropdown:hover .main-nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.main-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base);
  pointer-events: none;
}
.has-dropdown:hover .main-nav__dropdown,
.has-dropdown:focus-within .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.main-nav__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast);
}
.main-nav__dropdown-link:hover { background: var(--c-surface); color: var(--c-primary); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: var(--gap-sm);
}
.header-phone {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
  white-space: nowrap;
}
.header-phone:hover { color: var(--c-primary); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-dark);
  color: var(--c-white);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.hero__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__wave {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__wave--1 {
  width: 600px; height: 600px;
  background: var(--c-primary);
  top: -200px; right: -100px;
}
.hero__wave--2 {
  width: 400px; height: 400px;
  background: #FF6B6B;
  bottom: -150px; left: -100px;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-xl);
  align-items: center;
}
.hero__badge { margin-bottom: 1.5rem; }
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--c-white);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.hero__trust-item svg { width: 16px; height: 16px; color: var(--c-primary); }

/* Player card (hero visual) */
.hero__visual { flex-shrink: 0; }
.player-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  width: 260px;
  backdrop-filter: blur(16px);
}
.player-card__cover {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1rem;
}
.player-card__cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.player-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--t-base);
}
.player-card__cover:hover .player-card__play { opacity: 1; }
.player-card__play svg { width: 48px; height: 48px; color: var(--c-white); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

.player-card__info { color: var(--c-white); }
.player-card__label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.player-card__name { font-size: 1rem; font-weight: 700; display: block; margin: 0.25rem 0; }

.player-card__waveform {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 32px;
  margin-top: 0.75rem;
}
.player-card__waveform span {
  display: block;
  flex: 1;
  height: var(--h, 50%);
  background: var(--c-primary);
  border-radius: 1px;
  opacity: 0.7;
  animation: wave-bar 1.2s ease-in-out infinite alternate;
}
.player-card__waveform span:nth-child(odd) { animation-delay: 0.15s; }
@keyframes wave-bar {
  from { opacity: 0.4; transform: scaleY(0.6); }
  to   { opacity: 0.9; transform: scaleY(1.0); }
}

/* =============================================================================
   PAGE HEROES
   ============================================================================= */
.page-hero {
  background: var(--c-dark);
  color: var(--c-white);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.page-hero--sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-hero__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  margin-block: 0.75rem 1rem;
  color: var(--c-white);
}
.page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 1.5rem;
}

/* =============================================================================
   CLIENTS
   ============================================================================= */
.clients { border-bottom: 1px solid var(--c-border); }
.clients__label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--c-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.clients__logo {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-border);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity var(--t-base);
}
.clients__logo:hover { opacity: 0.85; }

/* =============================================================================
   BENEFITS GRID
   ============================================================================= */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}
.benefit-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.benefit-card__icon svg { width: 24px; height: 24px; }
.benefit-card__icon--red    { background: rgba(200,37,61,0.1); color: var(--c-primary); }
.benefit-card__icon--blue   { background: rgba(59,130,246,0.1); color: #3B82F6; }
.benefit-card__icon--green  { background: rgba(34,197,94,0.1);  color: var(--c-success); }
.benefit-card__icon--purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.benefit-card__icon--orange { background: rgba(249,115,22,0.1); color: #F97316; }
.benefit-card__icon--teal   { background: rgba(20,184,166,0.1); color: #14B8A6; }
.benefit-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card__text  { font-size: 0.9375rem; color: var(--c-muted); }

/* =============================================================================
   HOW IT WORKS / STEPS
   ============================================================================= */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  max-width: 260px;
  text-align: center;
  flex: 1 1 220px;
}
.step__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 1rem;
}
.step__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.step__text  { font-size: 0.9375rem; color: rgba(255,255,255,0.65); }
.step__arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* Process steps (business page) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-md);
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.process-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.process-step__body h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.process-step__body p  { font-size: 0.9375rem; color: var(--c-muted); }

/* =============================================================================
   PLAYLIST GRID & CARDS
   ============================================================================= */
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--gap-md);
}
.playlist-grid--home { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.playlist-grid--full { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }

.playlist-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.playlist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.playlist-card__media { position: relative; aspect-ratio: 1; overflow: hidden; }
.playlist-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.playlist-card:hover .playlist-card__media img { transform: scale(1.06); }

.playlist-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}
.playlist-card:hover .playlist-card__overlay { opacity: 1; }

.playlist-card__play {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast);
  box-shadow: var(--shadow-pri);
}
.playlist-card__play:hover { transform: scale(1.1); }
.playlist-card__play svg { width: 22px; height: 22px; }

.playlist-card__body { padding: 1rem; }
.playlist-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  display: block;
  margin-bottom: 0.25rem;
}
.playlist-card__name { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.playlist-card__mood { font-size: 0.8125rem; color: var(--c-muted); }

/* =============================================================================
   PRICING CARDS
   ============================================================================= */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 4px;
  width: fit-content;
  margin: 0 auto var(--gap-lg);
}
.billing-toggle__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--t-base);
}
.billing-toggle__btn.is-active {
  background: var(--c-white);
  color: var(--c-text);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.billing-toggle__save {
  background: rgba(34,197,94,0.12);
  color: var(--c-success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-full);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-md);
  max-width: 760px;
  margin: 0 auto;
}
.pricing-cards--page { max-width: 800px; }

.pricing-card {
  position: relative;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--popular {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 1px var(--c-primary), var(--shadow-md);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 1.5rem; }
.pricing-card__name { font-size: 1.25rem; margin-bottom: 0.75rem; }
.pricing-card__price { display: flex; align-items: baseline; gap: 0.25rem; flex-wrap: wrap; }
.pricing-card__amount { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--c-text); }
.pricing-card__period { font-size: 0.875rem; color: var(--c-muted); }
.pricing-card__note   { font-size: 0.8125rem; color: var(--c-muted); margin-top: 0.5rem; }
.pricing-card__features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.pricing-card__features li {
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--c-text);
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23C8253D'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-preview__more {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--c-muted);
  font-size: 0.9375rem;
}
.pricing-preview__more a { color: var(--c-primary); font-weight: 500; }
.pricing-preview__more a:hover { text-decoration: underline; }

/* Pricing table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 500px;
}
.price-table th,
.price-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.price-table th {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  background: var(--c-surface);
}
.price-table th:first-child { border-radius: var(--r-sm) 0 0 0; }
.price-table th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.th-sub { font-size: 0.75rem; font-weight: 400; display: block; text-transform: none; }
.price-table td:first-child { font-weight: 600; }
.price-table__special td { background: var(--c-surface); }
.price-table tbody tr:hover td { background: rgba(200,37,61,0.04); }

/* Included grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}
.included-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.included-item__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--c-primary);
}
.included-item strong { display: block; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.included-item p { font-size: 0.875rem; color: var(--c-muted); }

/* =============================================================================
   FAQ
   ============================================================================= */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--t-fast);
}
.faq-item__q:hover { color: var(--c-primary); }
.faq-item__q[aria-expanded="true"] { color: var(--c-primary); }
.faq-item__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
  color: var(--c-muted);
}
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); color: var(--c-primary); }
.faq-item__a {
  padding-bottom: 1.25rem;
  animation: faq-open 0.25s ease;
}
.faq-item__a p { font-size: 0.9375rem; color: var(--c-muted); line-height: 1.7; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================================
   FORMS
   ============================================================================= */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
}
.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
}
.form-input {
  height: 46px;
  padding: 0 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  background: var(--c-white);
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(200,37,61,0.1);
}
.form-input::placeholder { color: #C4C4CF; }
textarea.form-input { height: auto; padding-block: 0.75rem; resize: vertical; }
.form-textarea { min-height: 110px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--c-primary); flex-shrink: 0; }
.form-check a { color: var(--c-primary); text-decoration: underline; }
.form-status {
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 500;
}
.form-status--success { background: rgba(34,197,94,0.1); color: var(--c-success); }
.form-status--error   { background: rgba(220,38,38,0.1);  color: var(--c-danger);  }

.contact-form, .modal-form { display: flex; flex-direction: column; gap: var(--gap-sm); }

/* =============================================================================
   MODALS
   ============================================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-sm);
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-muted);
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.modal__close:hover { background: var(--c-surface); color: var(--c-text); }
.modal__badge {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  color: var(--c-success);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}
.modal__title { font-size: 1.375rem; margin-bottom: 1.5rem; }
.modal-form__footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.modal-form__footer a { color: var(--c-primary); font-weight: 500; }

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta-section { background: linear-gradient(135deg, var(--c-primary) 0%, #E05A2B 100%); }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
.cta-box__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.cta-box__text { color: rgba(255,255,255,0.8); font-size: 1.0625rem; }
.cta-box__actions {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Inline CTA */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
.inline-cta__title { font-size: 1.375rem; margin-bottom: 0.375rem; }
.inline-cta__text  { color: var(--c-muted); }
.inline-cta__actions { display: flex; gap: var(--gap-sm); flex-wrap: wrap; }

/* =============================================================================
   TWO COLUMN LAYOUT
   ============================================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}
.two-col--text { align-items: center; }
.two-col__subtitle { font-size: 1.125rem; margin-bottom: 1rem; }
.two-col h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1.25rem; }
.two-col p  { color: var(--c-muted); margin-bottom: 0.875rem; line-height: 1.7; }

/* Icon lists */
.icon-list { display: flex; flex-direction: column; gap: 0.625rem; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  padding-left: 1.75rem;
  position: relative;
}
.icon-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: '';
  width: 18px; height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-list--success li { color: rgba(255,255,255,0.8); }
.icon-list--danger  li { color: rgba(255,255,255,0.65); }
.icon-list--success li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2322c55e'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.icon-list--danger  li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ef4444'%3E%3Cpath fill-rule='evenodd' d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E"); }

/* =============================================================================
   STAT CARDS
   ============================================================================= */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
}
.stat-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
}
.stat-card__num   { display: block; font-family: var(--font-head); font-size: 2.25rem; font-weight: 800; color: var(--c-primary); }
.stat-card__label { font-size: 0.875rem; color: var(--c-muted); }

/* =============================================================================
   TIMELINE
   ============================================================================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--gap-md);
  position: relative;
}
.timeline-item { position: relative; }
.timeline-item__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.timeline-item__body h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.timeline-item__body p  { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

/* =============================================================================
   FEATURES / SERVICES GRIDS
   ============================================================================= */
.features-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-md);
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-item__icon {
  width: 48px; height: 48px;
  background: rgba(200,37,61,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}
.feature-item__icon svg { width: 24px; height: 24px; }
.feature-item__body h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.feature-item__body p  { font-size: 0.9375rem; color: var(--c-muted); }

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(200,37,61,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.9375rem; color: var(--c-muted); }

/* =============================================================================
   AUTHOR BENEFITS
   ============================================================================= */
.author-benefit {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.author-benefit__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.author-benefit h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.author-benefit p { color: var(--c-muted); margin-bottom: 0.75rem; line-height: 1.7; }
.author-benefit__list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--c-muted);
  font-size: 0.9375rem;
}
.author-benefit__list li { margin-bottom: 0.25rem; }
.author-benefit__note {
  font-size: 0.875rem;
  color: var(--c-muted);
  background: rgba(200,37,61,0.06);
  border-left: 3px solid var(--c-primary);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* Requirements list */
.req-list { display: flex; flex-direction: column; gap: 0.5rem; }
.req-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
}
.req-item strong { font-weight: 600; flex-shrink: 0; min-width: 100px; }
.req-item span { color: var(--c-muted); }
.req-item--ok  { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.2); }
.req-item--no  { background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2); }

/* =============================================================================
   CONTACTS PAGE
   ============================================================================= */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--gap-xl);
  align-items: start;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-card:last-of-type { border-bottom: none; }
.contact-card__icon {
  width: 40px; height: 40px;
  background: rgba(200,37,61,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label { font-size: 0.8125rem; color: var(--c-muted); display: block; margin-bottom: 0.125rem; }
.contact-card__value { font-size: 1rem; font-weight: 600; color: var(--c-text); }
.contact-card__value:hover { color: var(--c-primary); }

.legal-details {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--c-surface);
  border-radius: var(--r-lg);
}
.legal-details__title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); margin-bottom: 0.75rem; }
.legal-details__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.375rem 1rem;
  font-size: 0.875rem;
}
.legal-details__list dt { color: var(--c-muted); font-weight: 500; }
.legal-details__list dd { color: var(--c-text); }

.contacts-form__title { font-size: 1.375rem; margin-bottom: 1.5rem; }

/* =============================================================================
   BLOG
   ============================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap-md);
}
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  background: rgba(200,37,61,0.08);
  padding: 0.2rem 0.625rem;
  border-radius: var(--r-full);
}
.blog-card__date { font-size: 0.8125rem; color: var(--c-muted); }
.blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}
.blog-card__title a:hover { color: var(--c-primary); }
.blog-card__excerpt { font-size: 0.9rem; color: var(--c-muted); margin-bottom: 1rem; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary);
}
.blog-card__link svg { width: 14px; height: 14px; }
.blog-card__link:hover { gap: 0.625rem; }

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--c-muted);
}
.empty-state a { color: var(--c-primary); }

/* === ARTICLE PAGE === */
.page-article__hero {
  background: var(--c-dark);
  color: var(--c-white);
  padding-block: 3.5rem;
}
.page-article__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.page-article__cat {
  color: var(--c-primary);
  font-weight: 600;
}
.page-article__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.page-article__lead  { font-size: 1.125rem; color: rgba(255,255,255,0.7); }
.page-article__body  { padding-block: var(--gap-xl); }

.article-content { font-size: 1.0625rem; line-height: 1.8; }
.article-content h2 { font-size: 1.5rem; margin: 2em 0 0.75em; color: var(--c-text); }
.article-content h3 { font-size: 1.25rem; margin: 1.5em 0 0.5em; }
.article-content p  { margin-bottom: 1.25em; color: var(--c-muted); }
.article-content ul, .article-content ol {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
  color: var(--c-muted);
}
.article-content li { margin-bottom: 0.5em; }
.article-content strong { color: var(--c-text); }

.article-cta {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin: 3rem 0 2rem;
  text-align: center;
}
.article-cta h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.article-cta p  { color: var(--c-muted); margin-bottom: 1.25rem; }

.article-nav {
  display: flex;
  gap: var(--gap-sm);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}
.article-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-muted);
}
.article-nav__back svg { width: 16px; height: 16px; }
.article-nav__back:hover { color: var(--c-primary); }

/* =============================================================================
   CATEGORY FILTER
   ============================================================================= */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--gap-lg);
}
.cat-filter__btn,
a.cat-filter__btn {
  padding: 0.5rem 1.125rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-muted);
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  transition: all var(--t-fast);
  cursor: pointer;
  text-decoration: none;
}
.cat-filter__btn:hover,
a.cat-filter__btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.cat-filter__btn.is-active,
a.cat-filter__btn.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
  background: var(--c-dark);
  color: var(--c-white);
  padding-top: var(--gap-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  padding-bottom: var(--gap-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 0.625rem;
}
.footer__social-link {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.footer__social-link:hover { background: var(--c-primary); color: var(--c-white); }
.footer__social-link svg  { width: 18px; height: 18px; }

.footer__nav-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav-list a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer__nav-list a:hover { color: var(--c-white); }
.footer__contacts li { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.5rem;
}
.footer__copy { font-size: 0.875rem; color: rgba(255,255,255,0.35); }
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* =============================================================================
   ERROR PAGE
   ============================================================================= */
.error-page {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: var(--gap-xl);
}
.error-page__content { text-align: center; }
.error-page__code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-page__title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.error-page__text  { color: var(--c-muted); margin-bottom: 2rem; }
.error-page__actions { display: flex; gap: var(--gap-sm); justify-content: center; flex-wrap: wrap; }

/* =============================================================================
   SCROLL REVEAL ANIMATION
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =============================================================================
   RESPONSIVE — MOBILE
   ============================================================================= */
@media (max-width: 1100px) {
  .header-phone { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .steps { flex-direction: column; align-items: stretch; }
  .step__arrow { display: none; }
  .step { max-width: none; }
  .two-col { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .contacts-layout { grid-template-columns: 1fr; }
  .pricing-cards { max-width: 480px; grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header .main-nav, .header-actions { display: none; }
  .site-header .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--c-white);
    padding: 1.5rem var(--container-padding);
    overflow-y: auto;
    z-index: 99;
  }
  .site-header .main-nav.is-open .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav__link { padding: 0.875rem 0; font-size: 1rem; border-radius: 0; border-bottom: 1px solid var(--c-border); }
  .main-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    pointer-events: auto;
  }
  .has-dropdown:hover .main-nav__dropdown { display: none; }
  .burger { display: flex; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .billing-toggle { width: 100%; justify-content: center; }
  .cta-box { flex-direction: column; text-align: center; }
  .cta-box__actions { width: 100%; justify-content: center; }
  .inline-cta { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --gap-xl: 3.5rem; --gap-lg: 2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stat-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
