/*
Theme Name: WGTECH
Theme URI: https://wgtech.com.my
Author: WGTECH Services
Description: Custom theme for WGTECH — clean, light corporate IT services landing page (CTC-inspired).
Version: 1.0
Text Domain: wgtech
*/

/* ============================================================
   WGTECH — Landing Page Stylesheet
   Light corporate theme (CTC-inspired): white + deep blue + azure.
   Design tokens at top.
   ============================================================ */

/* -------------------- TOKENS -------------------- */
:root {
  /* Palette — clean corporate: white surfaces, deep blue + bright azure.
     Red is a sparing accent only. */
  --bg:            #FFFFFF;   /* page white */
  --surface:       #F3F7FB;   /* light steel-blue section fill */
  --surface-2:     #E9F1F9;   /* slightly deeper light fill */
  --navy:          #0E4E95;   /* deep corporate blue — headings / primary */
  --navy-deep:     #0A3A70;   /* darker navy — gradients / hover */
  --blue:          #0087CC;   /* bright azure — accent / links */
  --blue-tint:     #E1F0FA;   /* pale azure wash */
  --red:           #EC1C24;   /* accent, used sparingly */
  --text:          #14202E;   /* near-black slate — body text */
  --text-mute:     #5B6B7C;   /* slate grey — secondary text */
  --on-dark:       #FFFFFF;   /* text on blue surfaces */
  --on-dark-mute:  rgba(255, 255, 255, 0.72);

  --hairline:        rgba(14, 78, 149, 0.12);
  --hairline-strong: rgba(14, 78, 149, 0.22);
  --shadow-sm: 0 1px 2px rgba(14, 32, 46, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 78, 149, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 58, 112, 0.16);

  /* Type */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:    'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --step--1: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --step-0:  clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --step-1:  clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --step-2:  clamp(1.375rem, 1.15rem + 1vw, 1.875rem);
  --step-3:  clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --step-4:  clamp(2.25rem, 1.7rem + 2.75vw, 3.5rem);
  --step-5:  clamp(2.75rem, 1.9rem + 4.25vw, 4.75rem);

  /* Layout */
  --page-max: 1280px;
  --gutter:   clamp(1.25rem, 2.5vw, 2.5rem);
  --section-y: clamp(4.5rem, 7vw, 7.5rem);
  --radius:   14px;
}

/* -------------------- RESET -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; font-family: var(--font-display); }

::selection { background: var(--blue); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

/* -------------------- LAYOUT PRIMITIVES -------------------- */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}
.eyebrow.on-dark { color: #8FD3FF; }
.eyebrow.on-dark::before { background: #8FD3FF; }

.section { padding-block: var(--section-y); position: relative; }
.section.alt { background: var(--surface); }
.section-title {
  font-weight: 700;
  font-size: var(--step-4);
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 22ch;
  margin-block: 1rem 1.25rem;
  line-height: 1.08;
}
.section-title em { font-style: normal; color: var(--blue); }
.section-lead { color: var(--text-mute); font-size: var(--step-1); max-width: 52ch; }

/* -------------------- NAV -------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { padding: 0.6rem 0; box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 62px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em; color: var(--navy);
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px; background: var(--blue);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(0, 135, 204, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(14, 78, 149, 0.3); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* -------------------- HERO (full-bleed, CTC style) -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-bottom: clamp(4rem, 8vh, 7rem);
  color: var(--on-dark);
  background:
    linear-gradient(100deg, rgba(7, 28, 56, 0.93) 0%, rgba(8, 35, 68, 0.82) 32%, rgba(9, 40, 78, 0.52) 58%, rgba(10, 45, 87, 0.22) 82%, rgba(10, 45, 87, 0.10) 100%),
    linear-gradient(180deg, rgba(7, 28, 56, 0.45) 0%, transparent 24%, transparent 74%, rgba(7, 28, 56, 0.40) 100%),
    url('assets/img/hero-tech.jpg') center / cover no-repeat,
    #0A2244;
}
/* subtle grid overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 80%);
          mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; width: 100%; }
.hero-copy { max-width: 60ch; }
.hero-copy > * + * { margin-top: 1.4rem; }
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
  color: #fff;
}
.hero-headline .rotator {
  color: #8FD3FF;
  display: inline-block;
}
.hero-sub {
  font-size: var(--step-1);
  color: var(--on-dark-mute);
  max-width: 52ch;
  line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.25rem !important; }

.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(0, 135, 204, 0.32); }
.btn-primary:hover { background: #0097E0; box-shadow: 0 14px 30px rgba(0, 135, 204, 0.4); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
/* ghost on light backgrounds */
.btn-outline { border: 1.5px solid var(--hairline-strong); color: var(--navy); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* competency chip strip under hero copy */
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2.5rem !important;
}
.hero-chips span {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  color: var(--on-dark-mute);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

/* -------------------- SERVICES (card grid) -------------------- */
.services-header { max-width: 60ch; margin-bottom: 2.75rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2rem 1.9rem 2.1rem;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hairline-strong); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.service-icon svg { width: 26px; height: 26px; stroke: currentColor; }
.service-tag {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.12em;
}
.service-name {
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.service-desc { color: var(--text-mute); font-size: var(--step-0); }
.service-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--blue);
  padding-top: 0.6rem;
}
.service-link .arrow { transition: transform 0.2s ease; }
.service-card:hover .service-link .arrow { transform: translateX(4px); }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }

/* -------------------- WHY WGTECH -------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.why-item {
  padding: 1.9rem 1.6rem;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-4);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-value span { color: var(--blue); }
.why-label {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.why-detail { color: var(--text-mute); font-size: var(--step-0); }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* -------------------- SHOWCASE BAND -------------------- */
.showcase {
  position: relative;
  padding-block: clamp(5rem, 12vw, 8.5rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 45, 87, 0.94) 0%, rgba(10, 58, 112, 0.72) 55%, rgba(14, 78, 149, 0.42) 100%),
    url('assets/img/band-network.jpg') center / cover no-repeat,
    #0A3A70;
}
.showcase-inner { max-width: 46ch; position: relative; z-index: 1; }
.showcase-eyebrow {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: var(--step--1); color: #8FD3FF; margin-bottom: 1rem;
}
.showcase-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-3); line-height: 1.15; letter-spacing: -0.02em; color: #fff;
}
.showcase-title em { font-style: normal; color: #8FD3FF; }

/* -------------------- ABOUT US -------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-copy > * + * { margin-top: 1.25rem; }
.about-copy p { color: var(--text-mute); font-size: var(--step-1); }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem !important; }
.about-value {
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--blue);
  background: var(--surface);
  border-radius: 0 10px 10px 0;
}
.about-value h4 { font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.about-value p { font-size: 0.9rem; color: var(--text-mute); margin: 0; }
/* visual panel */
.about-panel {
  position: relative;
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(14, 78, 149, 0.84) 0%, rgba(10, 58, 112, 0.93) 100%),
    url('assets/img/about-team.jpg') center / cover no-repeat,
    #0A3A70;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-panel::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 75%);
          mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 75%);
}
.about-panel .panel-eyebrow {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: var(--step--1);
  color: #8FD3FF; margin-bottom: 1.25rem;
}
.about-stats { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
.about-stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1; }
.about-stat .lbl { color: var(--on-dark-mute); font-size: 0.85rem; margin-top: 0.35rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .about-values { grid-template-columns: 1fr; } }

