/* ══════════════════════════════════════════════════════════════
   GLOBESWIFT EXPO - MODERN HOMEPAGE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --green: #1a6b4a;
  --green-d: #0d3b26;
  --green-m: #2d9464;
  --green-l: #e8f5ee;
  --green-ll: #f2faf6;
  --blue: #1a4a8a;
  --blue-m: #2a6abf;
  --blue-l: #e8eef8;
  --gold: #c8932a;
  --gold-l: #fdf3e3;
  --dark: #111a14;
  --text: #2a2e2b;
  --muted: #6b7a70;
  --light: #b0bdb5;
  --border: #dde8e2;
  --bg: #f7faf8;
  --white: #fff;
  --r: 16px;
  --rs: 8px;
  --rx: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .13);
}

/* ─── HERO SECTION ─── */
.hero {
  background: linear-gradient(135deg, var(--green-d) 0%, #1a5538 40%, var(--blue) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='0' cy='0' r='2'/%3E%3Ccircle cx='80' cy='0' r='2'/%3E%3Ccircle cx='0' cy='80' r='2'/%3E%3Ccircle cx='80' cy='80' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '●';
  color: #4ade80;
  font-size: 9px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
}

.hero h1 span {
  color: #f0c060;
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
}

.hero-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 40px;
  z-index: 2;
}

.hero-stat-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  color: #fff;
}

.hero-stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #f0c060;
}

.hero-stat-card .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
  letter-spacing: .04em;
}

.hero-cert {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: span 2;
}

.hero-cert-icon {
  font-size: 28px;
}

.hero-cert-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-cert-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}

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

.stat-item .big {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-item .lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── SECTIONS SHARED ─── */
section {
  padding: 40px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--green);
  margin-bottom: 8px;
}

.sec-label.blue {
  color: var(--blue);
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}

.sec-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--rx);
  object-fit: cover;
  height: 420px;
}

.about-badge-over {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-over .icon {
  font-size: 28px;
}

.about-badge-over .txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.about-badge-over .sub {
  font-size: 11px;
  color: var(--muted);
}

.about-right .sec-sub {
  max-width: 100%;
  margin-bottom: 28px;
}

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.chip {
  background: var(--green-l);
  border: 1px solid #c0ddd0;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
}

.chip.blue {
  background: var(--blue-l);
  border-color: #c0d0e8;
  color: var(--blue);
}

.about-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #1a6b4a !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 13px 26px !important;
  border-radius: 30px;
  transition: all .2s;
  text-decoration: none !important;
  border: none !important;
}

.about-cta:hover {
  background: #2d9464 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.about-cta:visited {
  color: #ffffff !important;
}

.about-cta:link {
  color: #ffffff !important;
}

/* ─── WING TABS ─── */
.wings-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.wing-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid #e0e0e0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #5a5a5a;
  transition: all .25s;
  font-family: 'Outfit', sans-serif;
}

.wing-tab .ti {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .25s;
}

.wing-tab.green .ti {
  background: #f0f0f0;
  color: var(--green);
}

.wing-tab.blue .ti {
  background: #f0f0f0;
  color: var(--blue);
}

.wing-tab.gold .ti {
  background: #f0f0f0;
  color: var(--gold);
}

/* Hover and Active - fill the entire button with light background */
.wing-tab.green.active,
.wing-tab.green:hover {
  background: var(--green-l);
  border-color: var(--green);
  color: var(--green);
}

.wing-tab.green.active .ti,
.wing-tab.green:hover .ti {
  background: rgba(26, 107, 74, 0.15);
}

.wing-tab.blue.active,
.wing-tab.blue:hover {
  background: var(--blue-l);
  border-color: var(--blue);
  color: var(--blue);
}

.wing-tab.blue.active .ti,
.wing-tab.blue:hover .ti {
  background: rgba(26, 74, 138, 0.15);
}

.wing-tab.gold.active,
.wing-tab.gold:hover {
  background: var(--gold-l);
  border-color: var(--gold);
  color: var(--gold);
}

.wing-tab.gold.active .ti,
.wing-tab.gold:hover .ti {
  background: rgba(200, 147, 42, 0.15);
}

.wing-section {
  display: none;
  animation: fadeUp .35s ease;
}

