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

:root {
  --primary: #6C63FF;
  --primary-dark: #5A52D5;
  --primary-light: #8B83FF;
  --secondary: #FF6B6B;
  --accent: #FFD93D;
  --success: #6BCB77;
  --bg: #F8F7FF;
  --bg-alt: #FFFFFF;
  --text: #2D2D3F;
  --text-light: #6E6E82;
  --text-muted: #9E9EB0;
  --border: #E8E8F0;
  --shadow-sm: 0 2px 8px rgba(108, 99, 255, 0.06);
  --shadow: 0 4px 20px rgba(108, 99, 255, 0.1);
  --shadow-lg: 0 12px 40px rgba(108, 99, 255, 0.15);
  --shadow-btn: 0 4px 16px rgba(108, 99, 255, 0.3);
  --shadow-btn-hover: 0 8px 28px rgba(108, 99, 255, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F8F7FF 0%, #EDE9FF 50%, #FFE8E8 100%);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108,99,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,107,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  margin-bottom: 20px;
}

.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(67, 211, 228, 0.2);
  display: block;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stats {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(108, 99, 255, 0.3);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-primary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    width: 100%;
  }
}

/* ========== PHONE MOCKUP ========== */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 320px;
  background: #E8E8ED;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
}

.phone-screen {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 690px;
}

/* --- Telegram Header --- */
.tg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #FFFFFF;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.tg-back {
  font-size: 1.15rem;
  color: #007AFF;
  font-weight: 400;
  cursor: default;
  padding: 2px 2px;
}

.tg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tg-header-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

.tg-bot-label {
  font-size: 0.7rem;
  color: #8E8E93;
}

/* --- Chat Area --- */
.tg-chat {
  flex: 1;
  overflow: hidden;
  padding: 8px 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #E7EBF0;
  background-image: radial-gradient(circle at 1px 1px, #d4dce3 1px, transparent 0);
  background-size: 16px 16px;
}

/* --- Messages --- */
.tg-msg {
  padding: 7px 10px;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.2;
  max-width: 88%;
  word-wrap: break-word;
  animation: tgMsgIn 0.35s ease-out both;
  color: #000;
}

@keyframes tgMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tg-msg-user {
  position: relative;
  background: #EEFFDE;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.tg-msg-user s {
  text-decoration: line-through;
  opacity: 0.5;
}

.tg-msg-bot {
  position: relative;
  background: #FFFFFF;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* --- Bubble Tails --- */
.tg-msg-bot::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -7px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 0 0, transparent 8px, #FFFFFF 0);
}

.tg-msg-user::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -7px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 100% 0, transparent 8px, #EEFFDE 0);
}

.tg-msg-explain {
  font-size: 0.73rem;
  line-height: 1.5;
  padding: 8px 10px;
}

.tg-msg-explain p {
  margin: 0;
}

.tg-msg-explain b {
  font-weight: 600;
}

.tg-msg-text {
  margin: 5px 0 0;
  font-size: 0.78rem;
  line-height: 1.2;
}

/* --- Voice Messages --- */
.tg-voice {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 8px;
  align-items: center;
}

.voice-play-btn {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0;
}

.voice-play-green {
  background: #4FA052;
}

.voice-play-blue {
  background: #007AFF;
}

.voice-play-tri {
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-play-tri svg {
  display: block;
  margin-left: 2px;
}

.voice-dur {
  grid-row: 2;
  grid-column: 2;
  justify-self: start;
  font-size: 0.66rem;
  font-weight: 400;
  opacity: 0.45;
  line-height: 1;
}

.voice-waves {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 1.5px;
  height: 30px;
}

.voice-waves span {
  display: block;
  width: 2px;
  border-radius: 1px;
  flex-shrink: 0;
  min-height: 3px;
}

.voice-green span {
  background: #4FA052;
}

.voice-blue span {
  background: #007AFF;
}

/* Wave bar heights — cascading nth-child for natural look */
.voice-waves span { height: 5px; }
.voice-waves span:nth-child(2n) { height: 9px; }
.voice-waves span:nth-child(3n) { height: 4px; }
.voice-waves span:nth-child(4n+1) { height: 13px; }
.voice-waves span:nth-child(5n+2) { height: 7px; }
.voice-waves span:nth-child(7n+3) { height: 15px; }

/* --- Quote / Reply --- */
.tg-quote {
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
  padding: 3px 0;
}

.tg-quote-bar {
  width: 2px;
  border-radius: 1px;
  background: #007AFF;
  flex-shrink: 0;
}

.tg-quote-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tg-quote-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #007AFF;
  line-height: 1.3;
}

