:root {
  --bf-blue: #3b82f6;
  --bf-purple: #8b5cf6;
  --bf-pink: #ec4899;
  --bf-dark: #111827;
  --bf-gray: #6b7280;
  --bf-light: #f8fafc;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; height: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-purple), var(--bf-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-purple));
}

.gradient-bg-full {
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-purple), var(--bf-pink));
}

.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}
.logo-link:hover .logo-img { transform: scale(1.1) rotate(6deg); }
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}

nav.desktop-nav { display: flex; align-items: center; gap: 2rem; }
nav.desktop-nav a {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
nav.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bf-blue), var(--bf-purple));
  transition: width 0.3s;
}
nav.desktop-nav a:hover { color: var(--bf-blue); }
nav.desktop-nav a:hover::after { width: 100%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  color: #374151;
  font-weight: 600;
  border: 2px solid #d1d5db;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--bf-blue);
  color: var(--bf-blue);
  transform: translateY(-2px);
}

/* Mobile menu */
.burger { display: none; background: none; border: none; padding: 0.75rem; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: #374151; margin: 6px 0; transition: all 0.3s; }
.mobile-nav { display: none; }

@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  .burger { display: block; }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e5e7eb;
  }
  .mobile-nav a, .mobile-nav .btn-primary {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 500;
    color: #374151;
  }
  .mobile-nav a:hover { background: #eff6ff; color: var(--bf-blue); }
  .mobile-nav .btn-primary { color: #fff; text-align: center; margin-top: 0.5rem; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #eff6ff, #f3e8ff);
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 900px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e40af;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.stat-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s;
}
.stat-card:hover { transform: scale(1.05); }
.stat-value {
  font-size: 2rem;
  font-weight: 800;
}
.stat-label { color: #6b7280; font-weight: 500; font-size: 0.875rem; }

/* Sections */
.section {
  padding: 5rem 1.5rem;
}
.section-alt {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-title p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}
.container { max-width: 1200px; margin: 0 auto; }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(6deg); }
.service-card h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: #6b7280; margin-bottom: 1.25rem; }
.service-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.service-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.service-card .btn-service {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.service-card .btn-service:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); }

