/* DMA AI Services — Premium Design */

:root {
  --dark: #0d2137;
  --dark-800: #112a45;
  --accent: #0066cc;
  --accent-light: #e8f4fd;
  --accent-hover: #0055aa;
  --accent-glow: rgba(0, 102, 204, 0.15);
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f0f2f6;
  --gray-200: #e2e5ea;
  --gray-300: #c8cdd5;
  --gray-400: #9aa1ad;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --green: #10b981;
  --green-light: #ecfdf5;
  --orange: #f59e0b;
  --orange-light: #fff7ed;
  --red: #ef4444;
  --red-light: #fef2f2;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-xl: 0 8px 40px rgba(0,0,0,0.12);
  --max-width: 1180px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

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

/* Typography */

h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label.light {
  color: rgba(255,255,255,0.5);
}

.section-title {
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.75;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.65);
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-white:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Navigation */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 33, 55, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.nav-logo:hover { color: var(--white); }

.nav-logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.nav-logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xs);
  padding: 3px;
}

.lang-toggle button {
  padding: 5px 12px;
  border: none;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  font-family: inherit;
}

.lang-toggle button.active {
  background: var(--accent);
  color: var(--white);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

/* Hero */

.hero {
  padding: 160px 0 120px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-800) 50%, #0e2d4d 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,102,204,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,102,204,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .hero-gradient {
  background: linear-gradient(135deg, #5bb5ff, #a0d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .hero-white {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Sections */

section {
  padding: 110px 0;
}

.section-light {
  background: var(--white);
}

.section-alt {
  background: var(--gray-50);
}

.section-dark {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-800) 100%);
}

/* Feature Cards (compact) */

.feature-cards-compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-card-sm {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.feature-card-sm:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow);
}

.feature-card-sm h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.feature-card-sm p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.feature-icon-sm {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-sm.blue { background: var(--accent-light); color: var(--accent); }
.feature-icon-sm.green { background: var(--green-light); color: var(--green); }
.feature-icon-sm.orange { background: var(--orange-light); color: var(--orange); }

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Product Sections */

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.product-section.reverse {
  direction: rtl;
}

.product-section.reverse > * {
  direction: ltr;
}

.product-info {
  padding-top: 16px;
}

/* Stats Bar */

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--green-light);
  color: #065f46;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
}

.stat-pill svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Chat Demo */

.chat-demo {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  max-width: 380px;
}

