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

:root {
  --bg: #f5f6fa;
  --surface: #fff;
  --text: #1a1a1a;
  --text2: #555770;
  --primary: #4f6ef7;
  --primary-light: #3b5ce4;
  --primary-bg: #eef1fe;
  --primary-text: #2a3fa8;
  --gold: #c9952d;
  --gold-bg: #fdf6e8;
  --green: #3B6D11;
  --green-bg: #EAF3DE;
  --border: #dde0ec;
  --border2: #c5cdf9;
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 2px 4px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.08);
  --radius: 10px;
  --radius-lg: 16px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 28px; }
a { color: inherit; text-decoration: none; }

/* ─── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.btn:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border2);
}
.btn-outline:hover { border-color: var(--primary); }
.btn-lg { padding: 14px 36px; font-size: 15px; }

/* ─── Nav ──────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 250, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo-img {
  width: auto;
  height: 38px;
  border-radius: 0;
  position: relative;
  top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text2);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-weight: 700;
  color: #fff !important;
  background: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 6px 14px;
  border-radius: 8px;
}

/* ─── Hero ─────────────────────────────────────────── */
.hero { padding: 48px 0 40px; }
.hero-top {
  text-align: center;
  margin-bottom: 24px;
}
.hero-top h1 {
  margin-bottom: 8px;
}
.hero-sub {
  color: var(--text2);
  font-size: 15px;
  margin-bottom: 20px;
}
.hero-top-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-demo {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.hero-demo .gmail-mock {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero-demo .gmail-mock .gm-body {
  flex: 1;
}
.hero-demo .hero-right {
  width: 320px;
  flex-shrink: 0;
}
.hero-demo .hero-card {
  height: 420px;
  overflow: hidden;
}
.hero-demo .gmail-mock {
  height: 420px;
}
.overline {
  font-size: 11px;
  font-weight: 700;
  color: #3451c7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 0;
}
.hint {
  font-size: 12px;
  color: var(--text2);
  border: 0.5px solid var(--border);
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--surface);
}
.hero-logos span:first-child {
  font-size: 12px;
  color: var(--text2);
  display: block;
  margin-bottom: 8px;
}
.logo-row { display: flex; gap: 6px; flex-wrap: wrap; }
.platform-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text2);
  background: var(--surface);
}
.platform-pill.muted { border: none; background: none; }

