:root {
  --primary: #fff;
  --ink: #0b0b0d;
  --muted: #5f6065;
  --brand: #ec1c24;
  --brand-dark: #a90f16;
  --dark: #050505;
  --border: #ededed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--ink);
  background: var(--primary);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 64px;
  background: var(--primary);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.brand {
  min-width: 310px;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  height: 43px;
  width: auto;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-wordmark strong {
  font-size: 22px;
}

.brand-wordmark span {
  margin-top: 4px;
  color: #6b6c70;
  font-size: 19px;
  letter-spacing: 0;
}

.main-nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.main-nav > a,
.dropdown > button {
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a.active,
.dropdown:hover > button {
  color: var(--brand);
}

.dropdown {
  position: relative;
}

.dropdown > button {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chevron {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.dropdown:hover .chevron {
  transform: rotate(90deg);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 240px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 32px;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--primary);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
}

.dropdown-menu a:hover {
  color: var(--brand);
}

.contact-button,
.primary-button,
.learn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: var(--primary);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mobile-contact-link {
  display: none;
}

.contact-button {
  padding: 12px 18px;
  border-radius: 16px;
  flex-shrink: 0;
}

.primary-button {
  padding: 13px 18px;
  border-radius: 16px;
}

.contact-button:hover,
.primary-button:hover {
  color: var(--brand);
  background: var(--primary);
  border-color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 28px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--brand);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  color: var(--primary);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.1) 100%),
    url("new%20bg%20for%20index.jpeg") center / cover fixed no-repeat;
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--primary);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.2) 100%),
    var(--page-image) center / cover no-repeat;
}

.page-hero-content {
  width: min(680px, 100%);
  padding: 72px 64px;
}

.page-hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
}

.page-hero p {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.detail-section {
  padding: 80px 64px;
}

.detail-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 4px solid #f6f6f6;
}

.detail-copy h2 {
  margin: 0 0 20px;
  font-size: 38px;
  line-height: 1.2;
}

.detail-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.detail-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  font-weight: 700;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-grid h2 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.2;
}

.about-grid p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 4px solid #f6f6f6;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 64px auto 0;
}

.about-point {
  padding: 28px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(148deg, rgba(236, 28, 36, 0.02) 53%, rgba(0, 0, 0, 0.04) 100%);
}

.about-point h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.about-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-content {
  width: 50%;
  padding-left: 64px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero p {
  width: 80%;
  max-width: 650px;
  margin: 0;
  padding: 32px 0;
  font-size: 16px;
  line-height: 1.7;
}

.mobile-copy {
  display: none;
}

.why-section {
  padding: 64px 64px 80px;
  background: var(--primary);
}

.why-section h2,
.products-section h2 {
  margin: 0;
  padding-bottom: 64px;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
}

.feature-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 64px;
}

.feature-card {
  width: 320px;
  min-height: 360px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(148deg, rgba(236, 28, 36, 0.02) 53%, rgba(0, 0, 0, 0.04) 100%);
}

.feature-card:hover {
  border-color: rgba(236, 28, 36, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff3f4;
}

.feature-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.feature-card p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.products-section {
  padding: 80px 48px 72px;
}

.products-section h2 {
  padding-bottom: 40px;
}

.products-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 40px;
  justify-items: center;
}

.product-item {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.product-item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f6f6f6;
}

.product-item h3 {
  min-height: 48px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.3;
}

.product-item p {
  min-height: 62px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.learn-button {
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.learn-button:hover {
  color: var(--brand);
  background: var(--primary);
}

.quote-section {
  display: flex;
  justify-content: space-around;
  gap: 80px;
  padding: 96px 64px;
}

.quote-section h2 {
  width: 35%;
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
}

.quote-section > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.quote-section p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.quote-section .primary-button {
  width: max-content;
}

.contact-page-section {
  padding: 0 64px 32px;
  color: var(--primary);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #d5121c 0%, #8b0e14 100%);
}

.footer {
  padding: 0 64px 28px;
  color: var(--primary);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #d5121c 0%, #8b0e14 100%);
}

.contact-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 0 36px;
}

.contact-section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.contact-section-head h2 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.1;
}

