/* ============================================================
   PUNCT.UZ — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --brand:        #16a34a;
  --brand-light:  #22c55e;
  --brand-dark:   #15803d;
  --brand-50:     #f0fdf4;
  --brand-100:    #dcfce7;

  --err-50:     #FDF2FA;
  --err-100:     #FCDEF2;

  --text:         #0f172a;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;

  --bg:           #ffffff;
  --bg-2:         #f8fafc;
  --bg-3:         #f1f5f9;

  --border:       #e2e8f0;
  --border-light: #f1f5f9;

  --font:         'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  28px;

  --sh-sm: 0 1px 4px rgba(0,0,0,.07);
  --sh-md: 0 4px 20px rgba(0,0,0,.08);
  --sh-lg: 0 12px 48px rgba(0,0,0,.1);

  --max-w: 1100px;
  --nav-h: 66px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-muted); }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

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

/* === SECTION HEADER === */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { max-width: 640px; }
.section-header p { margin-top: 14px; font-size: 1.05rem; max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center h2,
.section-header.center p { margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(22,163,74,.3);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 20px rgba(22,163,74,.4); transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.btn-ghost { color: var(--brand); padding: 13px 20px; }
.btn-ghost:hover { background: var(--brand-50); border-radius: var(--r-md); }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; border-radius: var(--r-sm); }
.btn-full { width: 100%; justify-content: center; }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.badge-green  { background: var(--brand-100); color: var(--brand-dark); }
.badge-gray   { background: var(--bg-3); color: var(--text-muted); }
.badge-orange { background: #fff7ed; color: #c2410c; }

/* === CARD === */
.card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--brand-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}
.nav-logo span { color: var(--brand); }
.nav-logo img { height: 20px }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: var(--bg-3); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-3);
  border-radius: var(--r-sm);
  padding: 3px;
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  color: var(--text-muted);
  transition: all .15s;
  cursor: pointer;
  border: none;
  background: none;
}
.lang-btn.active { background: var(--bg); color: var(--text); box-shadow: var(--sh-sm); }
.nav-signin {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  transition: all .15s;
}
.nav-signin:hover { border-color: var(--brand); color: var(--brand); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(160deg, var(--brand-50) 0%, var(--bg) 50%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--brand-100);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
}
.hero-screen {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-screen-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.mock-bar { height: 10px; border-radius: 6px; background: var(--border); }
.mock-bar.green { background: var(--brand-100); width: 60%; }
.mock-bar.short { width: 40%; }
.mock-row { display: flex; gap: 10px; }
.mock-card-sm { flex: 1; height: 64px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.mock-card-sm span { font-size: 22px; }
.mock-table { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.mock-tr { display: flex; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--border-light); }
.mock-tr:last-child { border-bottom: none; }
.mock-td { height: 8px; border-radius: 4px; background: var(--bg-3); }
.mock-td.g { background: var(--brand-100); }
.hero-float {
  position: absolute;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatY 3s ease-in-out infinite;
}
.hero-float-1 { bottom: -16px; left: -20px; animation-delay: 0s; }
.hero-float-2 { top: -16px; right: -16px; animation-delay: 1.5s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--text);
  color: #fff;
  padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--brand-light); letter-spacing: -0.03em; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 28px; border-radius: var(--r-lg); border: 1.5px solid var(--border); transition: all .2s; }
