:root{
  --ink:#0b1220;
  --navy:#101a2e;
  --panel:#141f37;
  --panel2:#182542;
  --amber:#f5a623;
  --amber-soft:#f5a6231f;
  --amber-border:#f5a6234d;
  --white:#f7f8fb;
  --muted:#dee5f28c;
  --muted2:#dce4f238;
  --border:#f5a6231a;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html{
  scroll-behavior:smooth;
}
body{
  background:var(--ink);
  color:var(--white);
  font-family:'Inter',sans-serif;
  font-weight:300;
  overflow-x:hidden;
}

/* ── NOISE ── */
#noise{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0.02;
}

/* ── NAV ── */
nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:500;
  padding:20px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:all 0.4s;
}
nav.scrolled{
  background:#0b1220eb;
  backdrop-filter:blur(18px);
  padding:13px 56px;
  border-bottom:1px solid var(--border);
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
}
.brand-mark{
  width:38px;
  height:38px;
  background:linear-gradient(135deg,var(--amber),#ffcf6b);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Sora',sans-serif;
  font-weight:800;
  font-size:16px;
  color:var(--ink);
  flex-shrink:0;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name{
  font-family:'Sora',sans-serif;
  font-size:17px;
  font-weight:700;
  color:var(--white);
  letter-spacing:0.3px;
}
.brand-sub{
  font-size:9.5px;
  font-weight:500;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--amber);
  margin-top:1px;
}
.nav-links{
  display:flex;
  gap:34px;
  list-style:none;
}
.nav-links a{
  font-family:'Sora',sans-serif;
  font-size:13.5px;
  font-weight:500;
  color:var(--muted);
  text-decoration:none;
  transition:color 0.3s;
}
.nav-links a:hover{
  color:var(--white);
}
.nav-cta{
  font-family:'Sora',sans-serif;
  font-size:13px;
  font-weight:600;
  color:var(--ink);
  background:var(--amber);
  text-decoration:none;
  padding:10px 22px;
  border-radius:7px;
  transition:all 0.3s;
}
.nav-cta:hover{
  background:#ffcf6b;
  text-decoration:none;
  box-shadow:0 12px 18px #ffcf6b40;
  transform:translateY(-1px);
}
.mobile-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.mobile-toggle span{
  width:22px;
  height:2px;
  background:var(--white);
  border-radius:1px;
  transition:all 0.3s;
}

/* ── HERO ── */
#hero{
  min-height:96vh;
  display:flex;
  align-items:center;
  padding:130px 56px 60px;
  position:relative;
  overflow:hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: 
    linear-gradient(
      180deg, 
      rgba(11, 18, 32, 0.55) 0%, 
      rgba(16, 26, 46, 0.65) 60%, 
      rgba(11, 18, 32, 0.75) 100%
    ),
    url('img/truck-hero.jfif'); /* Ensure path matches your image file location */
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-layout{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
  width:100%;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  border:1px solid var(--amber-border);
  background:var(--amber-soft);
  padding:7px 16px;
  border-radius:20px;
  margin-bottom:28px;
  font-family:'Sora',sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--amber);
  animation:pulse 1.8s infinite;
}

.edot{
  width:6px;
  height:6px;
  background:var(--amber);
  border-radius:50%;
  animation:pulse 1.8s infinite;
}
@keyframes pulse{0%,100%{
  opacity:1;
}50%{
  opacity:0.6;
}}
h1{
  font-family:'Sora',sans-serif;
  font-size:clamp(42px,5.4vw,64px);
  font-weight:800;
  line-height:1.06;
  color:var(--white);
  margin-bottom:22px;
  letter-spacing:-0.5px;
}
h1 .a{
  color:var(--amber);
}
.hero-desc{
  font-size:16.5px;
  color:var(--muted);
  line-height:1.75;
  max-width:520px;
  margin-bottom:36px;
}
.hero-btns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn-primary{
  font-family:'Sora',sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--ink);
  background:var(--amber);
  text-decoration:none;
  padding:15px 32px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:all 0.3s;
}
.btn-primary:hover{
  background:#ffcf6b;
  transform:translateY(-2px);
  box-shadow:0 14px 32px #f5a62340;
}
.btn-outline{
  font-family:'Sora',sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--white);
  text-decoration:none;
  padding:14px 28px;
  border-radius:8px;
  border:1px solid var(--muted2);
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:all 0.3s;
}
.btn-outline:hover{
  border-color:var(--amber);
  color:var(--amber);
}

