

/* ============================================================
   Service landing page buttons (Perth landing pages)
   ============================================================ */
.btn-secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-2);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}
/* ========================================================
   SENGER ENGINEERING — Shared Stylesheet
   Clean, photographic, restrained.
   ======================================================== */

:root {
  --bg: #FAFAF8;
  --bg-2: #F2F0EC;
  --bg-3: #E8E5DD;
  --ink: #14161A;
  --ink-2: #2A2D33;
  --muted: #6B6E75;
  --faint: #A8AAAE;
  --line: #E6E4DF;
  --line-2: #D6D3CC;
  --accent: #1F3A5F;        /* deep engineering blue (matches your real photos) */
  --accent-soft: #4A6FA5;
  --signal: #C97B3F;        /* warm tone for hover accents, used sparingly */

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; color: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

/* ========== TOP CONTACT BAR ========== */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 10px var(--gutter);
  display: flex;
  justify-content: center;
  gap: 32px;
  font-weight: 400;
}
.topbar a { color: var(--bg); transition: opacity 0.3s var(--ease); }
.topbar a:hover { opacity: 0.7; }
.topbar .sep { color: rgba(255,255,255,0.3); }
@media (max-width: 760px) {
  .topbar { gap: 14px; font-size: 11px; padding: 8px var(--gutter); flex-wrap: wrap; }
  .topbar .sep { display: none; }
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s var(--ease);
}
.nav.scrolled { padding: 12px var(--gutter); }

.logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.logo:hover img { opacity: 0.7; }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 400;
}
.nav-links a {
  color: var(--ink-2);
  position: relative;
  transition: color 0.25s var(--ease);
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--line-2);
}
.menu-btn span {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 1px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.menu-btn span:nth-child(1) { transform: translate(-50%, -3px); }
.menu-btn span:nth-child(2) { transform: translate(-50%, 3px); }
.menu-btn.open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .logo { height: 32px; }
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 100px var(--gutter) max(32px, env(safe-area-inset-bottom));
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  pointer-events: none;
  /* Internal scroll when content exceeds viewport (long sub-nav on small phones) */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media (max-width: 980px) {
  .mobile-menu { display: flex; }
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(34px, 8.5vw, 56px);
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
  display: flex; justify-content: space-between; align-items: baseline;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-menu nav a span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--faint);
  text-transform: uppercase;
}
.mobile-menu.open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open nav a:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: 0.40s; }
.mobile-foot {
  font-size: 12px;
  color: var(--muted);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}

/* ========== CONTAINER ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .num {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}
.section-dark .eyebrow { color: rgba(245,242,237,0.5); }
.section-dark .eyebrow .num { color: var(--bg); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 900px;
}
.section-title .it { font-style: italic; color: var(--accent); }
.section-dark .section-title .it { color: var(--bg); font-style: italic; opacity: 0.55; }

.section-sub {
  margin-top: 20px;
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.6;
}
.section-dark .section-sub { color: rgba(245,242,237,0.6); }

.section-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: clamp(48px, 8vh, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ========== SECTIONS ========== */
.section {
  padding: clamp(80px, 12vh, 140px) var(--gutter);
}
.section-tight {
  padding: clamp(60px, 9vh, 100px) var(--gutter);
}
.section-soft { background: var(--bg-2); }
.section-dark { background: var(--ink); color: var(--bg); }
.section-dark .muted-fg { color: rgba(245,242,237,0.55); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-ghost-light { color: var(--bg); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-light { background: var(--bg); color: var(--ink); }
.btn-light:hover { background: var(--accent); color: var(--bg); transform: translateY(-2px); }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ========== TICKER ========== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 34px);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 64px;
  font-weight: 400;
}
.ticker-item::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .suf { font-size: 0.45em; font-style: italic; opacity: 0.6; }
.stat-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.stat-label {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.55);
  line-height: 1.6;
  max-width: 200px;
  font-weight: 500;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 36px 20px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ========== IMAGE PLACEHOLDERS (ready to swap with <img>) ========== */
