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

:root {
  --primary:        #12A074;
  --primary-2:      #26C98D;
  --primary-d:      #0d7a58;
  --primary-light:  #EEF8F2;
  --primary-medium: #C8EDD9;
  --secondary:      #34B6EF;
  --dark:           #EEF8F2;
  --dark2:          #E6F4ED;
  --card:           #FFFFFF;
  --surface-2:      #F2FAF6;
  --text:           #143028;
  --muted:          #7A988F;
  --muted-2:        #9DB6AD;
  --white:          #FFFFFF;
  --border:         rgba(16,90,70,.10);
  --gold:           #F0A93C;
  --grad-primary:   linear-gradient(135deg, #26C98D, #34B6EF);
  --shadow-card:    0 10px 24px rgba(16,90,70,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}

h1, h2, h3 { line-height: 1.3; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 56px;
  font-size: 1rem;
}
.badge {
  display: inline-block;
  background: var(--primary-light);
  border: 1px solid var(--primary-medium);
  color: var(--primary);
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,160,116,0.35); }
.btn-primary  { background: var(--grad-primary); color: var(--white); box-shadow: 0 4px 14px rgba(18,160,116,0.3); }
.btn-outline  { background: var(--surface-2); color: var(--primary); border: 2px solid var(--primary-medium); }

/* ─── Navbar ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238,248,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}
.nav-inner .nav-links { justify-self: start; }
.nav-inner .nav-cta   { justify-self: end; }
.nav-logo { font-size: 1.35rem; font-weight: 800; color: var(--text); }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; font-size: 0.95rem; }
.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { font-size: 0.9rem; padding: 10px 22px; border-radius: 10px; }
.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 3px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 50%, #C8EDD9 0%, #EEF8F2 60%, #F2FAF6 100%);
  text-align: center;
  padding: 80px 0;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--text); margin-bottom: 20px; }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero p { font-size: 1.15rem; color: var(--muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.hero-tag {
  background: var(--card);
  border: 1px solid var(--primary-medium);
  color: var(--primary-d);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.82rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--text); }
.stat-num span { color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 50%, #C8EDD9 0%, #EEF8F2 60%, #F2FAF6 100%);
  text-align: center;
  padding: 64px 0;
}
.page-hero .hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); color: var(--text); margin-bottom: 16px; }
.page-hero h1 em { color: var(--primary); font-style: normal; }
.page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ─── Stats Band ─── */
.stats-band { background: var(--dark2); padding: 56px 0; }
.stats-band .hero-stats { margin-top: 0; }

/* ─── Features ─── */
.features-bg { background: var(--dark2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.feature-icon i { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 10px; }
.feature-card p  { color: var(--muted); font-size: 0.92rem; }
.feature-card .feature-kw {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 6px;
  padding: 2px 8px;
}

/* ─── USP Banner ─── */
.usp-banner {
  background: var(--grad-primary);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.usp-banner h2 { font-size: 1.6rem; margin-bottom: 12px; }
.usp-banner p  { font-size: 1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 28px; }
.usp-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-bottom: 32px;
}
.usp-list li {
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* ─── How It Works ─── */
.steps { display: flex; flex-direction: column; gap: 32px; max-width: 680px; margin: 0 auto; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.step-num {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.step h3 { color: var(--text); margin-bottom: 6px; }
.step p  { color: var(--muted); font-size: 0.92rem; }

/* ─── Pricing ─── */
.pricing-bg { background: var(--dark2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 32px rgba(18,160,116,0.2);
}
.popular-label {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--grad-primary);
  color: var(--white);
  padding: 4px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--muted); margin-bottom: 16px; }
.plan-price { font-size: 2.6rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.plan-price sub { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-period { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }
.plan-features { list-style: none; text-align: right; margin-bottom: 32px; }
.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before { content: '✓'; color: var(--primary); font-weight: 700; }
.plan-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; }

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.payment-method {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.testimonial-text { color: var(--text); font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.testimonial-text::before { content: '«'; }
.testimonial-text::after  { content: '»'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
}
.author-name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--muted); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 6px; display:flex; gap:2px; }
.stars i { width:16px; height:16px; fill: var(--gold); }

/* ─── FAQ ─── */
.faq-bg { background: var(--dark2); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: rtl;
  font-family: 'Vazirmatn', sans-serif;
}
.faq-q .arrow { transition: transform 0.3s; color: var(--primary); }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ─── Read More ─── */
.readmore-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.readmore-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: rtl;
  font-family: 'Vazirmatn', sans-serif;
}
.readmore-toggle .arrow { transition: transform 0.3s; color: var(--primary); }
.readmore-box.open .readmore-toggle .arrow { transform: rotate(180deg); }
.readmore-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0 24px;
}
.readmore-post { margin: 0 0 22px; }
.readmore-post:last-child { margin-bottom: 0; }
.readmore-post h3 { color: var(--text); font-size: 1rem; margin: 0 0 8px; }
.readmore-post h4 { color: var(--text); font-size: 0.95rem; margin: 18px 0 8px; }
.readmore-post p { margin: 0 0 10px; line-height: 1.9; }
.readmore-post p:last-child { margin-bottom: 0; }
.readmore-post ul, .readmore-post ol { margin: 0 0 12px; padding-inline-start: 20px; line-height: 1.9; }
.readmore-post li { margin-bottom: 6px; }
.readmore-post table { width: 100%; border-collapse: collapse; margin: 8px 0 16px; font-size: 0.86rem; }
.readmore-post th, .readmore-post td { border: 1px solid rgba(255,255,255,0.12); padding: 6px 10px; text-align: right; }
.readmore-box.open .readmore-body { max-height: 20000px; padding: 0 24px 24px; }

/* ─── Legal ─── */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.legal-card h3 { color: var(--text); margin-bottom: 14px; font-size: 1rem; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 0.88rem; line-height: 1.8; }
.legal-card ul { padding-right: 16px; }

/* ─── Contact ─── */
.contact-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}
.contact-row a { color: var(--primary); }
.contact-row span.label { color: var(--muted); min-width: 80px; text-align: left; }

/* ─── Contact Form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.contact-form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contact-form-box h3 { font-size: 1.15rem; margin-bottom: 24px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 6px; font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18,160,116,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  border: 1px solid var(--primary-medium);
  color: var(--primary-d);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}
.form-success.show { display: flex; }

.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 18px; color: var(--text); }
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.contact-channel:first-of-type { border-top: none; padding-top: 0; }
.contact-channel .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel .icon-badge i { width: 18px; height: 18px; color: var(--primary); }
.contact-channel .ch-title { font-size: 0.85rem; color: var(--muted); margin-bottom: 2px; }
.contact-channel .ch-value { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.contact-channel .ch-value a { color: var(--primary-d); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box, .contact-info-card { padding: 24px 20px; }
}

/* ─── Footer ─── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { display: block; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; }
.footer-links h4 { color: var(--text); font-size: 0.95rem; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links li a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
}
.enamad-placeholder {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ─── Screenshots ─── */
.screenshot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.screenshot-row:last-child { margin-bottom: 0; }
.screenshot-row-reverse .screenshot-text { order: 2; }
.screenshot-row-reverse .screenshot-img  { order: 1; }
.screenshot-text .badge { margin-bottom: 12px; }
.screenshot-text h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 14px; }
.screenshot-text p  { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.screenshot-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.screenshot-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.screenshot-features i { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.screenshot-img img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
}
.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--primary-light);
  border: 2px dashed var(--primary-medium);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
}
.screenshot-placeholder i { width: 40px; height: 40px; }
.screenshot-placeholder span { font-size: 0.88rem; }

/* ─── Lightbox ─── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  cursor: default;
  animation: lb-in 0.2s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .screenshot-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
  .screenshot-row-reverse .screenshot-text { order: 1; }
  .screenshot-row-reverse .screenshot-img  { order: 2; }
}

@media (max-width: 640px) {
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0 16px;
    position: relative;
  }
  .nav-inner .nav-logo { order: 1; }
  .nav-inner .nav-cta  { display: none; }
  .nav-toggle { display: flex; order: 2; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    justify-self: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--bg, #eef8f2);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
  }
  .nav-cta-mobile {
    display: block;
    text-align: center;
    margin: 16px 20px;
    padding: 12px 22px;
    color: var(--white) !important;
  }
  .hero h1 { font-size: 1.8rem; }
  .contact-box { padding: 32px 20px; }
}

/* ─── Scroll animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
