/* ==========================================================
   SALES CALL MANAGEMENT SYSTEM — Shared Landing CSS
   Covers: home, features, pricing, contact, privacy, terms, 404
   ========================================================== */

/* === 1. GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* === 2. DESIGN TOKENS === */
:root {
  --brand:          #2b6cb0;
  --brand-dark:     #1e4e8c;
  --brand-mid:      #3182ce;
  --brand-light:    #ebf8ff;
  --accent:         #276749;
  --accent-light:   #f0fff4;

  --hero-grad:      linear-gradient(135deg, #0f0f1a 0%, #0c2d55 55%, #111827 100%);
  --hero-cta:       #63b3ed;

  --surface:        #ffffff;
  --surface-alt:    #f7fafc;
  --border:         #e2e8f0;
  --border-strong:  #cbd5e0;

  --text-primary:   #1a202c;
  --text-secondary: #4a5568;
  --text-muted:     #718096;
  --text-light:     #a0aec0;

  --footer-bg:      #0f172a;
  --footer-text:    #94a3b8;
  --footer-link:    #64748b;
  --footer-hover:   #63b3ed;

  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   14px;
  --radius-2xl:  16px;

  --shadow-xs:  0 1px 4px rgba(0,0,0,.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 24px rgba(43,108,176,.10);
  --shadow-lg:  0 16px 40px rgba(43,108,176,.14);
}

/* === 3. BASE RESET === */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-secondary);
  background: #fff;
}

