/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a26;
  --bg-elevated: #1e1e2c;
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b84;
  --accent: #7c5cfc;
  --accent-hover: #9b82ff;
  --accent-subtle: rgba(124, 92, 252, 0.12);
  --teal: #14b8a6;
  --teal-bright: #22d3ee;
  --success: #22d3a7;
  --warning: #f5a623;
  --danger: #f56565;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.04);
  --gradient-purple: linear-gradient(135deg, #7c5cfc, #b982ff);
  --gradient-teal: linear-gradient(135deg, #14b8a6, #22d3ee);
  --gradient-surface: linear-gradient(135deg, rgba(124, 92, 252, 0.05), rgba(20, 184, 166, 0.05));
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(124, 92, 252, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.gradient-text {
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

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

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-teal);
  color: #000;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

/* ── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.navbar-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.navbar-links a:hover { color: var(--text-primary); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-signin {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  padding: 8px 16px;
  transition: color var(--transition);
}

.navbar-signin:hover { color: var(--text-primary); }

.navbar-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  border: none;
  transition: all var(--transition);
}

.navbar-cta:hover {
  background: var(--accent-hover);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 8px;
  font-size: 24px;
  line-height: 1;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(124, 92, 252, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(20, 184, 166, 0.08), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: var(--accent-subtle);
  border: 1px solid rgba(124, 92, 252, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-hover);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Audio Demo ────────────────────────────────────────────────────────── */
.audio-demo {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.audio-demo-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  max-width: 480px;
  width: 100%;
}

.audio-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-teal);
  border: none;
  color: #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.audio-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.35);
}

.audio-info {
  flex: 1;
  min-width: 0;
}

.audio-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.audio-lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 5px 28px 5px 10px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.audio-lang-select:hover,
.audio-lang-select:focus {
  border-color: var(--teal);
}

.audio-lang-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.audio-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.audio-progress {
  width: 100%;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
  cursor: pointer;
}

.audio-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-teal);
  border-radius: 2px;
  transition: width 100ms linear;
}

.audio-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ── Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Feature Cards ─────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 300ms ease;
}

.feature-card:hover {
  border-color: rgba(124, 92, 252, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--gradient-surface);
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Use Cases ─────────────────────────────────────────────────────────── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.usecase-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
}

.usecase-card:hover {
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-2px);
}

.usecase-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.usecase-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.usecase-stats {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.usecase-stat-value {
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.usecase-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Setup Section ─────────────────────────────────────────────────────── */
.setup-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.setup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.setup-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.setup-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.setup-bullets li::before {
  content: "\2192";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setup-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--gradient-teal);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.step-content span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ── How It Works ──────────────────────────────────────────────────────── */
.how-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.how-step {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all 300ms ease;
}

.how-step:hover,
.how-step--active {
  border-color: var(--teal);
}

.how-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-teal);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step-icon {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--teal);
}

.how-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.how-detail {
  margin-top: 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.how-detail h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-detail > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.how-detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.how-detail-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.how-detail-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.how-detail-card-header span {
  font-size: 18px;
  color: var(--teal);
}

.how-detail-card h4 {
  font-size: 14px;
  font-weight: 700;
}

.how-detail-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Comms Suite ────────────────────────────────────────────────────────── */
.comms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.comms-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.comms-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  transition: all 300ms ease;
}

.comms-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
}

.comms-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.comms-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.comms-card p {
  font-size: 12px;
  color: var(--text-muted);
}

.comms-bullets {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comms-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.comms-bullets li::before {
  content: "\2192";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Comparison ────────────────────────────────────────────────────────── */
.compare-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.compare-col {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.compare-col--highlight {
  border-color: var(--teal);
  position: relative;
}

.compare-col--highlight::before {
  content: 'MAGICKVOICE';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000;
  background: var(--gradient-teal);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.compare-col--highlight {
  padding-top: 52px;
}

.compare-col h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.check { color: var(--success); flex-shrink: 0; }
.cross { color: var(--danger); flex-shrink: 0; }
.warn { color: var(--warning); flex-shrink: 0; }

/* ── Industries ────────────────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.industry-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 16px;
  text-align: center;
  transition: all 300ms ease;
}

.industry-card:hover {
  border-color: rgba(124, 92, 252, 0.25);
  transform: translateY(-2px);
}

.industry-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.industry-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.industry-card p {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(124, 92, 252, 0.1), transparent);
}

.final-cta .section-title {
  max-width: 600px;
  margin: 0 auto 32px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Animations ────────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-badge { animation: float 4s ease-in-out infinite; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .navbar-links { display: none; }
  .navbar-toggle { display: block; }

  .hero { padding: 120px 0 64px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }

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

  .how-detail-cards {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .usecases-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .setup-grid,
  .comms-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }

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

  .comms-cards {
    grid-template-columns: 1fr;
  }

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