:root {
  --bg-main: #050a1f;
  --bg-deep: #020611;
  --bg-soft: #0a1230;

  --text-main: #ffffff;
  --text-soft: #aab4c5;
  --text-dim: #7f8aa0;

  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --card-bg: rgba(255, 255, 255, 0.04);
  --card-bg-strong: rgba(255, 255, 255, 0.06);

  --blue: #3b82f6;
  --purple: #7c3aed;
  --cyan: #22d3ee;
  --pink: #a855f7;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.48);

  --radius: 18px;
  --radius-sm: 14px;
  --maxw: 1200px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(180deg, rgba(3, 6, 18, 0.58), rgba(3, 6, 18, 0.86)),
    url("assets/galaxy-bg.jpg") center center / cover no-repeat;
}

.background-noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  mix-blend-mode: screen;
}

.background-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -3;
  pointer-events: none;
  opacity: 0.58;
  transition: transform 0.18s linear;
}

.glow-left {
  width: 520px;
  height: 520px;
  left: -160px;
  top: 120px;
  background: rgba(59, 130, 246, 0.2);
}

.glow-right {
  width: 560px;
  height: 560px;
  right: -140px;
  top: 220px;
  background: rgba(168, 85, 247, 0.22);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.22;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,0.9), transparent 50%),
    radial-gradient(1.5px 1.5px at 22% 70%, rgba(59,130,246,0.95), transparent 50%),
    radial-gradient(2px 2px at 38% 28%, rgba(168,85,247,0.9), transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 78%, rgba(255,255,255,0.8), transparent 50%),
    radial-gradient(2px 2px at 71% 24%, rgba(34,211,238,0.85), transparent 50%),
    radial-gradient(1.5px 1.5px at 82% 60%, rgba(168,85,247,0.75), transparent 50%),
    radial-gradient(2px 2px at 92% 34%, rgba(255,255,255,0.75), transparent 50%);
}

.container {
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 640px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.10),
    transparent
  );
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,10,31,0.82), rgba(5,10,31,0.18));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  filter:
    drop-shadow(0 0 14px rgba(80,120,255,0.55))
    drop-shadow(0 0 30px rgba(168,85,247,0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-img:hover {
  transform: scale(1.06);
}

.logo-text {
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(255,255,255,0.08),
    0 0 24px rgba(120,120,255,0.12);
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #a855f7);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
  text-shadow: 0 0 22px rgba(99,102,241,0.35);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.language-switcher {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 10px 14px;
  margin-right: 12px;
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.language-switcher option {
  background: #0b1128;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 15px 26px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-small {
  padding: 12px 18px;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(135deg, #4f8cff, #9b5cff);
  border: none;
  color: white;
  box-shadow:
    0 10px 25px rgba(80,120,255,0.35),
    0 0 35px rgba(168,85,247,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 45px rgba(80,120,255,0.45),
    0 0 60px rgba(168,85,247,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(168,85,247,0.5);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(59,130,246,0.16), transparent 32%),
    radial-gradient(circle at 78% 42%, rgba(168,85,247,0.16), transparent 30%);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -40px;
  top: 48%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.14), transparent 62%);
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  color: #c4d1ff;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.04;
  letter-spacing: -1.2px;
  font-weight: 800;
  max-width: 720px;
  text-shadow:
    0 0 18px rgba(255,255,255,0.05),
    0 0 36px rgba(124,58,237,0.10);
}

.hero h1 span {
  display: block;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #d8e0ff 25%,
    #b9c5ff 55%,
    #9d8cff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin-top: 26px;
  font-size: 1.16rem;
  color: #e3e9f8;
  max-width: 620px;
  line-height: 1.65;
}

.hero-subtext {
  margin-top: 16px;
  font-size: 1rem;
  color: #b7c2d6;
  max-width: 660px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: 999px;
  color: #d8dff1;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 18px rgba(124,58,237,0.06);
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD TITAN */

.hero-card-main {
  width: 560px;
  min-height: 400px;
  border-radius: 30px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 15, 34, 0.88), rgba(8, 10, 24, 0.86));
  border: 1px solid rgba(124,58,237,0.30);
  box-shadow:
    0 40px 120px rgba(0,0,0,0.60),
    0 0 60px rgba(59,130,246,0.12),
    0 0 90px rgba(168,85,247,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid rgba(168,85,247,0.42);
  pointer-events: none;
  opacity: 0.72;
}

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(59,130,246,0.12), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(168,85,247,0.12), transparent 24%);
  pointer-events: none;
}

.hero-card-main > * {
  position: relative;
  z-index: 1;
}

.hero-card-main:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,0.40);
  box-shadow:
    0 55px 150px rgba(0,0,0,0.68),
    0 0 72px rgba(59,130,246,0.15),
    0 0 110px rgba(168,85,247,0.22);
}

.hero-card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 0 10px rgba(255,255,255,0.18);
}

.chat-bubble {
  margin-top: 4px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(59,130,246,0.30), rgba(168,85,247,0.34));
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  gap: 14px;
  box-shadow:
    0 0 24px rgba(124,58,237,0.16),
    0 0 30px rgba(59,130,246,0.10);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 0 12px rgba(59,130,246,0.16),
    0 0 18px rgba(168,85,247,0.12);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.chat-copy strong {
  display: block;
  font-size: 1.16rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.chat-copy p {
  color: #eef2ff;
  line-height: 1.58;
  font-size: 0.94rem;
}

.ai-analysis {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(20,25,60,0.60), rgba(12,15,35,0.72));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.02);
}

