/* ══════════════════════════════════════════════════════════
   AD Pro Services — Landing Pages Stylesheet
   Self-contained (not linked to Website/styles.css)
══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --green:        #1A9B5C;
  --green-dark:   #137a47;
  --green-light:  #84CC16;
  --gradient:     linear-gradient(135deg, #1A9B5C, #84CC16);
  --green-glow:   rgba(26, 155, 92, 0.12);
  --green-glow2:  rgba(26, 155, 92, 0.20);

  --bg-page:     #F7FAF8;
  --bg-section:  #EFF5F1;
  --bg-card:     #FFFFFF;
  --bg-elevated: #E5EFE9;

  --border:      #C8DDD1;
  --border-lt:   #B0CCB9;

  --dark:        #0C1B12;
  --dark-2:      #172318;
  --dark-border: rgba(255,255,255,0.10);

  --text-h:      #0C1B12;
  --text-body:   #3A5145;
  --text-muted:  #7A9485;

  --gold:        #F5A623;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-page);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text-h);
}
.section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 14px;
  max-width: 600px;
}
.section { padding: 96px 0; }
.section-alt { background: var(--bg-section); }
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,155,92,.30);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.10);
}
.btn-gradient {
  background: var(--gradient);
  color: #fff;
  border: none;
}
.btn-gradient:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,155,92,.30);
}
.btn-white {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg-page);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

/* ── Fade-in ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .3s, padding .3s, box-shadow .3s, border .3s;
}
body[data-hero="dark"] #nav .nav-logo { color: #fff; }
body[data-hero="dark"] #nav .nav-logo span { color: var(--green); }
body[data-hero="dark"] #nav .nav-links a { color: rgba(255,255,255,.75); }
body[data-hero="dark"] #nav .nav-links a:hover { color: #fff; }
body[data-hero="dark"] #nav .nav-cta { display: none; }
body[data-hero="dark"] #nav.scrolled .nav-cta { display: inline-flex; }

#nav.scrolled {
  background: rgba(247, 250, 248, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
#nav.scrolled .nav-logo { color: var(--text-h) !important; }
#nav.scrolled .nav-logo span { color: var(--green) !important; }
#nav.scrolled .nav-links a { color: var(--text-muted) !important; }
#nav.scrolled .nav-links a:hover { color: var(--text-h) !important; }
#nav.scrolled .nav-cta { color: rgba(255,255,255,0.70) !important; }
#nav.scrolled .nav-cta:hover { color: #fff !important; }

body:not([data-hero="dark"]) #nav {
  background: rgba(247, 250, 248, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}
body:not([data-hero="dark"]) #nav .nav-logo { color: var(--text-h); }
body:not([data-hero="dark"]) #nav .nav-logo span { color: var(--green); }
body:not([data-hero="dark"]) #nav .nav-links a { color: var(--text-muted); }
body:not([data-hero="dark"]) #nav .nav-links a:hover { color: var(--text-h); }

#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.3px;
  transition: color .3s;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-cta { padding: 10px 20px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all .3s;
}
body:not([data-hero="dark"]) .hamburger span,
#nav.scrolled .hamburger span { background: var(--text-h); }
body[data-hero="dark"] .hamburger span { background: #fff; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--green); background: var(--bg-section); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════════════════════
   HERO (dark, full-bleed background image)
══════════════════════════════════════════════════════════ */
#hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -2px;
  color: #fff;
  max-width: 860px;
  margin: 0 auto 22px;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.70);
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.75;
}
.hero-body {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 28px var(--green-glow);
  transform: translateY(-3px);
}
.service-icon {
  width: 46px; height: 46px;
  background: var(--green-glow);
  border: 1px solid rgba(26,155,92,.20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 7px;
  letter-spacing: -.2px;
}
.service-desc { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   LOCAL SECTION (two-column: text + city image)
══════════════════════════════════════════════════════════ */
.lp-local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-local-text { }
.lp-city-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s;
}
.testimonial-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 28px var(--green-glow);
}
.testimonial-stars { margin-bottom: 16px; font-size: 17px; color: var(--gold); }
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-h); }
.testimonial-biz { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   PRICING CALLOUT (dark section)
══════════════════════════════════════════════════════════ */
.lp-price-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 44px 38px;
  display: inline-block;
  min-width: 280px;
  text-align: center;
  margin-top: 32px;
}
.pricing-plan-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1;
}
.pricing-amount sup {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: top;
  margin-top: 7px;
  display: inline-block;
}
.pricing-period { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 6px; }
.pricing-note { font-size: 12px; color: rgba(255,255,255,.30); margin-top: 4px; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-h);
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--green); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  transition: transform .3s, border-color .2s, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--green); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   CTA CARD (footer CTA, gradient background)
══════════════════════════════════════════════════════════ */
.cta-card {
  border-radius: 20px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.cta-card-right {
  background: var(--gradient);
  box-shadow: 0 12px 40px rgba(26,155,92,.28);
  text-align: center;
}
.cta-card-right::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255,255,255,.70);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.4px;
  margin-bottom: 14px;
  color: #fff;
}
.cta-desc { font-size: 16px; line-height: 1.7; margin-bottom: 32px; color: rgba(255,255,255,.80); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: var(--dark);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--green); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.40); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.50);
  transition: all .2s;
}
.footer-social:hover { background: var(--green-glow); border-color: rgba(26,155,92,.4); color: var(--green); }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.40); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.30); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.30); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.70); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .lp-local-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  #hero { padding: 130px 0 72px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cta-card { padding: 32px 24px; }
}
