/* ============================================================
   ARIDOS PARADA — Corporate Industrial Website
   Design System: Heavy Industry / Oil & Gas / Mining
   Palette: Charcoal Black | Signal Red | Construction Yellow | Steel White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

/* ——— CSS Variables ——— */
:root {
  --black:        #0D0D0D;
  --charcoal:     #1A1A1A;
  --steel:        #2C2C2C;
  --red:          #B83A2A;
  --red-dark:     #8E2A1A;
  --yellow:       #E8720C;
  --yellow-dim:   #C05A08;
  --white:        #F4F2EE;
  --white-pure:   #FFFFFF;
  --grey-light:   #B0ADA6;
  --grey-mid:     #6B6860;
  --border:       rgba(232,114,12,0.18);
  --font-display: 'Oswald', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --nav-h:        80px;
  --section-pad:  100px 0;
  --radius:       3px;
  --transition:   all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ——— Reset ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ——— Utility ——— */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: var(--section-pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 4px 0;
  border-bottom: 1px solid var(--yellow);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white-pure);
}

.section-title span { color: var(--red); }
.section-title .accent { color: var(--yellow); }

.section-desc {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.75;
  max-width: 600px;
  margin-top: 16px;
}

/* Decorative horizontal rule */
.deco-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.deco-line::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
}
.deco-line::after {
  content: '';
  display: block;
  width: 12px;
  height: 3px;
  background: var(--yellow);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white-pure);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,58,42,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white-pure);
  border: 2px solid rgba(244,242,238,0.35);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover { background: var(--yellow-dim); transform: translateY(-2px); }

/* Arrow icon */
.btn-arrow::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ——— NAV ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo img { height: 48px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-text strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-pure);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__logo-text span {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  transition: color 0.25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s;
}
.nav__links a:hover, .nav__links a.active { color: var(--white-pure); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__phone {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-right: 16px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-pure);
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--charcoal);
  border-bottom: 2px solid var(--red);
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
}
.nav__mobile a:hover { color: var(--yellow); }

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1008 40%, #0D0D0D 100%);
}
/* Diagonal texture overlay */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 2px,
      rgba(232,114,12,0.025) 2px,
      rgba(232,114,12,0.025) 3px
    );
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero__img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.hero__gradient-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(to right, var(--black), transparent);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  padding-top: 60px;
  max-width: 720px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,58,42,0.15);
  border: 1px solid rgba(184,58,42,0.4);
  border-radius: 2px;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 8px;
}
.hero__title .line-red { color: var(--red); display: block; }
.hero__title .line-yellow { color: var(--yellow); display: block; font-size: 0.55em; font-weight: 600; letter-spacing: 0.04em; margin-top: 6px; }
.hero__subtitle {
  font-size: 17px;
  color: var(--grey-light);
  line-height: 1.7;
  margin: 28px 0 36px;
  max-width: 520px;
  border-left: 3px solid var(--yellow);
  padding-left: 18px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
  padding-bottom: 48px;
}
.hero__stat {
  flex: 1;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__stat:last-child { border-right: none; padding-left: 32px; padding-right: 0; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 4px;
}

/* ——— TICKER ——— */
.ticker {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  animation: ticker-scroll 35s linear infinite;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-pure);
  padding: 0 32px;
}
.ticker__item::after {
  content: '◆';
  color: rgba(255,255,255,0.45);
  font-size: 8px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— SERVICES GRID ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  background: var(--steel);
}
.service-card {
  background: var(--charcoal);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover { background: #222; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(232,114,12,0.07);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  user-select: none;
  transition: color 0.4s;
}
.service-card:hover .service-card__num { color: rgba(232,114,12,0.12); }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(184,58,42,0.12);
  border: 1px solid rgba(184,58,42,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: rgba(184,58,42,0.22);
  border-color: var(--red);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 12px;
  line-height: 1.15;
}
.service-card__desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.7;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.service-card__tag {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(232,114,12,0.08);
  border: 1px solid rgba(232,114,12,0.2);
  padding: 3px 8px;
  border-radius: 2px;
}

/* ——— CLIENTS STRIP ——— */
.clients {
  background: var(--charcoal);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.clients__header {
  text-align: center;
  margin-bottom: 56px;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
  background: var(--steel);
}
.clients__item {
  background: var(--charcoal);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: var(--transition);
  min-height: 80px;
}
.clients__item:hover { background: #202020; color: var(--white); }

/* ——— ABOUT SPLIT ——— */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about-split__img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.about-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.about-split__img:hover img { transform: scale(1.04); }
.about-split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black));
}
.about-split__content {
  background: var(--charcoal);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-split__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--grey-light);
}
.about-split__list-item::before {
  content: '▸';
  color: var(--yellow);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ——— CERT CARDS ——— */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--steel);
  margin-top: 56px;
}
.cert-card {
  background: var(--charcoal);
  padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.cert-card:hover { border-top-color: var(--yellow); background: #1e1e1e; }
.cert-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.cert-card__title {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 8px;
}
.cert-card__desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* ——— CONTACT ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2px;
  background: var(--steel);
}
.contact-form-wrap {
  background: var(--charcoal);
  padding: 64px;
}
.contact-info {
  background: #111;
  padding: 64px 48px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(184,58,42,0.12);
  border: 1px solid rgba(184,58,42,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info__label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
}
.contact-info__value a { color: var(--grey-light); transition: color 0.2s; }
.contact-info__value a:hover { color: var(--white-pure); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--steel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white-pure);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  transition: border-color 0.25s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ——— FOOTER ——— */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 80px 0 60px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 300px;
}
.footer__col-title {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: var(--grey-mid);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--grey-mid);
}
.footer__bottom span { color: var(--red); }
.footer__logo { height: 40px; }

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0a0a 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 2px,
    rgba(232,114,12,0.02) 2px, rgba(232,114,12,0.02) 3px
  );
}
.page-hero__label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.page-hero__label::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--red);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-pure);
  line-height: 1;
  margin-bottom: 20px;
}
.page-hero__title span { color: var(--red); }
.page-hero__desc {
  font-size: 17px;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.7;
}
.page-hero__red-bar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--red), var(--yellow));
}

