/* ===================================================================
   Lapans Basement Waterproofing — Design Tokens
   Palette: deep teal/ink base + aqua + violet accent (water theme)
   Display: Manrope / Body: Inter / Data: IBM Plex Mono
=================================================================== */

:root {
  --bg-0: #071316;
  --bg-1: #0b1e22;
  --bg-2: #10282d;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);

  --text-0: #f1f7f6;
  --text-1: #bcd0ce;
  --text-2: #7f9997;

  --aqua: #2dd4bf;
  --aqua-light: #7ce8d8;
  --violet: #8b8ff5;
  --violet-light: #b3b6fa;

  --grad-signature: linear-gradient(135deg, var(--aqua) 0%, #29b6c9 45%, var(--violet) 100%);
  --grad-radial-a: radial-gradient(circle, rgba(45, 212, 191, 0.32), transparent 70%);
  --grad-radial-b: radial-gradient(circle, rgba(139, 143, 245, 0.28), transparent 70%);

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow-aqua: 0 0 0 1px rgba(45,212,191,0.35), 0 10px 40px -8px rgba(45,212,191,0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text-0);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-0);
  line-height: 1.18;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }

p { color: var(--text-1); margin: 0 0 14px; }

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--aqua-light);
  margin-bottom: 10px;
  display: inline-block;
}

.section-lede { max-width: 620px; font-size: 1.04rem; color: var(--text-1); }

section { padding: 92px 0; position: relative; }
@media (max-width: 720px) { section { padding: 60px 0; } }

.glass {
  background: var(--surface);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--grad-signature); color: #061014; }
.btn-ghost { background: transparent; color: var(--text-0); border: 1px solid var(--border); }
.btn-glow:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-aqua); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* ===================================================================
   NAVIGATION — full-width glass bar, left-aligned links, underline hover
=================================================================== */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.nav {
  max-width: 100%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  border-radius: 0;
  border-left: none; border-right: none; border-top: none;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav-wrap.scrolled .nav { background: rgba(7, 19, 22, 0.82); padding: 12px 32px; box-shadow: var(--shadow-soft); }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--grad-signature);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: #061014;
}
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 0.98rem; color: var(--text-0); line-height: 1.1; }
.logo-text span { display: block; font-size: 0.66rem; font-weight: 500; color: var(--text-2); letter-spacing: 0.02em; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.92rem; color: var(--text-1); transition: color 0.25s; position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--aqua); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--text-0); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 20px; font-size: 0.86rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-0); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 8px 24px; background: rgba(7,19,22,0.97); border-bottom: 1px solid var(--border); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all 0.3s var(--ease); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ===================================================================
   HERO — wave background + sidebar stat column (not floating cards)
=================================================================== */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.wave { position: absolute; border-radius: 44% 56% 62% 38% / 40% 46% 54% 60%; filter: blur(60px); opacity: 0.5; animation: morph 16s ease-in-out infinite; }
.wave-a { width: 520px; height: 420px; background: var(--grad-radial-a); top: -140px; right: -140px; }
.wave-b { width: 400px; height: 340px; background: var(--grad-radial-b); bottom: -160px; left: -120px; animation-delay: -7s; }
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 30% 0%, black 30%, transparent 72%);
}
@keyframes morph {
  0%, 100% { border-radius: 44% 56% 62% 38% / 40% 46% 54% 60%; transform: translate(0,0) scale(1); }
  50% { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; transform: translate(20px, -18px) scale(1.05); }
}

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: stretch; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; color: var(--text-1);
  margin-bottom: 22px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 4px rgba(45,212,191,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-sub { font-size: 1.08rem; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sidebar: vertical stat stack instead of floating cards */
.hero-sidebar {
  display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid var(--border);
  padding-left: 36px;
}
@media (max-width: 980px) { .hero-sidebar { border-left: none; padding-left: 0; padding-top: 20px; border-top: 1px solid var(--border); flex-direction: row; flex-wrap: wrap; } }
.sidebar-stat { padding: 18px 0; border-bottom: 1px solid var(--border); }
.sidebar-stat:last-of-type { border-bottom: none; }
.sidebar-stat .stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text-0); }
.sidebar-stat .stat-suffix { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--aqua-light); margin-left: 2px; }
.sidebar-stat p { font-size: 0.82rem; color: var(--text-2); margin: 4px 0 0; }
.sidebar-badge {
  margin-top: 6px; padding: 16px; border-radius: var(--radius-m);
  background: var(--surface-strong); border: 1px solid var(--border);
  display: flex; gap: 12px; align-items: flex-start;
}
.sb-icon { font-size: 1.3rem; }
.sidebar-badge p { font-size: 0.85rem; color: var(--text-1); margin: 0; }

