/* ===== Brand Variables ===== */
:root {
  --red: #E52D27;
  --red-dark: #C41E24;
  --red-light: #FFEBEA;
  --black: #1a1a1a;
  --grey: #666;
  --grey-light: #f7f7f7;
  --white: #ffffff;
  --border: #e8e8e8;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --font: 'Poppins', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 12px rgba(229, 45, 39, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  padding-top: 72px;
}

.hero-banner {
  position: relative;
  background: var(--red);
  padding: 56px 0 64px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-info h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-brand-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}

.hero-card-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 20px auto;
  border-radius: 2px;
}

.hero-range {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-product-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-product-list li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
  background: var(--grey-light);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.hero-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--grey-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
}

.strip-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.strip-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.strip-item span {
  font-size: 0.8rem;
  color: var(--grey);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229, 45, 39, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--grey-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--red);
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--grey-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 12px;
  border-radius: 2px;
}

.section-desc {
  color: var(--grey);
  font-size: 1rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--grey);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-text strong {
  color: var(--red);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  min-width: 60px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

/* ===== Products ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.product-icon {
  width: 56px;
  height: 56px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
}

.product-icon.red {
  background: var(--red-light);
  border-color: rgba(229, 45, 39, 0.3);
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.product-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  padding: 28px 20px;
  border-top: 3px solid var(--red);
  background: var(--grey-light);
  border-radius: 0 0 var(--radius) var(--radius);
}

.feature-num {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(229, 45, 39, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

.map-link:hover {
  text-decoration: underline;
}

.phone-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.phone-link:hover {
  color: var(--red);
}

.contact-note {
  font-size: 0.8rem !important;
  margin-top: 4px;
}

.map-wrapper {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--red);
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  padding: 8px 20px;
  border-radius: var(--radius);
  margin-top: 4px;
}

.footer-phone:hover {
  background: var(--red-dark);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-info p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 2px solid var(--red);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    padding: 40px 0 48px;
  }

  .hero-brand-card {
    padding: 28px 20px;
  }
}
