﻿/* =====================================================
   RECKON EQUIPMENT TRADE
   Design System: Slate-Dark + Teal + Orange
   Layout: Split-screen hero · Diagonal cuts · Horizontal cards
   Fonts & assets: 100% local
   ===================================================== */

/* ──────────────── DESIGN TOKENS ──────────────── */
:root {
  /* Palette */
  --c-dark:        #0b1120;   /* deep slate – near black   */
  --c-dark-2:      #141e2e;   /* card dark bg              */
  --c-dark-3:      #1e2d42;   /* subtle dark variant       */
  --c-teal:        #1464b4;   /* primary teal-600          */
  --c-teal-hi:     #2e86de;   /* teal-500 – hover/bright   */
  --c-teal-lo:     #f0fdfa;   /* teal-50 – soft bg         */
  --c-teal-mid:    #99f6e4;   /* teal-200                  */
  --c-orange:      #ea580c;   /* orange CTA                */
  --c-orange-hi:   #f97316;   /* orange hover              */
  --c-orange-lo:   #fff7ed;   /* orange pale bg            */
  --c-bg:          #f8fafc;   /* slate-50 page bg          */
  --c-bg-alt:      #f1f5f9;   /* slate-100 section alt     */
  --c-surface:     #ffffff;
  --c-text:        #0f172a;   /* slate-900                 */
  --c-muted:       #64748b;   /* slate-500                 */
  --c-border:      #e2e8f0;   /* slate-200                 */

  /* Sizes */
  --r:    0.75rem;   /* base border-radius  */
  --r-lg: 1.25rem;   /* large radius        */
  --r-xl: 2rem;      /* extra large         */
  --tr:   0.28s ease;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(6,15,30,0.06), 0 4px 12px rgba(6,15,30,0.07);
  --sh-md: 0 4px 6px rgba(6,15,30,0.05), 0 12px 28px rgba(6,15,30,0.09);
  --sh-lg: 0 8px 10px rgba(6,15,30,0.04), 0 24px 48px rgba(6,15,30,0.12);
}

/* ──────────────── LOCAL FONTS ──────────────── */
@font-face { font-family:'Inter'; font-weight:400; font-display:swap;
  src: url('../fonts/Inter-Regular.ttf') format('truetype'); }
@font-face { font-family:'Inter'; font-weight:500; font-display:swap;
  src: url('../fonts/Inter-Medium.ttf') format('truetype'); }
@font-face { font-family:'Inter'; font-weight:700; font-display:swap;
  src: url('../fonts/Inter-Bold.ttf') format('truetype'); }

