/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Barlow', sans-serif; color: #111111; background: #ffffff; }
a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; display: block; }

/* ── VARIABLES ───────────────────────────────────────── */
:root {
  --black: #111111;
  --lime:  #B0F850;
  --white: #ffffff;
  --grey:  #f5f5f5;
  --pad:   clamp(24px, 5vw, 80px);
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black); border-bottom: 1px solid rgba(176,248,80,.18);
  padding: 0 var(--pad); display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.nav__logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav__links    { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: .75rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--lime); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: white; }

.nav__mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--black); border-top: 1px solid rgba(255,255,255,.07);
  z-index: 99; flex-direction: column; padding: 16px var(--pad) 24px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a.active { color: var(--lime); }

/* ── SKIP LINK (accessibility) ───────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--black);
  padding: 14px 22px; z-index: 10000;
  font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700;
  letter-spacing: .05em; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── LANGUAGE TOGGLE ─────────────────────────────────── */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.06);
  padding: 3px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  padding: 6px 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .68rem;
  font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  transition: color .2s, background .2s;
}
.lang-btn.active { background: var(--lime); color: var(--black); }
.lang-btn:not(.active):hover { color: rgba(255,255,255,.8); }
.nav__mobile .lang-toggle { margin-top: 18px; align-self: flex-start; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem;
  font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  padding: 16px 32px; transition: background .2s;
}
.btn-primary:hover { background: #c4ff00; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,.75);
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 15px 32px; border: 1px solid rgba(255,255,255,.2); transition: all .2s;
}
.btn-secondary:hover { border-color: var(--lime); color: var(--lime); }

.btn-lime-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--lime);
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem;
  font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  padding: 15px 32px; border: 1px solid var(--lime); transition: all .2s;
}
.btn-lime-outline:hover { background: var(--lime); color: var(--black); }

/* ── SECTION BASE ────────────────────────────────────── */
.section        { padding: clamp(52px, 8vw, 100px) var(--pad); }
.section--grey  { background: var(--grey); }
.section--dark  {
  background: linear-gradient(180deg, #0e0e0e 0%, #111111 100%);
}
.section--white { background: var(--white); }

.section__tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: .6rem; font-weight: 700;
  letter-spacing: .35em; text-transform: uppercase; color: rgba(0,0,0,.58);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.section__tag::before { content: ''; display: block; width: 22px; height: 2px; background: currentColor; }
.section__tag--light         { color: var(--lime); }
.section__tag--light::before { background: var(--lime); }

.section__head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900;
  line-height: .95; color: var(--black); margin-bottom: 14px;
}
.section__head--light { color: #ffffff; }

.section__sub {
  font-size: clamp(.84rem, 1.1vw, .95rem); font-weight: 300;
  line-height: 1.85; color: rgba(0,0,0,.58); max-width: 540px;
}
.section__sub--light { color: rgba(255,255,255,.5); }

/* ── COVERAGE STRIP ──────────────────────────────────── */
.coverage {
  background: var(--black); border-top: 1px solid rgba(176,248,80,.2);
  border-bottom: 1px solid rgba(176,248,80,.2);
  padding: 26px var(--pad); display: flex; align-items: center;
  gap: clamp(16px, 3vw, 36px); flex-wrap: wrap;
}
.coverage__label {
  font-family: 'Barlow Condensed', sans-serif; font-size: .6rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.5);
  white-space: nowrap; flex-shrink: 0;
}
.coverage__divider { width: 1px; height: 26px; background: rgba(255,255,255,.08); flex-shrink: 0; }
.coverage__list    { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.province {
  font-family: 'Barlow Condensed', sans-serif; font-size: .68rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); white-space: nowrap;
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, #0e0e0e 0%, #111111 100%);
  padding: 130px var(--pad) 64px;
  border-bottom: 1px solid rgba(176,248,80,.15);
}
.page-hero__tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: .62rem; font-weight: 700;
  letter-spacing: .4em; text-transform: uppercase; color: var(--lime);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.page-hero__tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--lime); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900;
  line-height: .9; color: #ffffff; margin-bottom: 18px;
}
.page-hero h1 em { color: var(--lime); font-style: normal; }
.page-hero__sub {
  font-size: clamp(.85rem, 1.1vw, 1rem); font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,.5); max-width: 480px;
}
.page-hero--photo { position: relative; overflow: hidden; background: none; border-bottom: none; }
.page-hero--photo .page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero__photo-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.62); z-index: 1; }
.page-hero--photo .page-hero__tag,
.page-hero--photo h1,
.page-hero--photo .page-hero__sub { position: relative; z-index: 2; }

