:root {
  --primary: #ED1C24;
  --primary-dark: #c9151c;
  --accent: #22B24C;
  --accent-dark: #1a8d3c;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #fff8f8;
  --surface: #ffffff;
  --border: #f2d6d7;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% 0%, #ffe9ea 0%, #fff8f8 45%, #f5fff8 100%);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 0;
  padding: 10px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: block;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.nav-links.show {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 10px;
  border-radius: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: #ffecee;
}

.btn-sm {
  min-height: 38px;
  padding: 8px 14px;
}

.hero {
  padding: 46px 0;
}

.hero-inner {
  padding: 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.hero-media-wrap {
  display: grid;
  gap: 12px;
}

.hero-media {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  object-fit: cover;
  min-height: 240px;
  max-height: 420px;
  box-shadow: var(--shadow);
  animation: floatIn 0.9s ease-out;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.2;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.hero-card,
.card,
.thankyou-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.section {
  padding: 40px 0;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f8fff9 100%);
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.cards {
  display: grid;
  gap: 16px;
}

.two-col {
  grid-template-columns: 1fr;
}

.three-col {
  grid-template-columns: 1fr;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-showcase {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-top: 14px;
}

.inline-showcase.center {
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.banner-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-grid.compact {
  grid-template-columns: 1fr;
}

.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}

.card-media {
  width: 100%;
  margin-top: 12px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-strip {
  background: linear-gradient(135deg, #ed1c24, #22b24c);
  color: #fff;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.mini-cards .card {
  padding: 14px;
}

.cta-strip .btn {
  background: #fff;
  color: var(--primary);
}

.table-wrap {
  overflow-x: auto;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.summary-table th,
.summary-table td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
}

.app-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8dde3;
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}

.form-group textarea {
  min-height: 110px;
}

.form-actions {
  margin-top: 12px;
}

.form-message {
  margin-top: 10px;
  font-weight: 600;
}

.form-message.success {
  color: var(--accent-dark);
}

.form-message.error {
  color: var(--primary-dark);
}

.thankyou-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.contact-block {
  margin-top: 18px;
  text-align: left;
}

.site-footer {
  margin-top: 36px;
  background: #111827;
  color: #f9fafb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px 0;
}

.site-footer a {
  color: #9ef0b8;
}

.copyright {
  margin: 0;
  padding: 0 0 18px;
  text-align: center;
  color: #d1d5db;
  font-size: 0.9rem;
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-inner {
    padding: 52px 0;
  }

  .section {
    padding: 52px 0;
  }

  .split-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .navbar {
    min-height: 74px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    border-bottom: 0;
    padding: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .nav-links a {
    display: inline;
    padding: 0;
    border-radius: 0;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }
}
