/* DESIGN SYSTEM: Digital Brutalism / Electro Shock */
:root {
  --bg-main: #f2f2f2;
  --bg-white: #ffffff;
  --black: #000000;

  --accent: #ccff00; /* Acid Lime */
  --accent-blue: #2e5cff; /* Electric Blue */

  --border: 2px solid #000000;
  --shadow: 4px 4px 0px #000000;
  --shadow-hover: 8px 8px 0px #000000;

  --font-head: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;

  --container: 1240px;
}

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

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

/* BACKGROUND GRID */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(var(--black) 1px, transparent 1px),
    linear-gradient(90deg, var(--black) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

/* UTILS */
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 5px solid var(--accent);
  display: inline-block;
  margin-bottom: 10px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  border-bottom: var(--border);
}
.bg-white {
  background: var(--bg-white);
}
.narrow {
  max-width: 900px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
  margin-bottom: 60px;
}

/* BUTTONS */
.btn-brutal {
  display: inline-block;
  padding: 12px 24px;
  background: var(--black);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  border: var(--border);
  transition: 0.2s;
  text-transform: uppercase;
}
.btn-brutal:hover {
  background: var(--accent);
  color: var(--black);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.btn-brutal-lg {
  display: inline-block;
  padding: 20px 40px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  border: var(--border);
  transition: 0.2s;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.btn-brutal-lg:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
  background: var(--accent-blue);
  color: white;
}

/* HEADER */
.brutal-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg-white);
  border-bottom: var(--border);
  z-index: 100;
}
.h-flex {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover {
  border-bottom-color: var(--accent-blue);
}

.h-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Highlighted Contact Link */
.nav-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--accent-blue);
  padding: 8px 16px;
  background: transparent;
  color: var(--accent-blue);
  text-transform: uppercase;
  transition: 0.3s;
}
.nav-contact-link:hover {
  background: var(--accent-blue);
  color: white;
}
.nav-contact-link i {
  width: 18px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 30px;
  height: 3px;
  background: var(--black);
}

/* MOBILE MENU */
.mob-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--accent);
  border-left: var(--border);
  z-index: 200;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.mob-overlay.active {
  transform: translateX(0);
}
.mob-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}
#closeMob {
  background: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
}
.mob-links a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--black);
}
.mob-highlight {
  color: var(--accent-blue);
  font-weight: 700;
  border-bottom: 4px solid var(--accent-blue) !important;
  margin-top: 20px;
}

