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

body {
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 30, 0.65);
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,87,184,0.12) 0%, transparent 50%, rgba(0,166,81,0.10) 100%);
  z-index: 0;
}

.wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .wrap { flex-direction: column; }
}

@media (max-width: 600px) {
  body { padding: 20px 12px 60px; }

  .page-wrap { gap: 14px; }

  /* Logo */
  .logo-header { padding: 18px 20px; }
  .logo-header img { width: 100%; max-width: 260px; }

  /* Main card */
  .card { padding: 0 20px 28px; }
  .card::before { margin: 0 -20px 28px; }

  .tagline { font-size: 0.88rem; margin-bottom: 20px; }

  /* Contact block */
  .contact-block { padding: 14px 16px; }
  .contact-row { font-size: 0.82rem; }
  .contact-row a { word-break: break-all; }

  /* CTA buttons */
  .cta-row { flex-direction: column; align-items: stretch; }
  .contact-btn, .whatsapp-btn {
    justify-content: center;
    width: 100%;
  }

  /* Stats */
  .stats-row { margin-top: 20px; padding: 14px 0; gap: 6px; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.62rem; }

  /* Services grid — single column on small screens */
  .services-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }

  /* Certs card */
  .certs-card { padding: 0 20px 24px; }
  .certs-card::before { margin: 0 -20px 24px; }

  /* Profile row */
  .profile-img-wrap { width: 68px; height: 68px; }
  .profile-name { font-size: 0.95rem; }
  .profile-row { gap: 14px; }

  /* Testimonials card */
  .testimonials-card { padding: 0 20px 24px; }
  .testimonials-card::before { margin: 0 -20px 24px; }
  .testimonial-text { font-size: 0.86rem; }
  .testimonials-label { margin-bottom: 14px; }

  /* Footer */
  footer { font-size: 0.65rem; padding: 10px 16px; }
}

/* ── Main card ── */
.card {
  flex: 1;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 20px;
  padding: 0 52px 48px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  overflow: hidden;
}
.card::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #0057B8, #00A651);
  margin: 0 -52px 40px;
}

.page-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.logo-header {
  width: 100%;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 20px;
  padding: 28px 40px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
}
.logo-header img { width: 360px; height: auto; display: block; margin: 0 auto; }

.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,87,184,0.08), rgba(0,166,81,0.08));
  border: 1px solid rgba(0,87,184,0.20);
  color: #0057B8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #0057B8 30%, #00A651 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-block {
  background: linear-gradient(135deg, rgba(0,87,184,0.04), rgba(0,166,81,0.04));
  border: 1px solid rgba(0,87,184,0.12);
  border-radius: 14px;
  padding: 20px 24px;
}
.contact-block-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact { display: flex; flex-direction: column; gap: 11px; }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #444; }
.contact-row a { color: #333; text-decoration: none; font-weight: 500; }
.contact-row a:hover { color: #0057B8; }
.contact-icon { color: #0057B8; flex-shrink: 0; }

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0057B8, #00A651);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,87,184,0.30);
  transition: opacity 0.2s, transform 0.2s;
}
.contact-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.cta-section {
  text-align: center;
  margin-top: 28px;
}

.cta-hook {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-row .contact-btn { margin-top: 0; }

.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: #888;
}
.cta-reassurance svg { color: #00A651; flex-shrink: 0; }

.contact-btn--primary {
  padding: 14px 34px;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(0,87,184,0.40);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  letter-spacing: 0.4px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: opacity 0.2s, transform 0.2s;
}
.whatsapp-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #006BFF;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  letter-spacing: 0.4px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,107,255,0.35);
  transition: opacity 0.2s, transform 0.2s;
}
.calendly-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Contact modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,14,30,0.70);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex !important; }

.modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.40);
  animation: fadeUp 0.25s ease both;
}
.modal-header {
  height: 5px;
  background: linear-gradient(90deg, #0057B8, #00A651);
}
.modal-body {
  padding: 32px 36px 36px;
}
.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0A0F1E;
  margin-bottom: 6px;
}
.modal-subtitle {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 24px;
}
.modal-close {
  float: right;
  margin-top: -2px;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0;
  transition: color 0.15s;
}
.modal-close:hover { color: #333; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
}
.form-group input,
.form-group textarea {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.9rem;
  color: #0A0F1E;
  background: #f7f8fa;
  border: 1px solid rgba(0,87,184,0.15);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0057B8;
  box-shadow: 0 0 0 3px rgba(0,87,184,0.10);
}
.form-group textarea { height: 110px; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  background: linear-gradient(135deg, #0057B8, #00A651);
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,87,184,0.25);
  transition: opacity 0.2s, transform 0.2s;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0 8px;
}
.form-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057B8, #00A651);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A0F1E;
  margin-bottom: 8px;
  background: none;
  -webkit-text-fill-color: #0A0F1E;
}
.form-success p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* ── Certs card ── */
.certs-card {
  flex: 1;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 20px;
  padding: 0 40px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
  overflow: hidden;
}
.certs-card::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #0057B8, #00A651);
  margin: 0 -40px 32px;
}

.cert-count-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,87,184,0.08), rgba(0,166,81,0.08));
  border: 1px solid rgba(0,87,184,0.20);
  color: #0057B8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.cert-groups { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.cert-group-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 20px;
  line-height: 1.3;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
.badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.30);
}
.badge-icon {
  flex-shrink: 0;
  opacity: 1;
}

.trailblazer-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00A651;
  text-decoration: none;
}
.trailblazer-link:hover { text-decoration: underline; }

/* ── Stats row ── */
.stats-row {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,87,184,0.10);
  border-bottom: 1px solid rgba(0,87,184,0.10);
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0057B8, #00A651);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(0,87,184,0.12);
  align-self: stretch;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.service-card {
  background: linear-gradient(135deg, rgba(0,87,184,0.04), rgba(0,166,81,0.04));
  border: 1px solid rgba(0,87,184,0.10);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}
.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0057B8, #00A651);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.service-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 4px;
}
.service-desc {
  font-size: 0.72rem;
  color: #777;
  line-height: 1.5;
}

/* ── Testimonials card ── */
.testimonials-card {
  width: 100%;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 20px;
  padding: 0 48px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
  overflow: hidden;
}
.testimonials-card::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #0057B8, #00A651);
  margin: 0 -48px 32px;
}
.testimonials-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.testimonials-track-wrap {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
  text-align: center;
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, #0057B8, #00A651);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: block;
  text-align: center;
}
.testimonial-text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-author {
  text-align: center;
  border-top: 1px solid rgba(0,87,184,0.08);
  padding-top: 14px;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0A0F1E;
  min-height: 18px;
}
.testimonial-role {
  font-size: 0.75rem;
  color: #888;
  margin-top: 3px;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.testimonial-prev,
.testimonial-next {
  background: none;
  border: 1px solid rgba(0,87,184,0.20);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #0057B8;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #0057B8;
  color: #fff;
}
.testimonial-dots {
  display: flex;
  gap: 7px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,87,184,0.20);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.testimonial-dot.active {
  background: linear-gradient(135deg, #0057B8, #00A651);
  transform: scale(1.25);
}

/* ── Footer ── */
footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 24px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  z-index: 1;
}

/* ── Profile row ── */
.profile-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.profile-img-wrap {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #0057B8, #00A651);
  flex-shrink: 0;
}
.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.profile-info { text-align: left; }
.profile-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A0F1E;
  margin-bottom: 3px;
}
.profile-title {
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 4px;
  line-height: 1.4;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0057B8;
  text-decoration: none;
}
.linkedin-link:hover { text-decoration: underline; }

.profile-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00A651;
  letter-spacing: 0.3px;
}
