/* ============================================================
   K1 ELECTRIC — shared stylesheet
   Design system extracted from the original K1 Electric design.
   Colors, fonts, and animations are matched exactly.
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- Design tokens ---- */
:root {
  --bg: #0A0A0B;
  --card: #121214;
  --accent: #FFC53D;
  --accent-2: #FF8A3D;
  --text: #F5F2EA;
  --grad: linear-gradient(100deg, #FFC53D 10%, #FF8A3D 90%);
  --mono: 'IBM Plex Mono', monospace;
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Animations ---- */
@keyframes k1rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes k1pulse { 0% { box-shadow: 0 0 0 0 rgba(255,197,61,0.45); } 70% { box-shadow: 0 0 0 22px rgba(255,197,61,0); } 100% { box-shadow: 0 0 0 0 rgba(255,197,61,0); } }
@keyframes k1breathe { 0%, 100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 0.85; transform: scale(1.08); } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.k1-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }

.k1-banner {
  background: #17130A;
  border-bottom: 1px solid rgba(255,197,61,0.15);
  padding: 9px 20px;
  display: flex; justify-content: center; align-items: center; gap: 10px;
}
.k1-banner-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); display: inline-block; flex-shrink: 0; }
.k1-banner-text {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--accent); text-transform: uppercase; text-align: center;
}

.k1-navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(10,10,11,0.62);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.k1-logo { display: flex; align-items: center; gap: 12px; }
.k1-logo-img { height: 54px; width: auto; display: block; }
.k1-logo-mark {
  background: var(--accent); color: var(--bg);
  font-weight: 900; font-size: 17px; letter-spacing: -0.02em;
  padding: 6px 10px; border-radius: 8px;
}
.k1-logo-text { font-weight: 700; font-size: 16px; letter-spacing: 0.14em; }

.k1-nav-links { display: flex; align-items: center; gap: 34px; font-size: 15px; font-weight: 500; }
.k1-nav-links a { color: rgba(245,242,234,0.75); transition: color 0.2s; }
.k1-nav-links a:hover, .k1-nav-links a.active { color: var(--accent); }

/* ---- Services dropdown ---- */
.k1-dropdown { position: relative; }
.k1-drop-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; color: rgba(245,242,234,0.75); transition: color 0.2s; }
.k1-drop-toggle .caret { font-size: 10px; opacity: 0.7; transition: transform 0.25s; }
.k1-dropdown:hover .k1-drop-toggle { color: var(--accent); }
.k1-dropdown:hover .k1-drop-toggle .caret { transform: rotate(180deg); }
.k1-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; padding: 8px; margin-top: 4px;
  background: rgba(18,18,20,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s; z-index: 120;
}
.k1-dropdown:hover .k1-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.k1-drop-menu a {
  display: block; padding: 12px 16px; border-radius: 10px; font-size: 14.5px;
  color: rgba(245,242,234,0.8) !important; transition: background 0.15s, color 0.15s;
}
.k1-drop-menu a:hover, .k1-drop-menu a.active { background: rgba(255,197,61,0.12); color: var(--accent) !important; }

.k1-nav-right { display: flex; align-items: center; gap: 10px; }
.k1-nav-call {
  background: var(--accent); color: var(--bg);
  font-weight: 800; font-size: 15px; padding: 12px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.k1-nav-call:hover { transform: translateY(-2px); }

.k1-hamburger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16); background: transparent;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer; padding: 0;
}
.k1-hamburger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; display: block; }