.hero-stats{
  display:flex;
  gap:0;
  margin-top:48px;
  padding-top:30px;
  border-top:1px solid var(--border);
}
.hstat{
  flex:1;
  padding-right:24px;
  border-right:1px solid var(--border);
}
.hstat:last-child{
  border-right:none;
}
.hstat:not(:first-child){
  padding-left:24px;
}
.hstat-num{
  font-family:'Sora',sans-serif;
  font-size:30px;
  font-weight:700;
  color:var(--white);
  line-height:1;
}
.hstat-num span{
  color:var(--amber);
}
.hstat-label{
  font-size:11px;
  color:var(--muted);
  margin-top:5px;
  letter-spacing:0.3px;
}

/* Hero visual: dispatch panel */
.hero-visual{
  position:relative;
}
.dispatch-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  position: relative;
  overflow:hidden;
  animation:fadeUp 0.9s 0.3s ease both;
}
.dispatch-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg,var(--amber),transparent);
}
.dc-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}
.dc-title{
  font-family:'Sora',sans-serif;
  font-size:13px;
  font-weight:600;
  color:var(--white);
}
.dc-live{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:600;
  letter-spacing:1px;
  color:var(--amber);
  text-transform:uppercase;
}
.dc-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid var(--border);
}
.dc-row:last-child{
  border-bottom:none;
}
.dc-key{
  font-size:12.5px;
  color:var(--muted);
}
.dc-val{
  font-family:'Sora',sans-serif;
  font-size:13.5px;
  font-weight:600;
  color:var(--white);
}
.dc-val.good{
  color:#5fd98a;
}

.dc-map{
    margin-top:20px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid var(--border);
    position:relative;
    background:#141F37;
}

#load-map{
    width:100%;
    height:140px;
    background:#141F37;
}

#load-map .leaflet-control-zoom{
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:none;
}

#load-map .leaflet-control-zoom a{
    background:#141F37;
    color:#DCE4F2;
    border-color:rgba(255,255,255,0.08);
}

#load-map .leaflet-control-zoom a:hover{
    background:#1B2944;
}

.map-label{
    background:transparent;
    border:none;
    box-shadow:none;
    color:rgba(220,228,242,0.65);
    font-family:'Sora',Arial,sans-serif;
    font-size:9px;
    font-weight:600;
    letter-spacing:.5px;
}

.map-label::before{
    display:none;
}

.leaflet-tooltip.map-label{
    padding:0;
}





/* ── SECTION BASE ── */
.sec{
  padding:88px 56px;
  position:relative;
  z-index:2;
}
.sec-tag{
  font-family:'Sora',sans-serif;
  font-size:11.5px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:14px;
}
h2{
  font-family:'Sora',sans-serif;
  font-size:clamp(30px,4vw,42px);
  font-weight:700;
  color:var(--white);
  line-height:1.15;
  margin-bottom:16px;
  letter-spacing:-0.3px;
}
h2 .a{
  color:var(--amber);
}
.sec-desc{
  font-size:15.5px;
  color:var(--muted);
  max-width:560px;
  line-height:1.75;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s ease,transform 0.7s ease;
}
.reveal.in{
  opacity:1;
  transform:none;
}
.rd1{
  transition-delay:0.08s;
}.rd2{
  transition-delay:0.16s;
}.rd3{
  transition-delay:0.24s;
}




/* ── ABOUT ── */
#about{
  background:var(--navy);
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}
.about-grid p{
  font-size:15.5px;
  color:var(--muted);
  line-height:1.8;
  margin-bottom:18px;
}
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:8px;
}
.mv-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
  padding:24px;
  transition:all 0.35s;
}
.mv-card:hover{
  border-color:var(--amber-border);
  transform:translateY(-3px);
}.mv-card:hover h3{
    text-shadow:0 0 2px #F5A623;
      transition:all 0.3s;
}
.mv-card h3{
  font-family:'Sora',sans-serif;
  font-size:15px;
  font-weight:600;
  color:var(--amber);
  margin-bottom:8px;
}
.mv-card p{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.65;
  margin:0;
}