/* Color variants */
.color-green .service-icon { background: linear-gradient(135deg, #22c55e, #10b981); }
.color-green .service-features li::before { background: linear-gradient(135deg, #22c55e, #10b981); }
.color-green .btn-service { background: linear-gradient(135deg, #22c55e, #10b981); }

.color-pink .service-icon { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.color-pink .service-features li::before { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.color-pink .btn-service { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.color-orange .service-icon { background: linear-gradient(135deg, #f97316, #ef4444); }
.color-orange .service-features li::before { background: linear-gradient(135deg, #f97316, #ef4444); }
.color-orange .btn-service { background: linear-gradient(135deg, #f97316, #ef4444); }

.color-indigo .service-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.color-indigo .service-features li::before { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.color-indigo .btn-service { background: linear-gradient(135deg, #6366f1, #8b5cf6); }

.color-blue .service-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.color-blue .service-features li::before { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.color-blue .btn-service { background: linear-gradient(135deg, #3b82f6, #06b6d4); }

.color-purple .service-icon { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.color-purple .service-features li::before { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.color-purple .btn-service { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.feature-card {
  padding: 2rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  transition: all 0.4s ease;
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: transform 0.4s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(6deg); }
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: #6b7280; }
.feature-bar {
  width: 0;
  height: 3px;
  border-radius: 2px;
  margin-top: 1rem;
  transition: width 0.5s ease;
}
.feature-card:hover .feature-bar { width: 100%; }

/* About / Founder */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.founder-portrait {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.founder-portrait::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-purple), var(--bf-pink)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.founder-name { text-align: center; margin-top: 1.5rem; }
.founder-name h3 { font-size: 1.75rem; font-weight: 800; }
.founder-name p { color: var(--bf-blue); font-weight: 600; font-size: 1.125rem; }

.founder-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  font-size: 1.125rem;
}
.social-icon:hover { transform: scale(1.1) rotate(6deg); }
.social-linkedin { background: linear-gradient(135deg, #0077b5, #0a66c2); }
.social-instagram { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.social-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }

.founder-detail {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.founder-detail h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.founder-detail p { color: #4b5563; margin-bottom: 1.5rem; line-height: 1.8; }

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.expertise-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #eff6ff, #f3e8ff);
  color: #1e40af;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

.achievement-list { display: flex; flex-direction: column; gap: 0.75rem; }
.achievement-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #4b5563;
}
.achievement-list li::before {
  content: '●';
  color: var(--bf-blue);
  font-size: 0.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  transition: transform 0.3s;
}
.stat-box:hover { transform: scale(1.05); }
.stat-box .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-item p { color: #6b7280; }

.newsletter-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.newsletter-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; text-align: center; }
.newsletter-box > p { color: #6b7280; text-align: center; margin-bottom: 1.5rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.newsletter-form label { font-size: 0.875rem; font-weight: 500; color: #374151; }
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s;
  outline: none;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--bf-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.newsletter-form .btn-submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
}
.newsletter-form .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); }
.newsletter-form .form-note { font-size: 0.75rem; color: #9ca3af; text-align: center; }

/* Footer */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin: 1rem 0 1.5rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-icon {
  width: 44px;
  height: 44px;
  background: #1f2937;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s;
}
.footer-social-icon:hover {
  background: linear-gradient(135deg, var(--bf-blue), var(--bf-purple));
  color: #fff;
  transform: scale(1.1) rotate(6deg);
}

.footer-links h4, .footer-company h4 { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links li, .footer-company li { margin-bottom: 0.75rem; }
.footer-links a, .footer-company a {
  color: #9ca3af;
  transition: all 0.3s;
  position: relative;
}
.footer-links a:hover, .footer-company a:hover { color: #fff; padding-left: 8px; }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #9ca3af; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }

/* About page */
.about-hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, #f8fafc, #eff6ff, #f3e8ff);
  text-align: center;
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.about-hero p {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
.story-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; }
.story-text p { color: #4b5563; margin-bottom: 1.25rem; line-height: 1.8; }

.mission-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mission-card p { color: #4b5563; line-height: 1.7; }
.mission-card + .mission-card { margin-top: 1.5rem; }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) { .founders-grid { grid-template-columns: 1fr; } }

.founder-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}
.founder-card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.founder-card-name { text-align: center; }
.founder-card-name h3 { font-size: 1.5rem; font-weight: 800; }
.founder-card-name p { color: var(--bf-blue); font-weight: 600; margin-bottom: 1rem; }
.founder-card-bio { color: #4b5563; line-height: 1.7; margin-bottom: 1.25rem; }

/* SVG icons inline */
.icon-svg { width: 1.25em; height: 1.25em; vertical-align: middle; }

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
}

/* ===== Multipager additions ===== */
.page-hero{background:linear-gradient(135deg,#3b82f6,#8b5cf6,#ec4899);color:#fff;text-align:center;padding:7rem 1.5rem 3.5rem}
.page-hero h1{font-size:2.6rem;font-weight:800;margin:0 0 .6rem}
.page-hero p{max-width:620px;margin:0 auto;opacity:.95;font-size:1.05rem}
.page-hero .crumb{margin-top:1rem;font-size:.9rem;opacity:.9}
.page-hero .crumb a{color:#fff;text-decoration:underline}
.svc-detail-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:3rem;align-items:start}
.svc-detail-grid .lead p{color:#4b5563;line-height:1.8;margin:0 0 1rem}
.check-list{list-style:none;padding:0;margin:1.25rem 0}
.check-list li{position:relative;padding:.6rem 0 .6rem 2rem;color:#374151;border-bottom:1px solid #eef0f4}
.check-list li:before{content:"\f058";font-family:"Font Awesome 6 Free";font-weight:900;color:#22c55e;position:absolute;left:0;top:.65rem}
.svc-aside{background:#f8fafc;border:1px solid #eef0f4;border-radius:1rem;padding:1.75rem;position:sticky;top:100px}
.svc-aside .service-icon{margin-bottom:1rem}
.svc-aside h3{margin:0 0 .4rem}
.svc-aside p{color:#6b7280;font-size:.95rem}
.svc-aside .btn-service{width:100%;margin-top:1rem}
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem;margin-top:1rem}
.step{background:#fff;border:1px solid #eef0f4;border-radius:1rem;padding:1.5rem;box-shadow:0 6px 20px rgba(0,0,0,.05)}
.step .num{width:40px;height:40px;border-radius:.75rem;background:linear-gradient(135deg,#3b82f6,#8b5cf6);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;margin-bottom:.75rem}
.cta-band{background:linear-gradient(135deg,#3b82f6,#8b5cf6,#ec4899);color:#fff;border-radius:1.25rem;padding:3rem 2rem;text-align:center}
.cta-band h2{color:#fff;font-size:1.9rem;margin:0 0 .6rem}
.cta-band p{opacity:.95;max-width:560px;margin:0 auto 1.5rem}
.cta-band .btn-outline{border-color:#fff;color:#fff}
@media(max-width:860px){.svc-detail-grid{grid-template-columns:1fr}.svc-aside{position:static}}

html,body{background:#ffffff;}
