
:root {
  --navy: #08142d;
  --navy-2: #0f2246;
  --blue: #135dff;
  --blue-2: #4ea2ff;
  --ice: #eef5ff;
  --text: #15213b;
  --muted: #5d6d88;
  --line: rgba(12, 27, 60, 0.1);
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 60px rgba(10, 29, 66, 0.09);
  --shadow-strong: 0 28px 90px rgba(10, 29, 66, 0.16);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(19, 93, 255, 0.10), transparent 28rem),
    radial-gradient(circle at 100% 8%, rgba(78, 162, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 42%, #ffffff 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(19, 93, 255, 0.085) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.75), transparent 34%, transparent 66%, rgba(0,0,0,0.75));
  opacity: 0.45;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
input, select, textarea { width: 100%; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; position: relative; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding-top: 12px;
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 42px rgba(10, 29, 66, 0.08);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 50px; height: auto; flex: 0 0 auto; }
.brand-wordmark { width: 148px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: #1a2742;
}
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: width 0.24s ease;
}
.site-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta, .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0a47d2);
  box-shadow: 0 16px 40px rgba(19, 93, 255, 0.28);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: #edf4ff;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 20px;
  background: var(--navy);
}

.hero { padding-top: 82px; padding-bottom: 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 52px;
  align-items: start;
}
.eyebrow, .section-kicker, .inverse {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(19,93,255,0.14);
  background: rgba(19,93,255,0.08);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 900;
}
.inverse {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.hero-logo {
  width: min(100%, 260px);
  margin: 4px 0 18px;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  color: var(--navy);
}
.hero-copy h1 span {
  color: var(--blue);
}
.hero-lead {
  margin: 22px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}
.hero-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.point-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(19,93,255,0.1);
  box-shadow: var(--shadow);
}
.point-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--navy);
}
.point-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.dark-point {
  background: linear-gradient(135deg, var(--navy), #143b86);
  border-color: transparent;
}
.dark-point strong, .dark-point p { color: rgba(255,255,255,0.94); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(10, 29, 66, 0.12);
  box-shadow: 0 12px 32px rgba(10,29,66,0.07);
}
.btn-white {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 18px 40px rgba(10,29,66,0.18);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.trust-row div {
  padding-top: 18px;
  border-top: 1px solid rgba(10, 29, 66, 0.1);
}
.trust-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}
.trust-row span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.hero-panel {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: rgba(19, 93, 255, 0.12);
}
.panel-badge {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-panel h2 {
  position: relative;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  letter-spacing: -0.05em;
}
.hero-panel p {
  position: relative;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}
.lead-form {
  position: relative;
  display: grid;
  gap: 14px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form label span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #273551;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(10, 29, 66, 0.12);
  background: #fff;
  color: var(--text);
  outline: none;
}
.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(19, 93, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(19, 93, 255, 0.12);
}
.btn-form { width: 100%; margin-top: 2px; }
.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.metric-band article {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10, 29, 66, 0.08);
  box-shadow: var(--shadow);
}
.metric-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  color: var(--navy);
}
.metric-band span { color: var(--muted); line-height: 1.6; }

