/* ============================================================
   OCM LEASING — Global Stylesheet
   Color Palette: Navy #0a1f44, Gold #c8972b, White, Light Gray
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a1f44;
  --navy-mid: #122958;
  --navy-light: #1a3a6e;
  --gold: #c8972b;
  --gold-light: #e0b04a;
  --gold-pale: #f5e9cc;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-light: #e8ecf0;
  --gray-mid: #b0bac5;
  --gray-dark: #4a5568;
  --text: #1a2535;
  --radius: 4px;
  --shadow: 0 2px 16px rgba(10,31,68,0.10);
  --shadow-lg: 0 8px 40px rgba(10,31,68,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--gray-dark); }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--gray-mid);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--gray-mid); }
.topbar a:hover { color: var(--gold); }

/* ---- HEADER ---- */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10,31,68,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-mark span {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.logo-text small {
  font-size: 0.68rem;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- NAV ---- */
nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}
.nav-link:hover { color: var(--gold); background: var(--off-white); }
.nav-link.active { color: var(--gold); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  /* use opacity/visibility instead of display to avoid accidental hover gaps */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 200;
  padding: 8px 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--gold); }
.dropdown-menu a::after { content: ' →'; opacity: 0; transition: opacity 0.15s; }
.dropdown-menu a:hover::after { opacity: 1; }

.nav-apply {
  margin-left: 8px;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.2s;
}
.nav-apply:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.2s;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(105deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {}
.hero-eyebrow {
  display: inline-block;
  background: rgba(200,151,43,0.2);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 36px 32px;
  backdrop-filter: blur(4px);
}
.hero-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero-stat {
  text-align: center;
  padding: 16px;
  background: rgba(200,151,43,0.12);
  border-radius: 4px;
  border: 1px solid rgba(200,151,43,0.25);
}
.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item .icon {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  flex-shrink: 0;
}

/* ---- SECTION GENERIC ---- */
section { padding: 80px 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-subtitle {
  color: var(--gray-dark);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 32px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--navy);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray-dark); margin-bottom: 14px; }
.learn-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.learn-more::after { content: '→'; transition: transform 0.2s; }
.learn-more:hover::after { transform: translateX(4px); }

/* ---- WHY CHOOSE ---- */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list li strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 3px; }
.why-list li span { font-size: 0.88rem; color: var(--gray-dark); }

.why-image-block {
  position: relative;
  height: 440px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-block .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0.85) 0%, rgba(26,58,110,0.6) 100%);
}
.why-image-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}
.why-big-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.why-big-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.why-big-stat .label {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.why-image-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: var(--gold-pale);
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-item p { font-size: 0.88rem; color: var(--gray-dark); }

/* ---- INDUSTRIES ---- */
.industries-section { background: var(--navy); }
.industries-section .section-title { color: var(--white); }
.industries-section .section-subtitle { color: rgba(255,255,255,0.65); }
.industries-section .section-label { color: var(--gold-light); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}
.industry-item:hover {
  background: rgba(200,151,43,0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.industry-item .icon { font-size: 1.8rem; margin-bottom: 10px; }
.industry-item span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

/* ---- FAQ ---- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  gap: 12px;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: 18px;
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

.faq-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px;
  padding: 40px 36px;
  color: white;
  position: sticky;
  top: 100px;
}
.faq-cta h3 { color: white; margin-bottom: 12px; }
.faq-cta p { color: rgba(255,255,255,0.75); margin-bottom: 24px; font-size: 0.9rem; }
.faq-cta .contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.faq-cta .contact-info a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  position: relative;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.88rem; color: var(--navy); }
.author-info span { font-size: 0.78rem; color: var(--gray-mid); }
.quote-mark {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  color: var(--gold-pale);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* ---- FINAL CTA ---- */
.cta-section {
  background: linear-gradient(105deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer {
  background: #06122b;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-mark { background: rgba(255,255,255,0.08); }
.footer-brand .logo-mark span { color: var(--gold); }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text small { color: var(--gray-mid); }
.footer-logo { margin-bottom: 18px; }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: white; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Source Sans 3', sans-serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; }
.footer-contact .ci { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 20px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(105deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { color: var(--white); max-width: 680px; margin-bottom: 14px; }
.page-hero .page-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 560px;
}
.page-hero .hero-btns { margin-top: 28px; }

/* ---- CONTENT SECTIONS ---- */
.content-section { padding: 72px 0; }
.content-section.alt { background: var(--off-white); }
.content-section.dark {
  background: var(--navy);
  color: white;
}
.content-section.dark h1, .content-section.dark h2, .content-section.dark h3 { color: white; }
.content-section.dark p { color: rgba(255,255,255,0.72); }

/* ---- FEATURE LISTS ---- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-dark);
}
.feature-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list.dark li { color: rgba(255,255,255,0.75); }

/* ---- INFO BOXES ---- */
.info-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 24px 0;
}
.info-box h4 { color: var(--navy); margin-bottom: 8px; }
.info-box p { font-size: 0.88rem; margin: 0; }

/* ---- TWO-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ---- PRODUCT CARDS ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card .product-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.product-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.product-card p { font-size: 0.88rem; margin-bottom: 16px; }

/* ---- APPLY FORM ---- */
.apply-section {
  background: var(--off-white);
  padding: 72px 0;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
}
.form-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.form-card p { font-size: 0.9rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,43,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.78rem; color: var(--gray-mid); margin-top: 12px; }

/* ---- ABOUT ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-pale);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--gray-dark); margin: 0; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-body { padding: 24px 22px; }
.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-body h3 { font-size: 1rem; margin-bottom: 10px; }
.blog-body p { font-size: 0.85rem; color: var(--gray-dark); }
.blog-meta { font-size: 0.78rem; color: var(--gray-mid); margin-top: 14px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 420px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-block { height: 260px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.flip { direction: ltr; }
  .apply-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-light);
    z-index: 200;
  }
  nav.open .nav-link { padding: 12px 16px; display: block; }
  nav.open .dropdown-menu { display: block; position: static; box-shadow: none; border: none; padding-left: 16px; }
  .nav-toggle { display: flex; }
  header { position: relative; }
  .header-inner { position: relative; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero { padding: 60px 0 50px; }
  section { padding: 56px 0; }
}