:root {
  --dark: #070707;
  --dark-2: #111111;
  --text: #121212;
  --muted: #5f6368;
  --line: #e6e6e6;
  --soft: #f6f6f6;
  --white: #ffffff;

  /* 🔴 NEW RED SYSTEM */
  --accent: #e10600;        /* main red */
  --accent-dark: #b80000;   /* deeper red */
  --accent-glow: rgba(225,6,0,.35);

  --radius: 18px;
  --shadow: 0 22px 60px rgba(0,0,0,.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
}

.container {
  width: min(92%, 1180px);
  margin: auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,233,238,.8);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
}

.logo::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu a {
  color: #2f3a45;
  font-weight: 650;
  font-size: .95rem;
  text-decoration: none;
}

.menu a:hover {
  color: var(--accent-dark);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: .25s ease;
}

.nav-btn,
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 28px rgba(217,139,43,.28);
}

.btn.primary:hover,
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(217,139,43,.35);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  background: rgba(255,255,255,.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(217,139,43,.38), transparent 34%),
    linear-gradient(135deg, #080b0f, #141c26 55%, #0b0f14);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 35%;
  height: 420px;
  background: rgba(255,255,255,.06);
  transform: rotate(-8deg);
  border-radius: 60px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.07em;
  margin-bottom: 24px;
}

.hero p {
  max-width: 650px;
  font-size: 1.18rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  font-size: .9rem;
}

.hero-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card h2 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.hero-card li {
  list-style: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
}

.hero-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 10px;
}

.page-hero {
  padding: 95px 0;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(217,139,43,.35), transparent 32%),
    linear-gradient(135deg, #0b0f14, #17202a);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.76);
}

.section {
  padding: 95px 0;
}

.section.soft {
  background:
    linear-gradient(180deg, #fff, var(--soft));
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading h2,
.split h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  margin-bottom: 16px;
}

.section-heading p,
.split p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.cards.three,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.price-card,
.contact-info,
.contact-form {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(12,18,28,.06);
}

.card:hover,
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card,
.price-card {
  transition: .25s ease;
}

.card h3,
.price-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}

.card p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.price {
  color: var(--dark) !important;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.price-card ul {
  padding-left: 0;
}

.price-card li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.price-card li:last-child {
  border-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 54px;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list div {
  padding: 22px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
}

.check-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.service-list {
  display: grid;
  gap: 28px;
}

.service-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  padding: 36px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(12,18,28,.055);
}

.service-block h2 {
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.05em;
  margin-bottom: 14px;
}

.service-block p {
  color: var(--muted);
}

.service-block ul {
  display: grid;
  gap: 12px;
  padding: 0;
}

.service-block li {
  list-style: none;
  color: var(--muted);
}

.service-block li::before {
  content: "✓";
  color: var(--accent-dark);
  font-weight: 900;
  margin-right: 10px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 22px 24px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
}

/* LOGOS SECTION */
.logos {
  background: #fff;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin: 40px auto 0;
  width: 100%;
  max-width: 800px; /* 👈 THIS centers the whole block visually */
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  opacity: 0.75;
  transition: 0.3s ease;
}

.logo-item img {
  max-height: 90px;
  width: auto;
  display: block;
  filter: grayscale(100%);
}

.logo-item:hover {
  opacity: 1;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

.section-heading.center {
  margin: 0 auto 42px;
  text-align: center;
}

.cta {
  padding: 95px 0;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(217,139,43,.36), transparent 35%),
    linear-gradient(135deg, #080b0f, #151d27);
}

.cta-box {
  max-width: 800px;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -.06em;
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255,255,255,.76);
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.footer {
  padding: 38px 0;
  background: #07090c;
  color: rgba(255,255,255,.72);
}

.footer strong {
  color: white;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  letter-spacing: -.05em;
  margin-bottom: 22px;
}

.contact-info p {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-info p:last-child {
  border-bottom: 0;
}

.contact-info strong {
  color: var(--dark);
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fbfcfd;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(217,139,43,.22);
  border-color: var(--accent);
  background: white;
}

.center {
  text-align: center;
  margin-top: 34px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .menu {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-btn {
    width: 100%;
  }

  .hero-grid,
  .cards.three,
  .cards.two,
  .pricing-grid,
  .split,
  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .section,
  .cta {
    padding: 70px 0;
  }

  .hero-card,
  .service-block,
  .card,
  .price-card,
  .contact-info,
  .contact-form {
    padding: 24px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -.055em;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {

  .logo-row {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }

  .logo-item img {
    max-width: 180px;
    width: 100%;
    height: auto;
  }

}