/* BURBANK WEB STUDIO — V2 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #888888;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --white-shine: linear-gradient(180deg, #ffffff 0%, #f0f3f6 100%);
  --bmw-blue: #1C69D4;
  --bmw-blue-deep: #0653B6;
  --bmw-blue-light: #4A8FE0;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.nav-logo .blue-dot {
  color: var(--bmw-blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--bmw-blue);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--white-shine);
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28, 105, 212, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-300);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--bmw-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 1000px;
}

.hero h1 .blue { color: var(--bmw-blue); }

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--bmw-blue);
  text-decoration-thickness: 6px;
  color: var(--gray-500);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--gray-700);
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--ink);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--bmw-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28, 105, 212, 0.25);
}

.btn-secondary {
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--ink);
  color: white;
}

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-300);
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 6px;
  font-weight: 500;
}

/* SECTIONS */
section {
  padding: 100px 40px;
  scroll-margin-top: 80px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bmw-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* SERVICE CARDS (detail format - bigger, with bullets) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .service-detail-grid { grid-template-columns: 1fr; }
}

.service-detail-card {
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 18px;
  padding: 36px;
  transition: all 0.3s;
}

.service-detail-card:hover {
  border-color: var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.service-detail-num {
  font-family: 'Inter', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--bmw-blue);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.service-detail-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}

.service-detail-desc {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-detail-bullets {
  list-style: none;
  padding: 0;
}

.service-detail-bullets li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 6px 0 6px 24px;
  position: relative;
}

.service-detail-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 2px;
  background: var(--bmw-blue);
}

/* LOCAL BAND */
.local-band {
  background: var(--gray-100);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.local-band h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 850px;
}

.local-band h2 .blue { color: var(--bmw-blue); }

.local-band p {
  font-size: 18px;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA BAND */
.cta-band {
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px auto 0;
  max-width: 1100px;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(28, 105, 212, 0.4) 0%, transparent 70%);
}

.cta-band-inner { position: relative; z-index: 1; }

.cta-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 24px;
}

.cta-scarcity-dot {
  width: 8px;
  height: 8px;
  background: var(--bmw-blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.cta-band h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta-band h2 .blue { color: var(--bmw-blue-light); }

.cta-band p {
  color: var(--gray-300);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: white;
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  background: var(--bmw-blue);
  color: white;
  transform: translateY(-2px);
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-card {
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 18px;
  padding: 40px;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--gray-700);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.contact-email:hover {
  background: var(--bmw-blue);
  transform: translateY(-1px);
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-form-row label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.contact-form-row input,
.contact-form-row textarea,
.contact-form-row select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: var(--gray-100);
  transition: all 0.2s;
}

.contact-form-row input:focus,
.contact-form-row textarea:focus,
.contact-form-row select:focus {
  outline: none;
  background: white;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(28, 105, 212, 0.12);
}

.contact-form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  background: var(--ink);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  transition: all 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--bmw-blue); }

/* FOOTER */
footer {
  background: var(--ink);
  color: white;
  padding: 50px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bmw-blue-light);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--gray-300);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.footer-bottom .blue-dot { color: var(--bmw-blue-light); }

/* RESPONSIVE */
@media (max-width: 700px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero, section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 120px; }
  .cta-band { padding: 50px 28px; border-radius: 16px; }
  .contact-card { padding: 28px; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s ease forwards;
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.2s; }
.reveal-3 { animation-delay: 0.3s; }
.reveal-4 { animation-delay: 0.4s; }
