﻿/* =======================================================
   isletmem.hizmetim.tr — Business Landing v3
   Full self-contained professional design (blue/SaaS)
   ======================================================= */

/* ── CSS CUSTOM PROPERTIES ────────────────────────────── */
:root {
  --biz-bg:        #f0f7ff;
  --biz-bg2:       #e8f4fd;
  --biz-surface:   #ffffff;
  --biz-surface-2: #f4f9fe;
  --biz-ink:       #0b1d33;
  --biz-muted:     #475569;
  --biz-primary:   #0ea5e9;
  --biz-primary-d: #0284c7;
  --biz-primary-l: #38bdf8;
  --biz-accent:    #f59e0b;
  --biz-accent-d:  #d97706;
  --biz-border:    #dbeafe;
  --biz-radius:    16px;
  --biz-radius-lg: 24px;
  --biz-shadow:    0 4px 20px rgba(14, 165, 233, 0.10);
  --biz-shadow-lg: 0 16px 48px rgba(14, 165, 233, 0.16);
}

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--biz-bg);
  color: var(--biz-ink);
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 5% -5%,  rgba(14,165,233,0.12), transparent),
    radial-gradient(ellipse 800px 450px at 95% -5%, rgba(245,158,11,0.09), transparent),
    radial-gradient(ellipse 700px 400px at 50% 100%, rgba(56,189,248,0.07), transparent);
  pointer-events: none;
  z-index: -1;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, .nav-logo {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.navbar.navbar--business {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(219,234,254,0.80);
}
.navbar--business.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(14,165,233,0.12);
  border-bottom-color: var(--biz-border);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.35rem; font-weight: 900; color: #0b1d33;
  letter-spacing: -0.03em; flex-shrink: 0; transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo span  { color: var(--biz-primary-d); }

.nav-links {
  display: flex; align-items: center; gap: 0.1rem;
  flex: 1; justify-content: center;
}

.nav-link {
  color: #1e4066; font-size: 0.875rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 0.38rem;
  white-space: nowrap;
}
.nav-link i { font-size: 0.76rem; opacity: 0.65; }
.nav-link:hover { color: var(--biz-primary-d); background: rgba(14,165,233,0.09); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

.nav-service-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 700;
  padding: 0.5rem 1.15rem; border-radius: 10px;
  transition: all 0.2s; white-space: nowrap;
}
.nav-service-btn i { font-size: 0.78rem; }

.nav-service-btn--ghost {
  border: 1.5px solid var(--biz-border); background: #fff; color: #1e3a5f;
}
.nav-service-btn--ghost:hover {
  border-color: var(--biz-primary); color: var(--biz-primary-d);
  background: rgba(14,165,233,0.06);
}

.nav-service-btn--primary {
  background: linear-gradient(135deg, var(--biz-primary), var(--biz-primary-d));
  color: #fff; border: none;
  box-shadow: 0 4px 14px rgba(14,165,233,0.30);
}
.nav-service-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14,165,233,0.42);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 0; border-radius: 8px;
  align-items: center; justify-content: center; transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(14,165,233,0.10); }
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: #1e4066;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────── */
.hero.hero--business {
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #e2f1fc 0%, #eef6fd 40%, #f0f7ff 100%);
}
.hero--business::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.06) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.hero--business::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.14), transparent 65%);
  top: -150px; right: -200px; pointer-events: none;
}

.hero--business .container {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-content { text-align: left; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.30);
  color: #0c4a6e; font-size: 0.78rem; font-weight: 800;
  padding: 0.42rem 1rem; border-radius: 999px;
  margin-bottom: 1.35rem; letter-spacing: 0.03em; text-transform: uppercase;
}
.hero-badge i { color: var(--biz-primary); }

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 900; line-height: 1.08; color: #0b1d33;
  margin-bottom: 1.25rem;
}
.hero-title span {
  background: linear-gradient(120deg, var(--biz-primary-d) 0%, var(--biz-accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.08rem; color: var(--biz-muted);
  margin-bottom: 2.25rem; line-height: 1.75; max-width: 520px;
}

.hero-actions {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap;
}

.hero-stats {
  background: var(--biz-surface); border: 1.5px solid var(--biz-border);
  border-radius: var(--biz-radius-lg); padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(14,165,233,0.14);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.hero-stats::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(14,165,233,0.04), rgba(245,158,11,0.03));
  border-radius: inherit; pointer-events: none;
}

.stat-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--biz-surface-2); border: 1px solid var(--biz-border);
  border-radius: 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
.stat-item:hover {
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 6px 18px rgba(14,165,233,0.08);
}

.stat-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #dbeafe, #bae6fd);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--biz-primary-d);
}

.stat-info { flex: 1; }