/* ---- Mobile menu overlay ---- */
.k1-mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--bg); display: none; flex-direction: column; }
.k1-mobile-menu.open { display: flex; }
.k1-mobile-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.k1-mobile-close {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16);
  background: transparent; color: var(--text); font-size: 20px; cursor: pointer; padding: 0;
}
.k1-mobile-links { display: flex; flex-direction: column; padding: 22px 26px; gap: 2px; flex: 1; overflow-y: auto; }
.k1-mobile-links a {
  padding: 14px 4px; font-size: 25px; font-weight: 800; letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.k1-mobile-cta { padding: 22px 26px 34px; }
.k1-mobile-cta a {
  display: block; text-align: center; background: var(--accent); color: var(--bg);
  font-weight: 800; font-size: 19px; padding: 20px; border-radius: 999px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--accent); color: var(--bg);
  font-weight: 800; font-size: 19px; padding: 20px 38px; border-radius: 999px;
  display: inline-block; transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), filter 0.25s;
}
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.08); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.22); font-weight: 600; font-size: 18px;
  padding: 19px 34px; border-radius: 999px; color: rgba(245,242,234,0.85);
  display: inline-block; transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.section { padding: 150px 40px; max-width: 1240px; margin: 0 auto; box-sizing: border-box; }
.eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.22em;
  color: rgba(245,242,234,0.5); text-transform: uppercase;
}
.eyebrow .hl { color: var(--accent); }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 70px; }
.section-head h2 {
  font-size: clamp(44px, 6vw, 84px); font-weight: 900; letter-spacing: -0.04em; line-height: 1;
}
.section-head p { font-size: 18px; color: rgba(245,242,234,0.6); max-width: 560px; line-height: 1.6; }

/* ---- Page hero (sub-pages) ---- */
.page-hero { position: relative; padding: 220px 24px 90px; text-align: center; overflow: hidden; }
.page-hero .glow {
  position: absolute; top: 0; left: 50%; margin-left: -420px;
  width: 840px; height: 840px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(255,197,61,0.16), transparent 70%);
  animation: k1breathe 7s ease-in-out infinite; pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.page-hero h1 { font-size: clamp(48px, 8vw, 108px); font-weight: 900; letter-spacing: -0.05em; line-height: 0.95; }
