:root {
  --red: #cc443d;
  --red-dark: #a9322d;
  --ink: #161616;
  --charcoal: #2f3033;
  --muted: #666a70;
  --line: #e9e9e9;
  --paper: #ffffff;
  --soft: #f7f7f5;
  --cream: #fbfaf7;
  --green: #2d7a66;
  --blue: #315f8f;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(16px);
}

.topbar {
  color: #fff;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--red);
}

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

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #303136;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav__links a {
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 0.2s ease;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(204, 68, 61, 0.22);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.9), rgba(17, 17, 19, 0.72) 48%, rgba(204, 68, 61, 0.5)),
    url("assets/goomega-bg.png") center / cover;
  transform: scale(1.02);
}

.hero__grid {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
  padding-block: 58px 54px;
}

.hero__content {
  min-width: 0;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.section--image .eyebrow {
  color: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4.35rem;
  line-height: 1;
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 750;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.24;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero__actions,
.chips,
.contact__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 35px rgba(204, 68, 61, 0.24);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--light {
  color: var(--red);
  background: #fff;
}

.btn--full {
  width: 100%;
}

.hero__visual {
  position: relative;
  min-width: 0;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero__visual::before {
  position: absolute;
  inset: 48px 0 24px 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  content: "";
  transform: rotate(-3deg);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: min(392px, 92%);
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.42));
}

.signal {
  position: absolute;
  z-index: 2;
  width: 168px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal strong {
  display: block;
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
}

.signal span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.signal--top {
  top: 58px;
  right: 0;
}

.signal--bottom {
  left: 0;
  bottom: 52px;
}

.metrics {
  background: var(--red);
  color: #fff;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics__grid div {
  min-height: 148px;
  padding: 30px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.metrics__grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.metrics strong {
  display: block;
  font-size: 2.55rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding-block: 104px;
}

.section--intro {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items: start;
}

.split p,
.section__heading p,
.trust-copy p,
.partner-cta p,
.contact p,
.product-card p,
.process p {
  color: var(--muted);
}

.chips {
  margin-top: 28px;
}

.chips span {
  padding: 10px 14px;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204, 68, 61, 0.35);
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.09);
}

.product-card > svg,
.process svg,
.trust-items svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--red);
}

.product-card p {
  margin-bottom: 24px;
}

.product-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(204, 68, 61, 0.32), transparent 34%),
    linear-gradient(135deg, #161616, #333438);
}

.section--dark h2,
.section--dark p {
  color: #fff;
}

.simulator {
  display: grid;
  grid-template-columns: 0.92fr 0.72fr;
  gap: 72px;
  align-items: center;
}

.simulator__copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
}

.simulator__form,
.contact__form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204, 68, 61, 0.12);
}

input[type="range"] {
  accent-color: var(--red);
  padding: 0;
  background: transparent;
  border: 0;
}

output {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 800;
}

.simulator__result {
  padding: 18px;
  background: var(--soft);
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.simulator__result span,
.simulator__result small {
  display: block;
  color: var(--muted);
}

.simulator__result strong {
  display: block;
  margin-block: 2px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.1;
}

.partner-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 30px;
  margin-top: 36px;
}

.partners-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.partner-logo-card {
  min-height: 166px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 68, 61, 0.35);
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.partner-logo-card img {
  width: min(185px, 82%);
  max-height: 62px;
  object-fit: contain;
}

.partner-logo-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.partner-logo-card--dark {
  background:
    linear-gradient(135deg, rgba(204, 68, 61, 0.14), transparent),
    #202124;
  border-color: rgba(255, 255, 255, 0.08);
}

.partner-logo-card--dark span {
  color: rgba(255, 255, 255, 0.82);
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.partner-list span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process div {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section--image {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.section--image__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.5), rgba(204, 68, 61, 0.62)),
    url("assets/goomega-bg.png") center 58% / cover;
}

.partner-cta {
  position: relative;
  max-width: 770px;
  margin-left: max(20px, calc((100vw - 1160px) / 2));
}

.partner-cta h2,
.partner-cta p {
  color: #fff;
}

.section--soft {
  background: var(--soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 58px;
  align-items: center;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-items div {
  min-height: 150px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.trust-items div:nth-child(2) svg {
  color: var(--green);
}

.trust-items div:nth-child(3) svg {
  color: var(--blue);
}

.faq {
  max-width: 900px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 22px 24px;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.faq__item span {
  font-weight: 800;
}

.faq__item svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  transition: transform 0.2s ease;
}

.faq__item p {
  grid-column: 1 / -1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  transition:
    max-height 0.22s ease,
    margin 0.22s ease;
}

.faq__item[aria-expanded="true"] p {
  max-height: 180px;
  margin-top: 4px;
}

.faq__item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.contact {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 0.78fr;
  gap: 70px;
  align-items: start;
}

.contact__channels {
  margin-top: 30px;
}

.contact__channels a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.contact__channels svg {
  width: 19px;
  height: 19px;
  color: var(--red);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #161616;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 0.55fr;
  gap: 48px;
  padding-block: 58px 36px;
}

.footer img {
  width: 180px;
  margin-bottom: 20px;
}

.footer p {
  max-width: 520px;
}

.footer strong,
.footer a {
  display: block;
}

.footer strong {
  margin-bottom: 14px;
  color: #fff;
}

.footer a {
  margin-bottom: 9px;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    inset: 112px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 10px 0;
  }

  .nav__cta {
    text-align: center;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid,
  .split,
  .simulator,
  .partner-layout,
  .trust-grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-block: 78px 68px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero__visual {
    min-height: 420px;
  }

  .metrics__grid,
  .product-grid,
  .partners-showcase,
  .process,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar a {
    display: none;
  }

  .brand img {
    width: 138px;
  }

  .brand span {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav__links {
    top: 102px;
  }

  .hero__grid {
    gap: 32px;
    padding-block: 56px 48px;
  }

  h1 {
    font-size: 2.85rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero__actions .btn,
  .btn--full {
    width: 100%;
  }

  .hero__visual {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .metrics__grid,
  .product-grid,
  .process,
  .partner-list,
  .partners-showcase,
  .trust-items,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .metrics__grid div,
  .metrics__grid div:last-child {
    min-height: 118px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .simulator__form,
  .contact__form {
    padding: 20px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
