:root {
  --mc-blue: #1E3A8A;
  --mc-blue-2: #0F2361;
  --mc-teal: #14B8A6;
  --mc-orange: #F97316;
  --mc-dark: #0F172A;
  --mc-muted: #64748B;
  --mc-soft: #F8FAFC;
  --mc-line: #E2E8F0;
  --mc-white: #FFFFFF;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, .12);
  --shadow-card: 0 14px 35px rgba(30, 58, 138, .12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--mc-dark);
  background: var(--mc-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  transition: all .25s ease;
  box-shadow: 0 8px 30px rgba(15, 23, 42, .04);
}
.navbar { padding: 14px 0; }
.navbar-brand { padding-top: 0; padding-bottom: 0; }
.brand-logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  max-height: 54px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, .10));
}
.nav-link {
  color: #334155;
  font-weight: 700;
  font-size: .94rem;
  padding: .7rem .78rem !important;
  transition: color .2s ease, transform .2s ease;
}
.nav-link:hover { color: var(--mc-blue); transform: translateY(-1px); }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .82rem 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mc-blue); border-color: var(--mc-blue); box-shadow: 0 10px 24px rgba(30, 58, 138, .2); }
.btn-primary:hover { background: var(--mc-blue-2); border-color: var(--mc-blue-2); color: #fff; }
.btn-accent { background: var(--mc-orange); border-color: var(--mc-orange); color: #fff; box-shadow: 0 15px 30px rgba(249, 115, 22, .26); }
.btn-accent:hover { background: #ea580c; border-color: #ea580c; color: #fff; }
.btn-outline-light { border: 1px solid rgba(255, 255, 255, .55); color: #fff; background: rgba(255, 255, 255, .08); }
.btn-outline-light:hover { background: #fff; color: var(--mc-blue); }
.btn-soft { background: #EAF8F6; color: #0F766E; border: 1px solid rgba(20, 184, 166, .16); }
.btn-soft:hover { background: #D0F2EF; color: #0F766E; }

/* ─── Hero ─────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 138px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 184, 166, .36), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(249, 115, 22, .28), transparent 24%),
    linear-gradient(135deg, var(--mc-blue-2) 0%, var(--mc-blue) 54%, #0f766e 118%);
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 92%);
}
.hero-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -180px;
  bottom: -240px;
  background: rgba(20, 184, 166, .26);
  filter: blur(8px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .8rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
}
.eyebrow.dark { background: #EAF8F6; color: #0F766E; border-color: rgba(20, 184, 166, .18); }

.hero-section h1 {
  margin: 22px 0 18px;
  font-weight: 900;
  line-height: 1.02;
  font-size: clamp(2.65rem, 5vw, 5.4rem);
  letter-spacing: -.055em;
}
.hero-lead {
  font-size: 1.17rem;
  color: rgba(255, 255, 255, .86);
  max-width: 660px;
  margin-bottom: 26px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 25px; }
.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #DDFBF7;
  font-size: .94rem;
  font-weight: 700;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 6px; }

/* ─── Dashboard Hero ──────────────────────────────────── */
.dashboard-shell {
  position: relative;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 34px;
  padding: 16px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, .3);
  backdrop-filter: blur(18px);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.dashboard-card {
  background: #fff;
  color: var(--mc-dark);
  border-radius: 26px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash-logo { font-weight: 900; color: var(--mc-blue); }
.dash-badge {
  font-size: .75rem;
  background: #DCFCE7;
  color: #166534;
  border-radius: 999px;
  padding: .35rem .6rem;
  font-weight: 800;
}
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.metric { background: #F8FAFC; border: 1px solid var(--mc-line); border-radius: 18px; padding: 13px; }
.metric strong { font-size: 1.35rem; color: var(--mc-blue); display: block; line-height: 1.1; }
.metric span { font-size: .76rem; color: var(--mc-muted); font-weight: 700; }
.chart-box {
  height: 170px;
  border-radius: 20px;
  background: linear-gradient(180deg, #F8FAFC, #EEF2FF);
  border: 1px solid var(--mc-line);
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.bar {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--mc-teal), var(--mc-blue));
  min-height: 28px;
  animation: grow 1.2s ease both;
}
.bar:nth-child(1) { height: 42%; }
.bar:nth-child(2) { height: 64%; animation-delay: .08s; }
.bar:nth-child(3) { height: 48%; animation-delay: .16s; }
.bar:nth-child(4) { height: 78%; animation-delay: .24s; }
.bar:nth-child(5) { height: 58%; animation-delay: .32s; }
.bar:nth-child(6) { height: 88%; animation-delay: .4s; }
@keyframes grow { from { height: 10%; opacity: .2; } to { opacity: 1; } }
.dash-list { margin-top: 15px; display: grid; gap: 9px; }
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: 15px;
  padding: 10px 12px;
  font-size: .83rem;
}
.dash-row span:first-child { font-weight: 800; }
.dash-row span:last-child { color: var(--mc-teal); font-weight: 900; }

/* ─── Sections ─────────────────────────────────────────── */
.section-pad { padding: 94px 0; }
.section-muted { background: var(--mc-soft); }
.section-heading { max-width: 830px; margin-bottom: 46px; }
.section-heading h2, .section-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 14px 0;
  color: var(--mc-dark);
}
.section-heading p, .section-copy { font-size: 1.08rem; color: var(--mc-muted); margin: 0; }

/* ─── Trust Band ──────────────────────────────────────── */
.trust-band { position: relative; margin-top: -44px; z-index: 5; padding-bottom: 0; }
.trust-panel {
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-item {
  padding: 18px;
  border-radius: 20px;
  background: #F8FAFC;
  border: 1px solid #EEF2F7;
  transition: all .25s ease;
}
.trust-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.trust-item i { font-size: 1.55rem; color: var(--mc-teal); margin-bottom: 8px; display: block; }
.trust-item strong { display: block; color: var(--mc-dark); font-size: 1rem; margin-bottom: 4px; }
.trust-item span { color: var(--mc-muted); font-size: .9rem; }

/* ─── Problem / Solution ────────────────────────────────── */
.problem-card {
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 32px;
  height: 100%;
}
.problem-list { display: grid; gap: 14px; margin-top: 20px; }
.problem-list div { display: flex; gap: 10px; align-items: flex-start; color: #334155; font-weight: 700; }
.problem-list i { color: #EF4444; margin-top: 2px; flex: none; }
.solution-check i { color: var(--mc-teal) !important; }

/* ─── Feature / Use-case cards ───────────────────────── */
.feature-grid, .usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card, .usecase-card, .module-card, .plan-card, .resource-card {
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all .25s ease;
  height: 100%;
}
.feature-card:hover, .module-card:hover, .usecase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card i, .module-card i, .usecase-card i {
  font-size: 1.85rem;
  color: var(--mc-blue);
  background: #EEF2FF;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 16px;
  display: inline-flex;
}
.feature-card h3, .module-card h3, .usecase-card h3 { font-size: 1.18rem; font-weight: 900; margin-bottom: 8px; color: var(--mc-dark); }
.feature-card p, .module-card p, .usecase-card p { color: var(--mc-muted); margin: 0; font-size: .96rem; }

/* ─── Comparison section ─────────────────────────────── */
.comparison-section {
  background: linear-gradient(135deg, #0F172A, #1E3A8A);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.comparison-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 184, 166, .28), transparent 32%),
    radial-gradient(circle at 80% 35%, rgba(249, 115, 22, .22), transparent 28%);
}
.comparison-section .container { position: relative; z-index: 2; }
.comparison-box {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(15px);
}
.comparison-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.comparison-item:last-child { border-bottom: 0; }
.comparison-item i { color: var(--mc-orange); font-size: 1.35rem; flex: none; margin-top: 2px; }
.comparison-item strong { display: block; color: #fff; margin-bottom: 4px; }
.comparison-item span { color: rgba(255, 255, 255, .75); font-size: .96rem; }

/* ─── Modules ─────────────────────────────────────────── */
.modules-wrapper {
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: 32px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-card { background: linear-gradient(180deg, #fff, #F8FAFC); }
.module-card ul { padding: 0; margin: 14px 0 0; list-style: none; display: grid; gap: 8px; }
.module-card li { font-size: .9rem; color: #475569; display: flex; gap: 8px; align-items: flex-start; }
.module-card li::before { content: "✓"; color: var(--mc-teal); font-weight: 900; flex: none; }

/* ─── ROI ─────────────────────────────────────────────── */
.roi-card {
  background: linear-gradient(180deg, #fff, #F8FAFC);
  border: 1px solid var(--mc-line);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.roi-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--mc-line);
  margin-bottom: 12px;
}
.roi-step:last-child { margin-bottom: 0; }
.roi-step span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #EAF8F6;
  color: #0F766E;
  font-weight: 900;
  flex: none;
}
.roi-step strong { font-size: .98rem; }

/* ─── Logos Band ─────────────────────────────────────── */
.logos-band {
  border-top: 1px solid var(--mc-line);
  border-bottom: 1px solid var(--mc-line);
  background: #fff;
  padding: 38px 0;
}
.logo-strip { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 18px; }
.logo-pill {
  padding: .75rem 1.1rem;
  border-radius: 999px;
  background: #F8FAFC;
  border: 1px solid var(--mc-line);
  font-weight: 900;
  color: #475569;
}

/* ─── Plans ───────────────────────────────────────────── */
.plan-card { position: relative; overflow: hidden; }
.plan-card.featured {
  border: 2px solid var(--mc-teal);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}
.plan-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--mc-orange);
  color: #fff;
  border-radius: 999px;
  padding: .35rem .65rem;
  font-size: .72rem;
  font-weight: 900;
}
.plan-card h3 { font-size: 1.45rem; font-weight: 900; color: var(--mc-blue); margin-bottom: 18px; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.plan-card li { display: flex; gap: 8px; color: #475569; font-size: .94rem; }
.plan-card li i { color: var(--mc-teal); }

/* ─── Methodology ─────────────────────────────────────── */
.method-flow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.method-step {
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  position: relative;
  transition: all .25s ease;
}
.method-step:hover { transform: translateY(-5px); border-color: rgba(20, 184, 166, .45); }
.method-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #EEF2FF;
  color: var(--mc-blue);
  font-weight: 900;
  margin-bottom: 10px;
}
.method-step strong { display: block; font-size: .88rem; color: var(--mc-dark); }

/* ─── Resources ───────────────────────────────────────── */
.resource-card { background: #F8FAFC; }
.resource-card i { font-size: 1.8rem; color: var(--mc-orange); margin-bottom: 14px; display: block; }
.resource-card h3 { font-size: 1.1rem; font-weight: 900; }

/* ─── Final CTA ───────────────────────────────────────── */
.final-cta {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--mc-blue), #0F766E);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .18);
  right: -90px;
  top: -120px;
  pointer-events: none;
}
.final-cta-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 32px;
  padding: 34px;
  backdrop-filter: blur(14px);
}
.final-cta h2 {
  font-weight: 900;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 12px 0;
  color: #fff;
}
.final-cta p { color: rgba(255, 255, 255, .82); font-size: 1.06rem; margin: 0; max-width: 720px; }

/* ─── Contact ─────────────────────────────────────────── */
.contact-section { background: #0F172A; color: #fff; }
.contact-section .section-title { color: #fff; }
.contact-section p { color: rgba(255, 255, 255, .74); }
.contact-details { display: grid; gap: 13px; margin-top: 22px; }
.contact-details span, .contact-details a { color: rgba(255, 255, 255, .86); display: flex; gap: 10px; align-items: center; }
.contact-details i { color: var(--mc-teal); }
.contact-form {
  background: #fff;
  color: var(--mc-dark);
  padding: 30px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.form-label { color: var(--mc-dark); font-weight: 700; }
.form-control, .form-select { border-radius: 14px; border: 1px solid var(--mc-line); padding: .85rem 1rem; }
.form-control:focus, .form-select:focus { border-color: var(--mc-teal); box-shadow: 0 0 0 .25rem rgba(20, 184, 166, .16); outline: none; }
.contact-extra-field { position: absolute; left: -9999px; opacity: 0; }

/* Form status messages */
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-weight: 700; }
.form-status.show { display: block; }
.form-status.success { color: #0F5132; background: #D1E7DD; border: 1px solid #A3CFBB; }
.form-status.error { color: #842029; background: #F8D7DA; border: 1px solid #F1AEB5; }
.form-status.info { color: #084298; background: #CFE2FF; border: 1px solid #9EC5FE; }

/* ─── Footer ──────────────────────────────────────────── */
.site-footer { background: #08111F; color: rgba(255, 255, 255, .7); padding: 46px 0; }
.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  width: 240px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(248, 250, 252, .96), rgba(238, 246, 255, .9));
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  border: 1px solid rgba(226, 232, 240, .5);
}
.footer-brand-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
.site-footer p { color: rgba(255, 255, 255, .7); }
.site-footer h2 { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; font-weight: 900; margin-bottom: 12px; }
.site-footer a { display: block; color: rgba(255, 255, 255, .68); margin: 7px 0; }
.site-footer a:hover { color: #fff; }
.copyright { font-size: .86rem; margin-top: 18px; color: rgba(255, 255, 255, .5); }

/* ─── WhatsApp Float ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: .85rem 1rem;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .35);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  transition: transform .2s ease;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-2px); }
.whatsapp-float i { font-size: 1.35rem; }

/* ─── Reveal animation ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding-top: 126px; }
  .trust-grid, .feature-grid, .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .method-flow { grid-template-columns: repeat(2, 1fr); }
  .final-cta-panel { flex-direction: column; align-items: flex-start; }
  .plan-card.featured { transform: none; }
  .navbar-collapse { padding: 18px 0; }
  .trust-band { margin-top: 0; padding-top: 18px; }
  .section-pad { padding: 74px 0; }
  .brand-logo { width: 200px; max-height: 48px; }
}
@media (max-width: 575px) {
  html { scroll-padding-top: 76px; }
  .navbar { padding: 8px 0; }
  .brand-logo { width: 168px; max-height: 40px; }
  .hero-section h1 { font-size: 2.45rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-grid, .feature-grid, .usecase-grid, .module-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 60px 0; }
  .whatsapp-float span { display: none; }
  .method-flow { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 22px; }
  .footer-brand-lockup { width: 200px; padding: 6px 10px; }
  .footer-brand-logo { width: 175px; max-height: 34px; }
}
@media (max-width: 380px) {
  .method-flow { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