/* ── SERVICES ── */
/* ── SERVICES ── */
#services {
  position: relative;
  background-image: 
    linear-gradient(
      180deg, 
      rgba(11, 18, 32, 0.72) 0%, 
      rgba(11, 18, 32, 0.82) 50%, 
      rgba(11, 18, 32, 0.92) 100%
    ),
    url('img/dispatch-dashboard.jfif'); /* Ensure path matches your image file location */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional: adds a smooth parallax feel on scroll */
}

/* Semi-transparent cards so the background displays subtly behind them */
.svc-card {
  background: rgba(16, 26, 46, 0.75);
  backdrop-filter: blur(8px); /* Blur effect for modern UI readability */
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  transition: all 0.35s;
  cursor: default;
}

.svc-card:hover {
  background: rgba(22, 36, 64, 0.88);
  border-color: var(--amber-border);
  transform: translateY(-4px);
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:44px;
}

.svc-icon{
  width:36px;
  height:36px;
  color:var(--amber);
  margin-bottom:16px;
}
.svc-card h3{
  font-family:'Sora',sans-serif;
  font-size:15.5px;
  font-weight:600;
  color:var(--white);
  margin-bottom:8px;
}
.svc-card p{
  font-size:13px;
  color:var(--muted);
  line-height:1.65;
}

/* ── RYDER PROGRAMS ── */
/* ============================================================
   RYDER RENTAL & LEASE PAGES — styles
   Built to extend your existing sheets/style.css.
   Your uploaded stylesheet came through empty, so the variables
   below are best-guess fallbacks inferred from your markup
   (Sora/Inter, dark theme, .btn-primary/.btn-outline, .sec-tag).
   If your real style.css already defines these variables,
   delete this :root block and this file will inherit them.
   ============================================================ */

:root {
  --bg:            #0B1220;
  --bg-alt:        #101A2E;
  --card-bg:       #141926;
  --card-border:   #232a3d;
  --text:          #eef1f7;
  --text-dim:      #9aa3b8;
  --accent:        #F5A623;   /* primary CTA / brand accent */
  --accent-hover:  #ffcf6b;
  --ryder-yellow:  #F5A624;   /* nod to Ryder's brand yellow, used sparingly for badges only */
  --success:       #2ecc71;
  --radius:        14px;
  --font-display:  'Sora', sans-serif;
  --font-body:     'Inter', sans-serif;
}

/* ---------- shared section shell ---------- */
.ryder-sec {
  padding: 96px 6vw;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}
.ryder-sec-alt { background: var(--bg-alt); }

.ryder-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.ryder-head .sec-tag { justify-content: center; }

.ryder-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.1;
  margin: 16px 0 14px;
}

.sec-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* eyebrow tag (reuses your .sec-tag / .edot pattern) */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.edot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,122,26,0.15);
}

