:root {
  --bg: #f4f4f0;
  --text: #111111;
  --accent: #ccff00; /* Acid Lime */
  --border-color: #000000;
  --white: #ffffff;
  --font-head: "Syne", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --border-width: 2px;
  --shadow-hard: 4px 4px 0px #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 700px;
}

.hl-lime {
  background-color: var(--accent);
  padding: 0 10px;
}

.text-center {
  text-align: center;
}
.mb-50 {
  margin-bottom: 50px;
}
.mt-50 {
  margin-top: 50px;
}

/* Brutalist Buttons */
.btn-brutal {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 15px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border: var(--border-width) solid var(--border-color);
  box-shadow: var(--shadow-hard);
  transition: 0.2s;
  cursor: pointer;
}

.btn-brutal:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--border-color);
  background: var(--accent);
  color: var(--text);
}

.btn-brutal.white {
  background: var(--white);
  color: var(--text);
}

.btn-brutal.lg {
  font-size: 1.2rem;
  padding: 20px 40px;
}

.btn-brutal.full {
  width: 100%;
  text-align: center;
}

.link-plain {
  font-weight: 700;
  border-bottom: 2px solid transparent;
}
.link-plain:hover {
  border-bottom-color: var(--text);
}

.link-und {
  text-decoration: underline;
  font-weight: 700;
}

/* Header */
.brutal-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  border-bottom: var(--border-width) solid var(--border-color);
  padding: 15px 0;
}

.h-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.desk-nav {
  display: flex;
  gap: 30px;
}

.nav-item {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-item:hover {
  background: var(--accent);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--text);
}

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--accent);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-100%);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: var(--border-width) solid var(--border-color);
}

.mob-menu.active {
  transform: translateY(0);
}

.mm-top {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 40px;
  border-bottom: var(--border-width) solid var(--border-color);
  padding-bottom: 20px;
}

#closeMob {
  background: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.mm-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mm-list a {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-head);
  color: var(--text);
}

.mm-cta {
  margin-top: 20px;
  text-decoration: underline;
}

.mm-foot {
  margin-top: auto;
  font-weight: 700;
}

/* Hero */
.hero-brutal {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  border-bottom: var(--border-width) solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.sticker {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 700;
  transform: rotate(-2deg);
  margin-bottom: 20px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.img-frame {
  border: var(--border-width) solid var(--border-color);
  box-shadow: var(--shadow-hard);
  padding: 10px;
  background: var(--white);
  position: relative;
}

.img-frame img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(120%);
}

.frame-tag {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--accent);
  padding: 5px 10px;
  border: var(--border-width) solid var(--border-color);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Ticker */
.ticker-box {
  border-bottom: var(--border-width) solid var(--border-color);
  background: var(--accent);
  padding: 15px 0;
  overflow: hidden;
}

.track {
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-head);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Method Grid */
.section {
  padding: 100px 0;
  border-bottom: var(--border-width) solid var(--border-color);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border-width) solid var(--border-color);
}

.b-card {
  padding: 40px;
  border-right: var(--border-width) solid var(--border-color);
  background: var(--white);
  transition: 0.3s;
}

.b-card:last-child {
  border-right: none;
}
.b-card:hover {
  background: #f0f0f0;
}

.bc-num {
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
  margin-bottom: 10px;
}

/* Blog Feed */
.bg-lime {
  background: var(--text);
  color: var(--bg);
}
.bg-lime h2 {
  color: var(--bg);
  border-color: var(--bg);
}
.bg-lime .border-btm {
  border-bottom: 2px solid var(--bg);
  padding-bottom: 20px;
}

.blog-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background: var(--bg);
  color: var(--text);
  border: var(--border-width) solid var(--bg); /* To maintain visual style inverted */
  padding: 30px;
  box-shadow: 4px 4px 0px var(--accent);
  display: flex;
  flex-direction: column;
}

.bi-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  border-bottom: 1px solid var(--text);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.blog-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.blog-item p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.read-more {
  margin-top: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--text);
  padding: 5px 15px;
  align-self: flex-start;
}
.read-more:hover {
  background: var(--text);
  color: var(--white);
}

.center-btn {
  text-align: center;
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.acc-wrap {
  border: var(--border-width) solid var(--border-color);
}

.acc-item {
  border-bottom: var(--border-width) solid var(--border-color);
}
.acc-item:last-child {
  border-bottom: none;
}

.acc-head {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
}

.acc-head::after {
  content: "+";
  font-size: 1.5rem;
}
.acc-head.active {
  background: var(--accent);
}
.acc-head.active::after {
  content: "-";
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  background: var(--white);
  border-top: 1px solid transparent;
}
.acc-head.active + .acc-body {
  border-top-color: var(--border-color);
}
.acc-body p {
  padding: 25px;
  margin: 0;
  max-width: 100%;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.brutal-list {
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 2;
  margin-top: 30px;
}

.fg-form {
  background: var(--white);
  border: var(--border-width) solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-hard);
}

.f-group {
  margin-bottom: 20px;
}
.f-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.f-group input {
  width: 100%;
  padding: 15px;
  border: var(--border-width) solid var(--border-color);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}
.f-group input:focus {
  background: var(--white);
  box-shadow: 4px 4px 0px var(--accent);
}

.err-txt {
  display: none;
  color: red;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 5px;
}
.f-group.error input {
  border-color: red;
}
.f-group.error .err-txt {
  display: block;
}

.captcha-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.captcha-wrap label {
  font-size: 1.5rem;
  margin: 0;
  white-space: nowrap;
  font-family: var(--font-head);
}

.f-check {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.f-check a {
  text-decoration: underline;
  font-weight: 700;
}

/* Footer */
.brutal-footer {
  padding: 80px 0 20px;
  background: var(--white);
}

.f-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  border-bottom: var(--border-width) solid var(--border-color);
  padding-bottom: 50px;
  margin-bottom: 20px;
}

.f-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent);
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 15px;
  border: 2px solid #000;
}

.f-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.f-col a {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.f-col a:hover {
  text-decoration: underline;
  color: #555;
}
.f-col .hl {
  font-weight: 700;
  background: var(--accent);
  display: inline-block;
}

.contact-data p {
  margin-bottom: 5px;
  font-size: 1rem;
}
.f-btm {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent);
  border-top: var(--border-width) solid var(--border-color);
  padding: 15px;
  z-index: 9999;
  display: none;
}

.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-inner p {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
}
#acceptCookie {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--text);
}
#acceptCookie:hover {
  background: var(--white);
  color: var(--text);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
  }
  h2 {
    font-size: 2rem;
  }
  .b-card {
    padding: 20px;
  }
  .hero-img {
    margin-top: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .f-layout {
    grid-template-columns: 1fr 1fr;
  }
  .blog-feed {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desk-nav,
  .h-actions .link-plain,
  .h-actions .btn-brutal {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-brutal {
    padding-top: 100px;
  }
  h1 {
    font-size: 2.8rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    border-right: none;
  }
  .b-card {
    border-right: none;
    border-bottom: var(--border-width) solid var(--border-color);
  }
  .blog-feed {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .f-layout {
    grid-template-columns: 1fr;
  }
}

.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;
  }
}