/* ──────────────── RESET ──────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }

/* ──────────────── HEADER ──────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1040;
  transition: background var(--tr), box-shadow var(--tr), padding var(--tr);
}

/* Hero state — glassmorphism dark bar */
.site-header .navbar {
  background: linear-gradient(180deg, rgba(5,15,30,0.72) 0%, rgba(5,15,30,0.38) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--tr), backdrop-filter var(--tr), padding var(--tr), border-color var(--tr), box-shadow var(--tr);
}
/* Scrolled state — crisp white bar */
.site-header.scrolled .navbar {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.10), var(--sh-sm);
}

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: 0.65rem; line-height: 1; }
.brand-logo {
  height: 52px; width: auto; display: block;
  mix-blend-mode: normal;
  background: #ffffff;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: box-shadow var(--tr);
}
.brand-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-hi) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: 0 4px 12px rgba(20,100,180,0.4);
}
.brand-names { display: flex; flex-direction: column; gap: 2px; }
.brand-text {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, var(--c-teal-hi) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-dot { /* inherits gradient — shows electric blue at end */ }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.site-header.scrolled .brand-logo {
  height: 52px; width: auto; display: block;
  mix-blend-mode: normal;
  background: #ffffff;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.brand-icon { box-shadow: 0 2px 8px rgba(20,100,180,0.25); }
.site-header.scrolled .brand-text {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-header.scrolled .brand-sub  { color: var(--c-muted); }

/* Nav links */
.navbar-nav .nav-link {
  color: #ffffff; font-size: 0.875rem; font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: var(--r);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  letter-spacing: 0.01em;
  transition: color var(--tr), background var(--tr), text-shadow var(--tr);
}
.navbar-nav .nav-link:hover  { color: #ffffff; background: rgba(255,255,255,0.14); text-shadow: 0 0 12px rgba(56,189,248,0.8); }
.navbar-nav .nav-link.active { color: #ffffff; font-weight: 600; text-shadow: 0 0 10px rgba(56,189,248,0.7); }

.site-header.scrolled .navbar-nav .nav-link       { color: var(--c-text); text-shadow: none; }
.site-header.scrolled .navbar-nav .nav-link:hover  { color: var(--c-teal); background: var(--c-teal-lo); text-shadow: none; }
.site-header.scrolled .navbar-nav .nav-link.active { color: var(--c-teal); background: var(--c-teal-lo); text-shadow: none; }

/* CTA button in nav */
.nav-cta {
  background: var(--c-orange) !important; color: #fff !important;
  border-radius: var(--r) !important; padding: 0.45rem 1.2rem !important;
  font-weight: 600 !important; letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(180,83,9,0.3);
  transition: background var(--tr), box-shadow var(--tr) !important;
}
.nav-cta:hover {
  background: var(--c-orange-hi) !important; color: #fff !important;
  box-shadow: 0 4px 16px rgba(180,83,9,0.4) !important;
}

/* Dropdown */
.navbar-nav .dropdown-menu {
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 0.5rem 0.4rem;
  min-width: 240px; margin-top: 0.35rem;
  background: var(--c-surface);
  animation: dropIn 0.16s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.navbar-nav .dropdown-item {
  font-size: 0.86rem; font-weight: 500; color: var(--c-text);
  border-radius: 0.5rem; padding: 0.5rem 1rem;
  transition: background var(--tr), color var(--tr);
}
.navbar-nav .dropdown-item:hover { background: var(--c-teal-lo); color: var(--c-teal); }
.navbar-nav .dropdown-item i { width: 18px; color: var(--c-teal); }

.navbar-toggler { border: 1.5px solid rgba(255,255,255,0.3); border-radius: var(--r); padding: 0.4rem 0.65rem; }
.site-header.scrolled .navbar-toggler { border-color: var(--c-border); }
.navbar-toggler:focus { box-shadow: none; }

/* ──────────────── HERO SPLIT-SCREEN ──────────────── */
.hero-split {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 0; /* transparent header sits over it */
}

/* Left dark panel */
.hero-panel {
  flex: 0 0 50%;
  background: var(--c-dark);
  background-image:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(20,100,180,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 88% 12%, rgba(20,100,180,0.14) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: auto, auto, 40px 40px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 9rem 4rem 5rem 5%;
  /* Diagonal right edge */
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%);
  margin-right: -4%;
  z-index: 2;
}

/* Right image panel */
.hero-img-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}
/* Both the old direct img and new slideshow wrapper fill the panel */
.hero-img-panel > img,
.hero-slider {
  width: 100%; height: 100%;
  display: block;
}
.hero-img-panel > img {
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-img-panel:hover > img { transform: scale(1.0); }

/* Teal gradient overlay on image */
.hero-img-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,100,180,0.18) 0%, transparent 60%);
}

/* Hero floating category tags on image */
.hero-tags {
  position: absolute;
  bottom: 2.5rem; right: 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  z-index: 2;
}
.hero-tag-item {
  background: rgba(3,14,28,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 2px solid var(--c-teal-hi);
  color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 0 var(--r) var(--r) 0;
  letter-spacing: 0.06em;
}

/* Hero content */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--c-teal-hi);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--c-teal-hi);
}

.hero-h1 {
  font-size: clamp(2.2rem, 2rem + 2.5vw, 4rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em; color: #fff; margin: 0 0 1.25rem;
}
.hero-h1 em { font-style: normal; color: var(--c-teal-hi); display: inline-block; transition: opacity 0.4s ease, transform 0.4s ease; }

.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 420px; margin: 0 0 2rem;
}

/* Hero inline stats */
.hero-mini-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  display: block; font-size: 1.65rem; font-weight: 700;
  color: var(--c-teal-hi); letter-spacing: -0.02em; line-height: 1;
}
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

