/* ═══════════════════════════════════════════════════════════
   RIGHT ALIGNED SOLUTIONS — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  --red:        #D32F2F;
  --red-dark:   #C62828;
  --red-mid:    #E53935;
  --red-soft:   #ef9a9a;
  --red-light:  #FFCDD2;
  --ink:        #1a1a1a;
  --muted:      #666;
  --subtle:     #888;
  --border:     #efefef;
  --surface:    #fafafa;
  --glass-bg:     rgba(255,255,255,0.90);
  --glass-blur:   blur(6px);
  --glass-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

/* ── GLOBAL RESET ───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  background: #f8f8f8;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }

/* ── CANVAS BACKDROP ────────────────────────────────────── */
#icon-canvas {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
}

/* ── STACKING CONTEXT ───────────────────────────────────── */
header, .page-hero, .about-banner, .about-hero,
.stats-row, .ceo-section, .section, .jobs-hero,
.filter-bar, .jobs-section, footer {
  position: relative; z-index: 1;
}

/* ── CONTAINER ──────────────────────────────────────────── */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  background: rgba(255,255,255,0.96);
  border-bottom: 2px solid #e0e0e0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 0; min-height: 64px;
}
.logo { height: clamp(34px,5vw,50px); width: auto; transition: transform 0.3s; }
.logo:hover { transform: scale(1.05); }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav ul {
  list-style: none; display: flex;
  flex-wrap: wrap; gap: clamp(12px,1.8vw,25px);
  margin: 0; padding: 0;
}
nav ul li a {
  text-decoration: none; color: #555;
  font-weight: 500; font-size: clamp(13px,1.1vw,16px);
  letter-spacing: 0.5px; transition: color 0.25s;
  position: relative; white-space: nowrap;
}
nav ul li a::after {
  content: ''; position: absolute;
  width: 0; height: 2px;
  background: var(--red); left: 0; bottom: -4px;
  transition: width 0.25s ease;
}
nav ul li a:hover,
nav ul li a.active { color: var(--red); }
nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }

/* ── HAMBURGER ──────────────────────────────────────────── */
.menu-toggle {
  display: none; font-size: 26px; cursor: pointer;
  color: var(--red); padding: 4px 8px; border-radius: 6px;
  transition: background 0.2s; line-height: 1; user-select: none;
}
.menu-toggle:hover { background: rgba(211,47,47,0.08); }

/* ── HERO (index.html) ──────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff; padding: 100px 20px;
  text-align: center; border-radius: 15px;
}
.hero h1 {
  font-size: clamp(28px,5vw,42px);
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.hero p { font-size: clamp(16px,2vw,20px); margin-bottom: 30px; }

/* ── HERO CYCLING ANIMATION ─────────────────────────────── */
.hero-anim-row {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px,5vw,42px);
  font-weight: 600; line-height: 1.2;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  white-space: nowrap; margin-bottom: 20px;
  display: flex; align-items: center;
  justify-content: center; gap: 0.25em;
}
.hero-fixed-text { color: #ffffff; }
.hero-cycling-wrap {
  display: inline-block; vertical-align: top;
  overflow: hidden; position: relative;
}
.hero-cycling-word {
  display: block; position: absolute; top: 0; left: 0;
  white-space: nowrap; color: #1B2A4A; font-weight: 700;
  transform: translateY(110%); opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.2s ease;
}
.hero-cycling-word.state-below  { transform: translateY(110%);  opacity: 1; }
.hero-cycling-word.state-center { transform: translateY(0);      opacity: 1; }
.hero-cycling-word.state-above  { transform: translateY(-110%);  opacity: 0; }

/* ── CTA BUTTON ─────────────────────────────────────────── */
.btn {
  text-decoration: none; background: #fff; color: var(--red);
  padding: 12px 30px; border-radius: 50px;
  font-weight: 600; transition: 0.3s; display: inline-block;
}
.btn:hover {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ── SECTION ────────────────────────────────────────────── */
.section { padding: 60px 0; overflow: hidden; }
.section > .container {
  background: #ffffff; padding: 50px;
  border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative; z-index: 1;
}
#section-backdrop {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; display: block;
}

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero { padding: 40px 0; }
.page-hero .container {
  background: #ffffff; padding: 40px;
  border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
}
.page-hero h2 { font-size: clamp(22px,4vw,32px); margin-bottom: 15px; }
.page-hero p { max-width: 750px; margin: auto; color: var(--muted); line-height: 1.7; }

/* ── CENTER UTILITY ─────────────────────────────────────── */
.center {
  text-align: center; max-width: 750px; margin: auto;
  font-size: 18px; color: #555; line-height: 1.8;
}

/* ── WELCOME GRID ───────────────────────────────────────── */
.welcome-grid {
  display: flex; flex-wrap: wrap; gap: 25px;
  max-width: 950px; margin: auto; padding: 20px 0;
}
.welcome-box {
  flex: 1 1 280px; background: #fff; padding: 25px;
  border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent; transition: 0.3s;
}
.welcome-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: var(--red);
}
.promise {
  text-align: center; max-width: 750px; margin: 30px auto 0;
  color: var(--muted); font-style: italic; line-height: 1.8;
}