/* ===================================================================
   SERVICES — horizontal icon-left cards, 2-column grid
=================================================================== */
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
@media (max-width: 780px) { .services-grid { grid-template-columns: 1fr; } }

.s-card {
  display: flex; gap: 20px;
  padding: 28px 26px;
  border-radius: var(--radius-m);
  background: linear-gradient(160deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.s-card:hover { transform: translateY(-6px) translateX(2px); box-shadow: var(--shadow-soft); border-color: rgba(45,212,191,0.35); }
.s-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: var(--surface-strong); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.s-features { margin: 12px 0 16px; display: flex; flex-direction: column; gap: 6px; }
.s-features li { font-size: 0.87rem; color: var(--text-1); padding-left: 18px; position: relative; }
.s-features li::before { content: "✓"; position: absolute; left: 0; color: var(--aqua-light); font-weight: 700; }
.s-cta { font-family: var(--font-display); font-weight: 700; font-size: 0.87rem; color: var(--aqua-light); }
.s-cta:hover { text-decoration: underline; }

/* ===================================================================
   STATS BAND
=================================================================== */
.stats-band { padding: 56px 0; }
.stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-glass { text-align: center; padding: 30px 16px; border-radius: var(--radius-m); background: var(--surface); border: 1px solid var(--border); }
.stat-glass .stat-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--text-0); }
.stat-glass .stat-suffix { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--aqua-light); }
.stat-glass p { font-size: 0.84rem; color: var(--text-2); margin: 6px 0 0; }

/* ===================================================================
   PROCESS — horizontal timeline on desktop
=================================================================== */
.timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 0; list-style: none; padding: 0; }
@media (min-width: 900px) {
  .timeline { flex-direction: row; align-items: flex-start; gap: 18px; position: relative; }
  .timeline::before { content: ""; position: absolute; top: 17px; left: 40px; right: 40px; height: 2px; background: linear-gradient(90deg, var(--aqua), var(--violet)); opacity: 0.4; }
}
.timeline-step { position: relative; flex: 1; padding-bottom: 30px; }
@media (min-width: 900px) { .timeline-step { padding-bottom: 0; } }
.ts-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--aqua-light);
  margin-bottom: 14px; position: relative; z-index: 1;
}
.ts-body { padding: 18px 18px 20px; border-radius: var(--radius-m); background: var(--surface); border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; height: 100%; }
.ts-body:hover { border-color: rgba(45,212,191,0.35); transform: translateY(-4px); }
.ts-body h3 { margin-bottom: 6px; font-size: 1.02rem; }
.ts-body p { margin: 0; font-size: 0.88rem; }

/* ===================================================================
   RESULTS — masonry-style asymmetric grid
=================================================================== */
.masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 20px; margin-top: 44px; }
@media (max-width: 980px) { .masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .masonry { grid-template-columns: 1fr; grid-auto-rows: auto; } }

