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

:root {
  --primary: #1e3a5f;
  --primary-dark: #162d4a;
  --secondary: #f0a500;
  --accent: #e03050;
  --accent-hover: #c42844;
  --muted: #f5f7fa;
  --white: #ffffff;
  --dark: #0f172a;
  --text: #2d3748;
  --text-muted: #718096;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.4rem; border-radius: 8px; font-weight: 700;
  font-size: 0.875rem; border: none; cursor: pointer;
  transition: all 0.2s ease; gap: 8px;
}
.btn--accent { background: var(--accent); color: #fff !important; box-shadow: 0 4px 14px rgba(224,48,80,0.25); }
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff !important; }
.btn--secondary { background: var(--secondary); color: var(--text); }
.btn--secondary:hover { background: #d99400; transform: translateY(-1px); }
.btn--outline-white { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.25); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); }
.btn--outline-primary { background: transparent; border: 1.5px solid var(--primary); color: var(--primary); }
.btn--outline-primary:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 0.8rem 1.75rem; font-size: 0.9rem; }
.btn--sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--white); transition: all 0.3s; }
.header--scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-img { height: 32px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 1.6rem; }
.header__nav a { color: #243041; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; transition: color 0.2s; }
.header__nav a:hover { color: var(--primary); }
.header__nav .btn--menu-cta {
  padding: 0.9rem 1.5rem;
  margin-left: 0.75rem;
  border-radius: 0;
  background: linear-gradient(90deg, #f47a1f 0%, #f35f3b 40%, #ef2d63 100%);
  color: #fff;
}
.header__nav .btn--menu-cta:hover {
  color: #fff;
  opacity: 0.9;
}
.header__mobile { display: none; align-items: center; gap: 10px; }
.header__mobile .btn { color: #fff !important; }
.burger { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); padding: 4px; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 16px 20px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu--open { display: flex; }
.mobile-menu a { padding: 12px 16px; color: var(--text); font-weight: 500; font-size: 0.875rem; border-radius: 8px; }
.mobile-menu a:not(.btn):hover { background: var(--muted); }
.mobile-menu .btn:hover { background: var(--accent); color: #fff !important; }

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__mobile { display: flex; }
}

/* HERO */
.hero { padding-top: 64px; background: linear-gradient(135deg, #0a0f1e 0%, var(--primary) 50%, #1a2a40 100%); position: relative; overflow: hidden; }
.hero__bg-grid { position: absolute; inset: 0; opacity: 0.04; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px); background-size: 48px 48px; }
.hero__blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); }
.hero__blob--1 { top: 0; right: 0; width: 350px; height: 350px; background: rgba(240,165,0,0.12); }
.hero__blob--2 { bottom: 0; left: 0; width: 300px; height: 300px; background: rgba(224,48,80,0.08); }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; padding: 5rem 0 0; position: relative; z-index: 2; }
@media (max-width: 960px) { 
  .hero__inner { grid-template-columns: 1fr; padding: 3rem 0; } 
  .hero__content h1 { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .hero__inner { padding: 3rem 1.25rem 2rem; gap: 2rem; }
  .hero__content h1 { font-size: 1.75rem; letter-spacing: -0.01em; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .btn:hover { transform: none !important; }
}

.badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 600; padding: 6px 16px; border-radius: 99px; margin-bottom: 1.25rem; }
.hero__content h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 1.25rem; }
.text-secondary { color: var(--secondary); }
.hero__desc { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 2rem; }
@media (max-width: 480px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 12px; color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 500; }
.trust-item svg { width: 14px; height: 14px; color: var(--secondary); opacity: 0.9; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1rem; }
.hero__disclaimer { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

.hero__form { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-lg); }
.hero__form h2 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.form-subtitle { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 1.25rem; }
input, textarea, select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--muted); margin-bottom: 1rem; font-family: inherit; font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
input:focus, textarea:focus, select:focus { border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-footer { display: flex; justify-content: center; gap: 1.5rem; margin-top: 12px; color: #a0aec0; font-size: 0.75rem; }
.form-success { text-align: center; padding: 2rem 1rem; }
.success-icon { width: 56px; height: 56px; background: #f0fff4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #38a169; font-size: 1.5rem; }

.hero__wave { position: relative; height: 48px; }
.hero__wave svg { position: absolute; bottom: 0; width: 100%; }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 0.9rem; line-height: 1.7; }
.section-header--light h2 { color: #fff; }
.section-header--light p { color: rgba(255,255,255,0.6); }

.bg-muted { background: var(--muted); }
.bg-white { background: var(--white); }
.bg-primary { background: var(--primary); position: relative; overflow: hidden; }
.bg-dark { background: var(--dark); position: relative; overflow: hidden; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform 0.3s; }
.card:hover { transform: translateY(-2px); }
.card__icon { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary); }
.card__icon svg { width: 32px; height: 32px; }
.icon-primary { color: var(--primary); }
.icon-secondary { color: var(--secondary); }
.icon-accent { color: var(--accent); }
.icon-white { color: #fff; opacity: 0.8; }

.card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 0.8rem; color: var(--text-muted); }

/* PACKAGE */
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .package-grid { grid-template-columns: 1fr; } }
.package-left h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 800; margin-bottom: 1rem; }
.package-left p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.75rem; }
.label-tag { display: inline-block; background: rgba(240,165,0,0.15); color: #7a5800; font-size: 0.7rem; font-weight: 700; padding: 5px 12px; border-radius: 99px; margin-bottom: 1.25rem; text-transform: uppercase; }
.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .deliverables-grid { grid-template-columns: 1fr; } }
.deliverable { display: flex; gap: 10px; padding: 1rem; background: var(--muted); border-radius: 10px; border: 1px solid var(--border); }
.check { color: var(--primary); font-weight: 700; }
.deliverable strong { font-size: 0.8rem; display: block; margin-bottom: 4px; }
.deliverable p { font-size: 0.75rem; color: var(--text-muted); }

