:root {
  --navy: #071a38;
  --navy-mid: #0F4F80;
  --gold: #D4A017;
  --gold-light: #FFD166;
  --blue: #1266A8;
  --blue-light: #4EA8FF;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --text-mid: #4B5563;
  --text-muted: #6B7280;
  --shadow: 0 24px 60px rgba(0,0,0,0.08);
  --radius: 18px;
  --radius-lg: 24px;
  --transition: all .25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: #111827;
  background: #F5F8FB;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.navbar,
nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-secondary {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: #1e293b;
  background: #fff;
  font-weight: 700;
  min-height: 42px;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.btn-secondary,
.nav-actions .btn-primary,
.nav-actions a,
.nav-actions button {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: #0F172A;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--blue);
}

.nav-actions .btn-primary {
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  min-height: 42px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.28);
}

.ticker-bar {
  background: rgba(255,255,255,0.96);
  border-top: 1px solid rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  white-space: nowrap;
  padding: 10px 24px;
  animation: tickerScroll 38s linear infinite;
  will-change: transform;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #0F172A;
}

.ticker-up { color: #16A34A; }
.ticker-down { color: #EF4444; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section-label {
  font-size: 0.85rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  max-width: 760px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.services-grid,
.how-stepper,
.contact-strip-grid,
.testi-grid {
  display: grid;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services-grid,
  .contact-strip-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-inner { flex-wrap: wrap; }
  .nav-links { justify-content: center; width: 100%; }
}

/* Page structure enhancements */
section {
  padding: 80px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(212,160,23,.14), transparent 35%), linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #0F4F80 100%);
}

.hero .hero-inner {
  padding: 0 24px;
}

.hero-sub,
.section-subtitle {
  max-width: 560px;
}

.hero-cta .btn-hero-primary,
.hero-cta .btn-hero-secondary,
.btn-primary,
.btn-cta-primary,
.btn-cta-secondary,
.btn-submit,
.btn-quote-small {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.hero-cta .btn-hero-primary:hover,
.btn-primary:hover,
.btn-cta-primary:hover,
.btn-submit:hover,
.btn-quote-small:hover {
  transform: translateY(-2px);
}

.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 45px rgba(15,23,42,.05);
}

.nav-links a {
  color: #24335a;
  font-weight: 600;
}

.nav-links a.nav-active,
.nav-links a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #0F172A;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    gap: 0;
    padding: 18px 24px;
    display: none;
    border-bottom: 1px solid rgba(15,23,42,.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: auto;
  }
}

@media (max-width: 1120px) {
  .nav-links a {
    font-size: 0.86rem;
  }

  .nav-links {
    gap: 10px;
  }
}

.ticker-bar {
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(15,23,42,.08);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-right: 1px solid rgba(15,23,42,.1);
  font-weight: 600;
  color: #1e293b;
}

.ticker-item:last-child {
  border-right: none;
}

.trust-strip {
  padding: 48px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #eef3fb 100%);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.trust-icon {
  font-size: 1.3rem;
}

.stats-ribbon {
  background: var(--navy);
  color: white;
  padding: 28px 0;
}

.stats-ribbon-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: auto;
}

.sr-div {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.2);
  margin: 0 8px;
}

.sr-stat {
  text-align: center;
}

.sr-num,
.sr-lbl {
  display: block;
}

.services {
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-card {
  min-height: 100%;
  overflow: hidden;
  background: #fff;
}

.service-card-body {
  padding: 24px;
}

.service-card .service-link {
  margin-top: auto;
}

.testi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testi-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 45px rgba(15,23,42,.05);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(15,23,42,.1);
}

.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: .05em;
  line-height: 1;
}

.testi-quote-icon {
  font-size: 2rem;
  color: rgba(15,23,42,.15);
}

.testi-text {
  color: #334155;
  line-height: 1.8;
  font-size: .97rem;
  min-height: 120px;
}

