@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spline Sans";
  src: url("../fonts/SplineSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0C0E13;
  --surface: #14171F;
  --surface-2: #1C2029;
  --text: #F2F0ED;
  --text-muted: #9CA3AF;
  --accent: #8B5CF6;
  --accent-2: #34D399;
  --border: #2A2E3A;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Spline Sans', sans-serif;
  --fs-display: clamp(2.6rem, 5.5vw, 4rem);
  --fs-h1: clamp(2.1rem, 4.5vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3.2vw, 2.3rem);
  --fs-h3: clamp(1.05rem, 1.8vw, 1.3rem);
  --fs-body: clamp(0.92rem, 1.1vw, 1.02rem);
  --fs-small: clamp(0.78rem, 0.95vw, 0.88rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6.5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.section-tag--light {
  color: var(--accent-2);
}

.section-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.section-sub {
  color: var(--text-muted);
  font-size: var(--fs-body);
}

.section-sub--light {
  color: rgba(255, 255, 255, 0.6);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

.btn-accent:hover {
  background: #7C4FE0;
  border-color: #7C4FE0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

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

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

.btn-lg {
  padding: 16px 32px;
  font-size: var(--fs-body);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12, 14, 19, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
}

.main-nav {
  display: flex;
  gap: 20px;
  margin-left: 24px;
}

.main-nav a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 4px 0;
}

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

.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.ad-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--bg) 0%, var(--surface) 100%);
}

.hero-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  opacity: 0.12;
  pointer-events: none;
}

.wave-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: waveAnim 1.4s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 55px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 65px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 50px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 70px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 45px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 60px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 35px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 50px; animation-delay: 1s; }
.wave-bar:nth-child(12) { height: 25px; animation-delay: 1.1s; }

@keyframes waveAnim {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-layout > *,
.tech-grid > *,
.form-layout > *,
.about-grid > *,
.modules-grid > *,
.types-grid > *,
.audience-grid > *,
.numbers-grid > *,
.blog-grid > *,
.pricing-grid > *,
.payment-grid > *,
.offer-detail-body > * {
  min-width: 0;
  max-width: 100%;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--accent-2);
  margin-bottom: var(--space-md);
  padding: 6px 14px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.live-dot--sm {
  width: 6px;
  height: 6px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.hero-left h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.hero-text {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 520px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
}

.badge-violet {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent);
}

.badge-green {
  background: rgba(52, 211, 153, 0.1);
  color: var(--accent-2);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

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

.hero-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(12, 14, 19, 0.9));
}

.overlay-stat {
  display: flex;
  flex-direction: column;
}

.overlay-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-2);
}

.overlay-label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-float {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 23, 31, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
}

.process {
  background: var(--surface);
}

.process-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-marker {
  position: relative;
  flex-shrink: 0;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.step-body {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  flex: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-body:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.step-body p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 14px;
}

.step-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent);
  border-radius: 4px;
}

.technology {
  background: var(--bg);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.tech-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.tech-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.tech-frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--accent);
  border-style: solid;
}

.tech-frame-corner--tl {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}

.tech-frame-corner--br {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}

.tech-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
  height: 30px;
}

.tw-bar {
  width: 3px;
  background: var(--accent-2);
  border-radius: 2px;
  animation: waveAnim 1.2s ease-in-out infinite;
}

.tw-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.tw-bar:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.tw-bar:nth-child(3) { height: 26px; animation-delay: 0.2s; }
.tw-bar:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.tw-bar:nth-child(5) { height: 22px; animation-delay: 0.4s; }
.tw-bar:nth-child(6) { height: 12px; animation-delay: 0.5s; }
.tw-bar:nth-child(7) { height: 20px; animation-delay: 0.6s; }
.tw-bar:nth-child(8) { height: 8px; animation-delay: 0.7s; }

.tech-content h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.tech-content > p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tf-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.tf-text h4 {
  font-size: var(--fs-body);
  margin-bottom: 4px;
}

.tf-text p {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.programme {
  background: var(--surface);
}

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

.module-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.module-week {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
}

.module-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-2);
  padding: 3px 10px;
  background: rgba(52, 211, 153, 0.08);
  border-radius: 4px;
}

.module-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.module-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  flex: 1;
  margin-bottom: 14px;
}

.module-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.module-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.types {
  background: var(--bg);
}

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