/* ── SERVICES & LISTS ───────────────────────────────────── */
.services-text, .difference-text {
  max-width: 950px; margin: auto;
  line-height: 1.8; padding: 20px 0; color: #555;
}
.services-text ul, .difference-text ul, .customers-list {
  list-style: none; padding-left: 0; margin-left: 0;
}
.services-text ul li, .difference-text ul li, .customers-list li {
  margin-bottom: 10px; padding-left: 10px; line-height: 1.6;
}
.services-text ul li::before,
.difference-text ul li::before,
.customers-list li::before {
  content: "\2713 "; color: var(--red); font-weight: bold; margin-right: 5px;
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: #fff; padding: 25px; margin-bottom: 25px;
  border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

/* ── CONTACT GRID ───────────────────────────────────────── */
.grid { display: flex; gap: 25px; flex-wrap: wrap; margin-top: 30px; }
.grid .card { flex: 1 1 300px; }
.grid .card h3 { margin-bottom: 15px; color: var(--red); }
.grid .card p { color: #555; line-height: 1.6; }

/* ── CONTACT FORM ───────────────────────────────────────── */
form input, form textarea {
  width: 100%; padding: 12px; margin-bottom: 15px;
  border: 1px solid #ccc; border-radius: 10px;
  font-family: 'Poppins', sans-serif; transition: 0.3s;
}
form input:focus, form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(211,47,47,0.2); outline: none;
}
form button {
  background: var(--red); color: #fff; border: none;
  padding: 14px 25px; border-radius: 50px; cursor: pointer;
  font-weight: 600; font-family: 'Poppins', sans-serif; transition: 0.3s;
}
form button:hover { background: #B71C1C; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

/* ── ABOUT — DETAIL GRID ────────────────────────────────── */
.about-detail-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(20px,4vw,52px); align-items: start;
}
.about-detail-left h2 {
  font-size: clamp(17px,2.2vw,26px); font-weight: 700;
  color: var(--ink); margin-bottom: 14px; line-height: 1.35;
}
.about-detail-left h2 span { color: var(--red); }
.about-detail-left p {
  font-size: clamp(13px,1.2vw,14px); color: var(--muted);
  line-height: 1.9; margin-bottom: 14px;
}
.detail-cards { display: flex; flex-direction: column; gap: 10px; }
.detail-card {
  background: #fff; border: 1px solid var(--border);
  border-left: 3px solid var(--red); border-radius: 10px;
  padding: 14px 16px; display: flex; align-items: flex-start;
  gap: 12px; transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.detail-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); transform: translateX(4px); }