.chat-demo-header {
  background: var(--accent);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-demo-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-demo-status {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.8;
}

.chat-demo-messages {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.chat-msg.bot {
  background: var(--gray-100);
  color: var(--gray-700);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--accent);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-msg.lead-capture {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  padding: 8px 16px;
  border-radius: 20px;
  max-width: 100%;
}

.lead-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #065f46;
}

.lead-icon {
  display: flex;
  color: var(--green);
}

/* Before/After */

.before-after-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.ba-card {
  flex: 1;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  line-height: 1.5;
}

.ba-before {
  background: var(--red-light);
  border: 1px solid #fecaca;
}

.ba-after {
  background: var(--green-light);
  border: 1px solid #a7f3d0;
}

.ba-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.ba-before .ba-label { color: var(--red); }
.ba-after .ba-label { color: var(--green); }
.ba-before p { color: #991b1b; }
.ba-after p { color: #065f46; }

.ba-arrow {
  flex-shrink: 0;
  color: var(--gray-400);
}

/* Blog Preview */

.blog-preview {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.blog-preview-header {
  background: var(--gray-100);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.blog-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.blog-preview-url {
  margin-left: 6px;
}

.blog-preview-content {
  padding: 24px;
}

.blog-preview-badge {
  display: inline-block;
  background: var(--green-light);
  color: #065f46;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.blog-preview-content h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.blog-preview-content p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.blog-preview-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.78rem;
  color: var(--gray-400);
}

.blog-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.blog-tag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Traffic Graph */

.traffic-graph {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}

.traffic-graph-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.traffic-bars {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 140px;
}

.traffic-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.traffic-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--accent-light) 0%, #d4e8f9 100%);
  border-radius: 4px 4px 0 0;
  transition: height 0.6s ease;
  min-height: 8px;
}

.traffic-bar.highlight {
  background: linear-gradient(180deg, var(--accent) 0%, #3d9aed 100%);
}

.traffic-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 8px;
  font-weight: 500;
}

.traffic-graph-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.traffic-increase {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}

.traffic-period {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* SEO Report Card */

.seo-report-card {
  display: flex;
  align-items: stretch;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.seo-report-before,
.seo-report-after {
  flex: 1;
}

.seo-report-heading {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 16px;
  text-align: center;
}

.seo-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.seo-score-mini {
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
}

.seo-score-mini.pass {
  background: var(--green-light);
}

.seo-score-mini.warn {
  background: var(--orange-light);
}

.seo-score-mini.fail {
  background: var(--red-light);
}

.seo-score-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.seo-score-mini.pass .seo-score-val { color: #065f46; }
.seo-score-mini.warn .seo-score-val { color: #92400e; }
.seo-score-mini.fail .seo-score-val { color: #991b1b; }

.seo-score-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 4px;
}

.seo-score-mini.pass .seo-score-name { color: #047857; }
.seo-score-mini.warn .seo-score-name { color: #a16207; }
.seo-score-mini.fail .seo-score-name { color: #b91c1c; }

.seo-report-arrow {
  display: flex;
  align-items: center;
  color: var(--gray-300);
  flex-shrink: 0;
}

/* SEO Scan */

.seo-scan-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  max-width: 540px;
}

.seo-scan-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--gray-700);
}

.seo-scan-form input:focus {
  border-color: var(--accent);
}

.seo-results {
  margin-top: 24px;
  display: none;
}

.seo-results.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.seo-score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 24px;
  border: 6px solid;
}

.seo-score-circle .score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.seo-score-circle .label {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.seo-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.seo-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  background: var(--gray-50);
  font-size: 0.85rem;
  color: var(--gray-600);
}

.seo-check-item .status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.seo-check-item .status.pass { background: var(--green); }
.seo-check-item .status.warn { background: var(--orange); }
.seo-check-item .status.fail { background: var(--red); }

.seo-issues {
  margin-top: 20px;
  padding: 18px;
  background: #fffbeb;
  border-radius: var(--radius-sm);
  border: 1px solid #fde68a;
}

.seo-issues h4 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.seo-issues ul {
  list-style: none;
}

.seo-issues li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.seo-issues li::before {
  content: '\2192 ';
  color: var(--orange);
}

.seo-cta {
  margin-top: 20px;
  padding: 18px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.seo-loading {
  text-align: center;
  padding: 40px;
  color: var(--gray-400);
}

.spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  position: relative;
  transition: all var(--transition);
  text-align: left;
}

.pricing-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--accent-glow);
  transform: scale(1.02);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-icon {
  background: var(--accent);
  color: var(--white);
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-price .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price .period {
  font-size: 0.88rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-price .vat {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border: none; }

.pricing-features li.disabled {
  color: var(--gray-400);
}

.pricing-features .check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features .dash {
  color: var(--gray-300);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.pricing-plus-note {
  margin-top: 36px;
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* Steps */

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
  flex-shrink: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 8px;
  color: var(--dark);
}

.step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Stats (About section) */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

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

.stat-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: #5bb5ff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Contact */

.contact-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-800) 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.contact-detail svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.28);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 36px;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Footer */

.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.45);
  padding: 44px 0;
  font-size: 0.85rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
  border-radius: 3px;
}

.footer-kvk {
  font-size: 0.78rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  font-weight: 500;
}

.footer-links a:hover { color: var(--white); }

/* Responsive */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .pricing-card.featured:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 900px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-section.reverse { direction: ltr; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    margin: 0;
  }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .seo-checks { grid-template-columns: 1fr; }

  .seo-report-card {
    flex-direction: column;
  }

  .seo-report-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero { padding: 120px 0 80px; }
  .hero-subtitle { font-size: 1rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }
  .nav-mobile-toggle { display: block; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px; }

  .seo-scan-form { flex-direction: column; }
  .seo-scan-form .btn { width: 100%; justify-content: center; }

  .before-after-row { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; }

  .chat-demo { max-width: 100%; }

  .stats-bar { flex-direction: column; }
}

/* Utility */

.hidden { display: none !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