/* ——— BREADCRUMB ——— */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.breadcrumb a { color: var(--grey-mid); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--red); }

/* ——— MISSION VISION BOX ——— */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--steel);
  margin-top: 64px;
}
.mv-card {
  background: var(--charcoal);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.mv-card--mission::before { background: var(--red); }
.mv-card--vision::before { background: var(--yellow); }
.mv-card__icon {
  font-size: 42px;
  margin-bottom: 24px;
}
.mv-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 16px;
}
.mv-card__text {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.8;
}

/* ——— TEAM ——— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  background: var(--steel);
  margin-top: 56px;
}
.team-card {
  background: var(--charcoal);
  padding: 32px 28px;
  transition: var(--transition);
}
.team-card:hover { background: #1e1e1e; }
.team-card__name {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 12px;
  color: var(--yellow);
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card__contact {
  font-size: 12px;
  color: var(--grey-mid);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-card__contact a { color: var(--grey-mid); transition: color 0.2s; }
.team-card__contact a:hover { color: var(--white); }

/* ——— RSE ——— */
.rse-block {
  background: var(--charcoal);
  border-left: 4px solid var(--yellow);
  padding: 40px 48px;
  margin-top: 48px;
}

/* ——— WA FLOAT ——— */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  font-size: 26px;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ——— SCROLL TO TOP ——— */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ——— DIVIDERS ——— */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}
.yellow-strip {
  height: 4px;
  background: linear-gradient(to right, var(--red) 30%, var(--yellow) 100%);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__img { min-height: 360px; }
  .about-split__content { padding: 56px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .container { padding: 0 20px; }
  .nav__links, .nav__cta, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .hero__img { width: 100%; opacity: 0.18; }
  .hero__gradient-left { width: 100%; }
  .hero__stats { flex-direction: column; gap: 24px; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 24px 0; }
  .hero__stat:last-child { border-bottom: none; padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 40px 24px; }
  .contact-info { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-split__content { padding: 40px 24px; }
  .mv-card { padding: 40px 28px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; }
}