.analysis-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.86rem;
  color: #d7defa;
}

.analysis-row b {
  color: white;
  font-weight: 700;
}

.hot {
  color: #60a5fa;
}

.high {
  color: #a78bfa;
}

.hero-bottom-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.bottom-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eef2ff;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(124,58,237,0.05);
}

/* HEADINGS / CARDS */

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  font-weight: 700;
}

.section-heading p {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.feature-cards,
.channels-grid,
.steps-grid,
.pricing-grid,
.addons-grid {
  display: grid;
  gap: 24px;
}

.feature-cards {
  grid-template-columns: repeat(3, 1fr);
}

.channels-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(5, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.addons-grid {
  grid-template-columns: repeat(4, 1fr);
}

.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(10,12,28,0.84), rgba(10,12,28,0.70));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    transparent 35%,
    transparent 65%,
    rgba(168,85,247,0.10)
  );
  pointer-events: none;
  opacity: 0.5;
}

.glass-card:hover {
  box-shadow:
    0 24px 60px rgba(0,0,0,0.42),
    0 0 35px rgba(124,58,237,0.12);
}

.feature-card h3,
.step-card h3,
.addon-card h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-card p,
.step-card p {
  color: #d7e0f2;
  line-height: 1.8;
}

.feature-visual {
  height: 210px;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(160,180,255,0.22);
  background-size: 95%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(8,12,28,0.58);
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    0 0 25px rgba(124,58,237,0.15);
  transition: all 0.45s cubic-bezier(.2,.8,.2,1);
}

.feature-visual::after {
  display: none;
}

.feature-card {
  transition: all 0.45s cubic-bezier(.2,.8,.2,1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124,58,237,0.32);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    0 0 50px rgba(124,58,237,0.18);
}

.feature-card:hover .feature-visual {
  background-size: 105%;
}

.feature-visual-one {
  background-image: url("assets/ai-decision.jpg");
}

.feature-visual-two {
  background-image: url("assets/lead-system.jpg");
}

.feature-visual-three {
  background-image: url("assets/automation.jpg");
}

.glass-chip,
.addon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e5ebfb;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glass-chip small {
  color: #b28dff;
  margin-left: 6px;
}

.step-number {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #8fb0ff;
  margin-bottom: 14px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.5),
    0 0 60px rgba(99,102,241,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}

.plan-name {
  font-size: 1.12rem;
  color: #d7e2ff;
  margin-bottom: 18px;
  font-weight: 700;
}

.plan-price-block {
  margin-bottom: 16px;
}

.plan-price-block .label {
  display: block;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.plan-price-block strong {
  font-size: 1.9rem;
  line-height: 1;
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 10px 0 28px;
  color: #dce4f6;
  flex: 1;
}

.plan-features li::before {
  content: "✓";
  color: #8fb0ff;
  margin-right: 10px;
}

.featured {
  transform: scale(1.03);
  border-color: rgba(124,58,237,0.32);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.4),
    0 0 60px rgba(168,85,247,0.18);
}

.titan-card {
  box-shadow:
    0 28px 85px rgba(0,0,0,0.45),
    0 0 65px rgba(59,130,246,0.14),
    0 0 85px rgba(168,85,247,0.14);
  border: 1px solid rgba(255,255,255,0.14);
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(168,85,247,0.16);
  border: 1px solid rgba(168,85,247,0.28);
  color: #eadfff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.titan-badge {
  background: rgba(59,130,246,0.16);
  border-color: rgba(59,130,246,0.28);
  color: #d9e6ff;
}

.enterprise-card {
  display: grid;
  gap: 26px;
  padding: 40px;
}

.enterprise-copy p {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 780px;
}

.enterprise-pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.enterprise-price-box {
  min-width: 240px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.enterprise-price-box span {
  color: var(--text-soft);
  display: block;
  margin-bottom: 10px;
}

.enterprise-price-box strong {
  font-size: 1.8rem;
}

.enterprise-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.enterprise-features li {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #dbe4f6;
}

.language-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.language-badges span {
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #edf2ff;
  font-weight: 700;
}

.cta-box {
  text-align: center;
  padding: 50px 34px;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-box p {
  color: var(--text-soft);
  margin-top: 14px;
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-copy p {
  color: var(--text-soft);
  margin-top: 16px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: white;
  padding: 16px 18px;
  outline: none;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8e99ac;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 34px 0 56px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-soft);
}

.footer-logo .logo-img {
  width: 54px;
  height: 54px;
}

.footer-logo .logo-text {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-visual,
.glass-card,
.background-glow,
.btn-primary,
.btn-secondary,
.feature-visual {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease,
    background-size 0.45s ease;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.cta-box h2 {
  text-shadow:
    0 0 18px rgba(255,255,255,0.05),
    0 0 36px rgba(124,58,237,0.10);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content,
  .contact-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-cards,
  .pricing-grid,
  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .channels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .enterprise-features,
  .hero-badges,
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .feature-cards,
  .pricing-grid,
  .steps-grid,
  .addons-grid,
  .channels-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-card-main {
    width: 100%;
    max-width: 460px;
    min-height: auto;
  }

  .analysis-row {
    font-size: 0.82rem;
  }

  .hero-bottom-strip {
    justify-content: center;
  }
}