﻿/* ===========================
   EyebAi — SHARED STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --black: #080808;
  --white: #fafaf8;
  --orange: #FF6B00;
  --orange-dim: #E05A00;
  --orange-dark: #C44E00;
  --orange-light: #fff3e8;
  --gray: #f2f1ee;
  --gray-mid: #b0afa9;
  --gray-dark: #404040;
  --accent: #00E5C3;
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 15px 30px; border-radius: 8px;
  text-decoration: none; font-weight: 500; font-size: 15px;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--orange-dim); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--black); padding: 15px 24px;
  text-decoration: none; font-weight: 500; font-size: 15px;
  border: 1.5px solid #d0cfc9; border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--black); background: var(--black); color: #fff; }
.btn-ghost.light { color: #fff; border-color: #444; }
.btn-ghost.light:hover { border-color: var(--orange); background: var(--orange); }

/* ── HEADER / NAV ── */
header {
  padding: 18px 0;
  border-bottom: 1px solid #e8e7e2;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
}
header.dark {
  border-bottom: 1px solid #1a1a1a;
  background: rgba(10, 10, 10, 0.97);
}
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700;
  text-decoration: none; color: var(--black); letter-spacing: -0.3px;
  display: inline-flex; align-items: center; gap: 8px;
}
header.dark .logo { color: #fff; }
.logo-img {
  height: 32px; width: auto; display: block; flex-shrink: 0;
  mix-blend-mode: multiply;
}
header.dark .logo-img { mix-blend-mode: screen; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--gray-dark); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
header.dark .nav-links a { color: #ccc; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--black) !important; color: #fff !important;
  padding: 9px 18px !important; border-radius: 6px; font-size: 14px !important;
  border: none !important;
}
.nav-cta:hover { background: var(--orange) !important; }
.nav-admin {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  color: #666 !important; font-size: 15px;
  border: 1px solid #2a2a2a; text-decoration: none !important;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.nav-admin:hover { color: var(--orange) !important; border-color: rgba(255,107,0,0.5) !important; background: rgba(255,107,0,0.08) !important; }

/* ── MOBILE NAV ── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px; transition: all 0.3s;
}
header.dark .nav-toggle span { background: #fff; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(250, 250, 248, 0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e7e2; padding: 20px 28px;
  flex-direction: column; gap: 16px;
}
header.dark .mobile-menu { background: rgba(10,10,10,0.98); border-color: #1a1a1a; }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray-dark); text-decoration: none;
  font-size: 15px; font-weight: 500; transition: color 0.2s;
}
header.dark .mobile-menu a { color: #ccc; }
.mobile-menu a:hover { color: var(--orange); }

/* ── SECTIONS COMMON ── */
.section-label {
  font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 700;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 20px; color: var(--black);
}
.section-sub {
  font-size: 17px; color: #5a5a56; max-width: 680px; line-height: 1.65; margin-bottom: 56px;
}
.section-title.light { color: #fff; }
.section-sub.light { color: #888; }

/* ── EYEBROW BADGE ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; background: var(--orange-light); color: var(--orange);
  font-size: 12px; font-weight: 600; border-radius: 100px; margin-bottom: 28px;
  border: 1px solid rgba(255, 107, 0, 0.15);
}
.eyebrow.dark-bg {
  background: rgba(255, 107, 0, 0.15); color: #ffab6e;
  border: 1px solid rgba(255, 107, 0, 0.25);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── FOOTER ── */
footer { padding: 60px 0 36px; background: #040404; color: #666; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo-img {
  height: 40px; width: auto; display: block; flex-shrink: 0;
  mix-blend-mode: screen;
}
.footer-tagline {
  font-size: 11px; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 14px;
}
.footer-tag { font-size: 13px; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-col a {
  display: block; color: #666; text-decoration: none;
  font-size: 13px; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid #141414; font-size: 12px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

/* ── FLOATING ACTION BUTTONS ── */
.float-actions {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.float-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer; border: none;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 24px; height: 24px; fill: #fff; }
.float-btn-label {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #fff; color: #080808; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.float-btn:hover .float-btn-label { opacity: 1; }
.btn-call { background: var(--orange); box-shadow: 0 4px 20px rgba(255,107,0,0.4); }
.btn-call:hover { box-shadow: 0 6px 28px rgba(255,107,0,0.55); }
.btn-wa { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.btn-wa:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.float-pulse {
  position: absolute; inset: -4px; border-radius: 50%; opacity: 0;
  animation: float-ping 2.5s ease-out infinite;
}
.btn-call .float-pulse { border: 2px solid var(--orange); }
.btn-wa .float-pulse { border: 2px solid #25D366; }
@keyframes float-ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }

/* ── FINAL CTA ── */
.final-cta {
  padding: 140px 0; text-align: center;
  background: var(--black); color: #fff;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 54px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px;
  max-width: 760px; margin-left: auto; margin-right: auto; position: relative;
}
.final-cta p {
  font-size: 18px; color: #999; margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto; position: relative;
}
.final-cta .small { font-size: 13px; color: #555; margin-top: 18px; position: relative; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section-title { font-size: 30px; }
  .final-cta h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  header { position: relative; }
}

/* ── Accessibility: visible focus rings ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Selection colour ── */
::selection {
  background: var(--orange);
  color: #fff;
}

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

/* ── Print: hide nav/footer, show content ── */
@media print {
  header, footer, .final-cta, .scan-overlay { display: none !important; }
  body { color: #000; background: #fff; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10px; color: #666; }
}