.wing-section.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── WING HEADER ─── */
.wing-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.wing-hdr-l {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wing-icon-big {
  width: 56px;
  height: 56px;
  border-radius: var(--rs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.wing-icon-big.green {
  background: var(--green-l);
}

.wing-icon-big.blue {
  background: var(--blue-l);
}

.wing-icon-big.gold {
  background: var(--gold-l);
}

.wing-hdr h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}

.wing-hdr p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.wing-pills {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px;
  text-align: center;
}

.pill .n {
  font-size: 20px;
  font-weight: 700;
}

.pill .l {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.pill.green .n {
  color: var(--green);
}

.pill.blue .n {
  color: var(--blue);
}

.pill.gold .n {
  color: var(--gold);
}

/* ─── CATEGORY CARDS ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  cursor: pointer;
  transition: all .22s;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}

.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}

.cat-card.green::after {
  background: var(--green-m);
}

.cat-card.blue::after {
  background: var(--blue-m);
}

.cat-card.gold::after {
  background: var(--gold);
}

.cat-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cat-card:hover::after {
  transform: scaleX(1);
}

.cat-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.cat-card.green .cat-ico {
  background: var(--green-l);
}

.cat-card.blue .cat-ico {
  background: var(--blue-l);
}

.cat-card.gold .cat-ico {
  background: var(--gold-l);
}

.cat-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.cat-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.cat-arr {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 16px;
  color: var(--border);
  transition: all .2s;
}

.cat-card.green:hover .cat-arr {
  color: var(--green);
  transform: translate(2px, -2px);
}

.cat-card.blue:hover .cat-arr {
  color: var(--blue);
  transform: translate(2px, -2px);
}

.cat-card.gold:hover .cat-arr {
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* ─── PRODUCTS SECTION ─── */
.products-bg {
  background: var(--white);
  padding: 36px 40px !important;
}

.sec-divider {
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.sec-divider::before,
.sec-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 10px;
}

.prod-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rs);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
  text-decoration: none;
}

.prod-chip:hover {
  border-color: var(--green-m);
  color: var(--green);
  background: var(--green-l);
}

.prod-chip.blue:hover {
  border-color: var(--blue-m);
  color: var(--blue);
  background: var(--blue-l);
}

.prod-chip.gold:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-l);
}

.pe {
  font-size: 17px;
  flex-shrink: 0;
}

/* ─── SPOTLIGHT SECTION ─── */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.spotlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.spotlight-card-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}

.spotlight-card-img.food-bg {
  background: linear-gradient(135deg, #e0f0e8, #c8e4d4);
}

.spotlight-card-img.med-bg {
  background: linear-gradient(135deg, #e0e8f8, #c8d4ee);
}

.spotlight-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.spotlight-badge.food-wing {
  background: var(--green);
  color: #fff;
}

.spotlight-badge.med-wing {
  background: var(--blue);
  color: #fff;
}

.spotlight-card-body {
  padding: 12px 14px;
}

.spotlight-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.spotlight-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  transition: gap .2s;
}

.spotlight-link.med-wing {
  color: var(--blue);
}

.spotlight-card:hover .spotlight-link {
  gap: 8px;
}

/* ─── SERVICES SECTION ─── */
.services-bg {
  background: var(--green-ll);
  padding: 36px 40px !important;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all .22s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-m);
}

.svc-ico {
  width: 54px;
  height: 54px;
  border-radius: var(--r);
  background: var(--green-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.svc-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.svc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── HOW WE OPERATE STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.steps-grid::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin: 0 auto 20px;
}

.step-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 18px;
}

.why-card .ico {
  font-size: 26px;
  margin-bottom: 10px;
}

.why-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}

.why-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── TESTIMONIAL ─── */
.testi-bg {
  background: linear-gradient(135deg, var(--green-d), var(--blue));
  padding: 48px 40px !important;
}

.testi-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 19px);
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .3);
}

.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.testi-loc {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.testi-stars {
  color: #f0c060;
  font-size: 14px;
  margin-bottom: 4px;
}

/* ─── QUOTE BANNER CTA ─── */
.quote-banner {
  background: linear-gradient(135deg, var(--green-d) 0%, #1a4a8a 100%);
  border-radius: var(--rx);
  padding: 52px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.quote-banner::before,
.quote-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.quote-banner::before {
  width: 280px;
  height: 280px;
  right: -50px;
  top: -80px;
}

.quote-banner::after {
  width: 200px;
  height: 200px;
  right: 80px;
  bottom: -100px;
}

.qb-l {
  position: relative;
  z-index: 1;
}

.qb-l h3 {
  font-size: 28px;
  font-weight: 700;
  color: #f0c060 !important;
  margin-bottom: 12px;
}

.qb-l p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 500px;
}

.qb-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.qb-btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: none;
  text-decoration: none;
}

.qb-btn.wa {
  background: #25d366;
  color: #000;
}

.qb-btn.wa:hover {
  background: #1db954;
}

.qb-btn.call {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3);
}

.qb-btn.call:hover {
  background: rgba(255, 255, 255, .25);
}

.qb-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3);
}

.qb-btn.ghost:hover {
  background: rgba(255, 255, 255, .1);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .hero-right {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img {
    height: 300px;
  }
  .wing-hdr {
    flex-direction: column;
    align-items: flex-start;
  }
  .wing-pills {
    width: 100%;
    justify-content: flex-start;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .steps-grid::after {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 20px;
    min-height: auto;
  }
  section {
    padding: 52px 20px;
  }
  .stats-bar {
    padding: 20px;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child,
  .stat-item:nth-last-child(2) {
    border-bottom: none;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .wings-nav {
    justify-content: flex-start;
    gap: 10px;
  }
  .wing-tab {
    padding: 12px 20px;
    font-size: 14px;
  }
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .prod-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-banner {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 15px;
  }
  .stat-item .big {
    font-size: 24px;
  }
  .stat-item .lbl {
    font-size: 11px;
  }
  .sec-title {
    font-size: 24px;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .wing-tab {
    font-size: 13px;
    padding: 10px 16px;
  }
  .wing-tab .ti {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .why-cards {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .qb-btns {
    width: 100%;
  }
  .qb-btn {
    flex: 1;
    justify-content: center;
  }
}