.page-hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { font-size: 20px; line-height: 1.55; color: rgba(245,242,234,0.65); max-width: 620px; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center;
  overflow: hidden; padding: 200px 24px 120px; box-sizing: border-box;
}
.hero-glow {
  position: absolute; top: 8%; left: 50%; margin-left: -420px;
  width: 840px; height: 840px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(255,197,61,0.22), transparent 70%);
  animation: k1breathe 7s ease-in-out infinite; pointer-events: none;
}
.hero-inner {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 32px; text-align: center; max-width: 1100px;
}
.hero-kicker {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.22em;
  color: rgba(245,242,234,0.55); text-transform: uppercase;
  animation: k1rise 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hero h1 {
  margin: 0; font-size: clamp(64px, 11vw, 168px); font-weight: 900;
  letter-spacing: -0.05em; line-height: 0.93;
  animation: k1rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero h1 .grad { display: block; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub {
  margin: 0; max-width: 620px; font-size: 21px; line-height: 1.55; color: rgba(245,242,234,0.65);
  animation: k1rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: k1rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hero-trust {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center;
  font-family: var(--mono); font-size: 13px; color: rgba(245,242,234,0.5);
  animation: k1rise 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero-trust .hl { color: var(--accent); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.service-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px;
  padding: 38px 34px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,197,61,0.4); }
.service-card .num { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.service-card h3 { font-size: 25px; font-weight: 700; letter-spacing: -0.02em; }
.service-card p { font-size: 15.5px; line-height: 1.65; color: rgba(245,242,234,0.6); }

/* ============================================================
   PINNED STATS
   ============================================================ */
.stats-section { position: relative; height: 320vh; }
.stats-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; }
.stats-glow {
  position: absolute; width: 900px; height: 900px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(255,197,61,0.12), transparent 70%); pointer-events: none;
}
.stat {
  position: absolute; text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; gap: 22px;
  will-change: transform, opacity, filter;
}
.stat-num {
  font-size: clamp(110px, 18vw, 260px); font-weight: 900; letter-spacing: -0.06em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: 21px; color: rgba(245,242,234,0.6); max-width: 560px; margin: 0 auto; line-height: 1.5; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 56px; }
.process-step { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; }
.process-step .num { font-size: 70px; font-weight: 900; letter-spacing: -0.04em; color: rgba(245,242,234,0.14); line-height: 1; }
.process-step h3 { font-size: 27px; font-weight: 700; letter-spacing: -0.02em; }
.process-step p { font-size: 16.5px; line-height: 1.65; color: rgba(245,242,234,0.6); }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card {
  margin: 0; background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px;
  padding: 40px 36px; display: flex; flex-direction: column; gap: 26px; justify-content: space-between;
}
.review-card blockquote { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.45; }
.review-card figcaption { font-family: var(--mono); font-size: 13px; color: rgba(245,242,234,0.5); }

/* ============================================================
   OFFER BAND
   ============================================================ */
.offer-wrap { padding: 0 40px; box-sizing: border-box; }
.offer {
  max-width: 1240px; margin: 0 auto; background: var(--accent); color: var(--bg);
  border-radius: 32px; padding: 70px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.offer-text { display: flex; flex-direction: column; gap: 12px; max-width: 640px; }
.offer-kicker { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.offer-headline { font-size: clamp(28px, 3.4vw, 44px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.15; }
.offer a {
  background: var(--bg); color: var(--text); font-weight: 800; font-size: 18px;
  padding: 20px 36px; border-radius: 999px; white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), color 0.25s;
}
.offer a:hover { transform: translateY(-3px); color: var(--accent); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span {
  font-family: var(--mono); font-size: 13.5px; color: rgba(245,242,234,0.7);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 10px 20px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; padding: 180px 24px 160px; text-align: center; overflow: hidden; }
.final-glow {
  position: absolute; bottom: -40%; left: 50%; margin-left: -450px;
  width: 900px; height: 900px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(255,197,61,0.16), transparent 70%); pointer-events: none;
}
.final-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.final-kicker { font-family: var(--mono); font-size: 13px; letter-spacing: 0.24em; color: rgba(245,242,234,0.55); text-transform: uppercase; }
.final-phone {
  font-size: clamp(52px, 9vw, 140px); font-weight: 900; letter-spacing: -0.05em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: filter 0.3s;
}
.final-phone:hover { filter: brightness(1.15); }
.final-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; font-family: var(--mono); font-size: 13px; color: rgba(245,242,234,0.5); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 34px; }
.contact-block .label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,242,234,0.5); margin-bottom: 10px; }
.contact-block .value { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.contact-block .value a:hover { color: var(--accent); }
.contact-block .sub { font-size: 15px; color: rgba(245,242,234,0.55); margin-top: 6px; line-height: 1.5; }

.contact-form { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-form label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,242,234,0.6); display: block; margin-bottom: 8px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background: #0A0A0B; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  padding: 15px 16px; color: var(--text); font-size: 16px; font-family: 'Archivo', sans-serif;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  background: var(--accent); color: var(--bg); font-weight: 800; font-size: 17px;
  padding: 18px; border: none; border-radius: 999px; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), filter 0.25s;
}
.contact-form button:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* ============================================================
   ELECTRICAL TESTS PAGE
   ============================================================ */
.test-intro { display: flex; gap: 24px; align-items: flex-start; max-width: 940px; }
.test-intro .icon {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 16px;
  background: rgba(255,197,61,0.12); border: 1px solid rgba(255,197,61,0.3);
  display: grid; place-items: center;
}
.test-intro .icon svg { width: 30px; height: 30px; }
.test-intro p { font-size: 19px; line-height: 1.65; color: rgba(245,242,234,0.72); }

.test-hero-img {
  width: 100%; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08);
  margin: 56px 0; object-fit: cover;
}

.test-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.test-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 4px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.test-list .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px;
  background: var(--accent); color: var(--bg);
  display: grid; place-items: center; font-weight: 900; font-size: 14px; margin-top: 2px;
}
.test-list .txt { display: flex; flex-direction: column; gap: 3px; }
.test-list .name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.test-list .detail { font-family: var(--mono); font-size: 13.5px; color: rgba(245,242,234,0.55); }

.test-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.test-gallery figure { margin: 0; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); background: var(--card); }
.test-gallery img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.test-gallery figure:hover img { transform: scale(1.05); }