/* HERO */
.hero-brutal {
  padding-top: 150px;
  padding-bottom: 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.sticker {
  display: inline-block;
  background: var(--black);
  color: white;
  padding: 5px 15px;
  font-weight: 700;
  font-family: monospace;
  transform: rotate(-2deg);
  margin-bottom: 20px;
}
.highlight {
  color: var(--accent-blue);
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="10" viewBox="0 0 100 10" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5 Q 50 10 100 5" stroke="black" stroke-width="2" fill="none"/></svg>')
    bottom repeat-x;
}

.hero-lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  gap: 30px;
  align-items: center;
}
.proof {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.card-visual {
  background: var(--bg-white);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
}
.cv-head {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-weight: 700;
}
.loading-bar {
  width: 100%;
  height: 20px;
  border: 2px solid var(--black);
  margin-bottom: 20px;
  background: #eee;
}
.fill {
  width: 35%;
  height: 100%;
  background: var(--accent-blue);
}
.glitch-list li {
  font-family: monospace;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.stamp {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  transform: rotate(-15deg);
  border: 4px solid var(--accent);
  padding: 5px 10px;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/* TICKER */
.ticker-box {
  background: var(--accent);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 15px 0;
  overflow: hidden;
  transform: rotate(1deg) scale(1.02);
  z-index: 10;
  position: relative;
}
.ticker-track {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  animation: scroll 15s linear infinite;
}
.ticker-track span {
  color: var(--accent-blue);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SYSTEM (Cards) */
.sec-title-wrap {
  margin-bottom: 60px;
}
.sec-title-wrap p {
  font-size: 1.2rem;
  margin-top: 15px;
  max-width: 700px;
}
.b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.b-card {
  background: var(--bg-white);
  border: var(--border);
  padding: 30px;
  position: relative;
  transition: 0.2s;
}
.b-card:hover {
  box-shadow: var(--shadow);
  transform: translate(-2px, -2px);
  background: #f9f9f9;
}
.bc-num {
  font-size: 3rem;
  font-weight: 900;
  color: #eee;
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-head);
}
.b-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}
.b-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* PROGRAM (List) */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-row {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 30px;
  align-items: center;
  border: var(--border);
  background: var(--bg-white);
  padding: 30px;
  transition: 0.3s;
}
.p-row:hover {
  background: var(--black);
  color: var(--accent);
  border-color: var(--accent);
}
.p-row:hover .p-content p {
  color: #ddd;
}
.p-meta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  border-right: 2px solid #ccc;
}
.p-row:hover .p-meta {
  border-right-color: var(--accent);
}
.p-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-content p {
  color: #555;
}
.p-icon {
  font-size: 2rem;
  display: flex;
  justify-content: center;
}

/* REVIEWS */
.center-head {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
}
.review-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.r-card {
  background: var(--accent);
  border: var(--border);
  padding: 30px;
  box-shadow: var(--shadow);
}
.r-head {
  border-bottom: 2px solid var(--black);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.r-head strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.r-head span {
  font-size: 0.85rem;
}
.r-card p {
  font-style: italic;
  font-weight: 500;
}

/* FAQ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acc-item {
  border: var(--border);
  background: var(--bg-white);
}
.acc-btn {
  width: 100%;
  text-align: left;
  padding: 25px;
  background: none;
  border: none;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.acc-btn:hover {
  background: #f0f0f0;
}
.acc-btn::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 900;
}
.acc-btn.active {
  background: var(--black);
  color: var(--accent);
}
.acc-btn.active::after {
  content: "-";
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 25px;
}
.acc-content p {
  padding: 20px 0;
  border-top: 1px dashed var(--black);
}

/* CONTACT FORM */
.section-contact {
  background: var(--accent);
  border-top: var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.c-sticker {
  display: inline-block;
  background: var(--black);
  color: white;
  padding: 5px 10px;
  font-weight: 700;
  margin-bottom: 20px;
}
.c-info h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  line-height: 1;
}
.c-info p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 400px;
}
.c-details {
  border: var(--border);
  background: var(--bg-white);
  padding: 30px;
  box-shadow: var(--shadow);
}
.cd-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.cd-row:last-child {
  margin-bottom: 0;
}
.cd-row strong {
  font-family: var(--font-head);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.brutal-form {
  background: var(--bg-white);
  border: var(--border);
  padding: 40px;
  box-shadow: var(--shadow);
}
.bf-group {
  margin-bottom: 20px;
}
.bf-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
}
.bf-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ccc;
  background: #f9f9f9;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  border-radius: 0; /* Brutalism */
}
.bf-group input:focus {
  outline: none;
  border-color: var(--black);
  background: #fff;
}

.bf-check {
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.bf-check a {
  text-decoration: underline;
}

.btn-submit-brutal {
  width: 100%;
  padding: 20px;
  background: var(--accent-blue);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  border: var(--border);
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.2s;
}
.btn-submit-brutal:hover {
  background: var(--black);
  color: var(--accent);
  box-shadow: var(--shadow);
  transform: translate(-2px, -2px);
}

/* FOOTER */
.brutal-footer {
  background: var(--black);
  color: var(--bg-white);
  padding: 80px 0 0;
  border-top: var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.brand-col p {
  color: #aaa;
  margin-bottom: 30px;
  max-width: 300px;
}
.f-socials a {
  display: inline-block;
  border: 1px solid #fff;
  padding: 5px 15px;
  margin-right: 10px;
  font-family: monospace;
  font-weight: 700;
  transition: 0.2s;
}
.f-socials a:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.f-col h5 {
  color: var(--accent);
  margin-bottom: 25px;
  font-family: var(--font-head);
}
.f-col ul li {
  margin-bottom: 12px;
}
.f-col a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-btm {
  border-top: 1px solid #333;
  padding: 30px 0;
  text-align: center;
  color: #666;
  font-family: monospace;
}

/* COOKIE */
.cookie-brutal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent);
  border-top: var(--border);
  padding: 15px 30px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
}
.cookie-brutal p {
  font-weight: 700;
  font-size: 1.1rem;
}
#acceptCookie {
  padding: 10px 30px;
  background: var(--black);
  color: white;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-head);
}
#acceptCookie:hover {
  background: var(--bg-white);
  color: var(--black);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .main-nav,
  .h-actions .nav-contact-link,
  .h-actions .btn-brutal {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-grid,
  .contact-layout,
  .footer-grid,
  .p-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .p-meta {
    border-right: none;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .review-scroll {
    grid-template-columns: 1fr;
  }
  .hero-content {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
    flex-direction: column;
  }
  h1,
  .center-head {
    font-size: 2.2rem;
  }
  .c-info h2 {
    font-size: 1.5rem;
  }
  .p-content h3 {
    font-size: 1.1rem;
  }
  .cookie-brutal {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.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: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