.section-heading {
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}
.fit-grid,
.services-grid,
.process-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}
.fit-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(3, 1fr); }
.fit-card,
.service-card,
.process-card,
.faq-card,
.testimonial-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10, 29, 66, 0.08);
  box-shadow: var(--shadow);
}
.fit-icon,
.step-no {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), #0d4de0);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(19,93,255,0.22);
}
.fit-card h3,
.service-card h3,
.process-card h3,
.faq-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}
.fit-card p,
.service-card p,
.process-card p,
.faq-card p,
.testimonial-card p,
.site-footer p { margin: 0; color: var(--muted); line-height: 1.7; }
.feature-fit {
  background: linear-gradient(180deg, rgba(19,93,255,0.10), rgba(255,255,255,0.96));
  border-color: rgba(19,93,255,0.14);
}
.services-section,
.results-section { background: linear-gradient(180deg, rgba(238,245,255,0.55), rgba(255,255,255,0)); }
.process-card { position: relative; }
.process-card::after {
  content: "";
  position: absolute;
  right: -11px;
  top: calc(50% - 1px);
  width: 22px;
  height: 2px;
  background: rgba(19, 93, 255, 0.16);
}
.process-card:last-child::after { display: none; }
.results-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.results-copy,
.testimonial-stack { display: grid; gap: 18px; }
.result-highlight {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10, 29, 66, 0.08);
  box-shadow: var(--shadow);
}
.result-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.06rem;
}
.testimonial-card strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
}
.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}
.accent-card {
  background: linear-gradient(135deg, var(--navy), #12336f);
}
.accent-card p,
.accent-card strong,
.accent-card span { color: rgba(255,255,255,0.95); }
.cta-section { padding: 18px 0 0; }
.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), #1251e4);
  box-shadow: var(--shadow-strong);
}
.cta-shell h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}
.cta-shell p:last-child {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.site-footer {
  padding: 74px 0 32px;
  color: #dce6fb;
  background: var(--navy);
}
.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: start;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-mark { width: 52px; height: auto; }
.footer-wordmark { width: 150px; height: auto; }
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}
.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(220,230,251,0.86);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(220,230,251,0.72);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .results-layout {
    grid-template-columns: 1fr;
  }
  .metric-band,
  .services-grid,
  .fit-grid,
  .process-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .site-header { top: 8px; padding-top: 8px; }
  .header-shell { min-height: 74px; padding: 10px 12px 10px 16px; }
  .brand-mark { width: 44px; }
  .brand-wordmark { width: 138px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(10,29,66,0.08);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .site-nav a:hover { background: #f3f7ff; }
  .site-nav a::after { display: none !important; }
  .nav-cta { margin-top: 8px; }
  .hero { padding-top: 52px; }
  .hero-panel { padding: 24px; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero-copy h1 { line-height: 1.0; }
  .field-row,
  .metric-band,
  .services-grid,
  .fit-grid,
  .process-grid,
  .faq-grid,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }
  .hero-actions { flex-direction: column; }
  .btn, .nav-cta { width: 100%; }
  .hero-panel,
  .fit-card,
  .service-card,
  .process-card,
  .faq-card,
  .testimonial-card,
  .result-highlight,
  .metric-band article { padding: 22px; }
  .process-card::after { display: none; }
  .cta-shell { padding: 28px 24px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  body::before { opacity: 0.28; }
  .header-shell { border-radius: 18px; }
  .brand-mark { width: 40px; }
  .brand-wordmark { width: 126px; }
  .hero-logo { width: 210px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 12vw, 3.1rem); }
  .hero-lead,
  .section-heading p:last-child,
  .trust-row span,
  .fit-card p,
  .service-card p,
  .process-card p,
  .faq-card p,
  .result-highlight p,
  .site-footer p { font-size: 0.98rem; }
  .hero-panel h2 { font-size: 1.6rem; }
  .btn { min-height: 52px; }
  .lead-form input,
  .lead-form select,
  .lead-form textarea { min-height: 50px; padding: 13px 14px; border-radius: 14px; }
}


/* Final selected logo integration */
.selected-logo-brand { display: inline-flex; align-items: center; }
.selected-header-logo { width: 138px; max-height: 62px; object-fit: contain; display: block; }
.hero-logo { width: min(100%, 260px); margin: 4px 0 18px; }
.footer-logo-box { display: inline-flex; align-items: center; padding: 10px 12px; border-radius: 18px; background: rgba(255,255,255,0.98); }
.selected-footer-logo { width: 150px; height: auto; display: block; }

@media (max-width: 860px) {
  .selected-header-logo { width: 122px; max-height: 56px; }
}

@media (max-width: 520px) {
  .selected-header-logo { width: 110px; max-height: 52px; }
  .hero-logo { width: 210px; }
  .selected-footer-logo { width: 138px; }
}


/* Updated logo sizing and tagline assets */
.selected-header-logo {
  width: 178px;
  max-height: 78px;
  object-fit: contain;
  display: block;
}

.hero-logo {
  width: min(100%, 330px);
  margin: 4px 0 20px;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.98);
}

.selected-footer-logo {
  width: 230px;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .selected-header-logo {
    width: 156px;
    max-height: 70px;
  }

  .hero-logo {
    width: min(100%, 290px);
  }

  .selected-footer-logo {
    width: 210px;
  }
}

@media (max-width: 520px) {
  .selected-header-logo {
    width: 138px;
    max-height: 64px;
  }

  .hero-logo {
    width: 250px;
  }

  .selected-footer-logo {
    width: 190px;
  }
}


/* User adjustments: remove hero logo and make footer logo same size as header logo */
.hero-logo { display: none !important; }
.selected-footer-logo {
  width: 178px !important;
  max-width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .selected-footer-logo {
    width: 156px !important;
  }
}

@media (max-width: 520px) {
  .selected-footer-logo {
    width: 138px !important;
  }
}


/* Footer logo reduced by 50% per user request */
.selected-footer-logo {
  width: 89px !important;
  max-width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .selected-footer-logo {
    width: 78px !important;
  }
}

@media (max-width: 520px) {
  .selected-footer-logo {
    width: 69px !important;
  }
}

/* Secure form success state without inline styles, keeps CSP strict */
.form-note.success {
  color: #135dff;
  font-weight: 700;
}


/* Integrated WhatsApp live chat */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 45px rgba(18, 140, 126, 0.28);
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(18, 140, 126, 0.34);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.whatsapp-text {
  display: grid;
  line-height: 1.15;
}

.whatsapp-text strong {
  font-size: 0.96rem;
}

.whatsapp-text small {
  margin-top: 4px;
  opacity: 0.9;
  font-size: 0.82rem;
}

.whatsapp-form-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  color: #0d6d5f;
  background: rgba(37, 211, 102, 0.10);
  border: 1px solid rgba(37, 211, 102, 0.22);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 720px) {
  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    border-radius: 18px;
  }

  .site-footer {
    padding-bottom: 116px;
  }
}

@media (max-width: 420px) {
  .whatsapp-text small {
    display: none;
  }
}