.stat-number {
  font-size: 1.65rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--biz-primary-d), var(--biz-accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.8rem; color: var(--biz-muted);
  font-weight: 600; margin-top: 0.2rem;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 12px;
  font-size: 0.9rem; font-weight: 700; transition: all 0.2s;
  border: none; cursor: pointer; white-space: nowrap;
  font-family: inherit; line-height: 1;
}
.btn-lg  { padding: 0.95rem 2rem; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--biz-primary), var(--biz-primary-d));
  color: #fff; box-shadow: 0 4px 16px rgba(14,165,233,0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,165,233,0.44);
}

.btn-outline {
  background: #fff; color: #1e3a5f;
  border: 1.5px solid var(--biz-border);
}
.btn-outline:hover {
  border-color: var(--biz-primary); color: var(--biz-primary-d);
  background: rgba(14,165,233,0.06); transform: translateY(-2px);
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 3.25rem; }

.section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(14,165,233,0.10); border: 1px solid rgba(14,165,233,0.22);
  color: #0c4a6e; font-size: 0.74rem; font-weight: 800;
  padding: 0.35rem 1rem; border-radius: 999px;
  margin-bottom: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #0b1d33;
  margin-bottom: 0.75rem; line-height: 1.18;
}
.section-header p {
  font-size: 1.05rem; color: var(--biz-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.72;
}

/* ── FEATURES ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--biz-surface); border: 1.5px solid var(--biz-border);
  border-radius: var(--biz-radius); padding: 1.75rem;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--biz-primary), var(--biz-accent));
  opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover {
  border-color: rgba(14,165,233,0.38);
  box-shadow: 0 14px 36px rgba(14,165,233,0.11);
  transform: translateY(-5px);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #dbeafe, #fef3c7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #0c4a6e;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 800; color: #0b1d33; margin-bottom: 0.6rem; }
.feature-card p  { font-size: 0.88rem; color: var(--biz-muted); line-height: 1.65; }

/* ── PRICING ──────────────────────────────────────────── */
.section--pricing {
  background: linear-gradient(180deg, #ebf6ff 0%, #f8fcff 60%, #fff 100%);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: start;
}

.pricing-card {
  background: var(--biz-surface); border: 1.5px solid var(--biz-border);
  border-radius: var(--biz-radius-lg); padding: 2rem;
  position: relative; transition: all 0.25s;
}
.pricing-card:hover { box-shadow: 0 14px 40px rgba(14,165,233,0.11); transform: translateY(-5px); }

.pricing-card--featured {
  border-color: #7dd3fc !important;
  background: linear-gradient(180deg, #f0f9ff, #fff) !important;
  box-shadow: 0 22px 56px rgba(14,165,233,0.20) !important;
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 0.38rem 1.2rem; border-radius: 999px;
  white-space: nowrap; letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(14,165,233,0.40);
}

.pricing-header { margin-bottom: 1.5rem; }
.pricing-header h3 { font-size: 1.15rem; font-weight: 800; color: #0b1d33; margin-bottom: 1rem; }

.price { display: flex; align-items: baseline; gap: 0.25rem; }
.price .amount { font-size: 2.5rem; font-weight: 900; color: #0b1d33; letter-spacing: -0.04em; }
.price .period { font-size: 0.9rem; color: var(--biz-muted); }

.pricing-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.65rem; margin-bottom: 1.5rem;
}
.pricing-features li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.88rem; color: #334155;
}
.pricing-features li .fa-check { color: #0ea5e9; font-size: 0.78rem; }
.pricing-features li .fa-times { color: #cbd5e1; font-size: 0.78rem; }

.pricing-note { font-size: 0.8rem; color: #94a3b8; margin-bottom: 1.25rem; font-style: italic; }
.pricing-trial {
  font-size: 0.85rem; color: #0c4a6e; margin-bottom: 1.25rem;
  background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.18);
  border-radius: 10px; padding: 0.65rem 0.9rem; text-align: center;
}

/* ── TRIAL BANNER ─────────────────────────────────────── */
.section--trial {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 45%, #0ea5e9 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.section--trial::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 15% 50%, rgba(255,255,255,0.08), transparent),
    radial-gradient(ellipse 600px 350px at 85% 50%, rgba(245,158,11,0.12), transparent);
  pointer-events: none;
}
.section--trial::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}

.trial-content {
  text-align: center; position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  background: transparent !important; border: none !important;
}
.trial-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  color: #fff; margin-bottom: 1rem;
}
.trial-content p {
  font-size: 1.08rem; color: rgba(255,255,255,0.88);
  margin-bottom: 2.25rem; line-height: 1.72;
}
.trial-content .btn-primary {
  background: #fff; color: var(--biz-primary-d);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  font-size: 1rem; padding: 1rem 2.25rem; border-radius: 14px;
}
.trial-content .btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,0.32);
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-container {
  max-width: 740px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}

.faq-item {
  background: var(--biz-surface) !important;
  border: 1.5px solid var(--biz-border) !important;
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.active {
  border-color: rgba(14,165,233,0.40) !important;
  box-shadow: 0 8px 28px rgba(14,165,233,0.09);
}

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem; cursor: pointer;
  font-weight: 700; font-size: 0.95rem; color: #0b1d33;
  transition: background 0.2s; gap: 1rem; user-select: none;
}
.faq-question:hover { background: rgba(14,165,233,0.04); }
.faq-question span  { flex: 1; }
.faq-question i {
  font-size: 0.82rem; color: var(--biz-primary);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.4rem 1.2rem; }
.faq-answer p { font-size: 0.9rem; color: var(--biz-muted); line-height: 1.72; }

/* ── CTA SECTION ──────────────────────────────────────── */
.section--cta {
  background: linear-gradient(135deg, #f0f9ff 0%, #fff7ed 50%, #f0f9ff 100%);
  padding: 80px 0;
}
.cta-content {
  text-align: center; max-width: 680px; margin: 0 auto;
  background: transparent !important; border: none !important;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  color: #0b1d33; margin-bottom: 1rem;
}
.cta-content p { font-size: 1.05rem; color: var(--biz-muted); margin-bottom: 2rem; line-height: 1.72; }
.cta-content .btn-primary { font-size: 1rem; padding: 1rem 2.25rem; border-radius: 14px; }
.cta-content .btn-outline  { display: inline-flex; margin-top: 0.85rem; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer.footer--business {
  background: #091827; color: #7ea5c0; padding: 4rem 0 2rem;
}
.footer--business .footer-grid {
  display: grid; grid-template-columns: 1.65fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer--business .footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 900; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 0.85rem;
}
.footer--business .footer-logo span { color: #38bdf8; }
.footer--business .footer-brand p {
  font-size: 0.875rem; line-height: 1.72; max-width: 265px; color: #7ea5c0;
}
.footer-mail {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #38bdf8; font-size: 0.85rem; font-weight: 600;
  margin-top: 1rem; transition: color 0.2s;
}
.footer-mail:hover { color: #7dd3fc; }
.footer--business .footer-col h4 {
  color: #e2f0fb; font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1.25rem;
}
.footer--business .footer-col a {
  display: block; font-size: 0.875rem; color: #7ea5c0;
  margin-bottom: 0.6rem; transition: color 0.2s;
}
.footer--business .footer-col a:hover { color: #7dd3fc; }
.footer--business .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem; font-size: 0.8rem; color: #3d6278; text-align: center;
}

/* ── CONTACT PAGE ─────────────────────────────────────── */
.contact-wrap { max-width: 980px; margin: 100px auto 70px; padding: 0 1.25rem; }
.contact-hero, .contact-card {
  background: var(--biz-surface); border: 1.5px solid var(--biz-border);
  border-radius: var(--biz-radius-lg); box-shadow: var(--biz-shadow);
}
.contact-hero { padding: 2.5rem 1.75rem; text-align: center; margin-bottom: 1.25rem; }
.contact-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #0b1d33; margin-bottom: 0.6rem; }
.contact-hero p  { color: var(--biz-muted); }
.contact-card    { padding: 1.5rem; }
.contact-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-item {
  border: 1.5px solid var(--biz-border); border-radius: 12px;
  padding: 1.25rem; background: var(--biz-surface-2); transition: all 0.2s;
}
.contact-item:hover { border-color: rgba(14,165,233,0.35); box-shadow: 0 6px 20px rgba(14,165,233,0.08); }
.contact-item h3 { font-size: 0.98rem; color: #0b1d33; margin-bottom: 0.4rem; }
.contact-item p, .contact-item a { color: var(--biz-muted); font-size: 0.9rem; }
.quick-actions  { margin-top: 1.25rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-5px); }
  .hero--business .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { text-align: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.85rem; padding: 1.5rem; }
  .stat-item { flex: 1; min-width: 155px; }
  .hero--business::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    padding: 1.25rem; gap: 0.25rem;
    border-bottom: 1px solid var(--biz-border);
    box-shadow: 0 16px 40px rgba(14,165,233,0.15); z-index: 199;
  }
  .nav-links.open .nav-link { padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.95rem; }
  .hero--business { padding: 100px 0 52px; }
  .hero-title { font-size: clamp(1.85rem, 5vw, 2.8rem); }
  .section { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer--business .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer--business .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; }
  .stat-item { width: 100%; min-width: unset; }
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge    { animation: fadeUp 0.50s ease both; }
.hero-title    { animation: fadeUp 0.55s 0.08s ease both; }
.hero-subtitle { animation: fadeUp 0.55s 0.16s ease both; }
.hero-actions  { animation: fadeUp 0.55s 0.24s ease both; }
.hero-stats    { animation: fadeUp 0.60s 0.32s ease both; }