:root {
  /* Modern indigo + pink palette (2026 trend) */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #a5b4fc;
  --primary-bg: #eef2ff;
  --secondary: #ec4899;
  --secondary-light: #f9a8d4;
  --accent: #f59e0b;
  --accent-warm: #fb923c;

  /* Neutrals — slate scale */
  --text: #0f172a;
  --text-strong: #020617;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Backgrounds */
  --bg: #fafbff;
  --bg-alt: #f8fafc;
  --card: #ffffff;

  /* Semantic */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --warn: #f59e0b;
  --warn-bg: #fffbeb;
  --danger: #ef4444;

  /* Modern soft shadows with color tint */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow: 0 4px 24px -6px rgba(99, 102, 241, 0.12), 0 2px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 50px -12px rgba(99, 102, 241, 0.22), 0 8px 20px -8px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 8px 32px -8px rgba(99, 102, 241, 0.35);

  /* Larger, more modern radii */
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 10px;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-hero: linear-gradient(135deg, #eef2ff 0%, #fce7f3 60%, #fef3c7 100%);
  --gradient-mesh: radial-gradient(at 20% 10%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(236, 72, 153, 0.12) 0px, transparent 50%),
                   radial-gradient(at 50% 100%, rgba(245, 158, 11, 0.08) 0px, transparent 50%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ===== Header ===== */
.site-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text-strong); font-weight: 900;
  font-size: 22px;
}
.brand-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gradient-primary);
  color: white; display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
}
.brand:hover .brand-icon { transform: rotate(-6deg) scale(1.05); }
.brand-name { font-family: 'Amiri', serif; font-weight: 700; letter-spacing: -0.02em; }

.site-nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  color: var(--text-muted); text-decoration: none; font-weight: 500;
  font-size: 15px; transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--primary-dark); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 0; left: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover::after { transform: scaleX(1); }
.free-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white; font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 4px 12px -2px rgba(16, 185, 129, 0.4);
  letter-spacing: 0.02em;
}

/* ===== Hero ===== */
.hero {
  background: var(--gradient-hero);
  background-image: var(--gradient-mesh), var(--gradient-hero);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0) 0%, var(--bg) 90%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  color: var(--text-strong);
  max-width: 820px; margin: 0 auto 20px;
  letter-spacing: -0.03em;
}
.hero-title .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.hero-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 640px; margin: 0 auto 40px;
  line-height: 1.7;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.interpret-card { max-width: 720px; margin: 0 auto; }

/* ===== Interpreter picker ===== */
.interpreter-picker { margin-bottom: 20px; }
.picker-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.interpreter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.interpreter-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  cursor: pointer;
  text-align: start;
  font-family: inherit;
  color: var(--text);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.interpreter-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.interpreter-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, #eef2ff 0%, #fce7f3 100%);
  box-shadow: 0 8px 24px -4px rgba(99, 102, 241, 0.25);
}
.interpreter-card.selected::before {
  content: '✓';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -2px rgba(99, 102, 241, 0.4);
}
.int-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.int-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.int-free {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  background: var(--success-bg);
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

/* ===== Form ===== */
.dream-input {
  width: 100%;
  min-height: 150px;
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
  resize: vertical;
  background: var(--bg-alt);
  color: var(--text);
  transition: all 0.2s;
}
.dream-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}
.dream-input::placeholder { color: var(--text-subtle); }

.details-toggle {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfaff;
}
.details-toggle summary {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  user-select: none;
}
.details-toggle summary::-webkit-details-marker { display: none; }
.chevron { transition: transform 0.25s; color: var(--text-muted); }
.details-toggle[open] .chevron { transform: rotate(180deg); }

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 16px 16px;
}
.field label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: white;
  color: var(--text);
  cursor: pointer;
}
.field select:focus { outline: 2px solid var(--primary-light); border-color: var(--primary); }
.radio-row { display: flex; gap: 16px; padding-top: 4px; }
.radio { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 15px; }
.radio input { accent-color: var(--primary); }

.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 20px; padding: 16px 24px;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: white; border: none; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 17px; font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 12px 40px -8px rgba(99, 102, 241, 0.5);
}
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary, .btn-outline {
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary {
  background: var(--primary);
  color: white; border: 1px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-bg); }

