/* ── LION POWER — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button { outline: none !important; box-shadow: none !important; -webkit-tap-highlight-color: transparent; border: none; -webkit-appearance: none; appearance: none; }
button:focus, button:focus-visible, button:active { outline: none !important; box-shadow: none !important; }

:root {
  --white: #FFFFFF;
  --off-white: #F7F8F6;
  --bg-section: #F2F4F0;
  --ink: #111412;
  --ink-2: #3A3F38;
  --ink-3: #6B7069;
  --border: #E2E5DF;
  --border-dark: #C8CCC5;
  --yellow: #F0A500;
  --yellow-mid: #D99500;
  --yellow-light: #FEF6E0;
  --yellow-accent: #F0C040;
  --green: #4ade80;
  --sans: 'Montserrat', sans-serif;
  --serif: 'DM Serif Display', serif;
}

html { scroll-behavior: smooth; }
body {
  background: #EFEFEF;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
nav.elevated { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-img { width: 28px; height: 28px; object-fit: contain; display: block; flex-shrink: 0; }
.nav-logo-text { font-weight: 700; font-size: 16px; color: var(--ink); letter-spacing: -0.02em; font-family: 'Montserrat', sans-serif; }
.nav-logo-text span { color: var(--ink-3); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--ink-2);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-link-btn { font-size: 14px; font-weight: 400; color: var(--ink-2); text-decoration: none; transition: color 0.2s; }
.nav-link-btn:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--yellow); padding: 9px 20px;
  border: none !important; outline: none !important; box-shadow: none !important; -webkit-appearance: none; appearance: none;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--yellow-mid); }
.nav-cta:focus, .nav-cta:focus-visible { outline: none; box-shadow: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 64px;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(180,130,0,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 48px 72px;
  position: relative; z-index: 1;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 5px 14px;
  margin-bottom: 28px;
}
.page-hero-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }
.page-hero-eyebrow-text { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.06;
  letter-spacing: -0.02em; color: var(--white);
  max-width: 720px; margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.45); }
.page-hero-sub {
  font-size: 17px; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 520px;
}

/* hero image strip */
.page-hero-img {
  width: 100%; max-height: 480px;
  object-fit: cover; object-position: center;
  display: block;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 60%, transparent 100%);
}

/* ── SHARED SECTION ── */
.section { padding: 96px 48px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.overline {
  font-size: 11px; font-weight: 600; color: var(--yellow);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
  /* make overline readable against white */
  color: #7A5500;
}
/* On dark backgrounds, override */
.on-dark .overline, .page-hero .overline { color: var(--yellow); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--ink-3); }
.section-body {
  font-size: 16px; font-weight: 400; line-height: 1.75;
  color: var(--ink-3); max-width: 540px; margin-top: 16px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  background: var(--yellow); padding: 12px 24px;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--yellow-mid); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  border: 1px solid var(--border-dark); padding: 11px 24px;
  border-radius: 6px; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--ink-2); color: var(--ink); }
.btn-ghost {
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--ink); }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.spec-table td:first-child { color: var(--ink-3); font-weight: 400; width: 45%; }
.spec-table td:last-child { color: var(--ink); font-weight: 500; }

/* ── FEATURE CARD ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.feature-card {
  background: var(--white); padding: 32px 28px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--yellow-light); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--yellow-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
  transition: background 0.2s;
}
.feature-card:hover .feature-icon { background: rgba(232,176,0,0.2); }
.feature-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--ink-3); line-height: 1.7; font-weight: 400; }

/* ── IMAGE + TEXT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-section);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink); padding: 80px 48px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 85% 50%, rgba(180,130,0,0.22) 0%, transparent 65%);
}
.cta-band-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
  position: relative; z-index: 1;
}
.cta-band-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px;
}
.cta-band-title em { font-style: italic; color: rgba(255,255,255,0.45); }
.cta-band-sub { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 400; line-height: 1.6; max-width: 500px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.btn-hero-primary {
  font-size: 14px; font-weight: 600; color: var(--ink);
  background: var(--white); padding: 12px 24px;
  border-radius: 6px; text-decoration: none; white-space: nowrap; transition: background 0.2s;
}
.btn-hero-primary:hover { background: #FFF8E0; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.35); text-align: right; }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.5);
  padding: 64px 48px 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-logo { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; font-weight: 400; max-width: 220px; }
.footer-col-head {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 14px; color: rgba(255,255,255,0.4);
  text-decoration: none; font-weight: 400; transition: color 0.2s;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; font-weight: 400; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-size: 13px; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-socials a:hover { color: rgba(255,255,255,0.7); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */

