/* ── Zingoor CRM – Marketing Website Styles ──────────────────────────── */

:root {
  --charcoal:   #2C3E50;
  --charcoal-d: #1a252f;
  --magenta:    #C0166E;
  --magenta-l:  #e01e82;
  --orange:     #F58220;
  --orange-l:   #f9a054;
  --white:      #ffffff;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--charcoal); }
p { color: var(--gray-600); }
a { text-decoration: none; color: inherit; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: .75rem;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(245,130,32,.35);
}
.btn-primary:hover { background: var(--orange-l); border-color: var(--orange-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,130,32,.4); }

.btn-magenta {
  background: var(--magenta); color: #fff; border-color: var(--magenta);
  box-shadow: 0 4px 14px rgba(192,22,110,.3);
}
.btn-magenta:hover { background: var(--magenta-l); border-color: var(--magenta-l); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--charcoal); border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--charcoal); background: var(--gray-50); }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; border-radius: .5rem; }

/* ── Navigation ─────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { height: 36px; }
.nav-logo-text { font-size: 1.3rem; font-weight: 900; color: var(--charcoal); }
.nav-logo-text span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 600; font-size: .9rem; color: var(--gray-600); transition: color .2s; }
.nav-links a:hover { color: var(--charcoal); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: #fff; border-top: 1px solid var(--gray-100);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .75rem 0; font-weight: 600; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: .75rem; justify-content: center; }

/* ── Container ───────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Section Labels ───────────────────────────────────────────────────── */
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 99px; margin-bottom: 1rem;
}
.label-orange { background: #FEF3E6; color: var(--orange); }
.label-magenta { background: #FCE8F3; color: var(--magenta); }
.label-blue { background: #EFF6FF; color: #2563EB; }
.label-green { background: #F0FDF4; color: #16A34A; }

.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a2f45 60%, #0f1e2e 100%);
  padding: 5rem 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,22,110,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(245,130,32,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,130,32,.15); border: 1px solid rgba(245,130,32,.3);
  color: var(--orange-l); padding: .4rem 1rem; border-radius: 99px;
  font-size: .82rem; font-weight: 700; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 2rem; max-width: 520px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; }
.hero-trust-text { font-size: .82rem; color: rgba(255,255,255,.5); }
.hero-stars { display: flex; gap: 2px; }
.hero-stars span { color: #FBBF24; font-size: .9rem; }

/* ── Dashboard Mockup ───────────────────────────────────────────────── */
.hero-visual { position: relative; padding-bottom: 2rem; }
.dashboard-mockup {
  background: #fff; border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
  overflow: hidden;
}
.mockup-bar {
  background: var(--charcoal); padding: .6rem 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar-title { flex: 1; text-align: center; font-size: .7rem; color: rgba(255,255,255,.5); }
.mockup-body { display: flex; }
.mockup-sidebar {
  width: 52px; background: #1E293B; padding: .75rem .5rem;
  display: flex; flex-direction: column; gap: .5rem; align-items: center;
}
.mockup-sb-item { width: 32px; height: 32px; border-radius: .5rem; background: rgba(255,255,255,.08); }
.mockup-sb-item.active { background: var(--orange); }
.mockup-main { flex: 1; padding: 1rem; background: #F8FAFC; }
.mockup-header { font-size: .65rem; font-weight: 800; color: var(--charcoal); margin-bottom: .75rem; }
.mockup-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; margin-bottom: .75rem; }
.mockup-stat {
  background: #fff; border-radius: .4rem; padding: .4rem .5rem;
  border: 1px solid #E2E8F0; text-align: center;
}
.mockup-stat-num { font-size: .75rem; font-weight: 800; color: var(--charcoal); }
.mockup-stat-lbl { font-size: .5rem; color: var(--gray-400); }
.mockup-tasks { display: flex; flex-direction: column; gap: .3rem; }
.mockup-task {
  background: #fff; border-radius: .35rem; padding: .4rem .6rem;
  display: flex; align-items: center; gap: .5rem;
  border: 1px solid #E2E8F0; border-left: 3px solid var(--orange);
  font-size: .55rem;
}
.mockup-task.done { border-left-color: #22C55E; opacity: .7; }
.mockup-task.urgent { border-left-color: var(--magenta); }
.mockup-task-avatar { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--magenta), var(--orange)); flex-shrink: 0; }
.mockup-task-text { flex: 1; font-weight: 600; color: var(--charcoal); }
.mockup-task-badge { padding: .1rem .3rem; border-radius: 99px; font-size: .45rem; font-weight: 700; }
.badge-high { background: #FEE2E2; color: #DC2626; }
.badge-med  { background: #FEF3C7; color: #D97706; }
.badge-done { background: #DCFCE7; color: #16A34A; }

/* ── Logos Strip ─────────────────────────────────────────────────────── */
.logos-strip { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 2rem 0; }
.logos-strip-text { text-align: center; font-size: .8rem; font-weight: 700; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.logos-grid { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.logo-pill {
  background: var(--gray-200); color: var(--gray-600); font-weight: 800;
  font-size: .9rem; padding: .5rem 1.5rem; border-radius: .5rem; letter-spacing: .03em;
}

/* ── Features Grid ───────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
.feature-card {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 1.25rem; padding: 2rem;
  transition: all .25s ease;
}
.feature-card:hover { border-color: var(--gray-200); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.07); }
.feature-icon {
  width: 52px; height: 52px; border-radius: .875rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.icon-orange { background: #FEF3E6; }
.icon-magenta { background: #FCE8F3; }
.icon-blue { background: #EFF6FF; }
.icon-green { background: #F0FDF4; }
.icon-purple { background: #F5F3FF; }
.icon-teal { background: #F0FDFA; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; line-height: 1.6; }

/* ── How It Works ────────────────────────────────────────────────────── */
.hiw-bg { background: linear-gradient(135deg, var(--charcoal) 0%, #1a2f45 100%); }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.hiw-step { text-align: center; position: relative; }
.hiw-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -1rem; top: 1.5rem;
  font-size: 1.5rem; color: rgba(255,255,255,.2);
}
.hiw-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; margin: 0 auto 1.25rem;
  border: 2px solid rgba(255,255,255,.2);
}
.hiw-step h3 { color: #fff; font-size: 1.15rem; margin-bottom: .5rem; }
.hiw-step p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.65; }

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 2rem 0;
}
.toggle-label { font-weight: 600; font-size: .9rem; color: var(--gray-600); }
.toggle-switch {
  position: relative; width: 50px; height: 26px;
  background: var(--orange); border-radius: 99px; cursor: pointer;
  transition: background .2s;
}
.toggle-switch::after {
  content: ''; position: absolute; width: 20px; height: 20px;
  background: #fff; border-radius: 50%; top: 3px; left: 3px;
  transition: transform .2s;
}
.toggle-switch.yearly::after { transform: translateX(24px); }
.save-badge { background: #DCFCE7; color: #16A34A; font-size: .75rem; font-weight: 800; padding: .2rem .6rem; border-radius: 99px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.pricing-card {
  background: #fff; border: 2px solid var(--gray-100);
  border-radius: 1.5rem; padding: 2rem 1.75rem;
  position: relative; transition: all .25s;
}
.pricing-card:hover { border-color: var(--gray-200); box-shadow: 0 10px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.pricing-card.popular {
  border-color: var(--orange); background: linear-gradient(180deg, #FFFBF5 0%, #fff 100%);
  transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-3px); }
.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800;
  padding: .25rem .9rem; border-radius: 0 0 .75rem .75rem; letter-spacing: .05em;
}
.plan-name { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-bottom: .75rem; }
.plan-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .25rem; }
.plan-price .amount { font-size: 2.6rem; font-weight: 900; color: var(--charcoal); line-height: 1; }
.plan-price .per { font-size: .85rem; color: var(--gray-400); }
.plan-period { font-size: .8rem; color: var(--gray-400); margin-bottom: 1.25rem; }
.plan-desc { font-size: .88rem; color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.5; min-height: 42px; }
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .87rem; color: var(--gray-600); }
.plan-features li::before { content: '✓'; color: #22C55E; font-weight: 900; flex-shrink: 0; line-height: 1.4; }
.plan-features li.no::before { content: '✕'; color: var(--gray-400); }
.plan-features li.no { color: var(--gray-400); }
.plan-cta { display: block; text-align: center; width: 100%; }

/* ── Comparison Table ────────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 3rem; }
.compare-table th, .compare-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-100); }
.compare-table th { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-400); background: var(--gray-50); }
.compare-table th:first-child { border-radius: .75rem 0 0 0; }
.compare-table th:last-child { border-radius: 0 .75rem 0 0; }
.compare-table td { font-size: .88rem; }
.compare-table td:first-child { font-weight: 600; color: var(--charcoal); }
.compare-table .check { color: #22C55E; font-size: 1.1rem; font-weight: 900; }
.compare-table .cross { color: var(--gray-400); font-size: 1.1rem; }
.compare-table .highlight { background: #FFFBF5; font-weight: 700; color: var(--orange); }
.compare-table tr:hover td { background: var(--gray-50); }
.cat-row td { background: var(--charcoal) !important; color: #fff !important; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .6rem 1rem; }

/* ── Testimonials ────────────────────────────────────────────────────── */
.testimonials-bg { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 1.25rem;
  padding: 1.75rem; position: relative;
}
.testimonial-card::before { content: '"'; font-size: 5rem; color: var(--orange); opacity: .15; position: absolute; top: .5rem; left: 1.25rem; font-family: serif; line-height: 1; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-stars span { color: #FBBF24; }
.testimonial-text { font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .9rem; color: #fff; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--charcoal); }
.author-title { font-size: .78rem; color: var(--gray-400); }

/* ── CTA Banner ──────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  border-radius: 2rem; padding: 4rem 3rem; text-align: center;
  position: relative; overflow: hidden; margin: 0 1.5rem;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: #fff; margin-bottom: .75rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }
.cta-banner .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Footer ─────────────────────────────────────────────────────────── */
footer { background: var(--charcoal); color: rgba(255,255,255,.7); }
.footer-top {
  max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: rgba(255,255,255,.5); }
.footer-logo-text { font-size: 1.3rem; font-weight: 900; color: #fff; }
.footer-logo-text span { color: var(--orange); }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: .5rem;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: background .2s;
}
.social-link:hover { background: var(--orange); }
.footer-col h4 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.9); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.35);
}

/* ── Page Hero (inner pages) ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal), #1a2f45);
  padding: 5rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-size: 1rem; font-weight: 700;
  color: var(--charcoal); gap: 1rem;
}
.faq-question .icon { font-size: 1.2rem; color: var(--orange); transition: transform .25s; flex-shrink: 0; }
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer { font-size: .92rem; color: var(--gray-600); line-height: 1.75; padding-bottom: 1.25rem; display: none; }
.faq-answer.open { display: block; }

/* ── Features Page ───────────────────────────────────────────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--gray-100);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .92rem; color: var(--gray-600); line-height: 1.5; }
.feature-list li .check { color: var(--orange); font-weight: 900; flex-shrink: 0; margin-top: .1rem; }
.feature-visual { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 1.25rem; padding: 2rem; min-height: 280px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; margin-top: 3rem; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.contact-info p { font-size: .92rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; font-size: .9rem; }
.contact-detail .icon { font-size: 1.2rem; width: 36px; height: 36px; background: var(--gray-100); border-radius: .5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 1.5rem; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--charcoal); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: .625rem; font-size: .9rem; background: #fff;
  transition: border-color .2s; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,32,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Stats ───────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--charcoal); line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-label { font-size: .85rem; color: var(--gray-400); margin-top: .35rem; }

/* ── Animations ──────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Utilities ───────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--magenta), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .cta-banner { margin: 0; border-radius: 1rem; padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .logos-grid { gap: 1rem; }
}