/* ---------- badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-partner {
  background: #f4c4001f;
  color: var(--ryder-yellow);
  border: 1px solid #f4c40059;
}
.badge-maint {
  background: rgba(46, 204, 113, 0.12);
  color: var(--success);
  border: 1px solid rgba(46, 204, 113, 0.32);
}
.badge-lto {
  background: #ff7a1a1f;
  color: var(--accent);
  border: 1px solid #ff7a1a52;
}
.badge-sm { padding: 3px 9px; font-size: 0.68rem; }

/* ---------- vehicle category cards (responsive grid) ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 64px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.fleet-card:hover {
  transform: translateY(-4px);
  border-color: #F5A623;
}

.fleet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.fleet-icon { font-size: 1.6rem; }

.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.fleet-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.fleet-list li {
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fleet-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fleet-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.fleet-meta { font-size: 0.82rem; color: var(--text-dim); }

/* ---------- lease program cards ---------- */
/* Update only this section block in your CSS */
#ryder-lease {
  position: relative;
  padding: 96px 6vw;
  color: var(--text, #ffffff);
  font-family: var(--font-body);
  
  /* Background image with dark gradient overlay for text readability */
  background: 
    linear-gradient(180deg, rgba(10, 15, 26, 0.82) 0%, rgba(10, 15, 26, 0.88) 100%),
    url('img/lease-truck-img.jfif') center center / cover no-repeat;
    
  overflow: hidden;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 940px;
  margin: 0 auto 64px;
}
.program-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.program-card-highlight {
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.15), 0 12px 32px -16px rgba(255, 122, 26, 0.25);
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.program-desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.check-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.check-list li {
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ---------- CTA buttons ---------- */
.btn-block { width: 100%; text-align: center; margin-top: auto; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #12100a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- rate tables ---------- */
.rate-table-block {
  max-width: 1180px;
  margin: 0 auto 48px;
}
.rate-table-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

/* horizontally-scrollable wrapper for mobile */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.rate-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.rate-table thead th {
  font-family: var(--font-display);
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 122, 26, 0.06);
  padding: 14px 18px;
  border-bottom: 1px solid var(--card-border);
  white-space: nowrap;
}
.rate-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text);
  white-space: nowrap;
}
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table tbody tr:hover { background: #ffffff05; }
.rate-table tbody td:first-child { font-weight: 600; }

.rate-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .ryder-sec { padding: 64px 5vw; }
  .fleet-grid, .program-grid { grid-template-columns: 1fr; }
  .section-cta-row { flex-direction: column; }
  .section-cta-row .btn-primary,
  .section-cta-row .btn-outline { width: 100%; }

  /* Card-style collapse for the rate table on very small screens.
     Comment this block out if you'd rather keep horizontal scroll
     at every breakpoint. */
  .rate-table thead { display: none; }
  .rate-table, .rate-table tbody, .rate-table tr, .rate-table td { display: block; width: 100%; }
  .rate-table { min-width: 0; }
  .rate-table tr {
    border-bottom: 1px solid var(--card-border);
    padding: 14px 18px;
  }
  .rate-table tbody tr:last-child { border-bottom: none; }
  .rate-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: none;
    white-space: normal;
    text-align: right;
  }
  .rate-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-dim);
    text-align: left;
  }
}


/* ── LEASE-ON PROGRAM ── */
#lease{
  background:var(--navy);
  position:relative;
  overflow:hidden;
}
#lease::before{
  content:'';
  position:absolute;
  top:-100px;
  right:-100px;
  width:400px;
  height:400px;
  background:radial-gradient(circle,#f5a62312,transparent 70%);
}
.lease-layout{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:2;
}
.lease-points{
  display:flex;
  flex-direction:column;
  gap:0;
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  margin:26px 0 30px;
}
.lpoint{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 20px;
  border-bottom:1px solid var(--border);
}
.lpoint:last-child{
  border-bottom:none;
}
.lpoint-icon{
  width:20px;
  height:20px;
  color:#5fd98a;
  flex-shrink:0;
  margin-top:2px;
}
.lpoint-text{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.6;
}
.lpoint-text strong{
  color:var(--white);
  font-weight:500;
}
.lease-steps{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  padding:32px;
}
.lstep{
  display:flex;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.lstep:last-child{
  border-bottom:none;
}
.lstep-num{
  font-family:'Sora',sans-serif;
  font-size:13px;
  font-weight:700;
  color:var(--amber);
  background:var(--amber-soft);
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.lstep-title{
  font-family:'Sora',sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--white);
  margin-bottom:4px;
}
.lstep-desc{
  font-size:12.5px;
  color:var(--muted);
  line-height:1.6;
}

/* ── INDUSTRIES ── */
#industries{
  background:var(--ink);
}
.ind-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:40px;
}
.ind-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
  padding:24px;
  transition:all 0.35s;
}
.ind-card:hover{
  border-color:var(--amber-border);
  background:var(--panel2);
}
.ind-card h4{
  font-family:'Sora',sans-serif;
  font-size:14.5px;
  font-weight:600;
  color:var(--white);
  margin-bottom:6px;
}
.ind-card p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