/* ── MOBILE NAV ── */
.nav-hamburger { display: none !important; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-right: -8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #EFEFEF; border-bottom: 1px solid var(--border); z-index: 99; padding: 16px 24px 24px; flex-direction: column; gap: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 400; color: var(--ink-2); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--ink); }
.mobile-menu-cta { margin-top: 16px; background: var(--yellow) !important; color: var(--ink) !important; font-weight: 600 !important; border-radius: 8px; text-align: center; padding: 14px !important; border-bottom: none !important; }

/* ── BUTTON RESET for modal triggers ── */
button.nav-cta, button.mobile-menu-cta, button.btn-hero-primary,
button.btn-hero-ghost, button.btn-cta-ghost, button.btn-primary,
button.btn-outline, button.btn-inquiry, button.contact-card-email {
  border: none; outline: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
}


/* ── CTA SECTION ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

.cta-section { background: var(--off-white); padding: 0 48px 100px; width: 100%; box-sizing: border-box; }
.cta-box { max-width: 1280px; margin: 0 auto; background: var(--ink); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 64px; gap: 48px; position: relative; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(180,130,0,0.22) 0%, transparent 70%); }
.cta-overline { font-size: 11px; font-weight: 600; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-title { font-family: var(--serif); font-size: clamp(32px,3.5vw,48px); color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-title em { font-style: italic; color: rgba(255,255,255,0.45); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.65; position: relative; z-index: 1; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; position: relative; z-index: 1; }
.btn-cta-ghost { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; white-space: nowrap; background: none; }
.btn-cta-ghost:hover { color: rgba(255,255,255,0.75); }
.cta-box .btn-hero-primary { background: var(--yellow); color: var(--ink); }
.cta-box .btn-hero-primary:hover { background: var(--yellow-mid); }


/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── CTA SECTION ── */
.cta-section { background: var(--off-white); padding: 0 48px 100px; width: 100%; box-sizing: border-box; }
.cta-box { max-width: 1280px; margin: 0 auto; background: var(--ink); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 64px; gap: 48px; position: relative; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(180,130,0,0.22) 0%, transparent 70%); }
.cta-overline { font-size: 11px; font-weight: 600; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-title { font-family: var(--serif); font-size: clamp(32px,3.5vw,48px); color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-title em { font-style: italic; color: rgba(255,255,255,0.45); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.65; position: relative; z-index: 1; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; position: relative; z-index: 1; }
.btn-cta-ghost { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; white-space: nowrap; background: none; }
.btn-cta-ghost:hover { color: rgba(255,255,255,0.75); }
.cta-box .btn-hero-primary { background: var(--yellow); color: var(--ink); }
.cta-box .btn-hero-primary:hover { background: var(--yellow-mid); }

/* ── MOBILE CTA ── */
@media (max-width: 768px) {
  .roi-cta-box-inner { grid-template-columns: 1fr !important; padding: 36px 28px !important; }
  .roi-cta-actions { align-items: stretch !important; min-width: unset !important; }
  .roi-savings-grid { grid-template-columns: repeat(2,1fr) !important; }
}

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .cta-box { grid-template-columns: 1fr; padding: 48px 40px; }
  .cta-actions { align-items: flex-start; }
  .cta-section { padding: 0 24px 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-link-btn { display: none; }
  .section { padding: 72px 24px; }
  .page-hero-inner { padding: 64px 24px 56px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 64px 24px; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { align-items: flex-start; }
  .cta-box { grid-template-columns: 1fr; padding: 48px 40px; }
  .cta-actions { align-items: flex-start; }
  .cta-section { padding: 0 24px 72px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  footer { padding: 64px 24px 40px; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .page-hero h1 { font-size: 38px; }
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 2px; }