.feature-card:hover { border-color: var(--brand-100); box-shadow: var(--sh-md); transform: translateY(-3px); }
.feature-card.coming { opacity: 0.65; }
.feature-card.coming:hover { transform: none; }
.feature-card .badge { margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 8px; }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse .split-visual { order: -1; }
.split-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.split-list-item { display: flex; gap: 14px; align-items: flex-start; }
.split-list-item .icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--brand-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.split-visual img {
  border-radius: var(--r-xl);
}
.split-visual-box {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.split-visual-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--brand-50), transparent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.testi-quote { font-size: 2rem; color: var(--brand); line-height: 1; margin-bottom: 14px; }
.testi-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-100); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--brand-dark); font-size: 14px; flex-shrink: 0; }
.testi-name { font-size: 0.88rem; font-weight: 700; }
.testi-role { font-size: 0.8rem; color: var(--text-light); }
.testi-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.pricing-toggle {
  position: relative;
  width: 48px; height: 26px;
  background: var(--bg-3);
  border-radius: 100px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: background .2s;
}
.pricing-toggle.active { background: var(--brand); border-color: var(--brand); }
.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--bg);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: var(--sh-sm);
}
.pricing-toggle.active::after { transform: translateX(22px); }
.toggle-label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.toggle-label.active-label { color: var(--text); }
.save-badge { background: var(--brand-50); color: var(--brand-dark); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  background: var(--bg);
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--sh-md); }
.pricing-card.featured {
  border-color: var(--brand);
  background: linear-gradient(160deg, var(--brand-50) 0%, var(--bg) 100%);
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(22,163,74,.15);
}
.pricing-card.featured:hover { transform: scale(1.04); }
.plan-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.pricing-card.featured .plan-label { color: var(--brand); }
.plan-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.plan-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-price-num { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.plan-price-period { font-size: 0.85rem; color: var(--text-muted); }
.plan-price-orig { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.plan-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.plan-feature .check { width: 20px; height: 20px; border-radius: 50%; background: var(--brand-100); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.plan-feature .dash { width: 20px; height: 20px; border-radius: 50%; background: var(--bg-3); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-item + .faq-item { }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .15s;
  user-select: none;
}
.faq-q:hover { background: var(--bg-2); }
.faq-q .arrow { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-3); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: transform .2s, background .2s; flex-shrink: 0; }
.faq-item.open .faq-q { background: var(--brand-50); color: var(--brand-dark); }
.faq-item.open .faq-q .arrow { background: var(--brand-100); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 22px 18px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.integration-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
  transition: all .2s;
}
.integration-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.integration-card.coming-soon { opacity: 0.6; }
.integration-card.coming-soon:hover { transform: none; }
.integration-logo { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--bg-3); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.integration-name { font-size: 0.95rem; font-weight: 700; }
.integration-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.int-cat-header { font-size: 13px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin: 40px 0 16px; }
.int-cat-header:first-child { margin-top: 0; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-filter-btn {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all .15s;
}
.blog-filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.blog-filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: all .2s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brand-50), var(--bg-3));
  opacity: 0.6;
}
.blog-card-img-icon { position: relative; z-index: 1; }
.blog-card-body { padding: 22px; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.8rem; color: var(--text-light); }
.blog-card-cat { color: var(--brand); font-weight: 600; }
.blog-card h3 { margin-bottom: 10px; font-size: 1.02rem; line-height: 1.4; }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info-card { background: var(--brand-50); border-radius: var(--r-xl); padding: 40px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(22,163,74,.15); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; box-shadow: var(--sh-sm); }
.contact-info-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; }
.contact-form-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 40px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(22,163,74,.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; background: var(--brand-50); border: 1.5px solid var(--brand-100); border-radius: var(--r-md); padding: 16px 20px; font-size: 0.9rem; color: var(--brand-dark); font-weight: 500; margin-top: 16px; }
.form-error { display: none; background: var(--err-50); border: 1.5px solid var(--err-100); border-radius: var(--r-md); padding: 16px 20px; font-size: 0.9rem; color: var(--text); font-weight: 500; margin-top: 16px; }
.form-success.show { display: flex; align-items: center; gap: 10px; }
.form-error.show { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--text);
  color: #fff;
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { background: var(--bg-2); transform: translateY(-1px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.3); color: #fff; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 64px 0 36px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.footer-brand .nav-logo img {

}
.footer-tagline { font-size: 0.88rem; line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--brand-50) 0%, var(--bg) 60%);
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.08rem; max-width: 520px; margin: 0 auto; }

/* ============================================================
   ANIMATIONS / SCROLL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .08s; }
.fade-up-delay-2 { transition-delay: .16s; }
.fade-up-delay-3 { transition-delay: .24s; }
.fade-up-delay-4 { transition-delay: .32s; }

/* ============================================================
   UTILITY
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.bg-2 { background: var(--bg-2); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .grid-3           { grid-template-columns: 1fr 1fr; }
  .grid-4           { grid-template-columns: 1fr 1fr; }
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-item        { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .split            { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-visual { order: 0; }
  .split-visual-box { max-width: 320px; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .contact-layout   { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 58px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-md);
    z-index: 99;
  }
  .nav-links.open a { padding: 11px 14px; font-size: 1rem; }
  .mobile-toggle { display: flex; }
  .nav-signin { display: none; }
  .nav-right .nav-signin { display: none; }
  h1 { font-size: 1.85rem; }
  .hero { padding: 56px 0 48px; }
  .hero-actions { flex-direction: column; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .section       { padding: 56px 0; }
  .section-lg    { padding: 72px 0; }
}
