/* ===========================
   FOUND LOCAL AGENCY — STYLES
   Colors: #000000 black, #0057FF blue
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --black-2: #0a0a0a;
  --black-3: #111111;
  --black-4: #1a1a1a;
  --black-5: #222222;
  --blue: #0057FF;
  --blue-light: #2979FF;
  --blue-glow: rgba(0, 87, 255, 0.25);
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --border: rgba(255,255,255,0.08);
  --font: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 24px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--blue-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  width: 100%;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-full { width: 100%; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(90deg, var(--blue) 0%, #60a5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(0,0,0,0.95);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-found { color: var(--white); }
.logo-local { color: var(--blue); }
.logo-agency { color: var(--gray); font-weight: 400; font-size: 16px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-light);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  opacity: 0.2;
}
.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0057FF 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.badge {
  display: inline-block;
  background: rgba(0,87,255,0.15);
  border: 1px solid rgba(0,87,255,0.4);
  color: #60a5ff;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--black-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 13px;
  color: var(--gray);
  white-space: nowrap;
  font-weight: 500;
}
.proof-cities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.proof-cities span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
  background: var(--black);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: rgba(0,87,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,87,255,0.1);
}
.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), #003bb5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 0 20px var(--blue-glow);
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}
.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin-left: 27px;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--black);
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 1100px) {
  .plans { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .plans { grid-template-columns: 1fr; }
}
.plan {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: all 0.3s ease;
}
.plan:hover {
  transform: translateY(-4px);
}
.plan-featured {
  background: linear-gradient(160deg, #050f25 0%, #0a0a0a 100%);
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(0,87,255,0.2);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.plan-header { margin-bottom: 28px; }
.plan-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.plan-setup {
  font-size: 13px;
  color: var(--gray);
  display: block;
  margin-bottom: 4px;
}
.plan-amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
}
.plan-period {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}
.plan-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  font-size: 14px;
  color: var(--gray-light);
  font-weight: 500;
}
.plan-featured .plan-features li { color: var(--white); }
.plan-featured .btn-primary { box-shadow: 0 0 30px var(--blue-glow); }

/* Elite Plan */
.plan-elite {
  background: linear-gradient(160deg, #0f0a00 0%, #0a0a0a 100%);
  border-color: #f59e0b;
  box-shadow: 0 0 40px rgba(245,158,11,0.15);
}
.plan-badge-elite {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #000;
}
.plan-elite .plan-features li { color: var(--white); }
.btn-elite {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #000;
  font-weight: 700;
  width: 100%;
  box-shadow: 0 0 24px rgba(245,158,11,0.3);
}
.btn-elite:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(245,158,11,0.5);
}

/* ===== WHY US ===== */
.why {
  padding: 100px 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-tag { display: inline-block; }
.why-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.why-text > p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.check {
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
}

/* Rank Card Visual */
.rank-card {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.rank-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--black-5);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}
.rank-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.rank-item:hover { background: rgba(255,255,255,0.02); }
.rank-item-1 { background: rgba(0,87,255,0.06); }
.rank-pos {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.rank-item-1 .rank-pos { background: var(--blue); color: white; }
.rank-item-2 .rank-pos, .rank-item-3 .rank-pos {
  background: var(--black-5);
  color: var(--gray);
}
.rank-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.rank-url { font-size: 12px; color: var(--gray); }
.rank-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.rank-footer {
  padding: 14px 20px;
  font-size: 12px;
  color: var(--gray);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--black);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-tag { display: inline-block; }
.contact-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-text > p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-light);
}
.contact-item a { color: var(--gray-light); transition: color 0.2s; }
.contact-item a:hover { color: var(--blue); }
.contact-form {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
  background: var(--black-5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group select { color: var(--gray); }
.form-group select option { background: var(--black-4); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: -8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-3);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand p { font-size: 14px; color: var(--gray); }
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .rank-card { display: none; }
  .plans { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
}
