:root {
  --bg: #f5f7fb;
  --bg-alt: #eef4ff;
  --panel: #ffffff;
  --panel-soft: #eef4ff;
  --text: #121a2b;
  --muted: #5d6981;
  --primary: #123ed6;
  --primary-dark: #0a1f4d;
  --primary-soft: rgba(18, 62, 214, 0.08);
  --secondary: #f59e2a;
  --secondary-soft: #fff2df;
  --gold: #f5d98a;
  --border: rgba(18, 26, 43, 0.08);
  --shadow: 0 22px 60px rgba(18, 30, 68, 0.14);
  --shadow-soft: 0 14px 28px rgba(18, 30, 68, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(116, 164, 255, 0.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(245, 217, 138, 0.14), transparent 22%),
    linear-gradient(180deg, #f8faff 0%, #eef4ff 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 26, 43, 0.06);
}

.topbar {
  background: linear-gradient(90deg, #091a3a 0%, #112a66 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
}

.topbar a {
  color: white;
  font-weight: 700;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), #2f5bef 52%, #7aaeff 100%);
  box-shadow: 0 16px 32px rgba(18, 62, 214, 0.28);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.52);
  border-radius: 10px;
}

.brand-mark-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: white;
  font-size: 1.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 500;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0.94rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2d67f5 55%, #79a5ff);
  color: white;
  box-shadow: 0 18px 30px rgba(18, 62, 214, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid rgba(18, 26, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 72px 0 46px;
  background: radial-gradient(circle at top left, rgba(104, 161, 255, 0.15), transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, #f8fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  margin-top: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--secondary), var(--gold));
}

.lead {
  margin-top: 20px;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--primary-dark);
  font-weight: 600;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
}

.hero-points li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 12px;
  font-weight: 800;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.96));
  border: 1px solid rgba(18, 26, 43, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.chip {
  display: inline-flex;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: #a85200;
  font-weight: 700;
  font-size: 0.8rem;
}

.rating {
  color: #ff9e37;
  font-weight: 700;
}

.mini-stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.mini-stat:last-of-type {
  border-bottom: none;
}

.mini-stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}

.mini-stat span,
.card-footer {
  color: var(--muted);
}

.card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.stats-bar {
  background: linear-gradient(135deg, #0a1a3a 0%, #102a68 100%);
  color: white;
  padding: 18px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.stats-grid div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats-grid strong {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  letter-spacing: -0.06em;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 96px 0;
}

.alt-section {
  background: linear-gradient(180deg, #edf4ff 0%, #f9fbff 100%);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.narrow {
  max-width: 620px;
}

.value-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(237, 244, 255, 0.9));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 26, 43, 0.06);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(19, 71, 216, 0.12), rgba(255, 155, 56, 0.2));
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
}

.value-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 26, 43, 0.06);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(20, 41, 86, 0.09);
  border-color: rgba(19, 71, 216, 0.18);
}

.icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--panel-soft), var(--secondary-soft));
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 26, 43, 0.06);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
}

.process-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.process-step h3 {
  margin: 0 0 12px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.industry-pill {
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(18, 26, 43, 0.08);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.testimonial-section {
  background: linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.quote-card {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid rgba(18, 26, 43, 0.06);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.04rem;
}

.person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
}

.person strong {
  color: var(--text);
}

.cta-section {
  padding: 30px 0 90px;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0b1736 0%, #122d72 58%, #1844d6 100%);
  color: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 12px;
  padding: 0.9rem 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: #cfe3ff;
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f4f8ff;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 90px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.footer-contact {
  color: var(--text);
  font-weight: 700;
}

.footer-contact a {
  color: var(--primary);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2ee67b, #1ebc5c);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(30, 188, 92, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 40px rgba(30, 188, 92, 0.36);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hero-grid,
  .cta-wrap,
  .cards-grid,
  .process-grid,
  .stats-grid,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .cards-grid,
  .stats-grid,
  .process-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .section {
    padding: 72px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-wrap {
    padding: 24px 18px;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