@media (hover: none) { .detail-card:hover { transform: none; } }
.detail-card-icon { font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.detail-card strong { font-size: 13px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
.detail-card span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── STATS ROW ──────────────────────────────────────────── */
.stats-row {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-mid) 40%, var(--red-soft) 100%);
}
.stats-inner { display: grid; grid-template-columns: repeat(2,1fr); }
.stat-item {
  padding: clamp(20px,3vw,34px) clamp(12px,2vw,20px);
  border-right: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  text-align: center; transition: background 0.3s, transform 0.3s;
}
.stat-item:hover { background: rgba(0,0,0,0.07); transform: translateY(-2px); }
.stat-item:nth-child(2) { border-right: none; }
.stat-item:nth-child(3) { border-bottom: none; }
.stat-item:nth-child(4) { border-right: none; border-bottom: none; }
.stat-num {
  font-size: clamp(26px,4vw,38px); font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -0.5px; font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: clamp(10px,1vw,11px); font-weight: 500;
  color: rgba(255,255,255,0.82); margin-top: 7px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ── CEO SECTION ────────────────────────────────────────── */
.ceo-section { padding: clamp(28px,5vw,60px) 0 clamp(32px,5vw,72px); }
.ceo-section .container {
  background: var(--glass-bg); border-radius: clamp(12px,2vw,20px);
  box-shadow: var(--glass-shadow); backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: clamp(24px,4vw,52px) clamp(20px,4vw,48px);
}
.section-heading { text-align: center; margin-bottom: clamp(20px,3.5vw,44px); }
.section-heading .tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 9px;
}
.section-heading h2 { font-size: clamp(18px,2.8vw,30px); font-weight: 700; color: var(--ink); }
.ceo-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  overflow: hidden; display: grid; grid-template-columns: 1fr;
}
.ceo-left {
  background: linear-gradient(160deg, var(--red-dark) 0%, var(--red-mid) 55%, var(--red-soft) 100%);
  padding: clamp(28px,4vw,44px) clamp(20px,3vw,28px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ceo-avatar {
  width: clamp(72px,10vw,120px); height: clamp(72px,10vw,120px);
  border-radius: 50%; overflow: hidden; position: relative;
  background: rgba(255,255,255,0.18); border: 3px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; flex-shrink: 0;
}
.founder-img {
  position: absolute; width: 140%; height: auto;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ceo-name { font-size: clamp(16px,2vw,18px); font-weight: 700; color: #fff; margin-bottom: 4px; }
.ceo-title {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.82); margin-bottom: 24px;
}
.ceo-contact { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ceo-contact-item {
  background: rgba(255,255,255,0.24); border-radius: 8px; padding: 8px 11px;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 8px; font-size: 12px; color: #ffffff; font-weight: 500;
  text-align: left; overflow: hidden;
}
.ceo-contact-item a { color: #ffffff; text-decoration: none; }
.ceo-contact-item span:first-child { font-size: 16px; }
.ceo-right { padding: clamp(24px,3.5vw,44px) clamp(20px,3.5vw,40px); }
.ceo-right h2 { font-size: clamp(16px,2vw,20px); font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.ceo-right .lead { font-size: clamp(13px,1.2vw,14px); color: var(--muted); line-height: 1.85; margin-bottom: 24px; }
.ceo-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 24px; }
.ceo-stat-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 14px;
  transition: border-color 0.3s, background 0.3s;
}
.ceo-stat-box:hover { border-color: var(--red-light); background: #fff8f8; }
.ceo-stat-box .num { font-size: clamp(20px,2.5vw,24px); font-weight: 800; color: var(--red); line-height: 1; }
.ceo-stat-box .lbl { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.prev-exp-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--subtle); margin-bottom: 10px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.exp-tag {
  background: var(--ink); color: rgba(255,255,255,0.82); font-size: 12px;
  padding: 5px 13px; border-radius: 50px;
  transition: background 0.3s, color 0.3s; cursor: default;
}
.exp-tag:hover { background: var(--red); color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: rgba(55,55,55,0.94); color: #fff;
  text-align: center; padding: clamp(16px,2.5vw,25px) 0;
  margin-top: 40px; font-weight: 500; font-size: clamp(12px,1.2vw,14px);
  border-radius: 10px; backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── JOB LISTINGS OVERRIDE ──────────────────────────────── */
.jobs-section .container {
  background: transparent !important; box-shadow: none !important;
  padding: 0 !important; border-radius: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  nav ul { display: flex !important; }
  .menu-toggle { display: none; }
  .about-detail-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(4,1fr); }
  .stat-item { border-bottom: none; }
  .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.22); }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:last-child   { border-right: none; }
  .ceo-card { grid-template-columns: 260px 1fr; }
}

.stats-row {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red-mid) 40%, var(--red-soft) 100%);
}

.stats-row .container {
  width: 100%;
  max-width: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.stat-item {
  padding: clamp(20px,3vw,34px) clamp(12px,2vw,20px);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.22);
  transition: background 0.3s, transform 0.3s;
}

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

.stat-item:hover {
  background: rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

@media (min-width: 960px) {
  .ceo-card { grid-template-columns: 280px 1fr; }
}

@media (min-width: 1200px) {
  .container { width: 90%; }
}

@media (max-width: 767px) {
  .menu-toggle { display: block; }
  nav ul {
    display: none; flex-direction: column; gap: 14px;
    background: #fff; position: absolute; top: 64px; right: 10px;
    width: min(210px,80vw); padding: 14px;
    border: 1px solid #e0e0e0; border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10); z-index: 1001;
  }
  nav ul.active { display: flex; }
  nav ul li a { font-size: 14px; padding: 4px 0; }
  .hero-anim-row { font-size: 28px; white-space: normal; flex-wrap: wrap; justify-content: center; }
  .hero-cycling-wrap { width: 100% !important; display: block; }
  .hero-cycling-word { width: 100%; text-align: center; left: 0 !important; }
  .section > .container { padding: 30px 20px; }
  .grid { flex-direction: column; }
  .welcome-grid { flex-direction: column; }
  .services-text { padding: 15px 10px; }
  .services-text ul li { font-size: 16px; }
}

@media (max-width: 400px) {
  .ceo-stats { grid-template-columns: 1fr; }
}

@media (max-width: 359px) {
  .ceo-section .container { padding: 18px 14px; }
  .stat-num { font-size: 22px; }
  .page-hero h2 { font-size: 18px; }
  .nav img { height: 28px; }
}

@media print {
  #icon-canvas, .menu-toggle { display: none !important; }
  header { position: static; box-shadow: none; border-bottom: 1px solid #ccc; }
  .ceo-section .container { background: #fff; box-shadow: none; backdrop-filter: none; border: 1px solid #ddd; }
  footer, .ceo-left, .stats-row { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .detail-card:hover, .exp-tag:hover, .ceo-stat-box:hover { transform: none; box-shadow: none; }
}

.simple-footer{
  width:100%;
  background:#4a4a4a;
  color:#fff;
  text-align:center;
  padding:18px 0;
  font-size:14px;
  margin-top:40px;
}

.simple-footer p{
  margin:0;
}
/* ── CUSTOMERS PAGE ───────────────────────────────────── */
.customers-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  margin-top:30px;
}

.customer-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:16px;
  padding:24px 22px;
  box-shadow:0 5px 18px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.customer-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
  border-color: var(--red-light);
}

.customer-card h3{
  font-size:20px;
  color:var(--ink);
  margin-bottom:14px;
  line-height:1.3;
}

.customer-card .icon{
  font-size:28px;
  margin-bottom:14px;
}

.customers-list{
  list-style:none;
  padding-left:0;
  margin:0;
}

.customers-list li{
  margin-bottom:10px;
  padding-left:18px;
  position:relative;
  color:#555;
  line-height:1.6;
}

.customers-list li::before{
  content:"✓";
  color:var(--red);
  font-weight:700;
  position:absolute;
  left:0;
  top:0;
}

.customer-note{
  text-align:center;
  margin-top:28px;
  color:var(--muted);
  font-size:15px;
}

/* ── SERVICES BOX LAYOUT ───────────────────────────────── */
.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-list {
  margin-top: 6px;
}

.service-card{
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.service-card .icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card h3{
  font-size: 18px;
  font-weight: 700;
  color: #1f2430;
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #5b6270;
  font-size: 15px;
  line-height: 1.8;
}

.service-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e53935;
  font-weight: 700;
  font-size: 18px;
}

/* tablet */
@media (max-width: 991px){
  .services-grid{
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

/* mobile */
@media (max-width: 767px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .service-card{
    padding: 22px 18px;
    border-radius: 18px;
  }

  .service-card h3{
    font-size: 17px;
  }

  .service-list li{
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ── Fix: override style.css .section .container white box ── */
  .jobs-section .container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .jobs-hero {
    background: linear-gradient(135deg, #D32F2F, #FFCDD2);
    color: #fff;
    padding: 60px 20px 50px;
    text-align: center;
  }
  .jobs-hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.15);
  }
  .jobs-hero p {
    font-size: clamp(14px, 1.6vw, 17px);
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── Filter Bar ── */
  .filter-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
    position: sticky;
    top: 64px;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .filter-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .search-box {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 8px 14px;
    gap: 8px;
    border: 1.5px solid transparent;
    transition: border-color 0.2s;
  }
  .search-box:focus-within {
    border-color: #D32F2F;
    background: #fff;
  }
  .search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    width: 100%;
  }
  .search-box span { color: #999; font-size: 15px; }
  .filter-count {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    margin-left: auto;
  }
  .filter-count strong { color: #D32F2F; }

  /* ── Jobs Section ── */
  .jobs-section { padding: 40px 0 60px; }

  /* ── Cards Grid ── */
  .jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 20px;
    margin-top: 24px;
  }

  /* ── Job Card ── */
  .job-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.07);
    padding: 24px;
    border: 1.5px solid #f0f0f0;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
  }
  .job-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D32F2F, #FFCDD2);
    border-radius: 14px 0 0 14px;
  }
  .job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(211,47,47,0.13);
    border-color: #FFCDD2;
  }
  @media (hover: none) { .job-card:hover { transform: none; } }

  .job-card-title {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    padding-right: 8px;
  }
  .job-card-role {
    font-size: 13px;
    color: #D32F2F;
    font-weight: 600;
  }
  .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
  }
  .job-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: #666;
    background: #f7f7f7;
    padding: 4px 10px;
    border-radius: 20px;
  }
  .job-meta-item span:first-child { font-size: 13px; }
  .job-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    flex: 1;
  }
  .job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
  }
  .apply-btn {
    display: inline-block;
    background: #D32F2F;
    color: #fff;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .apply-btn:hover {
    background: #B71C1C;
    box-shadow: 0 4px 14px rgba(211,47,47,0.3);
  }

  /* ── States ── */
  .state-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
  }
  .state-box .icon { font-size: 48px; margin-bottom: 14px; }
  .state-box h3 { font-size: 18px; color: #555; margin-bottom: 8px; }
  .state-box p { font-size: 14px; line-height: 1.7; }

  .spinner {
    width: 42px; height: 42px;
    border: 4px solid #f0f0f0;
    border-top-color: #D32F2F;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .highlight { color: #D32F2F; font-weight: 600; }

  @media (max-width: 540px) {
    .jobs-grid { grid-template-columns: 1fr; }
    .filter-inner { flex-direction: column; align-items: stretch; }
    .filter-count { margin-left: 0; }
  }

/* ===== Extracted inline styles ===== */
.service-eyebrow {
  background: var(--brand-tint);
  color: var(--brand-dark);
}

.state-link,
.inline-action {
  color: #D32F2F;
  font-weight: 600;
}

.inline-action {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
/* ── CUSTOMERS PAGE RESPONSIVE FIX ─────────────────────── */
@media (max-width: 991px){
  .customers-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 767px){
  .customers-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .customer-card{
    padding: 20px 18px;
    border-radius: 18px;
  }

  .customer-card h3{
    font-size: 17px;
    margin-bottom: 12px;
  }

  .customers-list li{
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
  }

  .customer-note{
    font-size: 14px;
    margin-top: 22px;
  }
}

@media (max-width: 420px){
  .section > .container{
    padding: 24px 16px;
  }

  .section-heading h2{
    font-size: 22px;
    line-height: 1.3;
  }

  .section-heading .intro{
    font-size: 14px;
    line-height: 1.7;
  }
}