/* ── WHY / BENEFIT POINTS LIST (shared across home + industry pages) ── */
.why__points { list-style: none; margin-top: 32px; }
.why__point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.07);
}
.why__point:last-child { border-bottom: none; }
.why__dot { width: 7px; height: 7px; background: var(--lime); flex-shrink: 0; margin-top: 7px; }
.why__point strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--black); display: block; margin-bottom: 3px;
}
.why__point span { font-size: .82rem; font-weight: 300; color: rgba(0,0,0,.58); line-height: 1.65; }

/* ── INDUSTRY PAGE PHOTO GALLERY (mosaic) ─────────────── */
.ind-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  margin-top: 40px;
}
.ind-photo-strip__item {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: #141414;
}
.ind-photo-strip__item:first-child {
  grid-column: span 2; grid-row: span 2;
}
.ind-photo-strip__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.ind-photo-strip__item:hover img { transform: scale(1.05); }
.ind-photo-strip__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--lime);
}
@media (max-width: 700px) {
  .ind-photo-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .ind-photo-strip__item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}

/* ── CTA BANNER (shared across all pages) ─────────────── */
.cta-banner {
  background: var(--lime); padding: clamp(40px, 6vw, 80px) var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900;
  line-height: .95; color: var(--black);
}
.cta-banner p { font-size: .9rem; font-weight: 300; color: rgba(0,0,0,.6); margin-top: 8px; }
.btn-cta-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--lime);
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem;
  font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  padding: 16px 32px; white-space: nowrap;
}
.btn-cta-dark:hover { background: #1e1e1e; }
@media (max-width: 900px) {
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #0a0a0a; border-top: 1px solid rgba(176,248,80,.2);
  padding: 44px var(--pad) 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px); margin-bottom: 36px;
}
.footer__logo {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem;
  font-weight: 900; color: var(--lime); letter-spacing: .04em; margin-bottom: 12px;
}
.footer__tagline {
  font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.5);
  line-height: 1.75; max-width: 280px;
}
.footer__col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: .6rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer__col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a   { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.5); }
.footer__col a:hover { color: var(--lime); }
.footer__col address {
  font-style: normal; font-size: .82rem; font-weight: 300;
  color: rgba(255,255,255,.5); line-height: 1.8;
}
.footer__bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer__copy { font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.5); }
.footer__reg  { font-size: .68rem; font-weight: 300; color: rgba(255,255,255,.5); }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.wa-float__toggle {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #ffffff; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 13px 20px 13px 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: background .2s, transform .15s;
}
.wa-float__toggle:hover { background: #1ebe5a; transform: translateY(-2px); }
.wa-float__toggle svg { flex-shrink: 0; }
.wa-float__menu {
  display: none; flex-direction: column; gap: 2px;
  position: absolute; bottom: calc(100% + 10px); right: 0;
  min-width: 220px; background: #111111;
  border: 1px solid rgba(176,248,80,.2);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  overflow: hidden;
}
.wa-float.open .wa-float__menu { display: flex; }
.wa-float__menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: #111111; transition: background .15s;
}
.wa-float__menu a:hover { background: #1a1a1a; }
.wa-float__menu a svg { flex-shrink: 0; color: #25D366; }
.wa-float__menu strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700; color: #ffffff;
}
.wa-float__menu span {
  display: block; font-size: .68rem; font-weight: 300;
  color: rgba(255,255,255,.5); margin-top: 1px;
}
@media (max-width: 600px) {
  .wa-float { bottom: 20px; right: 20px; }
  .wa-float__toggle { padding: 14px; }
  .wa-float__toggle span { display: none; }
}

/* ── SHARED MOBILE ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid      { grid-template-columns: 1fr; }
  .coverage__divider { display: none; }
}