/* ──────────────── STATS BAR ──────────────── */
.stats-bar {
  background: var(--c-dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-bar-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num {
  display: block; font-size: 1.9rem; font-weight: 700;
  color: var(--c-teal-hi); letter-spacing: -0.025em; line-height: 1;
}
.stats-bar-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 0.25rem; }

/* ──────────────── PAGE BODY OFFSET ──────────────── */
/* padding-top: 0 — page-hero handles header clearance via its own top padding */
.main-content { padding-top: 0; }

/* ──────────────── SECTION UTILITIES ──────────────── */
.section { position: relative; }

.sec-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--c-teal); margin-bottom: 0.85rem;
}
.sec-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--c-teal); border-radius: 2px;
}

.sec-title {
  font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.75rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--c-text);
  margin: 0;
}
.sec-title--light { color: #fff; }

.sec-text { color: var(--c-muted); font-size: 1rem; line-height: 1.75; max-width: 640px; margin: 0; }
.sec-text--light { color: rgba(255,255,255,0.65); }

/* Decorative section number */
.sec-num {
  position: absolute; top: -0.15em; left: -0.05em;
  font-size: 8rem; font-weight: 800; line-height: 1;
  color: rgba(20,100,180,0.06); letter-spacing: -0.05em;
  pointer-events: none; user-select: none; z-index: 0;
}

/* ──────────────── DIAGONAL SECTION DIVIDER ──────────────── */
.diag-top {
  margin-top: -3rem; padding-top: 6rem;
  clip-path: polygon(0 3rem, 100% 0, 100% 100%, 0 100%);
}
.diag-bottom {
  padding-bottom: 6rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), 0 100%);
}

/* ──────────────── HORIZONTAL SERVICE CARD ──────────────── */
.hcard {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative; overflow: hidden;
}
.hcard::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--c-teal), var(--c-teal-hi));
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--tr);
}
.hcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(20,100,180,0.2); }
.hcard:hover::before { transform: scaleY(1); }

.hcard-icon {
  flex-shrink: 0; width: 3rem; height: 3rem;
  background: var(--c-teal-lo); color: var(--c-teal);
  border-radius: var(--r); font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.hcard-body { flex: 1; min-width: 0; }
.hcard-body h3 {
  font-size: 1rem; font-weight: 600; color: var(--c-text);
  margin: 0 0 0.35rem; line-height: 1.3;
}
.hcard-body p { font-size: 0.875rem; color: var(--c-muted); margin: 0; line-height: 1.6; }
.hcard-arrow {
  flex-shrink: 0; color: var(--c-teal); font-size: 1.1rem;
  opacity: 0; transform: translateX(-4px);
  transition: opacity var(--tr), transform var(--tr);
}
.hcard:hover .hcard-arrow { opacity: 1; transform: translateX(0); }

/* Small hcard variant */
.hcard--sm { padding: 0.85rem 1rem; }
.hcard--sm .hcard-icon { width: 32px; height: 32px; font-size: 0.9rem; flex-shrink: 0; }
.hcard--sm .hcard-body h3 { font-size: 0.83rem; }
.hcard--sm .hcard-body p  { display: none; }

/* ──────────────── NUMBERED PRODUCT ROW ──────────────── */
.prod-row {
  display: flex; gap: 1.5rem; align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--tr);
  cursor: default;
  color: inherit; text-decoration: none;
}
a.prod-row { display: flex; cursor: pointer; }
a.prod-row:hover { text-decoration: none; }
.prod-row:last-child { border-bottom: none; }
.prod-row:hover { background: var(--c-teal-lo); margin: 0 -1.5rem; padding: 1.5rem 1.5rem; border-radius: var(--r); }

.prod-num {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  background: var(--c-bg-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--c-muted);
  font-variant-numeric: tabular-nums;
  transition: background var(--tr), color var(--tr);
}
.prod-row:hover .prod-num { background: var(--c-teal); color: #fff; }
.prod-info { flex: 1; }
.prod-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--c-text); margin: 0 0 0.2rem; }
.prod-info p  { font-size: 0.825rem; color: var(--c-muted); margin: 0; }
.prod-arrow   { color: var(--c-muted); opacity: 0; transition: opacity var(--tr); }
.prod-row:hover .prod-arrow { opacity: 1; color: var(--c-teal); }

