/* ============================================================
   JB's Courier - Stylesheet
   ============================================================ */

:root {
  --primary: #1D4ED8;
  --primary-dark: #1E40AF;
  --primary-light: #3B82F6;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-muted: #F1F5F9;
  --text: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --border: #E2E8F0;
  --success: #10B981;
  --danger: #EF4444;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow: 0 4px 6px -1px rgba(15,23,42,.08), 0 2px 4px -1px rgba(15,23,42,.04);
  --shadow-lg: 0 20px 25px -5px rgba(15,23,42,.1), 0 10px 10px -5px rgba(15,23,42,.04);
  --shadow-blue: 0 10px 30px -10px rgba(29,78,216,.4);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --maxw: 1200px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.text-center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--primary-dark); color:#fff; transform: translateY(-2px); box-shadow: 0 15px 35px -10px rgba(29,78,216,.5); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color:#fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color:#fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-muted); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: var(--transition);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--text); }
.brand-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
}
.brand-icon svg { width: 22px; height: 22px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  color: var(--text);
  font-weight: 500; font-size: 15px;
}
.nav-links a:hover { background: var(--bg-muted); color: var(--primary); }
.nav-links a.active { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-muted);
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--text); }

/* Mobile menu — always hidden by default (shown via JS toggle on mobile only) */
.mobile-menu {
  position: fixed; top: 76px; left: 16px; right: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: none;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.mobile-menu a:hover { background: var(--bg-muted); color: var(--primary); }
.mobile-menu .btn { width: 100%; margin-top: 8px; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(.btn-whatsapp-mini) { display: none; }
  .nav-toggle { display: grid; place-items: center; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 50%, #2563EB 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -300px; left: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 .accent { color: var(--accent); }
.hero-content p.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; max-width: 480px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.9); }
.trust-item svg { flex: none; width: 22px; height: 22px; color: var(--accent); }

.hero-visual {
  position: relative;
  height: 480px;
  display: grid; place-items: center;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.hero-card-1 {
  top: 30px; left: 0;
  width: 240px;
  animation: floatA 6s ease-in-out infinite;
}
.hero-card-2 {
  bottom: 60px; right: 20px;
  width: 260px;
  animation: floatB 7s ease-in-out infinite;
}
.hero-card-3 {
  top: 200px; left: 50%; transform: translateX(-50%);
  width: 280px;
  animation: floatA 8s ease-in-out infinite reverse;
}
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatB { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-20px) translateX(-8px); } }

.hero-card .icon-box {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.hero-card .icon-box svg { width: 22px; height: 22px; color: #fff; }
.hero-card h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.hero-card p { font-size: 13px; color: rgba(255,255,255,.8); }
.hero-card .progress {
  margin-top: 12px;
  height: 6px; background: rgba(255,255,255,.2); border-radius: 3px; overflow: hidden;
}
.hero-card .progress-bar { height: 100%; background: var(--accent); border-radius: 3px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 360px; }
  .hero-card-1 { width: 200px; }
  .hero-card-2 { width: 220px; right: 0; }
  .hero-card-3 { width: 240px; }
}

/* ===== Page hero (smaller, for inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245,158,11,.15) 0%, transparent 50%);
}
.page-hero h1 { color: #fff; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.85); margin-top: 12px; max-width: 640px; margin-left:auto; margin-right:auto; position: relative; z-index: 1; }
.breadcrumb { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,.9); }

/* ===== Section heads ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(29,78,216,.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .05em;
}
.section-head p { color: var(--text-muted); max-width: 640px; margin: 12px auto 0; font-size: 17px; }

/* ===== Feature cards ===== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card.alt .feature-icon { background: linear-gradient(135deg, var(--accent) 0%, #FB923C 100%); }
.feature-card h3 { margin-bottom: 8px; font-size: 18px; }
.feature-card p { color: var(--text-muted); font-size: 15px; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

/* ===== Service cards ===== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 8px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); }

@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }

/* ===== Stats ===== */
.stats {
  background: var(--bg-soft);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.stat-card {
  text-align: center;
  padding: 28px 16px;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .suffix { color: var(--accent); }
.stat-label { color: var(--text-muted); font-weight: 500; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; } }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 0 auto; }
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 22px;
  box-shadow: 0 0 0 6px rgba(29,78,216,.08);
}
.step h4 { margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: 14px; }
@media (max-width: 800px) { .steps { grid-template-columns: repeat(2,1fr); } .steps::before { display:none; } }

