/* VARIABLES: Neo-Brutalism Palette */
:root {
  --bg: #fff8f0; /* Off-white/Cream */
  --main: #ff4785; /* Vibrant Pink/Magenta */
  --accent: #06d6a0; /* Teal/Mint */
  --yellow: #ffd166; /* Bright Yellow */
  --blue: #118ab2; /* Blue */
  --black: #18181b; /* Deep Black */
  --white: #ffffff;

  --border: 3px solid var(--black);
  --shadow: 5px 5px 0px var(--black);
  --shadow-hover: 2px 2px 0px var(--black);

  --font-head: "Syne", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: var(--border);
  box-shadow: var(--shadow);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
}
h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 700px;
}
.lead {
  font-size: 1.3rem;
  font-weight: 700;
}
.highlight {
  color: var(--main);
  text-decoration: underline;
  text-decoration-thickness: 5px;
}

/* UTILS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 100px 0;
  border-bottom: var(--border);
}
.text-center {
  text-align: center;
}
.bg-yellow {
  background: var(--yellow);
}
.bg-blue {
  background: var(--blue);
  color: #fff;
}
.bg-white {
  background: var(--white);
}
.bg-pink {
  background: var(--main);
  color: #fff;
}
.bg-pattern {
  background-image: radial-gradient(var(--black) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* BUTTONS */
.btn-brutal {
  display: inline-block;
  background: var(--main);
  color: var(--white);
  padding: 15px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border: var(--border);
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.btn-brutal:hover {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-hover);
  background: var(--black);
}
.btn-brutal.big {
  font-size: 1.2rem;
  padding: 20px 40px;
}
.btn-brutal.full-width {
  width: 100%;
  text-align: center;
}

.btn-link {
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.1rem;
}
.btn-link:hover {
  color: var(--main);
}

/* TOP BAR */
.top-bar {
  background: var(--yellow);
  padding: 10px;
  text-align: center;
  border-bottom: var(--border);
  font-weight: 700;
  font-size: 0.9rem;
}

/* HEADER */
.header {
  padding: 20px 0;
  background: var(--white);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nav-links a:hover {
  color: var(--main);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}
.burger {
  display: none;
  background: none;
  border: var(--border);
  padding: 5px;
  box-shadow: 3px 3px 0 #000;
}

/* HERO */
.hero {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.badge-new {
  display: inline-block;
  background: var(--accent);
  border: var(--border);
  padding: 5px 15px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 #000;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.hero-image {
  position: relative;
}
.sticker {
  position: absolute;
  background: var(--yellow);
  border: var(--border);
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.st-1 {
  top: -20px;
  left: -20px;
  rotate: -10deg;
}
.st-2 {
  bottom: -20px;
  right: -20px;
  rotate: 10deg;
  background: var(--accent);
}

/* MARQUEE */
.ticker-box {
  background: var(--black);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  border-bottom: var(--border);
}
.ticker-track {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CARDS INTRO */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  padding: 30px;
  border: var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 8px 8px 0 #000;
}

/* METHODOLOGY */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brutal-list {
  margin: 20px 0;
  border-left: 5px solid var(--black);
  padding-left: 20px;
}
.brutal-list li {
  margin-bottom: 10px;
  font-weight: 700;
}
.split-img {
  position: relative;
}
.badge-float {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: var(--border);
  padding: 10px 20px;
  font-weight: 700;
}

/* QUIZ */
.quiz-container {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 40px;
}
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: fadeUp 0.5s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.quiz-opts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.q-btn {
  padding: 15px;
  background: var(--bg);
  border: var(--border);
  font-weight: 700;
  text-align: left;
  transition: 0.2s;
}
.q-btn:hover {
  background: var(--accent);
}

/* STEPS */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step-card {
  background: var(--white);
  border: var(--border);
  padding: 20px;
  position: relative;
}
.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--main);
  opacity: 0.5;
  margin-bottom: 10px;
}

/* BENEFITS TEXT */
.text-block-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.tags-cloud {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.tags-cloud span {
  background: var(--black);
  color: var(--white);
  padding: 5px 15px;
  font-weight: 700;
  border: 1px solid var(--white);
}

/* REVIEWS */
.reviews-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.review-item {
  background: var(--white);
  border: var(--border);
  padding: 30px;
  box-shadow: var(--shadow);
}
.r-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}
.r-res {
  background: var(--yellow);
  display: inline-block;
  padding: 5px 10px;
  font-weight: 700;
  border: 2px solid #000;
  font-size: 0.9rem;
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-brutal details {
  background: var(--white);
  border: var(--border);
  margin-bottom: 15px;
  box-shadow: 4px 4px 0 #ccc;
  transition: 0.3s;
}
.accordion-brutal details[open] {
  box-shadow: var(--shadow);
}
.accordion-brutal summary {
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.accordion-brutal summary::after {
  content: "+";
  font-size: 1.5rem;
}
.accordion-brutal details[open] summary::after {
  content: "-";
}
.accordion-brutal p {
  padding: 0 20px 20px;
  margin: 0;
}

/* FORM */
.reg-wrapper {
  background: var(--white);
  border: var(--border);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: 10px 10px 0 #000;
}
.check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--main);
  border: 2px solid #000;
}

.form-brutal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.input-wrap label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.input-wrap input {
  width: 100%;
  padding: 15px;
  border: var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}
.input-wrap input:focus {
  outline: none;
  background: var(--yellow);
}

.check-wrap {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  align-items: center;
}
.check-wrap a {
  text-decoration: underline;
  font-weight: 700;
}

/* FOOTER */
.footer {
  padding: 80px 0 30px;
  background: var(--black);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.f-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.footer h5 {
  margin-bottom: 20px;
  color: var(--yellow);
  text-transform: uppercase;
}
.footer a,
.footer p {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
}
.footer a:hover {
  color: var(--main);
}
.footer-copy {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #666;
  font-size: 0.8rem;
}

/* MOBILE MENU */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--main);
  z-index: 2000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: var(--border);
}
.mobile-overlay.active {
  transform: translateY(0);
}
.mo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mo-head span {
  font-weight: 800;
  font-size: 1.2rem;
}
#closeMenu {
  background: none;
  border: var(--border);
  padding: 5px;
  background: #fff;
}
.mo-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mo-list a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}
.mo-btn {
  background: #000;
  color: #fff !important;
  padding: 15px;
  text-align: center;
  border: 3px solid #fff;
}

/* COOKIE */
.cookie-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--yellow);
  border: var(--border);
  padding: 15px;
  box-shadow: var(--shadow);
  z-index: 5000;
  display: none;
}
.cb-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#acceptCookie {
  background: #000;
  color: #fff;
  padding: 10px;
  font-weight: 700;
  border: 2px solid #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-links,
  .header-cta .btn-brutal {
    display: none;
  }
  .burger {
    display: block;
  }

  h1 {
    font-size: 2.8rem;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
    margin-bottom: 40px;
  }
  .st-1,
  .st-2 {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }

  .card-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .layout-split {
    grid-template-columns: 1fr;
  }
  .reg-text h2 {
    font-size: 2rem;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
  .reviews-slider {
    grid-template-columns: 1fr;
  }
  .reg-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h2 {
    font-size: 2.5rem;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}