/* ──────────────── DARK FEATURE CARDS ──────────────── */
.dark-card {
  background: var(--c-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--tr), border-color var(--tr);
}
.dark-card:hover { transform: translateY(-5px); border-color: rgba(20,100,180,0.3); }
.dark-card-icon {
  width: 3rem; height: 3rem; border-radius: var(--r);
  background: rgba(20,100,180,0.15); color: var(--c-teal-hi);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.dark-card h3 { font-size: 1.05rem; font-weight: 600; color: #fff; margin: 0 0 0.5rem; }
.dark-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.65; }

/* ──────────────── PRODUCT FEATURE SECTION ──────────────── */
.feat-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; overflow: hidden;
}
.feat-section.reverse { direction: rtl; }
.feat-section.reverse > * { direction: ltr; }
.feat-img { overflow: hidden; position: relative; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; }
.feat-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3.5rem;
}
.feat-content--dark { background: var(--c-dark); }
.feat-content--teal {
  background: var(--c-teal);
  background-image: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

/* ──────────────── IMAGE WITH OVERLAY CARD ──────────────── */
.img-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  height: 280px;
  transition: transform var(--tr);
}
.img-card:hover { transform: scale(1.02); }
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.img-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,14,28,0.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.25rem 1.5rem;
}
.img-card-title { font-size: 1rem; font-weight: 600; color: #fff; margin: 0; }
.img-card-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin: 0.15rem 0 0; }
.img-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--c-teal); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 2rem;
}

/* ──────────────── STANDARD CARDS ──────────────── */
.s-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: transform var(--tr), box-shadow var(--tr);
  height: 100%;
}
.s-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.s-card-icon {
  width: 2.8rem; height: 2.8rem; background: var(--c-teal-lo);
  color: var(--c-teal); font-size: 1.2rem; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.s-card h3 { font-size: 1rem; font-weight: 600; color: var(--c-text); margin: 0 0 0.45rem; }
.s-card p  { font-size: 0.875rem; color: var(--c-muted); margin: 0; line-height: 1.65; }
.s-card ul { font-size: 0.85rem; color: var(--c-muted); padding-left: 1.1rem; }
.s-card ul li { margin-bottom: 0.3rem; }
.sc-list { list-style: none; padding: 0; margin: 0.75rem 0 0; display: flex; flex-direction: column; gap: 0.35rem; }
.sc-list li { font-size: 0.82rem; color: var(--c-muted); display: flex; align-items: flex-start; gap: 0.45rem; }
.sc-chk { color: var(--c-teal); font-size: 0.75rem; margin-top: 0.18rem; flex-shrink: 0; }

/* ──────────────── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: var(--c-dark);
  background-image:
    radial-gradient(ellipse 70% 90% at 100% 50%, rgba(20,100,180,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 30%, rgba(20,100,180,0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: auto, auto, 40px 40px;
  /* top padding accounts for fixed header (~70px) + breathing room */
  padding: 7.5rem 0 5rem;
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), 0 100%);
  margin-bottom: -1px;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 3rem);
  font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin: 0;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.02rem; margin: 0.75rem 0 0; max-width: 560px; }
.page-hero .sec-label { color: var(--c-teal-hi); }
.page-hero .sec-label::before { background: var(--c-teal-hi); }

/* Teal accent bar at bottom of page-hero */
.page-hero::after {
  content: ''; position: absolute; bottom: 3rem; left: 0; right: 0;
  height: 1px; background: rgba(20,100,180,0.25);
}

