/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TOKENS ===== */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #a5b4fc;
  --accent: #10b981;
  --accent-dark: #059669;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.07);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 10px 40px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(99,102,241,.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,.35); }
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.logo__icon { width: 28px; height: 28px; object-fit: contain; display: block; flex-shrink: 0; }
.nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all .15s;
}
.nav__link:hover { color: var(--primary); background: rgba(99,102,241,.08); }
.header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 64px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -200px; left: -100px;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #10b981, transparent);
  bottom: -100px; right: 100px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.container { position: relative; }
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
}
.badge__dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px #10b981; }
  50% { box-shadow: 0 0 16px #10b981, 0 0 32px #10b98166; }
}
.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat__num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* HERO VISUAL */
.hero__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
}
.hero__card--main {
  width: 300px;
  padding: 20px;
  left: 0;
  top: 20px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.card-dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #ef4444; }
.dot--yellow { background: #f59e0b; }
.dot--green { background: #10b981; }
.card-title { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.7); }
.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.step-item--done { color: rgba(255,255,255,.85); }
.step-item--active { color: #10b981; font-weight: 600; }
.step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.step-item--done .step-icon { background: rgba(16,185,129,.2); color: #10b981; }
.step-item--active .step-icon { background: rgba(16,185,129,.2); }
.card-progress { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.progress-label { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.progress-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #6366f1, #10b981); border-radius: 3px; }
.hero__card--tools {
  right: 10px;
  top: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: float 6s ease-in-out infinite .5s;
}
.tool-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.tool-badge--notion { background: #1a1a1a; }
.tool-badge--airtable { background: #fcb400; color: #fff; }
.tool-badge--zapier { background: #ff4a00; }
.tool-badge--webflow { background: #4353ff; }
.tool-badge--make { background: #6d04d7; }
.hero__card--stat {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  animation: float 6s ease-in-out infinite 1s;
}
.mini-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}

/* ===== WHY NOCODE ===== */
.why { background: var(--bg); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
}
.why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.why__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.why__icon--speed { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.why__icon--cost { background: linear-gradient(135deg, #10b981, #06b6d4); }
.why__icon--control { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.why__icon--scale { background: linear-gradient(135deg, #06b6d4, #6366f1); }
.why__icon--auto { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.why__icon--community { background: linear-gradient(135deg, #f59e0b, #10b981); }
.why__card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why__card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ===== TOOLS ===== */
.tools { background: #fff; }
.tools__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn--active { background: var(--primary); border-color: var(--primary); color: #fff; }
.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tool-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .25s;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.tool-card[style*="display: none"] { display: none !important; }
.tool-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.tool-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.tool-logo--webflow { background: #4353ff; }
.tool-logo--tilda { background: #000; }
.tool-logo--framer { background: #0055ff; }
.tool-logo--notion { background: #1a1a1a; }
.tool-logo--airtable { background: #fcb400; }
.tool-logo--google { background: #4285f4; }
.tool-logo--zapier { background: #ff4a00; }
.tool-logo--make { background: #6d04d7; }
.tool-logo--n8n { background: #ea4b71; }
.tool-logo--bubble { background: #11132d; }
.tool-logo--glide { background: #9b59b6; }
.tool-logo--claude { background: #c9521e; }
.tool-card__meta h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.tool-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
}
.tool-tag--websites { background: rgba(67,83,255,.1); color: #4353ff; }
.tool-tag--databases { background: rgba(252,180,0,.15); color: #b08800; }
.tool-tag--automation { background: rgba(255,74,0,.1); color: #ff4a00; }
.tool-tag--apps { background: rgba(99,102,241,.1); color: var(--primary); }
.tool-tag--ai { background: rgba(16,185,129,.1); color: #059669; }
.tool-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.tool-card__footer { display: flex; align-items: center; justify-content: space-between; }
.difficulty {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.difficulty--easy { background: rgba(16,185,129,.1); color: #059669; }
.difficulty--medium { background: rgba(245,158,11,.1); color: #b45309; }
.difficulty--hard { background: rgba(239,68,68,.1); color: #dc2626; }
.tool-link { font-size: 13px; font-weight: 600; color: var(--primary); }
.tool-link:hover { text-decoration: underline; }
.tools__cta { text-align: center; }

/* ===== TUTORIALS ===== */
.tutorials { background: var(--bg); }
.tutorials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.tutorials__grid .tutorial-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.tutorial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
}
.tutorial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tutorial-card__image { position: relative; }
.tutorial-img-placeholder {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tutorial-card--featured .tutorial-img-placeholder { height: 100%; min-height: 280px; }
.tutorial-img--notion { background: linear-gradient(135deg, #1a1a1a, #3a3a3a); }
.tutorial-img--automation { background: linear-gradient(135deg, #6d04d7, #4353ff); }
.tutorial-img--website { background: linear-gradient(135deg, #4353ff, #06b6d4); }
.tutorial-img--airtable { background: linear-gradient(135deg, #fcb400, #ff6b35); }
.tutorial-img--ai { background: linear-gradient(135deg, #10b981, #6366f1); }
.placeholder-icon { font-size: 40px; }
.placeholder-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); }
.tutorial-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.tutorial-badge--new { background: #10b981; color: #fff; }
.tutorial-badge--hot { background: #ef4444; color: #fff; }
.tutorial-card__body { padding: 24px; }
.tutorial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.tutorial-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tutorial-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
}
.tutorial-card h3 { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.tutorial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.tutorial-footer { display: flex; align-items: center; justify-content: space-between; }
.author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.author-name { display: block; font-size: 13px; font-weight: 600; }
.author-date { display: block; font-size: 12px; color: var(--text-light); }
.tutorial-link { font-size: 14px; font-weight: 600; color: var(--primary); }
.tutorial-link:hover { text-decoration: underline; }
.tutorials__cta { text-align: center; }

/* ===== CATEGORIES ===== */
.categories { background: #fff; }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .25s;
  position: relative;
}
.cat-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card:hover .cat-card__arrow { transform: translateX(4px); color: var(--primary); }
.cat-card__icon { font-size: 32px; flex-shrink: 0; }
.cat-card__body { flex: 1; }
.cat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.cat-card__count { font-size: 12px; font-weight: 600; color: var(--primary); }
.cat-card__arrow { color: var(--text-light); transition: all .2s; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-rating { font-size: 18px; color: #f59e0b; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.t-avatar--1 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.t-avatar--2 { background: linear-gradient(135deg, #6366f1, #06b6d4); }
.t-avatar--3 { background: linear-gradient(135deg, #10b981, #8b5cf6); }
.t-name { display: block; font-size: 14px; font-weight: 700; }
.t-role { display: block; font-size: 12px; color: var(--text-light); }

/* ===== ABOUT ===== */
.about { background: #fff; }
.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.about__features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about__feature { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(16,185,129,.1);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.about__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-num {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.about-num__val {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.about-num__label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  text-align: center;
}
.newsletter__inner { max-width: 560px; margin: 0 auto; }
.newsletter__icon { font-size: 48px; margin-bottom: 20px; }
.newsletter h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.newsletter__form { }
.newsletter__input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.newsletter__input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  backdrop-filter: blur(8px);
  outline: none;
  transition: border-color .2s;
}
.newsletter__input::placeholder { color: rgba(255,255,255,.4); }
.newsletter__input:focus { border-color: rgba(255,255,255,.5); }
.newsletter__note { font-size: 13px; color: rgba(255,255,255,.4); }
.newsletter__success { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(16,185,129,.2);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #10b981;
  margin: 0 auto;
}
.newsletter__success p { color: rgba(255,255,255,.8); font-size: 15px; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: rgba(255,255,255,.8); padding: 64px 0 32px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .logo { margin-bottom: 16px; color: #fff; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__requisites {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.requisites__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.requisites__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
}
.requisites__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.requisites__item span {
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.requisites__item strong {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .tools__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0;
    background: rgba(15,12,41,.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 8px;
    z-index: 99;
  }
  .nav.open .nav__link { padding: 14px 16px; color: rgba(255,255,255,.8); font-size: 17px; border-radius: 10px; }
  .nav.open .nav__link:hover { background: rgba(255,255,255,.08); color: #fff; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .why__grid { grid-template-columns: 1fr; }
  .tools__grid { grid-template-columns: 1fr; }
  .tutorials__grid { grid-template-columns: 1fr; }
  .tutorials__grid .tutorial-card:first-child { grid-template-columns: 1fr; }
  .categories__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .requisites__grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__input-group { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 16px; }
  .stat__num { font-size: 22px; }
  .about__numbers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer__links { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; }
  .stat__divider { display: none; }
}
