:root {
  --main: #111111;
  --bg: #ffffff;
  --bg-light: #f4f4f4;
  --accent: #ccff00; /* Electric Lime */
  --border: #111111;
  --font-head: "Unbounded", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container-fluid {
  width: 100%;
  padding: 0 40px;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: stretch;
}

.header__grid {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  border-right: 2px solid var(--border);
  background: var(--main);
  color: var(--accent);
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.nav-area {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-right: 1px solid #eee;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  background: var(--accent);
  color: var(--main);
}

.cta-area {
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-left: 2px solid var(--border);
}

/* Buttons */
.btn-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--main);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--main);
  transition: 0.2s;
  cursor: pointer;
  gap: 10px;
}
.btn-box:hover {
  background: var(--accent);
  color: var(--main);
  box-shadow: 4px 4px 0 var(--main);
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--main);
  border-color: var(--main);
}
.btn-primary:hover {
  background: var(--main);
  color: #fff;
}

.small {
  padding: 8px 16px;
  font-size: 0.8rem;
}
.full {
  width: 100%;
}

.link-text {
  text-decoration: underline;
  font-weight: 600;
}
.link-text:hover {
  color: var(--accent);
  background: var(--main);
  padding: 0 5px;
}

/* Burger */
.burger-area {
  display: none;
  align-items: center;
  justify-content: center;
  width: 80px;
  background: transparent;
  border: none;
  border-left: 2px solid var(--border);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  transform: translateX(100%);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}

.mm-head {
  height: 80px;
  border-bottom: 2px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: var(--main);
  color: #fff;
}
.mm-title {
  font-family: var(--font-head);
  font-weight: 700;
}
.mm-close {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
}

.mm-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 20px;
  overflow-y: auto;
}
.mm-links a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.mm-links a:hover {
  color: #555;
}

.mm-foot {
  padding: 20px;
  border-top: 2px solid var(--border);
}

/* Hero */
.hero {
  padding-top: 80px;
  border-bottom: 2px solid var(--border);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

.hero__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--border);
}
.tag-pill {
  display: inline-block;
  background: var(--main);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  width: fit-content;
}
.hero__title {
  font-size: 4.5rem;
  line-height: 0.9;
  margin-bottom: 40px;
}
.highlight {
  background: var(--accent);
  padding: 0 10px;
}
.hero__desc {
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 500px;
  color: #555;
}
.hero__btns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.5s;
}
.hero__image:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.overlay-stat {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fff;
  border: 2px solid var(--border);
  padding: 20px;
  box-shadow: 10px 10px 0 var(--main);
}
.big-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--main);
}
.small-txt {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--accent);
  border-bottom: 2px solid var(--border);
  padding: 15px 0;
}
.ticker {
  display: flex;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-right: 50px;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Section Generic */
.section {
  padding: 100px 0;
  border-bottom: 2px solid var(--border);
}
.bg-light {
  background: var(--bg-light);
}
.sec-head-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--main);
}
.sec-head-grid h2 {
  font-size: 3rem;
}
.sec-head-grid p {
  max-width: 400px;
  text-align: right;
  font-weight: 500;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--border);
  background: var(--border);
  gap: 2px;
}
.bento-card {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  transition: 0.3s;
}
.bento-card:hover {
  background: #fafafa;
}

.main-card {
  background: var(--main);
  color: #fff;
}
.main-card p {
  color: #ccc;
}
.main-card i {
  color: var(--accent);
}
.wide-card {
  grid-column: span 3;
  height: auto;
  padding: 50px;
}

.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.icon-lg {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.icon-md {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}
.icon-xl {
  width: 64px;
  height: 64px;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Split Career */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-img {
  border: 2px solid var(--border);
  box-shadow: 10px 10px 0 var(--accent);
}
.label {
  font-family: var(--font-head);
  font-weight: 700;
  color: #999;
  margin-bottom: 10px;
}
.split-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.split-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.brutal-list {
  margin: 30px 0;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}
.brutal-list li {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.btn-link {
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid var(--main);
  padding-bottom: 5px;
}
.btn-link:hover {
  background: var(--accent);
  border-color: transparent;
}

/* Income */
.title-xl {
  font-size: 4rem;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}
.income-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 60px;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.col-item {
  padding: 40px 20px;
  position: relative;
}
.border-right {
  border-right: 2px solid var(--border);
}
.num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: #eee;
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: -1;
}
.col-item h3 {
  margin-bottom: 15px;
  margin-top: 20px;
}
.box-cta {
  background: var(--accent);
  padding: 40px;
  display: inline-block;
  border: 2px solid var(--border);
}
.box-cta p {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* FAQ */
.narrow-container {
  max-width: 800px;
  margin: 0 auto;
}
.mb-50 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 3rem;
}
.accordion {
  border-top: 2px solid var(--border);
}
.acc-item {
  border-bottom: 2px solid var(--border);
}
.acc-head {
  width: 100%;
  text-align: left;
  padding: 25px 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.acc-head:hover {
  color: #555;
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.acc-body p {
  padding-bottom: 25px;
  color: #555;
}
.acc-item.active .acc-head {
  color: var(--border);
}
.acc-item.active .acc-head i {
  transform: rotate(45deg);
}

/* Form */
.form-section {
  background: var(--main);
  color: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.form-txt h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  color: #fff;
}
.form-txt p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cb-row {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 1.1rem;
}
.cb-row i {
  color: var(--accent);
}

.brutal-form {
  background: #fff;
  padding: 40px;
  border: 2px solid #fff;
  color: var(--main);
}
.inp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inp-group {
  margin-bottom: 20px;
  position: relative;
}
.inp-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.inp-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #f4f4f4;
}
.inp-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.error-msg {
  color: red;
  font-size: 0.8rem;
  display: none;
  position: absolute;
  bottom: -18px;
}
.inp-group.error input {
  border-color: red;
}
.inp-group.error .error-msg {
  display: block;
}

.check-group {
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check-group input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.check-group label {
  font-size: 0.9rem;
  line-height: 1.4;
}
.check-group a {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #fff;
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.ft-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 20px;
}
.ft-links a,
.ft-docs a,
.ft-contact p {
  display: block;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}
.ft-links a:hover,
.ft-docs a:hover {
  text-decoration: underline;
  color: var(--main);
}
.footer-copy {
  text-align: center;
  border-top: 2px solid var(--border);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

/* Cookie */
.cookie-box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 300px;
  background: var(--main);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 20px;
  display: none;
  z-index: 9999;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
}
.cookie-txt h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.cookie-txt p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__content {
    border-right: none;
    border-bottom: 2px solid var(--border);
    padding: 60px 20px;
    text-align: center;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__image {
    height: 400px;
  }
  .bento-grid {
    display: flex;
    flex-direction: column;
  }
  .wide-card {
    grid-column: auto;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
  .income-cols {
    grid-template-columns: 1fr;
  }
  .col-item {
    border-right: none;
    border-bottom: 2px solid var(--border);
  }
  .col-item:last-child {
    border-bottom: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .split-content h2,
  .title-xl,
  .form-txt h2 {
    font-size: 2rem;
  }
  .bento-card h3 {
    font-size: 0.9rem;
  }
  .sec-head-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .sec-head-grid h2 {
    font-size: 2.5rem;
  }
  .sec-head-grid p {
    text-align: left;
  }
  .inp-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-box {
    left: 20px;
    right: 20px;
    width: auto;
  }
}

.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;
  background: none;
}

.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;
  display: flex;
  justify-content: center;
}

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