/* ==========================================================================
   LT Business Solutions — design tokens
   Navy + orange pulled from the client's own mark; warm cream ground;
   Bricolage Grotesque (display) + Public Sans (body); everything rounded.
   ========================================================================== */

:root {
  --navy: #2B2E3D;
  --navy-soft: #454863;
  --orange: #D98A3E;
  --orange-deep: #C1732A;
  --orange-light: #F3C793;
  --cream: #FAF6EF;
  --cream-deep: #F1E9DA;
  --white: #FFFFFF;
  --slate: #6B6E7D;
  --line: #E8DFCD;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 32px -18px rgba(43, 46, 61, 0.28);
  --shadow-card: 0 8px 24px -14px rgba(43, 46, 61, 0.22);

  --font-display: "Bricolage Grotesque", "Public Sans", sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-weight: 600; }
h2 { font-weight: 600; }

p { margin: 0 0 1em; color: var(--navy-soft); }

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 3px; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: #1F2230; }

.btn-accent {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px -14px rgba(217, 138, 62, 0.65);
}
.btn-accent:hover { background: var(--orange-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Navbar ---------- */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 20px 0;
}

.navbar {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(250, 246, 239, 0.86);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 16px;
  box-shadow: var(--shadow-card);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}

.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 14.5px;
}

.nav-links a {
  color: var(--navy-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy);
  border-color: var(--orange);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-width: 1120px;
  margin: 10px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}
.mobile-panel a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--navy-soft);
}
.mobile-panel a:last-of-type { border-bottom: none; }
.mobile-panel.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .brand span.brand-text { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { font-size: clamp(2.1rem, 4vw, 3.15rem); }

.hero-lede {
  font-size: 18px;
  max-width: 46ch;
  color: var(--navy-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  justify-self: center;
}

.orbit-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.orbit-svg { width: 100%; height: 100%; }

.orbit-dot { animation: orbit-pulse 3.2s ease-in-out infinite; }
.orbit-dot.d2 { animation-delay: 0.6s; }
.orbit-dot.d3 { animation-delay: 1.2s; }
.orbit-dot.d4 { animation-delay: 1.8s; }

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

.float-chip {
  position: absolute;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.chip-1 { top: -14px; left: -18px; }
.chip-2 { bottom: -14px; right: -14px; background: var(--orange); }
.chip-2 .dot { background: var(--navy); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 320px; margin-top: 20px; }
}

/* ---------- Section basics ---------- */

section { padding: 64px 0; }

.section-head {
  max-width: 60ch;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head.left { margin: 0 0 40px; text-align: left; }

.pill-tag {
  display: inline-block;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

/* ---------- Cards / grids ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }

.card h3 { font-size: 19px; }
.card p { font-size: 15px; margin-bottom: 0; }
.card .learn { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--orange-deep); }

/* ---------- Why-us list ---------- */

.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) { .why-row { grid-template-columns: 1fr; } }

.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 { font-size: 16.5px; margin-bottom: 6px; }
.why-item p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
}
.step-index {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; margin-bottom: 0; }

/* ---------- Banded sections ---------- */

.band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.band h2, .band p { color: var(--white); }
.band .pill-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); color: var(--orange-light); }
@media (max-width: 640px) { .band { padding: 34px 22px; } }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band .btn-accent { flex: none; }

/* ---------- Footer ---------- */

footer {
  background: var(--navy);
  color: var(--cream);
  margin-top: 40px;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 32px; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white); }
footer p, .footer-col p { color: #C7C9D6; font-size: 14.5px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: #D8D9E4;
  font-size: 14.5px;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: #9EA1B4;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  padding: 48px 0 28px;
}
.page-hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.page-hero .hero-lede { max-width: 62ch; }

/* ---------- WhatsApp floating button ---------- */

.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  background: var(--orange);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -12px rgba(217, 138, 62, 0.75);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line strong { display: block; font-size: 15px; }
.contact-line span { font-size: 14px; color: var(--slate); }

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--navy);
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  margin-top: 22px;
}
.map-frame iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ---------- Utility ---------- */

.mt-0 { margin-top: 0; }
.center { text-align: center; }
.max-w { max-width: 640px; margin: 0 auto; }