/* ──────────────── CTA BANNER ──────────────── */
.cta-banner {
  background: var(--c-teal);
  background-image: radial-gradient(ellipse 80% 120% at 100% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -80%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(180,83,9,0.12);
}

/* ──────────────── PROCESS STEPS ──────────────── */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 1.5rem; left: 3.5rem; right: 3.5rem;
  height: 2px; background: var(--c-border); z-index: 0;
}
.process-step { flex: 1; text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.process-step-num {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--c-surface); border: 2px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 0.85rem; font-weight: 700; color: var(--c-muted);
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.process-step.active .process-step-num,
.process-step:hover .process-step-num {
  background: var(--c-teal); border-color: var(--c-teal); color: #fff;
}
.process-step h4 { font-size: 0.9rem; font-weight: 600; color: var(--c-text); margin: 0 0 0.3rem; }
.process-step p  { font-size: 0.8rem; color: var(--c-muted); margin: 0; }

/* ──────────────── CONTACT ──────────────── */
.contact-panel {
  background: var(--c-dark); border-radius: var(--r-lg);
  padding: 2.5rem; position: relative; overflow: hidden;
}
.contact-panel::before {
  content: ''; position: absolute; bottom: -30%; right: -15%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(20,100,180,0.1);
}
.contact-form {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 2.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: var(--r); border-color: var(--c-border);
  font-size: 0.9rem; padding: 0.65rem 1rem;
  background: var(--c-bg); color: var(--c-text);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(20,100,180,0.12);
  background: var(--c-surface);
}
.contact-form .form-label { font-size: 0.85rem; font-weight: 600; color: var(--c-text); }

/* Contact info row */
.ci-row { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.25rem; }
.ci-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: var(--r);
  background: rgba(20,100,180,0.15); color: var(--c-teal-hi);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ci-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
.ci-val   { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.ci-val a { color: rgba(255,255,255,0.85); transition: color var(--tr); }
.ci-val a:hover { color: var(--c-teal-hi); }

/* ──────────────── BUTTONS ──────────────── */
.btn-teal {
  background: var(--c-teal); color: #fff;
  border: 2px solid var(--c-teal);
  border-radius: var(--r); font-weight: 600; padding: 0.65rem 1.5rem;
  transition: background var(--tr), box-shadow var(--tr);
}
.btn-teal:hover, .btn-teal:focus {
  background: var(--c-teal-hi); border-color: var(--c-teal-hi); color: #fff;
  box-shadow: 0 4px 16px rgba(20,100,180,0.35);
}
.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--r); font-weight: 600; padding: 0.65rem 1.5rem;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: #fff;
}
.btn-orange {
  background: var(--c-orange); color: #fff;
  border: 2px solid var(--c-orange);
  border-radius: var(--r); font-weight: 600; padding: 0.65rem 1.5rem;
  transition: background var(--tr), box-shadow var(--tr);
}
.btn-orange:hover {
  background: var(--c-orange-hi); border-color: var(--c-orange-hi); color: #fff;
  box-shadow: 0 4px 16px rgba(180,83,9,0.35);
}
.btn-outline-teal {
  background: transparent; color: var(--c-teal);
  border: 2px solid var(--c-teal);
  border-radius: var(--r); font-weight: 600; padding: 0.65rem 1.5rem;
  transition: background var(--tr), color var(--tr);
}
.btn-outline-teal:hover { background: var(--c-teal); color: #fff; }

/* Bootstrap override */
.btn-primary { background: var(--c-teal); border-color: var(--c-teal); border-radius: var(--r); font-weight: 600; }
.btn-primary:hover { background: var(--c-teal-hi); border-color: var(--c-teal-hi); }
.btn-primary:focus { box-shadow: 0 0 0 3px rgba(20,100,180,0.25); }
.btn-outline-primary { color: var(--c-teal); border-color: var(--c-teal); border-radius: var(--r); font-weight: 600; }
.btn-outline-primary:hover { background: var(--c-teal); border-color: var(--c-teal); color: #fff; }

/* ──────────────── PILL LABEL ──────────────── */
.pill {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.18rem 0.65rem; border-radius: 2rem;
}
.pill--teal { background: var(--c-teal-lo); color: var(--c-teal); }
.pill--orange { background: var(--c-orange-lo); color: var(--c-orange); }
.pill--dark  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }

/* ──────────────── FOOTER ──────────────── */
.site-footer {
  background: var(--c-dark);
  border-top: 3px solid var(--c-teal);
  background-image:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(20,100,180,0.07) 0%, transparent 55%);
}
.ft-logo-text { font-size: 1.35rem; font-weight: 700; color: #fff; letter-spacing: -0.025em; }
.ft-logo-dot  { color: var(--c-teal-hi); }
.ft-logo-sub  { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.site-footer h6 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-teal-hi); margin-bottom: 1rem;
}
.ft-links { list-style: none; padding: 0; margin: 0; }
.ft-links li { margin-bottom: 0.55rem; }
.ft-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color var(--tr), padding-left var(--tr);
}
.ft-links a:hover { color: rgba(255,255,255,0.95); padding-left: 3px; }
.ft-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  font-size: 0.88rem; transition: background var(--tr), color var(--tr);
}
.ft-social a:hover { background: var(--c-teal); color: #fff; }
.ft-ci { display: flex; gap: 0.65rem; margin-bottom: 0.85rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.ft-ci .bi { color: var(--c-teal-hi); margin-top: 2px; flex-shrink: 0; }
.ft-ci a { color: rgba(255,255,255,0.6); transition: color var(--tr); }
.ft-ci a:hover { color: var(--c-teal-hi); }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem; margin-top: 1.25rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ──────────────── BG OVERRIDES ──────────────── */
.bg-light { background-color: var(--c-bg-alt) !important; }
.bg-white { background-color: var(--c-surface) !important; }
.bg-dark-section { background: var(--c-dark); }

/* ──────────────── UTILITY ──────────────── */
.rounded-xl { border-radius: var(--r-lg) !important; }
.shadow-clean { box-shadow: var(--sh-md) !important; }

/* Scroll reveal */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ──────────────── HERO ENTRANCE ANIMATIONS ──────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes accentGlow {
  0%, 80%, 100% { opacity: 1; text-shadow: none; }
  90%            { opacity: 0.7; text-shadow: 0 0 28px rgba(46,134,222,0.8); }
}

/* Staggered hero text entrance */
.hero-panel .hero-eyebrow    { animation: heroFadeRight 0.7s 0.1s ease both; }
.hero-panel .hero-h1         { animation: heroFadeUp 0.8s 0.25s ease both; }
.hero-panel .hero-desc       { animation: heroFadeUp 0.8s 0.42s ease both; }
.hero-panel .d-flex          { animation: heroFadeUp 0.75s 0.58s ease both; }
.hero-panel .hero-mini-stats { animation: heroFadeUp 0.75s 0.74s ease both; }
.hero-img-panel              { animation: heroReveal 1.2s 0.15s ease both; }

/* Hero tag stagger */
.hero-tag-item               { animation: heroFadeRight 0.5s ease both; }
.hero-tag-item:nth-child(1)  { animation-delay: 0.9s; }
.hero-tag-item:nth-child(2)  { animation-delay: 1.05s; }
.hero-tag-item:nth-child(3)  { animation-delay: 1.2s; }
.hero-tag-item:nth-child(4)  { animation-delay: 1.35s; }

/* Accent word pulse */
/* Accent word glows periodically */\n.hero-h1 em { animation: accentGlow 5s 2.5s ease infinite; }

/* Hero image slideshow */
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide  { position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Animated counter */
[data-count] { font-variant-numeric: tabular-nums; }

/* Mobile nav collapse on dark hero — give it a background so items are legible */
@media (max-width: 991.98px) {
  .site-header .navbar-collapse.show {
    background: rgba(3,14,28,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 1rem 1rem;
    margin-top: 0.5rem;
    box-shadow: var(--sh-lg);
  }
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 991.98px) {
  .hero-split { flex-direction: column; min-height: auto; }
  .hero-panel { flex: none; clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%); margin-right: 0; padding: 8rem 2rem 5rem; min-height: 60vh; align-items: flex-start; }
  .hero-img-panel { min-height: 50vw; }
  .hero-tags { display: none; }
  .feat-section { grid-template-columns: 1fr; }
  .feat-section.reverse { direction: ltr; }
  .process-steps { flex-direction: column; }
  .process-steps::before { display: none; }
  .navbar-nav .dropdown-menu { box-shadow: none; border: 1px solid var(--c-border); }
}
@media (max-width: 767.98px) {
  .main-content { padding-top: 0; }   /* page-hero handles header clearance */
  .hero-panel { padding: 6rem 1.5rem 4rem; }
  .hero-mini-stats { gap: 1.25rem; flex-wrap: wrap; }
  .page-hero { padding: 6rem 0 3.5rem; clip-path: none; }
  .stats-bar .row > [class*=col] { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feat-section { min-height: auto; }
  .feat-img { min-height: 240px; }
  .feat-content { padding: 2.5rem 1.5rem; }
}
@media (max-width: 575.98px) {
  .hero-h1 { font-size: 2rem; }
  .sec-title { font-size: 1.65rem; }
  .stats-bar-num { font-size: 1.5rem; }
}