/* PROCESS */
.process-bg-grid { position: absolute; inset: 0; opacity: 0.03; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px); background-size: 40px 40px; }
.process-blob { position: absolute; top: 0; right: 0; width: 350px; height: 350px; background: rgba(240,165,0,0.08); border-radius: 50%; filter: blur(80px); }
.process-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem 1.5rem 1.5rem; transition: background 0.3s; position: relative; overflow: hidden; }
.process-card:hover { background: rgba(255,255,255,0.1); }
.process-num { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.1); margin-bottom: 0.75rem; line-height: 1; }
.process-tag { display: inline-block; background: rgba(240,165,0,0.15); color: #f0a500; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 99px; margin-bottom: 1rem; }
.process-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.process-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 1.5rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { background: #fff; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.pricing-header { background: #1e3a5f; padding: 2.5rem; color: #fff; }
.pricing-price { font-size: 3.5rem; font-weight: 900; color: #f0a500; line-height: 1; margin-bottom: 0.5rem; }
@media (max-width: 600px) { .pricing-price { font-size: 2.5rem; } }
.pricing-price span { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 400; margin-left: 10px; }
.pricing-label { font-size: 1.1rem; font-weight: 500; color: #fff; margin-bottom: 2rem; }
@media (max-width: 600px) { .pricing-label { font-size: 1rem; margin-bottom: 1.5rem; } }
.pricing-stats { display: flex; flex-wrap: wrap; gap: 3rem; margin-top: 1rem; }
@media (max-width: 600px) { .pricing-stats { gap: 1rem; } }
.pricing-stats div { flex: 0 0 auto; }
.pricing-stats strong { font-size: 1.75rem; display: block; line-height: 1.2; }
.pricing-stats small { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.divider-v { width: 1px; height: 50px; background: rgba(255,255,255,0.2); align-self: center; }
.pricing-body { padding: 2.5rem; flex-grow: 1; }
.includes-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #a0aec0; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
@media (max-width: 480px) { .includes-grid { grid-template-columns: 1fr; } }
.includes-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: #4a5568; }
.check-primary { color: #2d3748; font-weight: 400; font-size: 1rem; }
.pricing-faqs { display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-faq-card { background: #fff; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.pricing-faq-card strong { display: block; font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; color: #1a202c; }
.pricing-faq-card p { font-size: 0.875rem; color: #718096; line-height: 1.6; }

/* MODULES */
.module-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s ease;
}
.module-card:hover { 
  transform: translateY(-2px);
  background: #f1f5f9;
}
.module-dot {
  width: 8px;
  height: 8px;
  background: #f0a500;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.module-card strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: #1e293b; }
.module-card p { font-size: 0.825rem; color: #64748b; line-height: 1.5; }

/* CASE STUDIES */
.case-study { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
@media (max-width: 900px) { .case-study { grid-template-columns: 1fr; } }
.case-study__image { position: relative; min-height: 300px; background-size: cover; background-position: center; transition: background-image 0.3s ease-in-out; }
.case-study__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.case-study__tags { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px; }
.case-study__tags span { background: #fff; color: var(--text); font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; }
.case-study__content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.case-study__content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; transition: opacity 0.3s; }
.cs-block { margin-bottom: 1rem; }
.cs-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: #a0aec0; margin-bottom: 4px; }
.cs-block p { font-size: 0.875rem; }
.case-study__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; }
.cs-nav { display: flex; align-items: center; gap: 8px; }
.cs-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
#cs-counter { font-size: 0.8rem; color: #a0aec0; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: #fff; border: 1px solid #edf2f7; border-radius: 16px; padding: 2.5rem; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.04); position: relative; }
.quote-mark { font-size: 2.5rem; color: #fbd38d; opacity: 0.8; font-family: serif; position: absolute; top: 1.5rem; left: 1.5rem; line-height: 1; }
.testimonial-text { font-size: 1.05rem; color: #4a5568; line-height: 1.7; margin: 1rem 0 2rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.author-info strong { display: block; font-size: 1rem; color: #1a202c; margin-bottom: 2px; }
.author-info span { font-size: 0.825rem; color: #a0aec0; }
.testimonial-badge { position: absolute; bottom: 2.5rem; right: 2.5rem; background: #ebf4ff; color: #1e3a5f; font-size: 0.72rem; font-weight: 700; padding: 6px 14px; border-radius: 99px; }
@media (max-width: 600px) {
  .testimonial-badge { position: static; margin-top: 1.5rem; display: inline-block; }
  .testimonial-card { padding: 2rem 1.5rem; }
}

/* TRUST CARDS (Healthcare Constraints) */
.trust-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.trust-blob--1 { top: 0; left: 0; width: 300px; height: 300px; background: var(--primary); }
.trust-blob--2 { bottom: 0; right: 0; width: 280px; height: 280px; background: var(--secondary); }
.trust-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.75rem; color: #fff; height: 100%; transition: background 0.3s; }
.trust-card:hover { background: rgba(255,255,255,0.08); }
.trust-card__icon { font-size: 1.25rem; margin-bottom: 1.25rem; display: block; }
.trust-card__icon svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.trust-card p { font-size: 0.825rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; padding: 1rem 1.25rem; border: none; background: none; text-align: left; font-weight: 600; display: flex; justify-content: space-between; cursor: pointer; }
.faq-q span { font-size: 0.8rem; color: #a0aec0; transition: transform 0.2s; }
.faq-item--open .faq-q span { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.25rem 1.25rem; font-size: 0.85rem; color: var(--text-muted); }
.faq-a p { margin-bottom: 1rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-item--open .faq-a { display: block; }

/* POST-CONTACT SECTION */
.post-contact-grid { margin-top: 3rem; }
.post-contact-item { text-align: left; }
.post-contact-num { width: 44px; height: 44px; border: 1px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: var(--accent); margin-bottom: 1.5rem; position: relative; }
.post-contact-num::after { content: ''; position: absolute; inset: -4px; border: 1px solid rgba(224, 48, 80, 0.1); border-radius: 50%; }
.post-contact-item h3 { font-size: 1.125rem; font-weight: 700; color: #1e293b; margin-bottom: 1rem; }
.post-contact-item p { font-size: 0.95rem; color: #64748b; line-height: 1.6; }

/* FINAL CTA */
.final-form-wrap { background: #fff; border-radius: 16px; padding: 2.5rem; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.final-form-wrap h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; color: #1a202c; }
.final-form-wrap .form-desc { font-size: 0.875rem; color: #718096; margin-bottom: 2rem; }
.final-form-wrap input, .final-form-wrap textarea { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 12px 16px; font-size: 0.9rem; width: 100%; transition: border-color 0.2s; }
.final-form-wrap input:focus, .final-form-wrap textarea:focus { outline: none; border-color: var(--secondary); }
.final-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .final-form-wrap .form-row { grid-template-columns: 1fr; } }
.final-form-wrap textarea { resize: none; margin-bottom: 1rem; }
.form-footer { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; color: #a0aec0; font-size: 0.8rem; }
.form-footer span { display: flex; align-items: center; gap: 6px; }

/* FOOTER */
.footer { background: #fff; color: #1a202c; padding: 5rem 0 0; border-top: 1px solid #e2e8f0; }
.footer__grid { display: grid; grid-template-columns: 2.5fr 1.5fr 1fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer__col--about { max-width: 380px; }
.footer__logo { height: 40px; width: auto; margin-bottom: 1.5rem; }
.footer__desc { font-size: 0.85rem; color: #64748b; line-height: 1.8; }

.footer__col h4 { font-size: 0.9rem; font-weight: 700; color: #1e293b; margin-bottom: 1rem; }
.footer__col p { font-size: 0.85rem; color: #64748b; margin-bottom: 0.4rem; }

.footer__link { display: block; font-size: 0.875rem; transition: color 0.2s; font-weight: 700; }
.footer__link--accent { color: var(--accent); }
.footer__link--accent:hover { color: var(--accent-hover); }

.footer__menu { list-style: none; padding: 0; margin: 0; }
.footer__menu li { margin-bottom: 0.8rem; }
.footer__menu a { font-size: 0.8rem; font-weight: 700; color: #475569; text-transform: uppercase; transition: color 0.2s; }
.footer__menu a:hover { color: var(--accent); }

.footer__copyright { background: #f1f5f9; padding: 2rem 0; color: #64748b; font-size: 0.85rem; }
.footer__copyright strong { color: #1e293b; }

/* STICKY MOBILE CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: #fff; border-top: 1px solid var(--border); padding: 12px 16px; display: none; box-shadow: 0 -4px 20px -4px rgba(0,0,0,0.1); }
@media (max-width: 768px) { .sticky-cta { display: block; } body { padding-bottom: 72px; } }