/* === 4. NAVBAR === */
.navbar {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
  transition: box-shadow .2s;
  padding-top: 12px;
  padding-bottom: 12px;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.navbar-brand { font-weight: 700; color: var(--brand); font-size: 1.05rem; }
.navbar-brand span { color: var(--brand); }
.navbar-brand img { height: 36px; }
.navbar .nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  transition: color .15s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--brand) !important; }
.btn-nav-outline {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand) !important;
  border: 1.5px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 6px 16px !important;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.btn-nav-outline:hover {
  background: var(--brand);
  color: #fff !important;
  text-decoration: none;
}
.btn-nav-cta {
  background: var(--brand);
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 6px 18px !important;
  font-weight: 600;
  font-size: .85rem;
  transition: background .15s, transform .15s;
  text-decoration: none;
  border: none;
}
.btn-nav-cta:hover {
  background: var(--brand-dark);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

/* === 5. HERO (home page) === */
.hero {
  background: var(--hero-grad);
  padding: 96px 0 76px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(99,179,237,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.5px;
  color: #fff;
}
.hero h1 span { color: var(--hero-cta); }
.hero p.lead {
  font-size: 1.12rem;
  color: #cbd5e0;
  max-width: 520px;
  line-height: 1.65;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 500;
  color: #bee3f8;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.btn-hero-primary {
  background: var(--hero-cta);
  color: #0c2d55;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: #4299e1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,179,237,.35);
  color: #0c2d55;
  text-decoration: none;
}
.btn-hero-secondary {
  background: transparent;
  color: #e2e8f0;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: var(--radius-md);
  padding: 12px 28px;
  font-size: 1rem;
  transition: border-color .2s, color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--hero-cta);
  letter-spacing: -.5px;
}
.hero-stat span { font-size: .8rem; color: #a0aec0; font-weight: 500; }
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  max-width: 100%;
}

/* === 6. PAGE HERO (sub-pages: features, pricing, contact) === */
.page-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #0c2d55 60%, #111827 100%);
  padding: 72px 0 52px;
  color: #fff;
}
.page-hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -.4px;
  color: #fff;
}
.page-hero p, .page-hero .lead {
  color: #cbd5e0;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === 7. TRUST BAR === */
.trust-bar {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar p { margin: 0; font-size: .84rem; color: var(--text-muted); font-weight: 500; }

/* === 8. SECTIONS === */
.section { padding: 84px 0; }
.section-alt { background: var(--surface-alt); }
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.22;
  letter-spacing: -.3px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === 9. FEATURE CARDS === */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  box-shadow: var(--shadow-xs);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.feature-card h5 {
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Feature icon color variants */
.fi-blue   { background: #ebf8ff; color: #2b6cb0; }
.fi-green  { background: #f0fff4; color: #276749; }
.fi-purple { background: #faf5ff; color: #6b46c1; }
.fi-orange { background: #fffaf0; color: #c05621; }
.fi-teal   { background: #e6fffa; color: #2c7a7b; }
.fi-red    { background: #fff5f5; color: #c53030; }
.fi-indigo { background: #ebf4ff; color: #3c366b; }
.fi-pink   { background: #fff5f7; color: #97266d; }

/* === 10. CHECK LISTS === */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 7px 0;
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent);
  margin-right: 10px;
}

/* === 11. SPOTLIGHT SECTIONS === */
.spotlight { padding: 80px 0; }

/* === 12. HOW-IT-WORKS STEPS === */
.step-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(43,108,176,.30);
}

/* === 13. PLAN CARDS === */
.pricing-wrap { padding: 64px 0; }
.plan-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 36px 28px;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-card.popular {
  border-color: var(--brand);
  box-shadow: 0 10px 32px rgba(43,108,176,.16);
  transform: translateY(-4px);
}
.plan-card.popular:hover { box-shadow: 0 16px 44px rgba(43,108,176,.22); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .05em;
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.plan-tagline {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 16px 0 4px;
  letter-spacing: -.5px;
}
.plan-price sup { font-size: 1rem; font-weight: 700; vertical-align: super; }
.plan-price sub { font-size: .85rem; color: var(--text-muted); font-weight: 400; }
.plan-limit { font-size: .8rem; color: var(--text-muted); margin-bottom: 20px; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.plan-features li {
  padding: 8px 0;
  font-size: .87rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--surface-alt);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.plan-features li:last-child { border: none; }
.plan-features .ok { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.plan-features .no { color: #cbd5e0; flex-shrink: 0; margin-top: 2px; }
.plan-features .no span { color: #cbd5e0; }
/* Legacy icon style */
.plan-features i { flex-shrink: 0; margin-top: 2px; }
.plan-features .na { color: #cbd5e0; }
.plan-features .na i { color: #cbd5e0; }

/* === 14. TESTIMONIALS === */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-light);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, border-left-color .2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
  border-left-color: var(--brand);
}
.testimonial-card .stars { color: #f6ad55; font-size: .85rem; margin-bottom: 12px; }
.testimonial-card p {
  font-size: .9rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
}

/* === 15. CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #1e4e8c 0%, #2b6cb0 50%, #3182ce 100%);
  padding: 72px 0;
  color: #fff;
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.3px;
}
.btn-cta-white {
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 14px 36px;
  font-size: 1rem;
  border: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-cta-white:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  text-decoration: none;
}

/* === 16. CONTACT PAGE === */
.contact-wrap { padding: 64px 0; }
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  height: 100%;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ii-blue   { background: #ebf8ff; color: #2b6cb0; }
.ii-green  { background: #f0fff4; color: #276749; }
.ii-orange { background: #fffaf0; color: #c05621; }
.ii-purple { background: #faf5ff; color: #6b46c1; }
.info-item h6 { font-weight: 700; margin-bottom: 3px; font-size: .9rem; color: var(--text-primary); }
.info-item p  { margin: 0; color: var(--text-muted); font-size: .87rem; line-height: 1.5; }
.info-item a  { color: var(--brand); text-decoration: none; }
.info-item a:hover { color: var(--brand-dark); }

.form-control {
  border-radius: var(--radius-md);
  border-color: var(--border);
  font-size: .9rem;
  color: var(--text-primary);
  padding: 10px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(43,108,176,.12);
  outline: none;
}
select.form-control { cursor: pointer; }
.btn-submit {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* === 17. FOOTER === */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 52px 0 24px;
}
.footer h6 {
  color: #e2e8f0;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: .88rem;
  letter-spacing: .02em;
}
.footer a {
  color: var(--footer-text);
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  font-size: .87rem;
  transition: color .15s;
}
.footer a:hover { color: var(--footer-hover); }
.footer p { font-size: .87rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 38px;
  padding-top: 22px;
  font-size: .8rem;
  color: var(--footer-link);
}

/* Minimal centered footer (sub-pages) */
.footer-minimal { background: var(--footer-bg); padding: 32px 0; color: var(--footer-text); font-size: .86rem; }
.footer-minimal a { color: var(--footer-text); text-decoration: none; transition: color .15s; }
.footer-minimal a:hover { color: var(--footer-hover); }

/* === 18. FAQ ACCORDION === */
.faq { padding: 64px 0; }
.faq .card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: none;
}
.faq .card-header {
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: .93rem;
  color: var(--text-primary);
  padding: 16px 20px;
  transition: background .15s;
}
.faq .card-header:hover { background: var(--surface-alt); }
.faq .card-body { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; padding: 16px 20px; }

/* === 19. FEATURE BLOCKS (features page) === */
.feat-block {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.feat-block:last-child { border: none; }
.feat-icon-lg {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  flex-shrink: 0;
  transition: transform .2s;
}
.feat-block:hover .feat-icon-lg { transform: scale(1.06); }

/* === 20. LEGAL PAGES (privacy, terms) === */
.legal-wrap { padding: 64px 0; }
.legal-toc {
  position: sticky;
  top: 80px;
}
.legal-toc h6 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 12px;
}
.legal-toc a {
  display: block;
  padding: 7px 12px;
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color .15s, border-left-color .15s, background .15s;
  line-height: 1.4;
}
.legal-toc a:hover { color: var(--brand); background: var(--brand-light); }
.legal-toc a.active { color: var(--brand); border-left-color: var(--brand); background: var(--brand-light); font-weight: 600; }
.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 90px;
}
.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -.1px;
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 8px;
}
.legal-section p,
.legal-section li {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-section ul { padding-left: 20px; }
.legal-section ul li { margin-bottom: 6px; }
.legal-highlight {
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 18px 0;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === 21. ENTRANCE ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-fade-up  { animation: fadeUp 0.52s cubic-bezier(.22,.68,0,1.2) both; }
.anim-fade-in  { animation: fadeIn 0.4s ease both; }
.anim-delay-1  { animation-delay: 0.10s; }
.anim-delay-2  { animation-delay: 0.20s; }
.anim-delay-3  { animation-delay: 0.32s; }
.anim-delay-4  { animation-delay: 0.44s; }

/* === 22. UTILITIES === */
.text-brand   { color: var(--brand) !important; }
.text-accent  { color: var(--accent) !important; }
.font-weight-800 { font-weight: 800 !important; }

/* === 23. RESPONSIVE === */

/* --- Tablet & Collapsed Navbar (< 992px) --- */
@media (max-width: 991px) {
  .hero { padding: 72px 0 56px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 64px 0; }
  .legal-toc { position: static; margin-bottom: 36px; }

  /* Navbar mobile: stack Sign In + CTA as full-width buttons */
  .nav-btn-group {
    flex-direction: column !important;
    width: 100%;
    margin-top: 12px;
    padding-bottom: 8px;
    gap: 8px !important;
  }
  .nav-btn-group .btn-nav-outline,
  .nav-btn-group .btn-nav-cta {
    width: 100%;
    text-align: center;
    display: block !important;
    padding: 10px 18px !important;
    font-size: .9rem;
  }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 767px) {
  /* Hero */
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 1.85rem; letter-spacing: -.3px; }
  .hero p.lead { font-size: 1rem; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.4rem; }

  /* Sub-page hero */
  .page-hero { padding: 52px 0 38px; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Sections */
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: .95rem; }

  /* Trust bar — compact */
  .trust-bar { padding: 12px 0; }
  .trust-bar p { font-size: .78rem; line-height: 1.7; }

  /* CTA banner */
  .cta-banner h2 { font-size: 1.6rem; }

  /* Spotlight sections */
  .spotlight { padding: 48px 0; }

  /* QR hero icon */
  .hero-qr-icon { font-size: 80px !important; }

  /* Contact */
  .contact-card { padding: 28px 22px; }

  /* Plan cards */
  .plan-card.popular { transform: none; }

  /* Hero buttons — full width */
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}

/* --- Small phones (< 480px) --- */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: 1.6rem; letter-spacing: -.2px; }
  .hero p.lead { font-size: .93rem; }
  .hero-stats { gap: 14px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-badge { font-size: .72rem; }

  /* Sub-page hero */
  .page-hero { padding: 40px 0 28px; }
  .page-hero h1 { font-size: 1.5rem; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-title { font-size: 1.35rem; }
  .section-sub { font-size: .9rem; }

  /* CTA banner */
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: 1.35rem; }

  /* Trust bar — hide separators visually via wrapping */
  .trust-bar p { font-size: .76rem; }

  /* Feature cards */
  .feature-card { padding: 22px 18px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.1rem; }

  /* Features page large icons */
  .feat-icon-lg { width: 56px; height: 56px; font-size: 1.5rem; border-radius: 12px; }

  /* How-it-works step circles */
  .step-circle { width: 48px; height: 48px; font-size: 1rem; }

  /* Plan cards */
  .plan-card { padding: 28px 20px; }
  .plan-price { font-size: 2.2rem; }

  /* Testimonials */
  .testimonial-card { padding: 20px 18px; }

  /* Legal */
  .legal-wrap { padding: 40px 0; }
  .legal-section { margin-bottom: 36px; }

  /* Contact */
  .contact-wrap { padding: 40px 0; }
  .contact-card { padding: 24px 18px; }
  .info-item { gap: 12px; margin-bottom: 20px; }
  .info-icon { width: 38px; height: 38px; font-size: .95rem; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
}