/* -------------------- PROCESS (How we work) -------------------- */
.process-head { margin-top: clamp(3.5rem, 6vw, 5rem); margin-bottom: 0.5rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.75rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.4rem; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--hairline) 70%, transparent);
}
.step { padding-top: 3.25rem; position: relative; }
.step::before {
  content: '';
  position: absolute;
  top: 0.85rem; left: 0;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px var(--bg), 0 0 0 6px var(--hairline-strong);
}
.step-num {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.step-name { font-size: var(--step-1); font-weight: 600; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 0.5rem; }
.step-desc { color: var(--text-mute); font-size: var(--step-0); }
@media (max-width: 820px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* -------------------- CONTACT / QUOTE FORM -------------------- */
.contact { background: var(--surface); border-top: 1px solid var(--hairline); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.quote-intro h2 { font-size: var(--step-4); font-weight: 700; letter-spacing: -0.025em; color: var(--navy); margin: 1rem 0 1.25rem; line-height: 1.08; }
.quote-intro h2 em { font-style: normal; color: var(--blue); }
.quote-intro p { color: var(--text-mute); font-size: var(--step-1); max-width: 42ch; margin: 0 0 1.75rem; }
.quote-meta { display: flex; flex-direction: column; gap: 0.7rem; font-size: var(--step-0); color: var(--text); }
.quote-meta span { display: flex; align-items: center; gap: 0.6rem; }
.quote-meta span::before { content: '✓'; color: var(--blue); font-weight: 700; }
.contact-direct {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: var(--step-0);
}
.contact-direct a { color: var(--navy); font-weight: 500; }
.contact-direct a:hover { color: var(--blue); }
.contact-wa { color: var(--blue) !important; font-weight: 600; }
.contact-wa:hover { color: var(--navy) !important; }

.quote-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 9px;
  padding: 0.7rem 0.85rem;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 135, 204, 0.15);
}
.field textarea { min-height: 6rem; resize: vertical; }
.field-checks { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.35rem; }
.field-checks label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  color: var(--text);
  font-family: var(--font-sans);
}
.field-checks input { display: none; }
.field-checks label:has(input:checked) { background: var(--blue); color: #fff; border-color: var(--blue); }
.quote-submit { grid-column: 1 / -1; justify-self: start; margin-top: 0.5rem; }
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
}

/* -------------------- FOOTER (deep navy) -------------------- */
.footer {
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  background: var(--navy-deep);
  color: var(--on-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-brand img {
  height: 104px;
  width: auto;
  align-self: flex-start;            /* don't stretch to column width */
  filter: brightness(0) invert(1);   /* white logo, sits directly on the navy footer */
  opacity: 0.92;
}
.footer-brand p { color: var(--on-dark-mute); max-width: 32ch; font-size: var(--step-0); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8FD3FF;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: var(--on-dark-mute); font-size: var(--step-0); transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: var(--step--1);
  color: var(--on-dark-mute);
  letter-spacing: 0.02em;
}
.footer-wa {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #8FD3FF !important;
}
.footer-wa:hover { color: #fff !important; }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* -------------------- REVEAL ANIMATIONS -------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* -------------------- QUOTE FORM NOTICE BANNERS -------------------- */
.quote-notice {
  grid-column: 1 / -1;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: var(--step-0);
}
.quote-notice-success {
  background: var(--blue-tint);
  border: 1px solid var(--blue);
  color: var(--navy);
}
.quote-notice-error {
  background: rgba(236, 28, 36, 0.08);
  border: 1px solid rgba(236, 28, 36, 0.5);
  color: var(--red);
}