.type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.type-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.type-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.type-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 14px;
}

.type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.type-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(52, 211, 153, 0.08);
  color: var(--accent-2);
  border-radius: 3px;
}

.audience {
  background: var(--surface);
}

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

.audience-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
}

.audience-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.1);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.audience-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 14px;
}

.audience-level {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent);
  border-radius: 3px;
}

.numbers {
  background: linear-gradient(160deg, var(--accent) 0%, #5B21B6 100%);
}

.numbers .section-header h2 {
  color: #FFFFFF;
}

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

.number-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.number-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.number-desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
}

.pricing {
  background: var(--bg);
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: scale(1.03);
}

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

.price-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}

.price-card-head h3 {
  font-size: var(--fs-h3);
  margin-bottom: 4px;
}

.price-card-head p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-amount {
  margin-bottom: 20px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}

.price-per {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 2px;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.price-list li i {
  color: var(--accent-2);
  margin-top: 2px;
}

.blog {
  background: var(--surface);
}

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

.blog-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-body {
  padding: 20px;
}

.blog-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent);
  border-radius: 3px;
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: 8px;
}

.blog-body p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 12px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.form-info h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.form-info > p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.form-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--space-md);
}

.fstep {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-small);
}

.fstep-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  color: var(--accent-2);
  padding: 14px 18px;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-sm);
}

.form-guarantee i {
  font-size: 1.2rem;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ff label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
}

.ff input,
.ff select {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  transition: border-color 0.2s ease;
  min-height: 44px;
}

.ff input:focus,
.ff select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.ff input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.ff-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.ff-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ff-check label {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-hero {
  padding: calc(var(--space-xl) / 2) 0 var(--space-lg);
  background: linear-gradient(170deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.page-hero-text {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(20, 23, 31, 0.92);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.about-badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-content h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 130px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-2);
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.services-pricing {
  background: var(--bg);
}

.offer-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-detail:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.offer-detail--featured {
  border-color: var(--accent);
  background: var(--surface-2);
}

.offer-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  flex-wrap: wrap;
}

.offer-detail-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.offer-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.7;
}

.offer-detail-title h3 {
  font-size: var(--fs-h3);
  margin-bottom: 2px;
}

.offer-for {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.offer-price {
  text-align: right;
}

.offer-price-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}

.offer-price-per {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.offer-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 0 28px 28px;
}

.offer-includes h4,
.offer-calc h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-body);
  margin-bottom: 12px;
}

.offer-includes h4 i {
  color: var(--accent-2);
}

.offer-calc h4 i {
  color: var(--accent);
}

.offer-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-includes ul li {
  font-size: var(--fs-small);
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.offer-includes ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.offer-calc p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 10px;
}

.payment {
  background: var(--surface);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: var(--space-lg);
}

.payment-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.payment-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
}

.payment-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.1);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.payment-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.payment-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 14px;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.payment-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent);
  border-radius: 3px;
}

.payment-flow {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.payment-flow h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-h3);
  margin-bottom: 24px;
}

.payment-flow h3 i {
  color: var(--accent);
}

.payment-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pstep {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pstep-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.pstep h4 {
  font-size: var(--fs-body);
  margin-bottom: 4px;
}

.pstep p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.payment-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-sm);
}

.payment-note i {
  color: var(--accent-2);
  font-size: 1.2rem;
  margin-top: 2px;
}

.payment-note p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

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

.faq-wrap {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--text);
  text-align: left;
  min-height: 44px;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--surface-2);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-question i {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer-inner p {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-lg);
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.faq-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-page {
  background: var(--bg);
}

.article-header {
  padding: var(--space-lg) 24px 0;
  max-width: 820px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  transition: color 0.2s ease;
}

.article-back:hover {
  color: var(--accent);
}

.article-header h1 {
  font-size: var(--fs-h1);
  margin: 12px 0 var(--space-sm);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: var(--fs-small);
  padding-bottom: var(--space-md);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-hero {
  max-width: 1000px;
  padding: 0 24px;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.article-body {
  max-width: 820px;
  padding: var(--space-lg) 24px var(--space-xl);
}

.article-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.article-body h2 {
  font-size: var(--fs-h3);
  font-size: 1.5rem;
  margin: var(--space-lg) 0 var(--space-sm);
  padding-left: 16px;
  border-left: 3px solid var(--accent-2);
}

.article-body p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.article-body p strong {
  color: var(--text);
}

.article-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: var(--space-md) 0;
}

.article-callout i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-top: 2px;
}

.article-callout p {
  margin-bottom: 0;
  color: var(--text);
  font-size: var(--fs-small);
}

.article-quote {
  margin: var(--space-lg) 0;
  padding: 28px 32px;
  background: var(--surface);
  border-left: 4px solid var(--accent-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.5;
}

.article-takeaways {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: var(--space-lg) 0;
}

.article-takeaways h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-h3);
  margin-bottom: 16px;
}

