/* ================================================
   IGG DESIGN & BUILD — Website Stylesheet v1.0
   Color: Black + Gold + White
   Font: Playfair Display + Inter
   ================================================ */

:root {
  --gold:       #C9A84C;
  --gold-lt:    #E8C97A;
  --gold-dk:    #A8872A;
  --gold-bg:    rgba(201, 168, 76, 0.08);
  --gold-bd:    rgba(201, 168, 76, 0.25);
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #1A1A1A;
  --dark3:      #252525;
  --gray7:      #333333;
  --gray5:      #555555;
  --gray4:      #777777;
  --gray2:      #BBBBBB;
  --gray1:      #EEEEEE;
  --cream:      #FAFAF8;
  --white:      #FFFFFF;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:   80px;
  --pad-sec: 110px;
  --cont-w:  1200px;
  --cont-px: 24px;
  --radius:  4px;
  --radius2: 10px;
  --ease:    all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
video { display: block; }

/* ===== TYPE ===== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

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

/* ===== LAYOUT ===== */
.container {
  max-width: var(--cont-w);
  margin: 0 auto;
  padding: 0 var(--cont-px);
}
section { padding: var(--pad-sec) 0; }

.section-dark  { background: var(--dark);  color: var(--white); }
.section-light { background: var(--white); color: var(--dark);  }
.section-cream { background: var(--cream); color: var(--dark);  }
.section-gold  { background: var(--gold);  color: var(--dark);  }

/* Section header */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray4);
  line-height: 1.75;
}
.section-dark .section-sub { color: var(--gray4); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

.btn-gold { background: var(--gold); color: var(--dark); border: 1.5px solid var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.28); }

.btn-dark { background: var(--dark); color: var(--white); border: 1.5px solid var(--dark); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ===== IMAGE PLACEHOLDER ===== */
.img-ph {
  background: var(--dark3);
  border: 1.5px dashed var(--gray5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
.img-ph::after { content: attr(data-label); text-align: center; padding: 12px; }
.section-light .img-ph, .section-cream .img-ph {
  background: var(--gray1);
  border-color: var(--gray2);
  color: var(--gray4);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 900;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-bd);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: var(--cont-w);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 68px; width: auto; object-fit: contain; border-radius: 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--ease); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.62) 55%,
    rgba(0,0,0,0.82) 100%
  );
}
/* Fallback if no video */
.hero-video-wrap:not(:has(#hero-video[src])) {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: calc(var(--nav-h) + 40px) 24px 40px;
  animation: heroIn 1s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-content h1 { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 12px;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.hero-trust span::before { content: ''; }

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: scrollPulse 2.5s ease infinite;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(8px); }
}

/* ===== PROBLEM ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  overflow: hidden;
}
.problem-card {
  padding: 40px 32px;
  background: var(--dark);
  transition: var(--ease);
}
.problem-card:hover { background: var(--dark2); }
.problem-card:hover .p-num { color: var(--gold); }

.p-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 14px;
  transition: var(--ease);
}
.problem-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.problem-card p  { color: var(--gray4); font-size: 0.875rem; line-height: 1.7; }

/* ===== WHY IGG / PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.pillar-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--gray1);
  border-radius: var(--radius2);
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.pillar-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-4px); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  border: 1px solid var(--gold-bd);
}
.pillar-card h3 { font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.pillar-card p  { font-size: 0.825rem; color: var(--gray5); line-height: 1.7; }

.brand-promise-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bd);
  border-radius: var(--radius2);
  text-align: center;
  position: relative;
}
.bp-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.brand-promise-box blockquote {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 20px;
}
.brand-promise-box cite {
  font-size: 0.825rem;
  color: var(--gold-dk);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== PROCESS ===== */
.process-list { margin-top: 60px; }
.process-item {
  display: grid;
  grid-template-columns: 100px 1fr 48px;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left 0.35s ease;
}
.process-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.process-item:hover { padding-left: 12px; }
.process-item:hover .pi-num { color: var(--gold); }
.process-item:hover .pi-icon { color: var(--gold); }

.pi-num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  transition: color 0.35s ease;
}
.pi-body h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.pi-body p  { color: var(--gray4); font-size: 0.875rem; line-height: 1.75; }
.pi-icon    { color: rgba(255,255,255,0.15); transition: color 0.35s ease; justify-self: end; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.service-card {
  border: 1px solid var(--gray1);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: var(--ease);
}
.service-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); transform: translateY(-4px); }

.service-img { min-height: 280px; }

.service-body { padding: 36px; }
.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-bg);
  border: 1px solid var(--gold-bd);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.service-body h3 { color: var(--dark); font-size: 1.4rem; margin-bottom: 10px; }
.service-body > p { color: var(--gray5); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; }

