:root {
  --navy: #111827;
  --orange: #f28c28;
  --white: #ffffff;
  --offwhite: #f8f7f4;
  --text: #202020;
  --muted: #666666;
  --line: #e5e2dc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  max-height: 58px;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--orange);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 7px 0;
}

/* Hero */

.hero {
  padding: 64px 0 28px;
  text-align: center;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.07em;
  max-width: 980px;
  margin: 0 auto 24px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.service-detail h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.hero-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.96rem;
}

.primary {
  background: var(--orange);
  color: var(--white);
}

.primary:hover {
  background: #d97717;
}

.secondary {
  background: var(--navy);
  color: var(--white);
}

.secondary:hover {
  background: #25324a;
}

.hero-image {
  margin-top: 54px;
  border-radius: 28px;
  overflow: hidden;
  max-height: 520px;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Shared layouts */

.section {
  padding: 78px 0;
}

.two-column,
.case-grid,
.about-grid,
.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

/* Services */

.services {
  background: var(--offwhite);
}

.service-detail .eyebrow {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  color: var(--orange);
  font-weight: 900;
}

.service-list p {
  margin: 0;
  font-size: 1.18rem;
  color: var(--navy);
  font-weight: 700;
}

/* Learn More links */

.learn-more {
  display: block;
  margin-top: 18px;
  text-align: right;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.learn-more::after {
  content: " →";
}

.learn-more:hover {
  text-decoration: underline;
}

.case-link {
  text-align: left;
}

.case-study .learn-more:hover {
  color: #ffd2a6;
}

/* Case study */

.case-study {
  background: var(--navy);
  color: var(--white);
  padding: 86px 0;
}

.case-study h2,
.case-study h3 {
  color: var(--white);
}

.case-comparison {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.case-comparison div {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.case-comparison span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 900;
}

.case-comparison h3 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
  margin: 8px 0 0;
}

.case-comparison p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  margin-top: 26px;
}

/* About */

.about {
  background: var(--white);
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Contact */

.contact {
  background: var(--offwhite);
  padding: 82px 0;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(242, 140, 40, 0.28);
  border-color: var(--orange);
}

/* Footer */

footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  padding: 26px;
}

footer p {
  margin: 0;
}

/* Services page intro */

.services-intro {
  margin-top: -50px;
  margin-bottom: 60px;
}

.services-banner {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 24px;
}

.services-intro h2 {
  margin-bottom: 12px;
}

.services-intro p {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Service detail page */

.service-detail {
  padding: 12px 0;
}

.service-detail p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.service-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

.service-cta {
  text-align: center;
  margin-top: 60px;
}

.service-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.service-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 24px;
}

/* Mobile */

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
    gap: 16px;
  }

  nav.active {
    display: flex;
  }

  .hero {
    padding: 58px 0 36px;
    text-align: left;
  }

  h1 {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-text {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-image img {
    height: 340px;
  }

  .two-column,
  .case-grid,
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section,
  .contact,
  .case-study {
    padding: 52px 0;
  }

  .about-image img {
    height: 360px;
  }

  .service-list div {
    grid-template-columns: 44px 1fr;
  }

.brand img {
    max-height: 50px;
  }
}

/* Keeps footer at bottom on short pages */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}



.insights-hero {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.insights-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
}







/* ============================
   Insights Page Stat Cards
   ============================ */

.insights-intro {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--muted);
  font-size: 1.12rem;
}

.stat-card {
  max-width: 860px;
  margin: 0 auto 42px;
  padding: 36px 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.stat-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.035em;
}

.stat-number,
.stat-highlight {
  display: block;
  margin: 10px auto 14px;
  color: var(--orange);
  font-size: clamp(3.4rem, 9vw, 6.25rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.stat-summary {
  max-width: 680px;
  margin: 0 auto 18px;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.stat-explanation {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.stat-source {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.stat-source a {
  color: var(--muted);
}

.stat-source a:hover {
  color: var(--orange);
}

/* ============================
   Insights Page CTA
   ============================ */

.insights-cta {
  margin: 3rem 0 4rem 0;
  padding: 2rem;
  border-radius: 18px;
  background: var(--navy);
  color: #ffffff;
  text-align: center;
}

.insights-cta p {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.insights-cta .button {
  display: inline-block;
}

.insights-cta .button.primary,
.insights-cta .button {
  background: var(--orange);
  color: var(--white);
}

.insights-cta .button:hover {
  background: #d97717;
}

.contact-direct {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-direct {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: left;   /* Force left alignment */
}

.contact-direct strong {
  color: var(--orange);
  font-weight: 700;
}