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

:root {
  --brand-navy: #0f172a;
  --brand-navy-dark: #0b1225;
  --brand-blue: #2563eb;
  --brand-accent: #f97316;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475467;
  --gray-900: #111827;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background-color: #fff;
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.top-bar {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.25), transparent 60%),
    var(--brand-navy);
  color: #fff;
  padding: 4rem 0 3rem;
}

.top-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.logo h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.6rem 0;
}

.logo .subtext {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--brand-accent);
  margin: 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.btn {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn.primary {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.3);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn:hover {
  transform: translateY(-1px);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(15, 23, 42, 0.85);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45);
}

.hero-card img {
  border-radius: 20px;
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.hero-card li {
  margin-bottom: 0.75rem;
}

.metrics {
  padding: 3.5rem 0;
}

.metrics .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.metrics article {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}

.metrics article p {
  font-weight: 600;
  margin-top: 0;
  color: var(--gray-600);
}

.services {
  padding: 4rem 0;
}

.services header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.services h2 {
  margin-top: 0.75rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-grid article {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.differentiators {
  background: var(--gray-100);
  padding: 4rem 0;
}

.differentiators .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.differentiators ul {
  list-style: none;
  padding: 0;
}

.differentiators li {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.tip-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.testimonials {
  padding: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-grid article {
  border-radius: 20px;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.testimonial-grid p {
  font-style: italic;
}

.financing {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-accent));
  color: #fff;
  padding: 3rem 0;
}

.financing .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact {
  padding: 4rem 0;
}

.contact .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--gray-100);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.info-grid h3 {
  margin-bottom: 0.4rem;
}

.info-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

footer {
  padding: 2rem 0;
  background: var(--brand-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .logo h1 {
    font-size: 2rem;
  }
  .cta-group {
    flex-direction: column;
  }
  .hero-card ul li {
    font-size: 0.95rem;
  }
}