.r-card { grid-column: span 2; grid-row: span 1; border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: transform 0.4s var(--ease); display: flex; flex-direction: column; }
.r-tall { grid-row: span 2; }
.r-card:hover { transform: translateY(-6px); }
.r-visual { flex: 1; display: flex; align-items: flex-end; padding: 16px; position: relative; overflow: hidden; min-height: 100px; }
.r-visual span { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: #061014; background: rgba(255,255,255,0.85); padding: 6px 12px; border-radius: 8px; position: relative; z-index: 1; }
.r-visual::before { content: ""; position: absolute; inset: 0; opacity: 0.9; }
.r-visual-1::before { background: linear-gradient(135deg, #2dd4bf, #157f74); }
.r-visual-2::before { background: linear-gradient(135deg, #8b8ff5, #4d51a8); }
.r-visual-3::before { background: linear-gradient(135deg, #7ce8d8, #29a396); }
.r-visual-4::before { background: linear-gradient(135deg, #b3b6fa, #6367c9); }
.r-visual::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 14px); }
.r-info { padding: 14px 18px 18px; }
.r-info h3 { font-size: 0.96rem; margin-bottom: 4px; }
.r-info p { font-size: 0.82rem; margin: 0; }

/* ===================================================================
   ARTICLE
=================================================================== */
.article-container { max-width: 860px; }
.article-body h3 { margin-top: 40px; }
.article-body p { font-size: 1.02rem; }
.article-body a { color: var(--aqua-light); border-bottom: 1px solid rgba(45,212,191,0.4); transition: border-color 0.25s; }
.article-body a:hover { border-color: var(--aqua-light); }

.article-list { margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.article-list li { padding-left: 24px; position: relative; font-size: 1rem; color: var(--text-1); }
.article-list li::before { content: "—"; position: absolute; left: 0; color: var(--aqua-light); }

.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius-s); overflow: hidden; border: 1px solid var(--border); font-size: 0.92rem; }
.article-table th, .article-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.article-table th { background: var(--surface-strong); font-family: var(--font-display); font-weight: 700; color: var(--text-0); }
.article-table tr:last-child td { border-bottom: none; }
.article-table td { color: var(--text-1); }

.callout { margin: 24px 0; padding: 20px 22px; border-radius: var(--radius-m); border: 1px solid var(--border); position: relative; }
.callout p { margin: 0; }
.callout-label { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; margin-bottom: 6px !important; }
.callout-tip { background: rgba(139,143,245,0.08); border-color: rgba(139,143,245,0.3); }
.callout-tip .callout-label { color: var(--violet-light); }
.callout-warning { background: rgba(45,212,191,0.08); border-color: rgba(45,212,191,0.35); }
.callout-warning .callout-label { color: var(--aqua-light); }
.callout-stat { background: var(--surface-strong); }
.callout-stat .callout-label { color: var(--text-2); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }
.pc-col { padding: 22px; border-radius: var(--radius-m); border: 1px solid var(--border); }
.pc-pros { background: rgba(45,212,191,0.06); }
.pc-cons { background: rgba(255,255,255,0.03); }
.pc-col h4 { margin-bottom: 12px; }
.pc-col ul { display: flex; flex-direction: column; gap: 8px; }
.pc-col li { font-size: 0.92rem; color: var(--text-1); padding-left: 20px; position: relative; }
.pc-pros li::before { content: "✓"; position: absolute; left: 0; color: var(--aqua-light); }
.pc-cons li::before { content: "!"; position: absolute; left: 0; color: var(--violet-light); font-weight: 700; }

/* FAQ Accordion */
.faq-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius-s); border: 1px solid var(--border); background: var(--surface); padding: 4px 20px; }
.faq-item summary {
  cursor: pointer; padding: 16px 0; font-family: var(--font-display); font-weight: 700; font-size: 0.97rem; color: var(--text-0);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--aqua-light); transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 18px; font-size: 0.94rem; margin: 0; }

/* ===================================================================
   TESTIMONIALS — single row with large quote marks
=================================================================== */
.testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 900px) { .testimonial-row { grid-template-columns: 1fr; } }
.t-card {
  position: relative; padding: 30px 26px 26px;
  border-radius: var(--radius-m); background: var(--surface);
  border: 1px solid var(--border); border-left: 3px solid var(--aqua);
  margin: 0; transition: transform 0.35s var(--ease);
}
.t-card:hover { transform: translateY(-6px); }
.t-quote-mark { position: absolute; top: 8px; right: 20px; font-family: var(--font-display); font-size: 3.2rem; color: rgba(255,255,255,0.06); font-weight: 800; line-height: 1; }
.t-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.t-initials { width: 42px; height: 42px; border-radius: 10px; background: var(--grad-signature); color: #061014; font-family: var(--font-display); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.t-name { font-weight: 700; color: var(--text-0); margin: 0; font-size: 0.92rem; }
.t-loc { font-size: 0.78rem; color: var(--text-2); margin: 0; }
.t-rating { color: var(--aqua-light); letter-spacing: 2px; margin: 0 0 10px; font-size: 0.9rem; }
.t-text { font-size: 0.94rem; margin: 0; position: relative; z-index: 1; }

/* ===================================================================
   CONTACT — form first, info second (reversed order)
=================================================================== */
.contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; display: grid; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-form { padding: 34px; border-radius: var(--radius-l); display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--text-2); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text-0);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-s);
  padding: 12px 14px; resize: vertical; transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(45,212,191,0.18);
}
.form-submit { margin-top: 6px; width: 100%; }
.form-status { font-size: 0.85rem; color: var(--violet-light); min-height: 18px; margin: 0; text-align: center; }

.contact-list { margin: 30px 0 34px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 1.2rem; margin-top: 2px; }
.ci-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); margin: 0 0 2px; }
.contact-list a, .contact-list p { font-size: 0.98rem; color: var(--text-0); margin: 0; }
.contact-list a:hover { color: var(--aqua-light); }

/* ===================================================================
   FOOTER
=================================================================== */
.footer { border-top: 1px solid var(--border); padding-top: 64px; background: var(--bg-1); }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; display: grid; padding-bottom: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.88rem; margin: 14px 0 18px; max-width: 280px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; transition: border-color 0.25s, transform 0.25s; }
.social-icons a:hover { border-color: var(--aqua); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-1); transition: color 0.25s; }
.footer-col a:hover { color: var(--aqua-light); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 24px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-2); margin: 0; }

/* ===================================================================
   SCROLL REVEAL
=================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
