:root {
  --color-bg: #f4f5f7;
  --color-bg-alt: #ffffff;
  --color-primary: #1c3557; /* navy */
  --color-accent: #e75a3b;  /* orange/red like L plate */
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* Utility */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.section-intro {
  margin-bottom: 2rem;
  color: var(--color-muted);
}

.muted {
  color: var(--color-muted);
}

.small {
  font-size: 0.9rem;
}

.tiny {
  font-size: 0.8rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 245, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
}

.logo-img {
  height: 70px;
  width: auto;
  transform: scale(1.8);
  transform-origin: left center;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--color-primary);
}

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  font-size: 0.95rem;
}

/* Buttons */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #cf4b2f;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-primary);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: #ffffff;
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background: #000;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent),
              linear-gradient(to bottom, rgba(15,23,42,0.75), rgba(15,23,42,0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 70vh;
}

.hero-text {
  max-width: 620px;
  color: #e5e7eb;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.hero-highlights li {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Layout helpers */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.two-column-stack {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

/* Lists */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0.6rem 0 0.4rem;
}

.price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
}

.card-quote {
  position: relative;
  font-size: 0.96rem;
}

.card-quote::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: -0.1rem;
  font-size: 3rem;
  color: rgba(209, 213, 219, 0.8);
}

.quote-name {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.8rem;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

/* Contact */

.contact-section {
  background: var(--color-bg-alt);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-details li {
  margin-bottom: 0.3rem;
}

.contact-form {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: transparent;
}

/* Footer */

.site-footer {
  padding: 2rem 0 2.5rem;
  background: #0f172a;
  color: #e5e7eb;
}

.footer-inner {
  text-align: center;
}

/* Responsive */

@media (max-width: 880px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }

  .two-column,
  .two-column-stack {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    min-height: 60vh;
  }
}

@media (max-width: 520px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }

  .header-inner {
    padding-inline: 1rem;
  }

  .container {
    padding-inline: 1.1rem;
  }
}
