﻿:root {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #101828;
  background-color: #f7f7fb;
  line-height: 1.6;
  --accent: #c62828;
  --accent-strong: #8b1313;
  --ink: #101828;
  --muted: #667085;
  --card: #ffffff;
  --stroke: #e4e7ec;
  --soft: #f4f5f7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--ink);
}

.background-pattern {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(198, 40, 40, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 40, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
  opacity: 0.55;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /*background: var(--card);
  padding: 2.25rem;
  border-radius: 1.5rem;
  border: 1px solid var(--stroke);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);*/
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.logo-main {
  width: min(460px, 80vw);
  height: auto;
}

.secondary-logos {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}

.secondary-logos img {
  width: clamp(120px, 22vw, 180px); 
  height: auto;
 
  background: #fff;
  padding: 0.6rem 0.9rem;
 
  width: 300px;
}

.brand-portrait {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.brand-portrait img {
  width: min(320px, 85vw);
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--stroke);
  background: #fff;
  padding: 0.75rem;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin: 0.2rem 0 0.8rem;
  color: var(--ink);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.chip {
  border-radius: 999px;
  border: 1px dashed rgba(198, 40, 40, 0.4);
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  color: var(--accent-strong);
  background: rgba(198, 40, 40, 0.07);
}

.notify {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  background: var(--card);
  padding: 1rem 1.2rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--stroke);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  align-items: center;
}

.notify input {
  flex: 1 1 280px;
  padding: 0.9rem 1.2rem;
  border-radius: 0.9rem;
  border: 1px solid var(--stroke);
  background: var(--soft);
  color: var(--ink);
  font-size: 1rem;
}

.notify input::placeholder {
  color: #98a2b3;
}

.notify button {
  padding: 0.85rem 1.8rem;
  border-radius: 0.9rem;
  border: none;
  background: linear-gradient(120deg, var(--accent) 0%, #f44336 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notify button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(198, 40, 40, 0.35);
}

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.details article {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.details h2 {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 1.15rem;
}

.details p {
  margin: 0;
  color: var(--muted);
}

.details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details li {
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.details span {
  color: var(--muted);
  margin-right: 0.3rem;
  font-size: 22px;
}

.details  a{
  font-size: 22px !important;text-decoration: underline;
}

footer {
  text-align: center;
  color: var(--muted);
}

small {
  font-size: 0.85rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .hero,
  .notify {
    padding: 0.5rem;
  }

  .notify button,
  .notify input {
    width: 100%;
  }

  .details span {
 
  font-size: 17px;
}
.secondary-logos img {
   
    padding: 0;
    width: 220px;
}

article li{ text-align:center; }

.secondary-logos{    gap: 0.25rem;}
.details  a{
  font-size: 17px !important;
}
}