.testi-author {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.testi-avatar-initials {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}

.testi-name {
  font-weight: 700;
  color: #0f172a;
}

.testi-role {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.4;
  margin-top: 2px;
}

.testimonials-footer {
  margin-top: 42px;
  text-align: center;
}

.testimonials-footer-text {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 18px;
}

.review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(212,160,23,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(212,160,23,.32);
}

@media (max-width: 1100px) {
  .testi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.how-section,
.testimonials,
.cta-section,
.contact-strip,
footer {
  padding: 80px 0;
}

.how-section {
  background: #f7f9fc;
}

.ready-cta-section {
  padding: 26px 0 78px;
  background: #f7f9fc;
}

.ready-cta-card {
  background: linear-gradient(130deg, #0c1f42 0%, #114e7f 55%, #1b6da8 100%);
  border-radius: 24px;
  padding: 28px 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 56px rgba(7, 26, 56, 0.22);
}

.ready-cta-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 209, 102, 0.95);
  margin-bottom: 8px;
}

.ready-cta-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.ready-cta-sub {
  margin: 10px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.ready-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.ready-btn-primary,
.ready-btn-wa {
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ready-btn-primary {
  background: var(--gold);
  color: #14233f;
  box-shadow: 0 12px 26px rgba(212, 160, 23, 0.35);
}

.ready-btn-wa {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.ready-btn-primary:hover,
.ready-btn-wa:hover {
  transform: translateY(-2px);
}

.testimonials {
  background: #fff;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  color: white;
}

.cta-inner {
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  border-radius: 12px;
  padding: 16px 32px;
  min-width: 180px;
}

.btn-cta-secondary {
  border: 2px solid rgba(255,255,255,.35);
  color: white;
  background: rgba(255,255,255,.08);
}

.contact-strip {
  background: #f8fafc;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,23,42,.08);
}

.contact-card-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col-title,
.footer-brand-name {
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col li a {
  color: #64748b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,23,42,.08);
  color: #94a3b8;
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(15,23,42,.18);
}

.whatsapp-tooltip {
  background: rgba(15,23,42,.95);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .9rem;
  display: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,.55);
  padding: 24px;
  z-index: 999;
}

.modal-box {
  width: min(600px, 100%);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(15,23,42,.25);
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.modal-sub {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: .9rem;
  font-weight: 600;
}

.form-input,
.calc-select,
.btn-submit {
  width: 100%;
}

.form-input,
.calc-select {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: #f8fafc;
  outline: none;
  font-size: 1rem;
}

.form-input:focus,
.calc-select:focus {
  border-color: var(--blue);
  background: #fff;
}

.btn-submit {
  padding: 14px 20px;
  border-radius: 14px;
  border: none;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

.footer {
  background: #f8fafc;
}

@media (max-width: 900px) {
  .contact-strip-grid,
  .footer-grid,
  .stats-ribbon-inner,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .ready-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .ready-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Final navbar overrides */
nav .nav-inner {
  max-width: 1280px;
  gap: 18px;
  padding: 10px 22px;
}

nav .nav-brand {
  min-width: 150px;
}

nav .nav-logo-img {
  height: 48px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

nav .nav-links {
  flex: 1;
  justify-content: center;
  gap: 18px;
}

nav .nav-links a {
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 700;
}

nav .nav-actions {
  gap: 12px;
}

nav .nav-actions .btn-secondary,
nav .nav-actions .btn-primary {
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

nav .nav-actions .btn-secondary {
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #fff;
  color: #1e293b;
}

@media (max-width: 1200px) {
  nav .nav-links {
    gap: 12px;
  }

  nav .nav-links a {
    font-size: 0.86rem;
  }

  nav .nav-actions .btn-secondary,
  nav .nav-actions .btn-primary {
    padding: 9px 15px;
    min-height: 40px;
    font-size: 0.88rem;
  }
}

@media (max-width: 900px) {
}