.tg-quote-sub {
  font-size: 0.67rem;
  color: #8E8E93;
  line-height: 1.3;
}

/* --- Inline Buttons --- */
.tg-inline-btn {
  align-self: flex-start;
  background: transparent;
  border: 1px solid #007AFF;
  border-radius: 14px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #007AFF;
  cursor: default;
  font-family: inherit;
  animation: tgMsgIn 0.35s ease-out both;
  line-height: 1.3;
}

/* --- Input Bar --- */
.tg-input-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  background: #F9F9F9;
  flex-shrink: 0;
}

.tg-menu-btn {
  font-size: 0.7rem;
  font-weight: 600;
  color: #007AFF;
  padding: 5px 9px;
  background: rgba(0,122,255,0.08);
  border-radius: 14px;
  white-space: nowrap;
  cursor: default;
  flex-shrink: 0;
}

.tg-clip-icon {
  width: 16px;
  height: 16px;
  color: #8E8E93;
  flex-shrink: 0;
  display: block;
}

.tg-input-pill {
  flex: 1;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  font-size: 0.73rem;
  color: #C7C7CC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tg-mic-icon {
  width: 18px;
  height: 18px;
  color: #007AFF;
  flex-shrink: 0;
  display: block;
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 0;
  background: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(108,99,255,0.05));
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-icon svg {
  display: block;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 48px;
}

.step {
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px 32px;
  transition: all var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.step-number {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.step-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.step-arrow {
  font-size: 1.6rem;
  color: var(--primary-light);
  padding-top: 56px;
  font-weight: 700;
  opacity: 0.5;
}

.how-cta {
  text-align: center;
}

/* ========== REVIEWS ========== */
.reviews {
  padding: 100px 0;
  background: var(--bg-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.review-stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: all var(--transition);
  font-family: inherit;
  line-height: 1.3;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}

.faq-arrow {
  font-size: 0.75rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== USE CASES ========== */
.use-cases {
  padding: 100px 0;
  background: var(--bg);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.use-case-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: left;
  transition: all var(--transition);
  cursor: default;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.use-case-num {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 10px;
  opacity: 0.85;
  letter-spacing: -1px;
}

.use-case-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.use-case-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== COMPARISON ========== */
.comparison {
  padding: 100px 0;
  background: var(--bg-alt);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-col {
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}

.comparison-tutor {
  background: var(--bg);
  border: 2px solid var(--border);
}

.comparison-bot {
  background: linear-gradient(135deg, rgba(108,99,255,0.06), rgba(108,99,255,0.02));
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

.comparison-col h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-icon {
  flex-shrink: 0;
  opacity: 0.75;
}

.comparison-bot h3 {
  color: var(--primary);
}

.comparison-col ul {
  list-style: none;
  padding: 0;
}

.comparison-col li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comparison-col li:last-child {
  border-bottom: none;
}

.comparison-col li::before {
  content: '✗';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-bot li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4F 100%);
  text-align: center;
}

.final-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

/* ========== FOOTER ========== */
.footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 20px;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all var(--transition);
  position: relative;
  padding: 2px 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  margin-top: 4px;
  font-size: 0.78rem;
}

.footer-tg-link {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.4) !important;
  transition: color var(--transition);
}

.footer-tg-link:hover {
  color: #2AABEE !important;
}

.footer-tg-link::after {
  display: none !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .container {
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 32px;
    min-height: auto;
  }

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

  .hero-mockup {
    display: flex !important;
  }

  .phone-screen {
    height: 690px;
  }

  .phone-frame {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .use-cases {
    padding-top: 32px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

  .section-header h2 {
    font-size: 1.7rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-arrow {
    display: none;
  }

  .step p {
    max-width: 100%;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .use-case-card {
    padding: 28px 24px;
  }

  .use-case-num {
    font-size: 2.6rem;
  }

  .final-cta-content h2 {
    font-size: 1.5rem;
  }

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

  .footer-links {
    justify-content: center;
    gap: 16px;
  }

}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