/* ---- Feature cards (icon + title + text) ---- */
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 4px;
  background: rgba(255,197,61,0.12); border: 1px solid rgba(255,197,61,0.3);
  display: grid; place-items: center;
}
.feat-icon svg { width: 26px; height: 26px; stroke: var(--accent); }

/* ---- Clickable service cards (link to a dedicated page) ---- */
a.service-card { color: inherit; }
.service-card .learn {
  margin-top: auto; padding-top: 8px; font-family: var(--mono); font-size: 13px;
  color: var(--accent); display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s;
}
a.service-card:hover .learn { gap: 12px; }

/* ---- As-built vs design comparison ---- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px;
  padding: 40px 34px; display: flex; flex-direction: column; gap: 12px;
}
.compare-card .tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.compare-card h3 { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; }
.compare-card p { font-size: 15.5px; line-height: 1.6; color: rgba(245,242,234,0.6); }
@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }

@media (max-width: 700px) {
  .test-intro { flex-direction: column; gap: 18px; }
  .test-gallery { grid-template-columns: 1fr; gap: 14px; }
  .test-gallery img { height: 240px; }
  .test-hero-img { margin: 40px 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.k1-footer { border-top: 1px solid rgba(255,255,255,0.07); padding: 60px 40px; box-sizing: border-box; }
.k1-footer-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.k1-footer-logo { display: flex; align-items: center; gap: 12px; }
.k1-footer-logo .mark { background: var(--accent); color: var(--bg); font-weight: 900; font-size: 14px; padding: 5px 8px; border-radius: 6px; }
.k1-footer-logo .txt { font-weight: 700; font-size: 14px; letter-spacing: 0.14em; }
.k1-footer-img { height: 40px; width: auto; display: block; }
.k1-footer-license { font-family: var(--mono); font-size: 12.5px; color: rgba(245,242,234,0.45); }
.k1-footer-phone { font-family: var(--mono); font-size: 13px; color: rgba(245,242,234,0.7); }
.k1-footer-phone:hover { color: var(--accent); }

/* ============================================================
   FLOATING CALL PILL
   ============================================================ */
.k1-pill {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  background: var(--accent); color: var(--bg); font-weight: 800; font-size: 16px;
  padding: 16px 28px; border-radius: 999px; display: flex; align-items: center; gap: 10px;
  animation: k1pulse 2.6s ease-out infinite; transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.k1-pill:hover { transform: translateY(-3px) scale(1.03); }
.k1-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--bg); display: inline-block; flex-shrink: 0; }
.k1-pill-short { display: none; }

/* ---- Reveal-on-scroll (JS toggles) ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .k1-nav-links { display: none !important; }
  .k1-nav-call { display: none !important; }
  .k1-hamburger { display: flex !important; }
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .k1-navbar { padding: 14px 18px !important; }
  .k1-banner { padding: 8px 14px !important; }
  .k1-banner-text { font-size: 10.5px !important; line-height: 1.4; }
  .hero { padding: 150px 20px 90px !important; }
  .hero h1 { font-size: clamp(52px, 15vw, 168px) !important; }
  .page-hero { padding: 170px 20px 70px !important; }
  .section { padding: 96px 22px !important; }
  .stat-num { font-size: clamp(58px, 21vw, 260px) !important; }
  .offer { padding: 44px 26px !important; flex-direction: column !important; align-items: flex-start !important; }
  .offer a { width: 100%; text-align: center; box-sizing: border-box; }
  .final-cta { padding: 120px 20px 130px !important; }
  .final-phone { font-size: clamp(32px, 12vw, 140px) !important; }
  .k1-footer { padding: 44px 22px !important; }
  .k1-footer-inner { flex-direction: column !important; text-align: center !important; }
  .k1-pill { padding: 14px 18px !important; font-size: 14px !important; bottom: 16px !important; right: 16px !important; left: 16px !important; justify-content: center !important; }
  .k1-pill-full { display: none !important; }
  .k1-pill-short { display: inline !important; }
}