.ph {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; padding: 24px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(31,58,95,0.14), transparent 50%),
    linear-gradient(180deg, var(--bg-3), #C7C2B7);
}
.ph::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(20,22,26,0.08);
  pointer-events: none;
}
.ph[data-tone="2"] { background: linear-gradient(135deg, #C7B89944, transparent 50%), linear-gradient(180deg, #ECEAE3, #BFB7A8); }
.ph[data-tone="3"] { background: linear-gradient(135deg, #4A6FA522, transparent 50%), linear-gradient(180deg, #E0DDD4, #BCB6A8); }
.ph[data-tone="4"] { background: linear-gradient(135deg, #5C5A5644, transparent 50%), linear-gradient(180deg, #DDD9D0, #B8B2A2); }
.ph[data-tone="5"] { background: linear-gradient(135deg, #7E6F5844, transparent 50%), linear-gradient(180deg, #DAD5C8, #AEA68F); }
.ph[data-tone="6"] { background: linear-gradient(135deg, #2F4F6F33, transparent 50%), linear-gradient(180deg, #D4D1C8, #A8A599); }
.ph-label {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.ph-meta {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(20,22,26,0.1);
  font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px var(--gutter) 28px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.foot-logo {
  height: 80px; width: auto;
  margin-bottom: 20px;
  display: block;
}
.foot-tagline {
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(245,242,237,0.65);
  max-width: 380px;
  line-height: 1.4;
  font-style: italic;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.4);
  margin-bottom: 16px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  color: rgba(245,242,237,0.75);
  font-size: 14px;
  transition: color 0.3s var(--ease);
}
.foot-col a:hover { color: var(--bg); }
.foot-col li { font-size: 14px; color: rgba(245,242,237,0.75); }
.footer-bot {
  max-width: var(--container);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245,242,237,0.4);
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .footer-bot { flex-direction: column; gap: 8px; }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.13s; }
.reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.29s; }
.reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.37s; }
.reveal-stagger.in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

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

/* ========== PAGE HERO (used on inner pages) ========== */
.page-hero {
  padding: clamp(80px, 14vh, 160px) var(--gutter) clamp(60px, 8vh, 100px);
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 880px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.page-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.page-hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.page-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.page-hero-title .it { font-style: italic; color: var(--accent); }
.page-hero-title .line { display: block; overflow: hidden; }
.page-hero-title .line-inner {
  display: inline-block;
  transform: translateY(105%);
  animation: rise 1.1s var(--ease) forwards;
}
.page-hero-title .line:nth-child(1) .line-inner { animation-delay: 0.1s; }
.page-hero-title .line:nth-child(2) .line-inner { animation-delay: 0.22s; }
.page-hero-title .line:nth-child(3) .line-inner { animation-delay: 0.34s; }
@keyframes rise { to { transform: translateY(0); } }

.page-hero-lede {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Floating quick-contact (WhatsApp + Call) — every page
   ============================================================ */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(15, 20, 25, 0.35), 0 4px 10px -4px rgba(15, 20, 25, 0.2);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.25s ease;
  will-change: transform;
}
.fc-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 32px -8px rgba(15, 20, 25, 0.4), 0 6px 14px -4px rgba(15, 20, 25, 0.25);
}
.fc-btn svg { flex-shrink: 0; display: block; }
.fc-wa { background: #25D366; }
.fc-call { background: #1F3A5F; }
.fc-label {
  white-space: nowrap;
  max-width: 240px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .float-contact { right: 14px; bottom: 14px; gap: 8px; }
  .fc-btn { padding: 12px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .fc-label { display: none; }
}
@media print {
  .float-contact { display: none; }
}

/* ============================================================
   LANDING PAGES (Google Ads destinations)
   ============================================================ */
.lp-hero {
  padding: clamp(80px, 12vw, 140px) var(--gutter) clamp(48px, 6vw, 80px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2, #fafaf7) 100%);
}
.lp-hero-inner { max-width: 1080px; margin: 0 auto; }
.lp-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 2px;
}
.lp-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 18ch;
}
.lp-h1 .it { font-style: italic; color: var(--accent); }
.lp-lede {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--ink-2, var(--ink));
  max-width: 65ch;
  margin: 0 0 36px;
}
.lp-trust {
  display: flex; flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0 0 40px; padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-2, var(--ink)); font-weight: 500;
}
.lp-trust-item svg { flex-shrink: 0; color: var(--accent); }
.lp-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.lp-cta .btn { padding: 16px 26px; font-size: 15px; }
.lp-bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px; max-width: 920px;
}
.lp-bullets li {
  position: relative; padding-left: 28px;
  font-size: 15px; line-height: 1.55; color: var(--ink);
}
.lp-bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 14px; height: 1px; background: var(--accent);
}
@media (max-width: 700px) { .lp-bullets { grid-template-columns: 1fr; } }
.lp-prose { max-width: 70ch; font-size: 16px; line-height: 1.75; color: var(--ink-2, var(--ink)); }
.lp-prose p { margin: 0 0 18px; }
.lp-prose strong { color: var(--ink); font-weight: 600; }
.lp-close {
  text-align: center;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  background: var(--ink); color: var(--bg);
}
.lp-close h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400; letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.lp-close p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px; margin: 0 auto 32px; max-width: 50ch;
}
.lp-close .btn {
  background: var(--bg); color: var(--ink);
  padding: 16px 28px; font-size: 15px;
}
.lp-close .btn:hover { background: var(--accent); color: var(--bg); }
.lp-close-or { margin-top: 18px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.lp-close-or a { color: var(--bg); border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.lp-close-or a:hover { border-bottom-color: var(--bg); }