.credit-box {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #eef2ff 0%, #fce7f3 100%);
  border: 1px solid var(--primary-light);
}
.credit-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.credit-label { font-weight: 700; color: var(--text-strong); }
.credit-value { font-size: 15px; color: var(--text-muted); }
.credit-value strong {
  font-size: 26px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.credit-hint { margin-top: 6px; font-size: 13px; color: var(--text-muted); }
.credit-box.empty { background: var(--bg-alt); border-color: var(--border); }
.credit-box.empty .credit-value strong {
  background: none;
  -webkit-text-fill-color: var(--text-subtle);
  color: var(--text-subtle);
}

.error-card.limit { border-color: var(--primary-light); background: var(--primary-bg); }
.error-card.limit h3 { color: var(--primary-dark); }

.disclaimer-inline {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Loading ===== */
.result-section { padding: 40px 0; }
.loading-card { text-align: center; max-width: 480px; margin: 0 auto; }
.loading-card h3 { font-size: 20px; margin: 20px 0 8px; color: var(--text); }
.loading-card p { color: var(--text-muted); }
.spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--primary-bg);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Result ===== */
.result-card { max-width: 820px; margin: 0 auto; }
.result-header { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.result-dream {
  font-family: 'Amiri', serif;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
}
.result-method { color: var(--text-muted); font-size: 14px; }
.result-method strong { color: var(--primary); }
.result-body { padding-top: 24px; display: flex; flex-direction: column; gap: 28px; }
.result-greeting {
  background: linear-gradient(135deg, var(--primary-bg), #fdf4ff);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border-right: 4px solid var(--primary);
  font-size: 16px;
  color: var(--text);
}
.result-block h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.section-icon { color: var(--primary-light); font-size: 20px; }

.symbols-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.symbols-list li {
  padding: 14px 16px;
  background: #fbfaff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.symbols-list .symbol-name {
  display: block; font-weight: 700; color: var(--primary-dark);
  margin-bottom: 4px; font-size: 16px;
}
.symbols-list .symbol-meaning { color: var(--text); font-size: 15px; }

.result-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.result-block.good { background: #ecfdf5; padding: 18px; border-radius: var(--radius-sm); border-right: 4px solid var(--success); }
.result-block.warn { background: #fffbeb; padding: 18px; border-radius: var(--radius-sm); border-right: 4px solid var(--warn); }
.result-block.good h3 { color: #047857; }
.result-block.warn h3 { color: #b45309; }
.result-block.good ul, .result-block.warn ul { padding-right: 20px; }
.result-block.good li, .result-block.warn li { margin-bottom: 6px; }

.indicators { background: #fbfaff; padding: 20px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.indicator-row {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.indicator-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.bar { background: #ede9fe; border-radius: 999px; height: 10px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); width: 0; }
.bar-fill.positive { background: linear-gradient(90deg, #10b981, #34d399); }
.bar-fill.hope { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.bar-fill.worry { background: linear-gradient(90deg, var(--warn), #fbbf24); }
.indicator-value { font-weight: 700; font-size: 14px; color: var(--text); text-align: end; }

.advice-block {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 20px; border-radius: var(--radius-sm);
  border-right: 4px solid var(--accent);
}
.advice-block h3 { color: #92400e; }

.dua-block { text-align: center; padding: 24px; background: var(--primary-bg); border-radius: var(--radius-sm); }
.dua-text {
  font-family: 'Amiri', serif;
  font-size: 20px;
  color: var(--primary-dark);
  line-height: 2;
  font-weight: 700;
}

.result-actions {
  display: flex; gap: 12px; justify-content: center;
  padding-top: 24px; margin-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ===== Error ===== */
.error-card { text-align: center; max-width: 480px; margin: 0 auto; border: 1.5px solid #fca5a5; background: #fef2f2; }
.error-card h3 { color: #b91c1c; margin-bottom: 8px; }
.error-card p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== How ===== */
.how, .features, .faq { padding: 80px 0; }
.section-title {
  text-align: center; font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  color: var(--text-strong); margin-bottom: 48px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card {
  background: var(--card); padding: 32px 26px;
  border-radius: var(--radius); text-align: center;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.how-num {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--gradient-primary);
  color: white; font-family: 'Amiri', serif; font-weight: 700; font-size: 24px;
  display: grid; place-items: center; margin: 0 auto 20px;
  box-shadow: var(--shadow-glow);
  transform: rotate(-6deg);
  transition: transform 0.3s;
}
.how-card:hover .how-num { transform: rotate(0deg) scale(1.05); }
.how-card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
.how-card p { color: var(--text-muted); font-size: 15px; }

/* ===== Features ===== */
.features {
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-bg) 50%, var(--bg) 100%);
  position: relative;
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: var(--card); padding: 28px 22px;
  border-radius: var(--radius); text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.feature-icon {
  font-size: 40px; margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.3s;
}
.feature:hover .feature-icon { transform: scale(1.15) rotate(-4deg); }
.feature h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--card);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 16px;
  font-family: 'Amiri', serif;
  font-size: 80px;
  color: var(--primary-bg);
  line-height: 1;
  z-index: 0;
  transition: color 0.3s;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.testimonial:hover::before { color: #e0e7ff; }
.testimonial > * { position: relative; z-index: 1; }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
}
.testimonial-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  position: relative;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-strong);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: white;
  background: var(--gradient-primary);
  width: 28px; height: 28px;
  border-radius: 10px;
  font-size: 20px; font-weight: 700;
  display: grid; place-items: center;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--text-muted); line-height: 1.75; }

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #cbd5e1;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}
.footer-brand {
  font-family: 'Amiri', serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-copy { font-size: 14px; opacity: 0.75; margin-bottom: 20px; }
.footer-disclaimer { font-size: 12px; opacity: 0.55; max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .site-nav { gap: 12px; }
  .nav-link { font-size: 14px; }
  .free-badge { padding: 5px 12px; font-size: 12px; white-space: nowrap; }
  .nav-link { display: none; }
  .header-inner { padding: 12px 16px; }
  .details-grid { grid-template-columns: 1fr; }
  .result-columns { grid-template-columns: 1fr; }
  .how-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .indicator-row { grid-template-columns: 64px 1fr 40px; gap: 8px; }
  .card { padding: 20px; }
}
@media (max-width: 480px) {
  .how-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .interpreter-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 30px; }
}