.service-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  font-size: 0.875rem;
  color: var(--gray5);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== PORTFOLIO ===== */
.showreel-wrap {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  margin: 48px 0;
  background: var(--dark2);
}
.showreel-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.showreel-label span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--gold-bd);
  padding: 6px 14px;
  border-radius: 2px;
}
.showreel-vid {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}
.video-fallback { min-height: 380px; }

.portfolio-section-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 32px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.ba-card {
  border-radius: var(--radius2);
  overflow: hidden;
  background: var(--dark2);
  transition: var(--ease);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.ba-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-side  { position: relative; }
.ba-img   { min-height: 220px; border: none; border-radius: 0; }

.ba-tag {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 2px;
  top: 12px;
}
.ba-tag.before { left: 12px; background: rgba(0,0,0,0.65); color: var(--gray2); }
.ba-tag.after  { right: 12px; background: var(--gold); color: var(--dark); }

.ba-info { padding: 18px 22px; }
.ba-info h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.ba-info span { font-size: 0.78rem; color: var(--gray4); }

.portfolio-cta { text-align: center; }

/* ===== VIDEO GRID ===== */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.vid-card {
  border-radius: var(--radius2);
  overflow: hidden;
  background: var(--dark2);
  transition: var(--ease);
}
.vid-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.vid-item {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: var(--black);
}
.vid-info { padding: 16px 20px; }
.vid-info h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; font-family: var(--ff-display); }
.vid-info span { font-size: 0.75rem; color: var(--gray4); }

/* ===== TESTIMONIALS ===== */
.testi-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testi-vid-card {
  border-radius: var(--radius2);
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  position: relative;
}
.testi-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== ABOUT ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img { min-height: 540px; border-radius: var(--radius2); }
.about-logo-wrap {
  min-height: 400px;
  border-radius: var(--radius2);
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-bd);
}
.about-logo-big { width: 75%; max-width: 340px; border-radius: 12px; }

.mission-block { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.mission-item { padding: 20px 24px; background: rgba(201,168,76,0.06); border-left: 3px solid var(--gold); border-radius: 0 var(--radius1) var(--radius1) 0; }
.mission-item p { color: var(--gray2); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.mi-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius2);
  text-align: center;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.badge-num { display: block; font-family: var(--ff-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-txt { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; margin-top: 4px; line-height: 1.4; }

.about-content .eyebrow { text-align: left; }
.about-content h2 { color: var(--white); margin-bottom: 20px; }
.about-content p { color: var(--gray4); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }

.founder-q {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0 32px;
  line-height: 1.5;
}

.about-stats { display: flex; gap: 36px; }
.astat { text-align: center; }
.astat-n {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.astat-s { font-family: var(--ff-display); font-size: 1.6rem; color: var(--gold); }
.astat-l { display: block; font-size: 0.78rem; color: var(--gray4); letter-spacing: 0.04em; margin-top: 4px; }

/* ===== CONTACT / CTA ===== */
.cta-center { text-align: center; max-width: 680px; margin: 0 auto; }
.dark-ey { color: rgba(0,0,0,0.55); }
.cta-h { color: var(--dark); margin-bottom: 16px; }
.cta-p {
  font-size: 1rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-wa { display: flex; align-items: center; gap: 9px; }
.cta-contact-info {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(0,0,0,0.55);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--gray4);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; margin-bottom: 4px; color: var(--gray4); }
.ft-tagline { font-family: var(--ff-display); font-style: italic; color: var(--gold) !important; }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.875rem; color: var(--gray4); }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col p { font-size: 0.875rem; margin-bottom: 7px; }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray4);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; }
.ft-enemy {
  font-family: var(--ff-display);
  font-style: italic;
  color: rgba(255,255,255,0.15) !important;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ===== SCROLL ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .about-wrap { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --pad-sec: 80px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-vid-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; }
  .about-badge { bottom: 20px; right: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --pad-sec: 64px; --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--black);
    padding: 24px 24px 32px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
    z-index: 899;
  }
  .nav-links.open a { font-size: 1rem; }

  .hero-content h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 14px; }

  .problem-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }

  .process-item { grid-template-columns: 72px 1fr; gap: 18px; }
  .pi-icon { display: none; }
  .pi-num { font-size: 2.4rem; }

  .brand-promise-box { padding: 36px 24px; }
  .brand-promise-box blockquote { font-size: 1rem; }

  .cta-btns { flex-direction: column; align-items: center; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --pad-sec: 56px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  .ba-split { grid-template-columns: 1fr; }
  .ba-tag.before { top: 12px; }
  .ba-tag.after  { top: 12px; right: auto; left: 80px; }

  .about-stats { gap: 20px; }
  .astat-n { font-size: 2rem; }

  .wa-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
}
