@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --red: #c8102e;
  --red-dark: #980b22;
  --black: #111111;
  --text: #2a2a2a;
  --muted: #707070;
  --white: #ffffff;
  --light: #f6f6f6;
  --border: #e6e6e6;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 86px;
  padding: 10px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.brand img { width: 135px; }

.header-message {
  flex: 1;
  margin-left: 45px;
  margin-right: 50px;
  overflow: hidden;
  white-space: nowrap;
}

.message-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: message-scroll 60s linear infinite;
}

@keyframes message-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav a { font-size: .92rem; font-weight: 700; }
.main-nav a:hover { color: var(--red); }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.8rem; cursor: pointer; }

.hero {
  min-height: 620px;
  padding: 90px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.13), transparent 28%),
    linear-gradient(125deg, #980b22 0%, #c8102e 52%, #e21b3c 100%);
}
.hero-content { max-width: 760px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero .eyebrow { color: #fff; opacity: .9; }
.hero h1 { max-width: 760px; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.05em; }
.hero p { max-width: 650px; margin: 25px 0 32px; font-size: 1.08rem; opacity: .94; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { padding: 14px 22px; border-radius: 999px; font-weight: 800; }
.button-primary { background: var(--white); color: var(--red-dark); }
.button-light { border: 1px solid rgba(255,255,255,.65); color: #fff; }
.hero-badge {
  min-width: 190px; min-height: 190px; padding: 25px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; background: rgba(255,255,255,.08);
}
.hero-badge strong { font-size: 3.2rem; line-height: 1; }
.hero-badge span { margin-top: 8px; font-size: .85rem; }

.section { padding: 100px 8%; }
.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.04em; color: var(--black); }
.section-heading p { margin-top: 15px; color: var(--muted); }
.centered { margin-left: auto; margin-right: auto; text-align: center; }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr .75fr; gap: 22px; align-items: stretch; }
.about-card {
  position: relative; padding: 38px; border: 1px solid var(--border);
  border-radius: var(--radius); background: #fff; box-shadow: var(--shadow);
}
.about-card h3 { margin-bottom: 12px; font-size: 1.45rem; color: var(--black); }
.about-card p { color: var(--muted); }
.card-number { color: var(--red); font-weight: 900; font-size: .78rem; }
.about-highlight {
  padding: 40px; border-radius: var(--radius);
  background: var(--black); color: white;
  display: flex; flex-direction: column; justify-content: space-between;
}
.about-highlight span { font-size: .72rem; letter-spacing: .18em; font-weight: 800; }
.about-highlight strong { font-size: 3.2rem; line-height: .9; }
.about-highlight small { color: #ccc; }

.products-section { background: var(--light); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  padding: 38px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-icon {
  width: 62px; height: 62px; display: grid; place-items: center;
  border-radius: 18px; background: #fff0f2; color: var(--red);
  font-size: 1.8rem; margin-bottom: 25px;
}
.product-card h3 { font-size: 1.35rem; margin-bottom: 10px; color: var(--black); }
.product-card p { color: var(--muted); }

.assistance-section { background: var(--black); color: white; }
.assistance-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.assistance-section h2 { color: white; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.05; }
.assistance-section p { margin-top: 18px; color: #ccc; max-width: 600px; }
.assistance-section .eyebrow { color: #ff5b74; }
.service-list { border-top: 1px solid #333; }
.service-list div {
  padding: 19px 0; display: flex; align-items: center; gap: 20px;
  border-bottom: 1px solid #333;
}
.service-list span { color: #ff5b74; font-size: .75rem; font-weight: 900; }
.service-list strong { font-size: 1.1rem; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-item { padding: 28px; border: 1px solid var(--border); border-radius: 18px; }
.contact-item span { display: block; margin-bottom: 9px; color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.contact-item a { font-weight: 700; overflow-wrap: anywhere; }
.contact-item a:hover { color: var(--red); }
.contact-item p { color: var(--text); }
.company-data {
  margin-top: 18px; padding: 22px 28px; border-radius: 18px;
  display: flex; gap: 12px; justify-content: space-between;
  background: var(--light);
}
.company-data strong { color: var(--black); }
.company-data span { color: var(--muted); }

.site-footer { padding: 50px 8% 25px; background: #0c0c0c; color: white; }
.site-footer img { width: 125px; margin-bottom: 15px; }
.site-footer p { color: #aaa; }
.footer-links { display: flex; gap: 22px; margin: 30px 0; flex-wrap: wrap; }
.footer-links a:hover { color: #ff5b74; }
.copyright { padding-top: 22px; border-top: 1px solid #292929; font-size: .8rem; }

.legal-page { max-width: 900px; margin: 0 auto; padding: 90px 7%; }
.legal-page h1 { margin-bottom: 12px; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; color: var(--black); }
.legal-page h2 { margin-top: 38px; margin-bottom: 10px; color: var(--black); }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page ul { margin: 10px 0 0 20px; }
.back-link { display: block; width: fit-content; margin: 0 0 auto 35px auto; color: var(--red); font-weight: 800;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-badge { align-self: flex-end; }
  .about-grid, .assistance-content { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .site-header { padding: 10px 5%; }
  .brand img { width: 112px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; left: 5%; right: 5%; top: 78px;
    padding: 20px; flex-direction: column; align-items: flex-start;
    background: white; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero { min-height: 650px; padding: 70px 6%; }
  .hero h1 { font-size: 2.7rem; }
  .section { padding: 70px 6%; }
  .cards-grid, .contact-grid { grid-template-columns: 1fr; }
  .company-data { flex-direction: column; }
}

.product-showcase {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.showcase-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 35px rgba(0,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.showcase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.showcase-large { grid-row: auto; }
.showcase-image {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  background: #f5f5f5;
}

.showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.showcase-copy { padding: 24px; }
.showcase-copy span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.showcase-copy h3 { margin: 7px 0 8px; font-size: 1.35rem; color: var(--black); }
.showcase-copy p { color: var(--muted); font-size: .92rem; }

.product-extra {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-extra div {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.product-extra img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
}
.product-extra span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.82);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
}

.trust-section {
  padding: 75px 8%;
  background: #f6f6f6;
}
.trust-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.trust-title h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -.04em;
}
.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ddd;
}
.trust-items div {
  padding: 22px 20px;
  border-bottom: 1px solid #ddd;
}
.trust-items strong { display: block; color: var(--black); font-size: 1.15rem; }
.trust-items span { color: var(--muted); font-size: .85rem; }

.contact-cta {
  margin: 35px 0 18px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-cta .eyebrow { color: #ff5b74; margin-bottom: 6px; }
.contact-cta h3 { font-size: 1.5rem; }
.contact-cta p { color: #bbb; max-width: 600px; margin-top: 4px; }

@media (max-width: 1000px) {
  .product-showcase { grid-template-columns: 1fr 1fr; } 
  .showcase-large { grid-column: auto; }
  .trust-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 650px) {
  .product-showcase { grid-template-columns: 1fr; }
  .showcase-image { height: 260px; }
  .product-extra { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: 1fr; }
  .contact-cta { flex-direction: column; align-items: flex-start; }
}

.showcase-large .showcase-image img {
  transform: scale(1.0);
}

.showcase-image img[src*="delina_larosee"] {
  transform: scale(1.25);
}

.contact-item p {
  font-weight: 700;
}

.showcase-image img[src*="ps5-pro-1"] {
  transform: scale(1.19);
}

.showcase-image img[src*="c8bb584dae6fce9f8365bcbbbc2532af_middle"] {
  transform: scale(1.0);
}

.showcase-image img[src*="1xg.avif"] {
  transform: scale(1.20);
}