/* Corporate Flyers - Shared Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a2547;
  --navy-light: #163b6e;
  --navy-deep: #051730;
  --orange: #e0a526;
  --orange-light: #f0c25c;
  --grey-bg: #f6f8fb;
  --grey-text: #5d6b7e;
  --white: #ffffff;
  --border: #e6eaf1;
  --max-width: 1180px;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(10, 37, 71, 0.06);
  --shadow-hover: 0 16px 36px rgba(10, 37, 71, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #2b2f36;
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4, .logo, .step-num {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

a {
  text-decoration: none;
  color: var(--navy);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10, 37, 71, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--orange);
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

footer .logo-img {
  height: 56px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: #97a3b8;
  font-size: 0.7rem;
  display: block;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 24px;
  flex-shrink: 0;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  white-space: nowrap;
  border-bottom: none !important;
}

.nav-phone:hover {
  color: var(--orange) !important;
  border-bottom: none !important;
}

.btn-sm {
  padding: 9px 22px !important;
  font-size: 0.85rem !important;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 130, 31, 0.22) 0%, rgba(245, 130, 31, 0) 42%),
    radial-gradient(circle at 95% 100%, rgba(255, 255, 255, 0.06) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Video background (homepage hero only) */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 23, 48, 0.72);
}
.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  color: #cfdcf4;
  max-width: 720px;
  margin: 0 auto 32px;
}

.hero-small {
  padding: 64px 0;
  text-align: left;
}

.hero-small h1 {
  font-size: 2.3rem;
}

.hero-small p {
  margin: 0;
  max-width: 760px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(245, 130, 31, 0.3);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 130, 31, 0.38);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  margin-left: 14px;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 72px 0;
}

.section-alt {
  background: var(--grey-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 14px;
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--grey-text);
  max-width: 680px;
  margin: 0 auto 44px;
}

.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Grids / Cards */
.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(245, 130, 31, 0.25);
}

.card .icon {
  font-size: 2.1rem;
  margin-bottom: 14px;
  display: block;
}

.icon-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block;
}

/* Full-bleed card header photo */
.card-photo {
  padding: 0;
  overflow: hidden;
}

.card-photo .card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.45s ease;
}

.card-photo:hover .card-img {
  transform: scale(1.04);
}

.card-photo .card-body {
  padding: 22px 24px 26px;
}

.card-photo .card-body h3 {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-photo .card-body p {
  color: var(--grey-text);
  font-size: 0.93rem;
  line-height: 1.65;
}

.col-img.has-photo {
  padding: 0;
  overflow: hidden;
  color: transparent;
  display: block;
  height: 280px;
}

.col-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.col-img.has-photo.small {
  height: 160px;
}

.card .col-img {
  margin-bottom: 16px;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.card p {
  color: var(--grey-text);
  font-size: 0.95rem;
}

/* Two-column content blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .col-text {
  order: 2;
}

.col-text h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.col-text p {
  color: var(--grey-text);
  margin-bottom: 14px;
}

.col-img {
  background: linear-gradient(135deg, #eef2f9 0%, #e4ecfb 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa9c2;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Lists */
.check-list {
  list-style: none;
  margin: 18px 0;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: #3c4450;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(245, 130, 31, 0.12);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats band */
.stats {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 52px 0;
}

.stats .grid-4 {
  text-align: center;
}

.stats .stat-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--orange-light);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
}

.stats .stat-label {
  color: #c8d3e2;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

table th, table td {
  border: 1px solid var(--border);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.95rem;
}

table th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

table tr:nth-child(even) td {
  background: var(--grey-bg);
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  text-align: center;
  position: relative;
}

.step .step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(245, 130, 31, 0.28);
}

.step h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.step p {
  color: var(--grey-text);
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(circle at 12% 30%, rgba(245, 130, 31, 0.18) 0%, rgba(245, 130, 31, 0) 45%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-light));
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  margin-bottom: 12px;
  font-size: 1.9rem;
  font-weight: 700;
}

.cta-band p {
  color: #cfdcf4;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: var(--navy-deep);
  color: #aebcd6;
  padding: 52px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 9px;
  font-size: 0.92rem;
}

.footer-grid a {
  color: #aebcd6;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #7e8eac;
}

/* Tags / badges */
.badge {
  display: inline-block;
  background: rgba(245, 130, 31, 0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.hero .badge {
  background: rgba(245, 130, 31, 0.18);
  color: var(--orange-light);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }
.reveal-5 { transition-delay: 0.4s; }

/* Timeline (About page) */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 32px;
  border-left: 3px solid rgba(245, 130, 31, 0.25);
}

.timeline-item {
  position: relative;
  padding: 0 0 40px 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(245, 130, 31, 0.25);
}

.timeline-item .timeline-year {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-item h3 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 600;
}

.timeline-item p {
  color: var(--grey-text);
  font-size: 0.95rem;
}

/* Steps connecting line */
.steps {
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(245, 130, 31, 0.3) 0, rgba(245, 130, 31, 0.3) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.step {
  z-index: 1;
}

.step .step-num {
  position: relative;
  z-index: 1;
}

/* Featured story split */
.feature-story {
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 130, 31, 0.10) 0%, rgba(245, 130, 31, 0) 45%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
}

.feature-story .badge {
  background: rgba(245, 130, 31, 0.18);
  color: var(--orange-light);
}

.feature-story h2 {
  color: var(--white);
}

.feature-story p {
  color: #cfdcf4;
}

.feature-story .check-list li {
  color: #e3ebfa;
}

.feature-story .stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 18px;
  margin: 4px 8px 4px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange-light);
}

/* ── Client logo marquee ── */
.logo-marquee {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}

.logo-marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.logo-marquee-inner:hover {
  animation-play-state: paused;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-marquee-item {
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

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

.logo-marquee-item img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
  display: block;
}

.logo-marquee-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Fallback text logo */
.logo-marquee-item span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #8a9ab8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-marquee-item:hover span {
  color: var(--navy);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Statement band ── */
.statement-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.statement-band .statement-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.statement-band .statement-quote span {
  color: var(--orange-light);
}

.statement-band .statement-meta {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ── Industry cards ── */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10,37,71,0.12);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card .ic-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(10,37,71,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--grey-text);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── Hero kicker ── */
.hero-kicker {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── Highlight number cards ── */
.highlight-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

/* Mobile nav toggle */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split, .split.reverse {
    grid-template-columns: 1fr;
  }
  .split.reverse .col-text {
    order: 0;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: block;
  }
  .nav-wrap {
    flex-wrap: wrap;
    gap: 4px;
  }
  .site-header nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-header nav.nav-open {
    max-height: 320px;
  }
  nav ul {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 0 16px;
  }
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .steps::before {
    display: none;
  }
  .hero h1 {
    font-size: 2.1rem;
    letter-spacing: -0.01em;
  }
  .hero {
    padding: 80px 0 64px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .statement-band .statement-quote {
    font-size: 1.5rem;
  }
  .grid-2, .grid-3, .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }
}
