/* ════════════════════════════════════════════════════════════════════
   BRANDBUZZ ADVERTISING — MASTER STYLESHEET  v1.0
   Brand Guideline Compliant
   ────────────────────────────────────────────────────────────────
   Colours  #eeb607 y · #000000 Black · #ffffff White
   Fonts    Montserrat (titles) · Poppins (subtitles/body)
   ────────────────────────────────────────────────────────────────
════════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   1. DESIGN TOKENS
──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #eeb607;
  --soft-gold: #f4d56a;
  --black: #000000;
  --charcoal: #2b2b2b;
  --slate: #4d4d4d;
  --light-grey: #eaeaea;
  --warm-white: #f8f8f8;
  --white: #ffffff;
  --title: "Montserrat";
  --body: "Poppins", sans-serif;
  --y: #eeb607;
  --y2: #d4a005;
  --y3: rgba(238, 182, 7, 0.1);
  --y4: rgba(238, 182, 7, 0.22);
  --grey-bg: #f5f5f5;
  --bk: #000000;
  --bk2: #111111;
  --bk3: #1a1a1a;
  --bk4: #222222;
  --w: #ffffff;
  /* Neutral scale */
  --g1: #f7f7f5;
  --g2: #eeeeec;
  --g3: #888888;
  --g4: #555555;
  --g5: #333333;
  --bd: #e0e0e0;
  --grey-brd: #cccccc;
  --nbd: #e0e0de;
  /* On-dark text */
  --wh-hi: rgba(255, 255, 255, 0.9);
  --wh-md: rgba(255, 255, 255, 0.62);
  --wh-lo: rgba(255, 255, 255, 0.38);
  --wh-faint: rgba(255, 255, 255, 0.07);

  /* Typography */
  /* Layout */
  --fw: 1180px;
  --px: 52px;
  --pad: 52px;
  --r: 10px;
  --rl: 20px;
  --pill: 50px;
  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 40px;
  --sp-xl: 64px;
  --sp-2xl: 96px;
  --border: #00000026;
  /* Radii */
  --r: 10px;
  --rl: 20px;
  --rp: 60px;

  /* Shadows */
  --sh-y: 0 10px 28px rgba(238, 182, 7, 0.35);
  --sh-bk: 0 10px 28px rgba(0, 0, 0, 0.22);
  --sh-lg: 0 20px 52px rgba(0, 0, 0, 0.18);

  --tr: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-grey);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--title);
  font-weight: 800;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.3px;
}

.nav-brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700 !important;
  font-size: 16px !important;
}