/* Hero Card */
.hero-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 0.5px solid #eaecf4;
  background: #f8f9fd;
  font-size: 13px;
  font-weight: 500;
}
.hc-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.hc-badge {
  font-size: 10px;
  padding: 1px 6px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 700;
}
.hc-template {
  display: flex;
  gap: 0;
  border-bottom: 0.5px solid #eaecf4;
  font-size: 11px;
  color: var(--text2);
}
.hc-template span {
  padding: 10px 14px;
  cursor: pointer;
}
.hc-template-active {
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1.5px solid var(--primary);
  margin-bottom: -0.5px;
}
.hc-source {
  padding: 10px 14px;
  border-bottom: 0.5px solid #eaecf4;
}
.hc-source-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.hc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.hc-tags span {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  background: #f5f6fa;
  color: var(--text2);
  border: 0.5px solid var(--border);
  border-radius: 99px;
}
.hc-tags span:first-child {
  color: var(--green);
  background: var(--green-bg);
  border-color: #C0DD97;
}
.hc-addr { font-size: 11px; color: #7a7d8a; }
.hc-preview {
  padding: 10px 14px;
  border-top: 0.5px solid #eaecf4;
  flex: 1;
  overflow: hidden;
}
.hc-preview-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7d8a;
  font-weight: 600;
  margin-bottom: 6px;
}
.hc-preview p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 4px;
}
.hc-body { color: var(--text2); }
.hc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-top: 0.5px solid #eaecf4;
  background: #f8f9fd;
}
.hc-score {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--text);
}
.hc-score span {
  font-size: 18px;
  font-weight: normal;
  color: var(--text);
}
.hc-score::after {
  content: '';
  font-size: 11px;
  color: #7a7d8a;
}
.hc-insert {
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* Gmail mock compose */
.gmail-mock {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 13px;
}
.gm-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #f8f9fd;
  border-bottom: 0.5px solid #eaecf4;
}
.gm-dots {
  display: flex;
  gap: 5px;
}
.gm-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.gm-dots span:first-child { background: #ff5f57; }
.gm-dots span:nth-child(2) { background: #febc2e; }
.gm-dots span:last-child { background: #28c840; }
.gm-title {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.gm-minimize {
  color: var(--text2);
  font-size: 14px;
  cursor: default;
}
.gm-field {
  padding: 8px 14px;
  border-bottom: 0.5px solid #eaecf4;
  font-size: 12px;
  color: var(--text2);
}
.gm-label {
  color: var(--text2);
  margin-right: 8px;
}
.gm-value {
  color: var(--text);
}
.gm-body {
  padding: 12px 14px;
  min-height: 100px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text);
  position: relative;
}
.gm-placeholder {
  color: #8a8880;
  font-style: italic;
}
.gm-body.gm-filled {
  animation: gmailFlash 0.6s ease;
}
@keyframes gmailFlash {
  0% { background: #e8f5ee; }
  100% { background: transparent; }
}
.gm-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-top: 0.5px solid #eaecf4;
  background: #f8f9fd;
}
.gm-send {
  padding: 6px 20px;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  font-family: inherit;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.gm-send.gm-send-ready {
  opacity: 1;
  cursor: pointer;
}
.gm-toolbar-icons {
  color: var(--text2);
  font-size: 14px;
  letter-spacing: 6px;
}

/* Hero card URL row */
.hc-url-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
}
.hc-url-row-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f6fa;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  flex: 1;
}
.hc-url-icon { font-size: 14px; flex-shrink: 0; }
.hc-url-input {
  flex: 1;
  font-size: 11px;
  color: var(--text2);
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
  min-height: 18px;
  white-space: nowrap;
  overflow: hidden;
}
.hc-url-btn {
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  min-width: 44px;
  text-align: center;
}
.hc-url-btn-active { background: var(--primary-light); transform: scale(1.05); }
.hc-url-btn-loading {
  background: var(--text2);
  animation: pulse 0.5s ease infinite alternate;
}
.hc-url-btn-done {
  background: #C0DD97;
  color: var(--green);
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border-radius: 4px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes pulse { from { opacity: 0.6; } to { opacity: 1; } }

/* Hero card animation states */
.hc-insert-pulse {
  animation: btnPulse 0.6s ease infinite alternate;
}
.hc-insert-done {
  background: var(--green) !important;
  animation: none;
}
@keyframes btnPulse {
  from { transform: scale(1); box-shadow: 0 0 0 0 rgba(79,110,247,0.4); }
  to { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(79,110,247,0); }
}

/* ─── Steps (How it works) ────────────────────────── */
.steps-section {
  padding: 72px 0 64px;
}
.steps-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a7d8a;
  margin-bottom: 1.5rem;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.step-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}
.step-card h3 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.step-card p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

/* ─── Stats Strip ─────────────────────────────────── */
.stats-strip {
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
}
.stat-item {
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 2px;
}
.stat-item span {
  font-size: 11px;
  color: var(--text2);
}
.stat-divider {
  width: 0.5px;
  background: var(--border);
  align-self: stretch;
}
.btn-stats {
  margin-left: auto;
}
.btn-stats:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* ─── Strip ────────────────────────────────────────── */
.strip {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--surface);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
}
.strip-item {
  font-size: 14px;
  color: var(--text2);
}
.strip-item strong {
  font-size: 20px;
  color: var(--text);
  margin-right: 4px;
  font-weight: 700;
}
.strip-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ─── Features ─────────────────────────────────────── */
.features-section { padding: 64px 0; }
.features-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: normal;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.f-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.f-card:hover { box-shadow: var(--shadow); }
.f-big {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.f-big:hover { box-shadow: var(--shadow-lg); }
.f-big .f-label { color: rgba(255,255,255,0.8); }
.f-big.f-card p { color: rgba(255,255,255,0.92); }

.f-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a7d8a;
  margin-bottom: 8px;
  display: block;
}
.f-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.f-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
.f-demo-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.f-site {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  color: rgba(255,255,255,0.9);
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
}

/* Big feature visual */
.f-card-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.f-url-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 12px;
  gap: 8px;
}
.f-url-icon { font-size: 14px; }
.f-url-text {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.f-url-btn {
  padding: 4px 12px;
  background: #fff;
  color: var(--text);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}
.f-data-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px;
}
.f-data-check {
  font-size: 11px;
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 8px;
}
.f-data-row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
}
.f-data-addr {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}