/* ── CONTACT ── */
#contact{
  background:var(--navy);
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.contact-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:28px;
}
.citem{
  display:flex;
  align-items:center;
  gap:16px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px 20px;
  transition:all 0.3s;
}
.citem:hover{
  border-color:var(--amber-border);
}
.cicon{
  width:38px;
  height:38px;
  border-radius:9px;
  background:var(--amber-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.cicon svg{
  width:18px;
  height:18px;
  color:var(--amber);
}
.clabel{
  font-size:11px;
  color:var(--muted);
  letter-spacing:0.5px;
  text-transform:uppercase;
  margin-bottom:2px;
}
.cval{
  font-family:'Sora',sans-serif;
  font-size:14.5px;
  font-weight:600;
  color:var(--white);
  text-decoration:none;
}
.cval:hover{
  color:var(--amber);
}

.contact-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:40px;
}
.contact-card h3{
  font-family:'Sora',sans-serif;
  font-size:22px;
  font-weight:700;
  color:var(--white);
  margin-bottom:10px;
}
.contact-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:24px;
}
.fg{
  margin-bottom:14px;
}
.fg input,.fg textarea{
  width:100%;
  background:#ffffff08;
  border:1px solid var(--border);
  color:var(--white);
  padding:12px 14px;
  border-radius:8px;
  font-family:'Inter',sans-serif;
  font-size:13.5px;
  outline:none;
  transition:border-color 0.3s;
}
.fg input:focus,.fg textarea:focus{
  border-color:var(--amber);
}
.fg textarea{
  resize:none;
  height:90px;
}
.form-btn{
  width:100%;
  background:var(--amber);
  border:none;
  color:var(--ink);
  padding:13px;
  border-radius:8px;
  font-family:'Sora',sans-serif;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:all 0.3s;
}
.form-btn:hover{
  box-shadow:0 12px 18px #ffcf6b40;
  transform:translateY(-1px);
  transition:all 0.6s;
}

/* ── FOOTER ── */
footer{
  background:var(--ink);
  border-top:1px solid var(--border);
  padding:48px 56px 28px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:36px;
}
.footer-brand-row{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:14px;
}
.footer-desc{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.7;
  max-width:280px;
}
.footer-col h5{
  font-family:'Sora',sans-serif;
  font-size:13px;
  font-weight:600;
  color:var(--white);
  margin-bottom:14px;
  letter-spacing:0.3px;
}
.footer-col a{
  display:block;
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
  margin-bottom:10px;
  transition:color 0.3s;
}
.footer-col a:hover{
  color:var(--amber);
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  border-top:1px solid var(--border);
  flex-wrap:wrap;
  gap:12px;
}
.footer-copy{
  font-size:12px;
  color:var(--muted);
}
.footer-legal{
  display:flex;
  gap:20px;
}
.footer-legal a{
  font-size:12px;
  color:var(--muted);
  text-decoration:none;
  transition:color 0.3s;
}
.footer-legal a:hover{
  color:var(--amber);
}

/* ── MOBILE MENU ── */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#0b1220fa;
  backdrop-filter:blur(16px);
  z-index:480;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:26px;
  opacity:0;
  visibility:hidden;
  transition:all 0.35s;
}
.mobile-menu.open{
  opacity:1;
  visibility:visible;
}
.mobile-menu a{
  font-family:'Sora',sans-serif;
  font-size:22px;
  font-weight:600;
  color:var(--white);
  text-decoration:none;
}

/* ── RESPONSIVE ── */
@media (max-width:1024px){
  .hero-layout,.about-grid,.lease-layout,.contact-grid{
  grid-template-columns:1fr !important;
  gap:40px !important;
}
  .services-grid{
  grid-template-columns:repeat(2,1fr) !important;
}
  .ind-grid{
  grid-template-columns:repeat(2,1fr) !important;
}
  .footer-top{
  grid-template-columns:1fr 1fr !important;
}
  .sec{
  padding:64px 36px;
}
}
@media (max-width:768px){
  nav{
  padding:16px 22px;
}
  nav.scrolled{
  padding:11px 22px;
}
  .nav-links,.nav-cta{
  display:none;
}
  .mobile-toggle{
  display:flex;
}
  #hero{
  padding:104px 22px 50px;
}
  h1{
  font-size:clamp(34px,9vw,46px);
}
  .hero-btns{
  flex-direction:column;
}
  .hero-btns a{
  justify-content:center;
}
  .hero-stats{
  flex-wrap:wrap;
  gap:16px;
}
  .hstat{
  flex:1 1 45%;
  border-right:none !important;
  padding:0 !important;
}
  .sec{
  padding:54px 22px;
}
  .services-grid,.ind-grid{
  grid-template-columns:1fr !important;
}
  .footer-top{
  grid-template-columns:1fr !important;
  gap:28px !important;
}
  .footer-bottom{
  flex-direction:column;
  text-align:center;
}
}
