/* Lighthouse Social — base styles */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #121212;
  --ink-soft: rgba(18, 18, 18, 0.75);
  --ink-faint: rgba(18, 18, 18, 0.5);
  --paper: #ffffff;
  --paper-off: #f7f7f5;
  --line: rgba(18, 18, 18, 0.1);
  --navy: #14213d;
  --gold: #d4a537;
  --accent: #2f9bd6;
  --radius: 2px;
  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.5;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: 22px; }

p { margin: 0 0 16px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Announcement bar */
.announce {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
  letter-spacing: 0.2px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 18px;
}

.brand img { width: 36px; height: 36px; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

.main-nav a {
  color: var(--ink);
  opacity: 0.85;
}

.main-nav a:hover, .main-nav a.active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 24px; height: 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.btn-on-dark {
  background: #fff;
  color: var(--ink);
}
.btn-on-dark:hover { opacity: 0.9; }

.btn-on-dark-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-on-dark-outline:hover { background: rgba(255,255,255,0.15); }

.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}

.hero-content h1 { color: #fff; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 18px; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero.hero-sm { min-height: 320px; }

/* Section spacing */
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--paper-off); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* Rich text / trusted-by */
.rich-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* Second banner CTA */
.cta-banner {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(10,15,25,0.35); }
.cta-banner .hero-content h2 { color: #fff; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
}

.price-card.featured {
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card h3 { margin-bottom: 4px; }
.price-tagline { font-size: 14px; color: var(--ink-faint); margin-bottom: 16px; }
.price-amount { font-size: 34px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.price-amount span { font-size: 15px; font-weight: 500; color: var(--ink-faint); }
.price-desc { font-size: 14px; margin-bottom: 20px; }

.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 14px;
  flex: 1;
}
.price-features li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
}
.price-features li:first-child { border-top: none; }

.price-ideal {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-style: italic;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  text-align: center;
}
.service-card img {
  border-radius: 8px;
  margin-bottom: 16px;
  aspect-ratio: 1;
  object-fit: cover;
}
.service-card h3 { font-size: 17px; margin-bottom: 6px; }
.service-price { font-weight: 700; color: var(--ink); margin-bottom: 14px; }

/* About / image-with-text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: 8px; }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* Why-us list */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.why-list li { font-size: 16px; }

/* Follow us cards */
.follow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.follow-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}
.follow-card h3 { margin-bottom: 4px; }
.follow-handle { font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.follow-link { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Table (operations manual) */
.table-wrap { overflow-x: auto; margin-bottom: 32px; }
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  min-width: 640px;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { color: var(--ink); font-weight: 700; background: var(--paper-off); }

/* Forms */
.form-grid {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 8px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-off);
  padding: 56px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { font-size: 15px; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid a:hover { text-decoration: underline; }

.footer-newsletter form { display: flex; gap: 8px; max-width: 320px; }
.footer-newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-faint);
}

.social-icons { display: flex; gap: 14px; }
.social-icons a { opacity: 0.7; }
.social-icons a:hover { opacity: 1; }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 14px; }
.badge-emoji { margin-right: 6px; }

/* Mobile nav */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-actions .header-login { display: none; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open li { padding: 10px 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  section { padding: 48px 0; }
  .hero { min-height: 460px; }
}