.article-takeaways h3 i {
  color: var(--accent-2);
}

.article-takeaways ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-takeaways ul li {
  font-size: var(--fs-small);
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}

.article-takeaways ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.article-cta {
  background: linear-gradient(160deg, var(--accent) 0%, #5B21B6 100%);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  margin-top: var(--space-lg);
}

.article-cta h3 {
  font-size: var(--fs-h3);
  color: #FFFFFF;
  margin-bottom: 10px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-small);
  margin-bottom: 20px;
}

.article-cta .btn-accent {
  background: #FFFFFF;
  color: var(--accent);
  border-color: #FFFFFF;
}

.article-cta .btn-accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #0C0E13;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo--footer .logo-name {
  color: var(--text);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.footer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-contacts {
  font-size: var(--fs-small);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(156, 163, 175, 0.6);
  line-height: 1.6;
  max-width: 900px;
}

.footer-bottom {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

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

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.cookie-text i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 2px;
}

.cookie-text p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  min-width: 120px;
}

.legal-page {
  background: var(--surface);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--text);
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content ul {
  margin: 12px 0 20px 20px;
  color: var(--text-muted);
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content ul li::marker {
  color: var(--accent);
}

.legal-callout {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}

.legal-callout p {
  margin-bottom: 0;
  color: var(--text);
}

.last-updated {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 32px;
}

.thanks-page {
  background: var(--surface);
}

.thanks-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) 24px;
}

.thanks-hero {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid rgba(52, 211, 153, 0.3);
  border-radius: 50%;
  font-size: 2.2rem;
  color: var(--accent-2);
}

.thanks-hero h1 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.thanks-hero > p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.thanks-next {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: var(--space-md);
}

.thanks-next h3 {
  font-size: var(--fs-h3);
  margin-bottom: 20px;
}

.tstep {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.tstep:last-child {
  margin-bottom: 0;
}

.tstep-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.tstep-text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.tstep-text strong {
  color: var(--text);
}

.thanks-tips {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: var(--space-md);
}

.thanks-tips h3 {
  font-size: var(--fs-h3);
  margin-bottom: 16px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.tip-item:last-child {
  margin-bottom: 0;
}

.tip-item i {
  color: var(--accent-2);
  font-size: 1.1rem;
  margin-top: 1px;
}

.thanks-contacts {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.thanks-contacts p {
  margin-bottom: 4px;
}

.thanks-contacts strong {
  color: var(--text);
}

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

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-right {
    order: -1;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .price-card--featured {
    transform: none;
  }

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

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-steps {
    grid-template-columns: 1fr;
  }

  .offer-detail-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--space-xl) / 2);
  }

  .page-hero {
    padding-top: calc(var(--space-lg) / 2);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    margin-left: 0;
    transform: translateX(-50%);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-sizing: border-box;
  }

  .main-nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .modules-grid,
  .types-grid,
  .audience-grid,
  .numbers-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 14px;
  }

  .hero-waveform {
    display: none;
  }

  .offer-detail-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-price {
    text-align: left;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-layout > *,
  .tech-grid > *,
  .form-layout > *,
  .about-grid > *,
  .modules-grid > *,
  .types-grid > *,
  .audience-grid > *,
  .numbers-grid > *,
  .blog-grid > *,
  .pricing-grid > *,
  .payment-grid > *,
  .offer-detail > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .ad-badge,
  .logo-name,
  .footer-col,
  .footer-contacts {
    word-break: break-all;
  }

  .logo {
    min-width: 0;
  }

  .logo .logo-name {
    flex: 1;
  }

  .logo {
    flex-direction: column;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .form-card {
    padding: 20px;
  }

  .hero-card-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .faq-answer {
    transition: none;
  }
}