.contact-section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.25fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card,
.contact-form {
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(33, 6, 8, 0.22);
}

.contact-card {
  padding: 36px 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(124, 5, 12, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.15;
}

.contact-card > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-row-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-row-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row-copy span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row-copy p,
.contact-row-copy a {
  margin: 0;
  color: var(--primary);
  line-height: 1.65;
}

.contact-row-copy a {
  display: block;
}

.contact-row-copy a:hover {
  text-decoration: underline;
}

.site-footer {
  padding-top: 72px;
}

.footer-main {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, 0.95fr);
  gap: 72px;
  align-items: start;
}

.footer-about h2,
.footer-contact h3 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.15;
}

.footer-about p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  color: var(--brand);
  background: var(--primary);
  border-color: var(--primary);
}

.social-links svg,
.footer-contact-row svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links svg {
  width: 17px;
  height: 17px;
}

.footer-contact-list {
  display: grid;
  gap: 18px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: start;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.footer-contact-row svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

a.footer-contact-row:hover span {
  text-decoration: underline;
}

.contact-form {
  padding: 34px 32px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.contact-form h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
}

.contact-form p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-field.full-width {
  grid-column: 1 / -1;
}

.contact-form-field label {
  font-size: 13px;
  font-weight: 700;
  color: #3f4045;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfd6d7;
  border-radius: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(236, 28, 36, 0.12);
}

.contact-submit {
  margin-top: 24px;
  padding: 14px 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
}

.contact-form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-form-status:empty {
  display: none;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.copyright p {
  margin: 0;
}

.compact-footer {
  padding-top: 24px;
}

.compact-footer .copyright {
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 32px;
  }

  .brand {
    min-width: 260px;
  }

  .feature-row {
    gap: 24px;
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    width: auto;
    min-width: 0;
    flex: 1;
    justify-content: center;
    gap: 10px;
  }

  .brand img {
    height: 30px;
  }

  .brand-wordmark strong {
    font-size: 12px;
  }

  .brand-wordmark span {
    font-size: 11px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    top: 76px;
    width: 100%;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--primary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav > a,
  .dropdown > button {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    padding: 0 0 8px 16px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown.open .dropdown-menu,
  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .mobile-contact-link {
    display: block;
  }

  .contact-button {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 800px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 100%),
      url("new%20bg%20for%20index.jpeg") center / cover no-repeat;
  }

  .page-hero {
    min-height: 420px;
  }

  .page-hero-content {
    padding: 56px 32px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .detail-section {
    padding: 56px 24px;
  }

  .detail-wrap,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-copy h2,
  .about-grid h2 {
    font-size: 30px;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .hero-content {
    width: 100%;
    padding: 0 32px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    width: 88%;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: block;
  }

  .why-section {
    padding: 56px 24px;
  }

  .why-section h2,
  .products-section h2 {
    padding-bottom: 40px;
    font-size: 32px;
  }

  .feature-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .feature-card {
    width: min(100%, 320px);
  }

  .products-section {
    padding: 56px 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-section {
    display: none;
  }

  .contact-page-section {
    padding: 0 24px 24px;
  }

  .footer {
    padding: 0 24px 24px;
  }

  .contact-shell {
    padding: 56px 0 28px;
  }

  .contact-section-head {
    margin-bottom: 24px;
  }

  .contact-section-head h2 {
    font-size: 34px;
  }

  .contact-panel,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-form h3 {
    font-size: 26px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 36px;
  }

  .footer-about h2,
  .footer-contact h3 {
    font-size: 24px;
  }

  .copyright {
    margin-top: 8px;
    font-size: 13px;
  }
}