/* ===== Cities / Coverage ===== */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city-chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}
.city-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.city-chip svg { width: 16px; height: 16px; color: var(--accent); }
@media (max-width: 700px) { .cities-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.t-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.t-stars { color: var(--accent); margin-bottom: 14px; font-size: 18px; }
.t-card blockquote { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.t-author strong { display: block; font-size: 15px; }
.t-author span { font-size: 13px; color: var(--text-light); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-blue);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); }
.cta-banner .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Forms ===== */
.form-wrap {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.field label .req { color: var(--danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(29,78,216,.1);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field .hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.field.error input,
.field.error select,
.field.error textarea { border-color: var(--danger); }
.field .err-msg { display: none; color: var(--danger); font-size: 13px; margin-top: 4px; }
.field.error .err-msg { display: block; }

.radio-row { display: flex; gap: 16px; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-weight: 500; cursor: pointer; }

.form-msg {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  display: none;
}
.form-msg.success { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; display: block; }
.form-msg.error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; display: block; }

@media (max-width: 700px) {
  .form-wrap { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ===== Legal pages (Terms / Privacy) ===== */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.legal-toc {
  position: sticky; top: 100px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 14px;
}
.legal-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; color: var(--text-light); }
.legal-toc a {
  display: block; padding: 8px 10px;
  color: var(--text-muted);
  border-radius: 6px;
}
.legal-toc a:hover { background: #fff; color: var(--primary); }

.legal-content { background: #fff; }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 32px; margin-bottom: 12px;
  padding-top: 16px;
  scroll-margin-top: 100px;
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 12px; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--text); }
.legal-meta {
  background: var(--bg-soft);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* ===== Footer ===== */
.footer {
  background: #0F172A;
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand-icon { background: var(--primary); }
.footer-about p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.footer ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.8); }
.footer-contact-item a:hover { color: var(--accent); }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  transition: var(--transition);
}
.socials a:hover { background: var(--primary); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37,211,102,.4);
  z-index: 90;
  transition: var(--transition);
  animation: pulseWA 2.4s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.08); color: #fff; }
.fab-wa svg { width: 32px; height: 32px; }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 10px 25px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 25px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
}

.btn-whatsapp-mini {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
}
.btn-whatsapp-mini:hover { color: #fff; background: #1FB857; }
.btn-whatsapp-mini svg { width: 20px; height: 20px; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== About / two-col ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.two-col .image-block {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.two-col .image-block svg { width: 50%; height: 50%; color: rgba(255,255,255,.4); }
.two-col h2 { margin-bottom: 16px; }
.two-col p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  color: var(--text);
}
.checklist li svg { width: 22px; height: 22px; color: var(--success); flex: none; margin-top: 2px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* ===== Service detail card (services page) ===== */
.svc-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-detail {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; gap: 20px;
  transition: var(--transition);
}
.svc-detail:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.svc-detail .icon {
  flex: none;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 14px;
  display: grid; place-items: center;
}
.svc-detail .icon svg { width: 28px; height: 28px; }
.svc-detail h3 { margin-bottom: 6px; }
.svc-detail p { color: var(--text-muted); font-size: 14.5px; }
@media (max-width: 700px) { .svc-detail-grid { grid-template-columns: 1fr; } }

/* ===== Contact info cards ===== */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px; text-align: center;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .icon {
  width: 56px; height: 56px;
  background: rgba(29,78,216,.1);
  color: var(--primary);
  border-radius: 14px;
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
.contact-card .icon svg { width: 26px; height: 26px; }
.contact-card h4 { margin-bottom: 4px; }
.contact-card a { color: var(--text); font-weight: 500; }
.contact-card a:hover { color: var(--primary); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
