:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --border: #f1f5f9;
  --accent: #b91c1c;
  --accent-dark: #7f1d1d;
  --accent-soft: #fee2e2;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: #fafafa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-placeholder {
  width: 300px;
  max-width: 100%;
  height: 50px;
  /* border: 2px dashed var(--accent); */
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
  background: #fff5f5;
}

.brand {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-copy h1,
.section-header h2 {
  margin: 0;
  font-size: clamp(2.5rem, 2.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111827;
}

.hero-copy p {
  max-width: 46rem;
  margin: 1.5rem 0;
  color: #4b5563;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.hero-image-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
  color: #ffffff;
}

.hero-image-caption p {
  margin: 0 0 0.25rem;
  opacity: 0.9;
}

.hero-image-caption strong {
  font-size: 1.05rem;
}

.section {
  padding: 3.5rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 2vw, 2.8rem);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.testimonial-card,
.feature-card,
.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}

.card h3,
.feature-card h3,
.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: #111827;
}

.card p,
.feature-card p,
.contact-info p {
  margin: 0;
  color: #4b5563;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding-left: 1.25rem;
  position: relative;
  color: #374151;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.feature-tiles {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-tiles div {
  background: #fff1f2;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
}

.feature-tiles strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #111827;
}

.testimonials {
  background: #fff1f2;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  padding: 2rem;
  line-height: 1.8;
}

.testimonial-card footer {
  margin-top: 1.5rem;
  color: #1f2937;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #111827;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  background: #ffffff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.18);
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.75rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-content,
  .why-us-grid,
  .testimonial-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .brand-group {
    width: 100%;
    flex-wrap: wrap;
  }

  .logo-placeholder {
    width: 100%;
    max-width: none;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero-copy h1,
  .section-header h2 {
    font-size: 2rem;
  }

  .feature-list li,
  .footer-inner {
    gap: 0.5rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