/* Intent buttons */
.f-intents {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}
.f-intent {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
}
.f-intent.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Score demo */
.f-score-demo {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.f-score-bar {
  flex: 1;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.f-score-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
}
.f-score-num {
  font-size: 13px;
  font-weight: 700;
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
  color: var(--green);
  white-space: nowrap;
}

/* ─── Pricing ──────────────────────────────────────── */
.pricing-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
}
.pricing-section h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: normal;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pricing-sub {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 32px;
}
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  background: var(--bg);
}
.plan-pop {
  border-color: var(--primary);
  border-width: 2px;
  background: var(--surface);
}
.plan-tag {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 5px;
}
.plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 2px;
}
.plan-price {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: normal;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  transition: all 0.2s;
}
.plan-price span { font-size: 15px; font-weight: 500; color: var(--text2); }
.plan-desc {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 20px;
}
.plan ul { list-style: none; margin-bottom: 8px; }
.plan li {
  padding: 5px 0;
  font-size: 13px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan li::before {
  content: '✓';
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.plan-pop li::before { color: var(--primary); }
.li-strong { font-weight: 700; color: var(--text) !important; }
.li-sub {
  font-size: 12px !important;
  padding-left: 24px !important;
  color: var(--text2);
}
.li-sub::before {
  content: '·' !important;
  color: var(--text2) !important;
  font-weight: 400 !important;
}
.plan-disabled li {
  text-decoration: line-through;
  opacity: 0.6;
}
.plan-disabled li::before {
  content: '✗';
  color: var(--text2);
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.plan-ltd {
  background: var(--surface);
  border: 2px solid #10b981;
}
.plan-ltd li::before { color: #10b981; }
.plan-tag-gold {
  background: #059669 !important;
}
.btn-ltd-plan {
  background: #059669 !important;
  border-color: #059669 !important;
}
.btn-ltd-plan:hover {
  background: #047857 !important;
  border-color: #047857 !important;
}
.plan-compare {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.plan-compare-old {
  color: var(--text2);
  text-decoration: line-through;
}
.plan-compare-arrow { color: var(--text2); }
.plan-compare-new {
  font-weight: 700;
  color: var(--gold);
}
.plan .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ─── Final CTA ────────────────────────────────────── */
.final-cta {
  padding: 64px 0;
  text-align: center;
  background: var(--bg);
  border-top: 0.5px solid var(--border);
}
.final-cta h2 {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: normal;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hint-plain {
  font-size: 12px;
  color: #7a7d8a;
  margin-top: 12px;
}

/* ─── Footer ───────────────────────────────────────── */
footer {
  padding: 28px 0;
  border-top: 0.5px solid var(--border);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; }
.footer-links { display: flex; gap: 20px; font-size: 13px; color: var(--text2); }
.footer-links a:hover { color: var(--text); }

/* ─── Responsive ───────────────────────────────────── */

/* Tablet */
@media (max-width: 840px) {
  .wrap { padding: 0 20px; }

  /* Nav: hamburger yok, linkler küçülsün */
  .nav-links { gap: 16px; font-size: 13px; }
  .nav-cta { padding: 5px 10px; font-size: 12px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 14px; }
  .hero-top-cta { flex-direction: column; gap: 10px; }

  /* Demo: stack vertically */
  .hero-demo { flex-direction: column; }
  .hero-demo .hero-right { width: 100%; }
  .hero-demo .gmail-mock, .hero-demo .hero-card { height: auto; min-height: 280px; }

  .steps-row { grid-template-columns: 1fr; max-width: 100%; }
  .stats-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .stat-divider { width: 40px; height: 0.5px; align-self: auto; }
  .btn-stats { margin-left: 0; }

  .f-grid { grid-template-columns: 1fr; }
  .f-big { grid-template-columns: 1fr; }
  .f-card { padding: 22px; }

  .pricing-row { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-section { padding: 56px 0; }

  .strip-inner { flex-direction: column; gap: 12px; }
  .strip-divider { width: 40px; height: 1px; }
}

/* Mobile */
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }

  /* Nav: hide text links, keep brand + CTA */
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 0; }
  .nav-brand { font-size: 15px; gap: 8px; }
  .nav-logo-img { width: 28px; height: 28px; }

  /* Hero */
  .hero { padding: 32px 0 24px; }
  .hero h1 { font-size: 26px; margin-bottom: 12px; }
  .hero-sub { font-size: 13px; margin-bottom: 16px; }
  .hero-top { margin-bottom: 20px; }
  .hero-top-cta { flex-direction: column; gap: 8px; }
  .btn { padding: 12px 20px; font-size: 13px; width: 100%; justify-content: center; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .hint { font-size: 11px; }
  .overline { font-size: 10px; margin-bottom: 0.75rem; }

  /* Demo cards */
  .hero-demo { gap: 16px; }
  .hero-demo .gmail-mock, .hero-demo .hero-card { min-height: 240px; }
  .hc-header { padding: 8px 12px; }
  .hc-template span { padding: 8px 10px; font-size: 10px; }
  .hc-url-row { padding: 8px 12px; }
  .hc-url-input { font-size: 10px; }
  .hc-source { padding: 8px 12px; }
  .hc-preview { padding: 8px 12px; }
  .hc-preview p { font-size: 11px; }
  .hc-footer { padding: 8px 12px; }
  .gm-field { padding: 6px 12px; font-size: 11px; }
  .gm-body { padding: 10px 12px; font-size: 11px; min-height: 80px; }
  .gm-titlebar { padding: 6px 12px; }
  .gm-toolbar { padding: 6px 12px; }

  /* Steps */
  .steps-section { padding: 48px 0 40px; }
  .step-card { padding: 1rem; }
  .step-num { font-size: 24px; }
  .step-card h3 { font-size: 14px; }
  .step-card p { font-size: 12px; }

  /* Stats */
  .stats-inner { padding: 1.25rem 1rem; border-radius: 10px; }
  .stat-item strong { font-size: 1.5rem; }
  .stat-item span { font-size: 11px; }

  /* Features */
  .features-section { padding: 48px 0; }
  .features-section h2 { font-size: 22px; margin-bottom: 24px; }
  .f-card { padding: 20px; }
  .f-card h3 { font-size: 15px; }
  .f-card p { font-size: 12px; }
  .f-card-visual { display: none; }
  .f-big { padding: 20px; }
  .f-demo-tags { flex-wrap: wrap; gap: 6px; }
  .f-site { font-size: 11px; padding: 3px 8px; }
  .f-intents { flex-wrap: wrap; }
  .f-data-row { flex-wrap: wrap; gap: 6px; font-size: 12px; }

  /* Pricing */
  .pricing-section { padding: 48px 0; }
  .pricing-section h2 { font-size: 22px; }
  .pricing-sub { font-size: 13px; margin-bottom: 24px; }
  .plan { padding: 24px 20px; }
  .plan-price { font-size: 32px; }
  .plan li { font-size: 12px; padding: 4px 0; }
  .li-sub { font-size: 11px !important; }
  .plan .btn { margin-top: 16px; }

  /* Final CTA */
  .final-cta { padding: 48px 0; }
  .final-cta h2 { font-size: 22px; margin-bottom: 16px; }

  /* Footer */
  .footer-row { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { gap: 16px; font-size: 12px; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero h1 { font-size: 22px; }
  .hero-sub { font-size: 12px; }
  .plan-price { font-size: 28px; }
  .stats-inner { padding: 1rem; }
  .stat-item strong { font-size: 1.25rem; }
}

/* ─── FAQ Section ───────────────────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--surface);
}
.faq-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 48px;
  color: var(--text);
}
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(79, 110, 247, 0.08);
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  user-select: none;
  transition: background 0.15s;
}
.faq-item summary:hover {
  background: rgba(79, 110, 247, 0.04);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 24px 20px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-section { padding: 56px 0; }
  .faq-section h2 { font-size: 28px; margin-bottom: 32px; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item p { padding: 0 18px 16px; font-size: 14px; }
}