.nav-cta-enq {
  background: var(--black);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 17px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0% 80px 8%;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-name {
  font-family: var(--title);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.hero-name .accent {
  color: var(--gold);
}

.hero-title {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero-tagline {
  font-family: var(--body);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-desc {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-desc strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
  border-radius: 2px;
}

.btn-primary:hover {
  background: var(--soft-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
  border-radius: 2px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%);
  z-index: 1;
}

.hero-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  z-index: 1;
}

/* STATS STRIP */
.stats-strip {
  background: var(--gold);
  padding: 36px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.stat-item:nth-child(3n) {
  border-right: none;
}

.stat-item:nth-last-child(-n + 3) {
  border-bottom: none;
}

.stat-num {
  font-family: var(--title);
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-label {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTIONS */
section {
  padding: 100px 8%;
}

.section-eyebrow {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--title);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-title .accent {
  color: var(--gold);
}

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

.about-text p {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
}

.pillar-title {
  font-family: var(--title);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar-sub {
  font-family: var(--body);
  font-size: 17px;
  color: var(--slate);
  margin-top: 4px;
}

.about-visual {
  position: relative;
}

.about-visual-inner {
  background: var(--black);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-visual-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--gold);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.about-quote {
  font-family: var(--title);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.about-quote .q-accent {
  color: var(--gold);
}

.about-founder-tag {
  margin-top: 32px;
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

/* INDUSTRIES */
.industries-bg {
  background: var(--warm-white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--light-grey);
}

.industry-card {
  background: var(--white);
  padding: 48px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  background: var(--black);
}

.industry-card:hover .ind-title {
  color: var(--white);
}

.industry-card:hover .ind-desc {
  color: rgba(255, 255, 255, 0.5);
}

.industry-card:hover .ind-tags span {
  background: rgba(238, 182, 7, 0.15);
  color: var(--gold);
  border-color: rgba(238, 182, 7, 0.3);
}

.industry-card:hover .ind-num {
  color: rgba(255, 255, 255, 0.07);
}

.ind-num {
  font-family: var(--title);
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  right: 32px;
  top: 24px;
  line-height: 1;
  transition: color 0.25s;
  letter-spacing: -3px;
  user-select: none;
}

.ind-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.ind-title {
  font-family: var(--title);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.25s;
  letter-spacing: -0.3px;
}

.ind-desc {
  font-family: var(--body);
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
  transition: color 0.25s;
}

.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ind-tags span {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid var(--light-grey);
  border-radius: 2px;
  color: var(--slate);
  background: var(--warm-white);
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  border: 1px solid var(--light-grey);
  padding: 40px;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover {
  border-color: #ccc;
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  border-radius: 4px;
}

.svc-title {
  font-family: var(--title);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.svc-desc {
  font-family: var(--body);
  font-size: 17px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 20px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-tags span {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--warm-white);
  color: var(--slate);
  border-radius: 2px;
}

/* FRAMEWORK */
.framework-bg {
  background: var(--black);
}

.framework-bg .section-eyebrow {
  color: var(--gold);
}

.framework-bg .section-title {
  color: var(--white);
}

.framework-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.framework-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(238, 182, 7, 0.3);
  z-index: 0;
}

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

.fw-num {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--title);
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
}

.fw-title {
  font-family: var(--title);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.fw-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fw-items li {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* TOOLS */
.tools-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  margin-top: 60px;
  background: var(--light-grey);
}

.tool-category {
  background: var(--white);
  padding: 32px 24px;
  flex: 1 1 0;
  min-width: 0;
}

.tool-cat-title {
  font-family: var(--title);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-grey);
}

.tool-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-list li {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}

/* BRANDS */
.brands-bg {
  background: var(--black);
}

.brands-bg .section-eyebrow {
  color: var(--gold);
}

.brands-bg .section-title {
  color: var(--white);
}

.brands-intro {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.8;
}

.brands-category-title {
  font-family: var(--title);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 56px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brands-category-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 0;
}

.logo-cell {
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  min-height: 96px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.logo-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(238, 182, 7, 0.4);
}

.logo-cell img {
  max-width: 140px;
  max-height: 100px;
  /* width: 100%;
  height: auto; */
  object-fit: contain;
  display: block;
}

/* Dark background logos — show on dark tile */
.logo-cell.dark-bg {
  background: #1a1a1a;
}

/* Colored background logos — show as-is, full bleed */
.logo-cell.color-bg {
  padding: 0;
  background: #f0f0f0;
}

.logo-cell.color-bg img {
  /* max-width: 100%;
  max-height: 96px;
  width: 100%;
  height: 96px; */
  object-fit: cover;
}

/* TESTIMONIAL */
.testimonial-bg {
  background: var(--warm-white);
}

.testimonial-card {
  max-width: 800px;
  margin: 60px auto 0;
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 60px;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--title);
  font-size: 120px;
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: 40px;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-text {
  font-family: var(--title);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}

.testimonial-author {
  font-family: var(--body);
  font-size: 13px;
  color: var(--slate);
}

.testimonial-author strong {
  display: block;
  font-family: var(--title);
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-item:hover {
  opacity: 0.7;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* CTA FINAL */
.cta-final {
  background: var(--gold);
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-title {
  font-family: var(--title);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.cta-sub {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 500px;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 20px 20px;
  width: 100%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  border-radius: 2px;
  text-align: center;
}

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 48px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--title);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.footer-right {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-contact-item {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-item:hover {
  color: var(--gold);
}

/* Divider */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
  margin-bottom: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {

  /* HERO — photo on top, text below */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 60vw auto;
    min-height: auto;
  }

  .hero-right {
    order: -1;
    height: 60vw;
    min-height: 260px;
  }

  .hero-right img {
    object-position: center 10%;
  }

  .hero-right::before {
    background: linear-gradient(to bottom, transparent 50%, var(--black) 100%);
  }

  .hero-left {
    padding: 40px 6% 60px;
  }

  .hero-name {
    font-size: clamp(36px, 10vw, 60px);
    letter-spacing: -1px;
  }

  .hero-tagline {
    font-size: clamp(18px, 5vw, 26px);
  }

  .hero-title {
    font-size: 13px;
  }

  /* STATS */
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 20px 16px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }

  .stat-item:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }

  .stat-num {
    font-size: 26px;
  }

  /* LAYOUTS */
  .about-grid,
  .services-grid,
  .industries-grid,
  .cta-final {
    grid-template-columns: 1fr;
  }

  .framework-flow {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .framework-flow::before {
    display: none;
  }

  /* TOOLS — wrap to 2-col on mobile */
  .tools-grid {
    flex-wrap: wrap;
    gap: 12px;
    background: transparent;
  }

  .tool-category {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
    border-radius: 6px;
    padding: 24px 20px;
  }

  /* LOGOS */
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* NAV */
  nav .nav-links {
    display: none;
  }

  /* SECTIONS */
  section {
    padding: 60px 5%;
  }

  .cta-final {
    padding: 60px 5%;
    gap: 32px;
  }

  .section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .about-visual-inner {
    padding: 32px;
  }

  .about-quote {
    font-size: clamp(18px, 5vw, 26px);
  }

  .industries-grid {
    gap: 0;
  }

  .framework-flow {
    grid-template-columns: 1fr;
  }

  .fw-step {
    padding-bottom: 32px;
  }

  .testimonial-card {
    padding: 36px 24px;
  }

  .footer-right {
    display: none;
  }
}

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

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

  .hero-right {
    height: 75vw;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 20px;
    font-size: 12px;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
}

/* ENQUIRY FORM */
.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.enquiry-form-col {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--title);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req {
  color: var(--gold);
}

.opt {
  color: var(--slate);
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
}

.form-input {
  font-family: var(--body);
  font-size: 17px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--gold);
}

.form-input.error {
  border-color: #e53e3e;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D4D4D' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.checkbox-grid,
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 16px;
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: 4px;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-size: 17px;
  color: var(--charcoal);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.15s;
  user-select: none;
}

.checkbox-item:hover,
.radio-item:hover {
  background: var(--warm-white);
}

.checkbox-item input,
.radio-item input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.captcha-note {
  font-family: var(--body);
  font-size: 17px;
  color: var(--slate);
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px dashed var(--light-grey);
  border-radius: 4px;
  line-height: 1.7;
}

.captcha-note small {
  font-size: 14px;
  opacity: 0.7;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 18px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-transform: uppercase;
}

.form-submit:hover {
  background: var(--soft-gold);
  transform: translateY(-2px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-disclaimer {
  font-family: var(--body);
  font-size: 14px;
  color: var(--slate);
  text-align: center;
  margin-top: 12px;
  line-height: 1.7;
}

.form-success {
  background: #f0fdf4;
  border: 1.5px solid #22c55e;
  color: #166534;
  font-family: var(--body);
  font-size: 14px;
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 16px;
  font-weight: 500;
}

/* INFO CARD */
.enquiry-info-card {
  background: var(--black);
  padding: 40px 32px;
  border-radius: 8px;
  position: sticky;
  top: 80px;
}

.info-heading {
  font-family: var(--title);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.info-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(238, 182, 7, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-label {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-value {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  word-break: break-all;
}

.info-value:hover {
  text-decoration: underline;
}

.info-promise {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 20px;
}

.info-promise-title {
  font-family: var(--title);
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.info-promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-promise-list li {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .enquiry-wrap {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-info-card {
    position: static;
  }

  .checkbox-grid,
  .radio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {

  .checkbox-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }
}

.footer-right a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
}

.footer-right a:hover {
  text-decoration: underline;
}

/* ── Page-specific: Thank You page runs on black bg ── */
.ty-hero {
  background: var(--bk);
  color: var(--w);
}

/* Confetti canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

#confetti-canvas.show {
  opacity: 1;
}

/* HERO */
.ty-hero {
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Grid bg */
.ty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 182, 7, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 182, 7, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
      black 30%,
      transparent 100%);
}

/* y glow */
.ty-glow {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse,
      rgba(238, 182, 7, 0.09) 0%,
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.ty-inner {
  position: relative;
  z-index: 2;
  padding: 80px var(--px) 60px;
  max-width: 860px;
  width: 100%;
}

/* Success icon ring */
.ty-icon-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 36px;
  animation: scaleIn 0.6s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ty-icon-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(238, 182, 7, 0.2);
  animation: pulse 2.5s ease 1s infinite;
}

.ty-icon-ring::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(238, 182, 7, 0.07);
}

.ty-icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ty-tick {
  font-size: 44px;
  font-weight: 900;
  color: var(--bk);
  animation: rotateTick 0.5s 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* THANK YOU big text */
.ty-big {
  font-family: var(--title);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.5s ease both;
  background: linear-gradient(135deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ty-big .ty-y {
  background: linear-gradient(135deg, #eeb607 0%, #ffd060 50%, #eeb607 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    fadeUp 0.6s 0.5s ease both,
    shimmer 3s linear 1.5s infinite;
}

.ty-headline {
  font-family: var(--title);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--y);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  animation: fadeUp 0.6s 0.65s ease both;
}

.ty-tagline {
  font-family: var(--fb);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.7s ease both;
}

.ty-body {
  font-family: var(--fb);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s 0.75s ease both;
}

/* 4hr badge */
.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--y);
  color: var(--bk);
  border-radius: var(--rp);
  padding: 10px 24px;
  font-family: var(--title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
  animation: fadeUp 0.6s 0.8s ease both;
  box-shadow: 0 6px 28px rgba(238, 182, 7, 0.4);
}

.ty-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bk);
  animation: blink 1.5s ease infinite;
}

/* y divider */
.ty-divider {
  width: 80px;
  height: 3px;
  background: var(--y);
  border-radius: 2px;
  margin: 0 auto 52px;
  animation: drawLine 0.8s 0.9s ease both;
}

/* STEPS — what happens next */
.steps-section {
  padding: 0 var(--px) 80px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.steps-lbl {
  font-family: var(--title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  text-align: center;
  margin-bottom: 14px;
}

.steps-title {
  font-family: var(--title);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--w);
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: -0.02em;
}

.steps-title span {
  color: var(--y);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1.5px;
  background: linear-gradient(90deg,
      transparent,
      rgba(238, 182, 7, 0.3),
      rgba(238, 182, 7, 0.3),
      transparent);
  z-index: 0;
}

.step-c {
  background: var(--bk3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--tr);
}

.step-c:hover {
  border-color: var(--y4);
  background: rgba(238, 182, 7, 0.04);
  transform: translateY(-4px);
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bk);
  border: 2px solid var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--title);
  font-size: 22px;
  font-weight: 900;
  color: var(--y);
  transition: var(--tr);
}

.step-c:hover .step-num {
  background: var(--y);
  color: var(--bk);
  box-shadow: 0 0 28px rgba(238, 182, 7, 0.4);
}

.step-time {
  display: inline-block;
  font-family: var(--title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--y);
  background: rgba(238, 182, 7, 0.1);
  border: 1px solid var(--y4);
  border-radius: var(--rp);
  padding: 3px 12px;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--title);
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* URGENT CONTACT — y section */
.urgent-sec {
  background: var(--y);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.urgent-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--title);
  font-weight: 900;
  font-size: 200px;
  color: rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.urgent-pill-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
}

.urgent-line {
  width: 44px;
  height: 1.5px;
  background: var(--bk);
  flex-shrink: 0;
}

.urgent-pill {
  display: inline-block;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--y);
  background: var(--bk);
  border-radius: var(--rp);
  padding: 7px 24px;
}

.urgent-title {
  font-family: var(--title);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 900;
  color: var(--bk);
  text-align: center;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.urgent-sub {
  font-family: var(--fb);
  font-size: 17px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* 3 Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cc {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 34px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.cc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}

.cc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
}

.cc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  animation: floatY 3s ease infinite;
}

.cc:nth-child(2) .cc-icon {
  animation-delay: 0.5s;
}

.cc:nth-child(3) .cc-icon {
  animation-delay: 1s;
}

.cc-lbl {
  font-family: var(--title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 10px;
}

.cc-main {
  font-family: var(--title);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 800;
  color: var(--w);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cc-main a {
  color: var(--w);
  transition: color 0.2s;
}

.cc-main a:hover {
  color: var(--y);
}

.cc-sub {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-bottom: 18px;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--title);
  font-size: 14px;
  font-weight: 700;
  background: var(--y);
  color: var(--bk);
  padding: 9px 18px;
  border-radius: var(--rp);
  transition: var(--tr);
  letter-spacing: 0.02em;
}

.cc-btn:hover {
  background: #ffd060;
  box-shadow: 0 6px 20px rgba(238, 182, 7, 0.4);
  transform: translateY(-1px);
}

.cc-btn.wa {
  background: #25d366;
  color: var(--w);
}

.cc-btn.wa:hover {
  background: #1ebe5d;
}

/* Map placeholder */
.map-card {
  background: var(--g1);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1.5px solid var(--bd);
}

.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--g2) 0%, var(--g1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mp-icon {
  font-size: 32px;
}

.mp-t {
  font-family: var(--title);
  font-size: 13px;
  font-weight: 700;
  color: var(--g4);
}

.mp-s {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--g3);
  text-align: center;
  padding: 0 20px;
}

.map-footer {
  padding: 14px 18px;
  background: var(--w);
}

.mf-addr {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g4);
  line-height: 1.7;
}

.mf-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--title);
  font-size: 11px;
  font-weight: 700;
  color: var(--soft-gold);
  margin-top: 6px;
  text-decoration: none;
}

.mf-link:hover {
  text-decoration: underline;
}

/* EXPLORE section */
.explore-sec {
  background: var(--bk2);
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.explore-title {
  font-family: var(--ft);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--w);
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: -0.02em;
}

.explore-title span {
  color: var(--y);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.ex-card {
  background: var(--bk3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--tr);
}

.ex-card:hover {
  border-color: var(--y4);
  background: rgba(238, 182, 7, 0.04);
  transform: translateX(4px);
}

.ex-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ex-title {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 4px;
}

.ex-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.ex-arr {
  font-size: 14px;
  color: var(--y);
  margin-top: 8px;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.gap-sm {
  gap: var(--sp-sm);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}


.btn-y {
  background: var(--y);
  color: var(--bk);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: var(--rp);
  transition: var(--tr);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-ow {
  background: transparent;
  color: var(--w);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Referral strip */
.ref-strip {
  background: var(--bk3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}

.ref-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ref-txt {
  font-family: var(--fb);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.7;
}

.ref-txt strong {
  color: var(--w);
  font-weight: 600;
}

.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--rp);
  transition: var(--tr);
  letter-spacing: 0.02em;
}

.share-wa {
  background: #25d366;
  color: var(--w);
}

.share-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.share-li {
  background: #0a66c2;
  color: var(--w);
}

.share-li:hover {
  background: #0858a3;
  transform: translateY(-1px);
}

.share-cp {
  background: var(--bk);
  color: var(--w);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.share-cp:hover {
  border-color: var(--y);
  color: var(--y);
}

.wrap {
  max-width: var(--fw);
  margin: 0 auto;
  padding: 0 var(--px);
}
/* ────────────────────────────────────────────
 RESPONSIVE BREAKPOINTS
──────────────────────────────────────────── */

@media (max-width: 480px) {
 footer {
  flex-direction: column;
}
.footer-tagline {
  margin-top: 18px;
  text-align: center;
}
.footer-brand {
  text-align: center;
}
.footer-contact {
  margin-top: 20px;
}
.hero-eyebrow {
    margin-top: 40px !important;
    gap: 12px;
    flex-direction: column !important;
}
}

@media (max-width: 640px) {
 
}

@media (max-width: 768px) {
 
}

@media (max-width: 900px) {

}