/* --- Global Variables --- */
:root {
  --color-bg: #f4f4f0; /* Off-white paper color */
  --color-text: #111111; /* Almost black */
  --color-border: #000000; /* Pure black borders */

  --color-primary: #ffe600; /* Acid Yellow */
  --color-secondary: #9747ff; /* Vivid Purple */
  --color-accent: #ff5c00; /* Safety Orange */

  --border-width: 3px;
  --shadow-hard: 6px 6px 0px 0px var(--color-border);
  --shadow-hover: 2px 2px 0px 0px var(--color-border);

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

  --container: 1280px;
  --header-h: 80px;
}

/* --- Reset & Base --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border: var(--border-width) solid var(--color-border);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

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

/* --- Utilities --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons (Brutalist Style) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  border: var(--border-width) solid var(--color-border);
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background-color: var(--color-secondary);
  color: #fff;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-hover);
}

.btn:active {
  transform: translate(6px, 6px);
  box-shadow: none;
}

/* --- Marquee Strip --- */
.marquee-strip {
  background-color: var(--color-primary);
  border-bottom: var(--border-width) solid var(--color-border);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.marquee-strip__content {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.marquee-strip__content span {
  margin: 0 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Header --- */
.header {
  height: var(--header-h);
  background: #fff;
  border-bottom: var(--border-width) solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}

.header__container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo svg {
  border: none; /* Override general img rule */
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__menu {
  display: flex;
  gap: 30px;
}

.header__link {
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.header__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--color-primary);
  transition: 0.2s;
  z-index: -1;
}

.header__link:hover::before {
  width: 100%;
}

.header__burger {
  display: none;
  background: none;
  border: var(--border-width) solid var(--color-border);
  padding: 5px;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 #000;
}

.header__burger:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 #000;
}

/* --- Main --- */
.main {
  flex: 1;
}

/* --- Footer --- */
.footer {
  background-color: #fff;
  border-top: var(--border-width) solid var(--color-border);
  margin-top: auto;
}

.footer__top-border {
  height: 15px;
  background: repeating-linear-gradient(
    45deg,
    var(--color-border),
    var(--color-border) 10px,
    var(--color-primary) 10px,
    var(--color-primary) 20px
  );
  border-bottom: var(--border-width) solid var(--color-border);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer__logo-big {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  background: var(--color-text);
  color: var(--color-primary);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 20px;
  transform: rotate(-2deg);
}

.footer__head {
  font-size: 1.2rem;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a:hover {
  background: var(--color-primary);
  color: #000;
  padding: 0 5px;
}

.footer__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer__socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  border-radius: 50%; /* Mixing round with square for contrast */
  transition: 0.2s;
}

.footer__socials a:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-5px);
}

.footer__bottom {
  border-top: var(--border-width) solid var(--color-border);
  padding: 20px;
  text-align: center;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-head);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: calc(var(--header-h) + 38px); /* Height + Marquee height approx */
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    border-left: var(--border-width) solid var(--color-border);
    transition: right 0.3s ease-in-out;
  }

  .header__nav.active {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
  }

  .header__burger {
    display: block;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
  .header__logo-text {
    font-size: 1.2rem;
  }
}

/* --- Hero Section --- */
.hero {
  min-height: calc(100vh - var(--header-h)); /* Full screen minus header */
  border-bottom: var(--border-width) solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Text wider than visual */
  flex: 1;
}

/* Left Side */
.hero__content {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: var(--border-width) solid var(--color-border);
  background-color: var(--color-bg);
  position: relative;
}

/* Floating abstract shapes for decor */
.hero__content::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border: var(--border-width) solid var(--color-border);
  box-shadow: 4px 4px 0 #000;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
  border: var(--border-width) solid var(--color-border);
  padding: 8px 16px;
  margin-bottom: 24px;
  align-self: flex-start;
  box-shadow: 4px 4px 0 var(--color-border);
  text-transform: uppercase;
}

.blink {
  color: red;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.hero__title {
  font-size: 5rem;
  line-height: 0.9;
  margin-bottom: 30px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero__title--highlight {
  background-color: var(--color-primary);
  padding: 0 10px;
  /* Simulate a marker highlight */
  box-shadow: 8px 8px 0 #000;
}

.hero__subtitle {
  font-size: 1.25rem;
  max-width: 500px;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero__features-list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-head);
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn--outline {
  background: transparent;
  border: var(--border-width) solid var(--color-border);
  padding: 16px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-hard);
  transition: 0.2s;
}

.btn--outline:hover {
  background: #000;
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-hover);
}

.hero__disclaimer {
  font-size: 0.8rem;
  color: #555;
  font-weight: 600;
  margin-top: auto;
  border-top: 2px solid #000;
  padding-top: 10px;
  display: inline-block;
}

/* Right Side - Visual */
.hero__visual {
  background-color: #000; /* Contrast background for canvas */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#brutalCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__overlay-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--color-primary);
  font-family: var(--font-head);
  font-size: 1.5rem;
  background: #000;
  padding: 5px 10px;
  border: 2px solid var(--color-primary);
}

/* Responsive */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__visual {
    min-height: 400px;
    border-top: var(--border-width) solid var(--color-border);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* --- Solutions Section --- */
.solutions {
  border-bottom: var(--border-width) solid var(--color-border);
  background-color: #fff;
}

.solutions__header {
  padding: 60px 20px;
  text-align: center;
  border-bottom: var(--border-width) solid var(--color-border);
  background-color: var(--color-bg);
}

.solutions__title {
  font-size: 3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.solutions__desc {
  font-size: 1.2rem;
  font-weight: 500;
  color: #555;
}

/* Brutalist Grid */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  /* Adding borders to the container to close the grid box if needed, 
       but standard brut style often uses full width lines */
}

.sol-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: var(--border-width) solid var(--color-border);
  position: relative;
  transition: background 0.3s ease;
}

/* Remove border from last item to avoid double borders with container */
.sol-card:last-child {
  border-right: none;
}

/* Color Variants */
.sol-card--white {
  background-color: #fff;
}
.sol-card--yellow {
  background-color: var(--color-primary);
}
.sol-card--purple {
  background-color: var(--color-secondary);
  color: #fff;
}

.sol-card--purple .sol-card__title,
.sol-card--purple .sol-card__text,
.sol-card--purple .sol-card__list li {
  color: #fff;
}
.sol-card--purple .sol-card__icon-box {
  border-color: #fff;
  color: #fff;
}

/* Typography & Elements */
.sol-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  font-weight: 700;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transform: rotate(5deg);
}

.sol-card__icon-box {
  width: 60px;
  height: 60px;
  border: var(--border-width) solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: transparent;
  border-radius: 0; /* Strict squares */
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.sol-card__icon-box i {
  width: 30px;
  height: 30px;
}

.sol-card__title {
  font-size: 2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sol-card__text {
  margin-bottom: 25px;
  font-size: 1rem;
  flex-grow: 1; /* Pushes button down */
}

.sol-card__list {
  margin-bottom: 30px;
  width: 100%;
}

.sol-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
}

.sol-card--purple .sol-card__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Button Variants inside cards */
.btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  width: 100%;
}

.btn--white {
  background: #fff;
  color: #000;
}

/* Hover Effects */
.sol-card:hover .sol-card__icon-box {
  transform: rotate(-10deg) scale(1.1);
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .sol-card {
    border-right: none;
    border-bottom: var(--border-width) solid var(--color-border);
  }

  .sol-card:last-child {
    border-bottom: none;
  }
}

/* --- Process Section --- */
.process {
  background-color: #000; /* Inverted contrast */
  color: #fff;
  padding: 80px 0;
  border-bottom: var(--border-width) solid var(--color-border);
  position: relative;
}

/* Background grid pattern for texture */
.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#333 1px, transparent 1px),
    linear-gradient(90deg, #333 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  pointer-events: none;
}

.process__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 2px solid #333;
  padding-bottom: 20px;
}

.process__title {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
}

.process__tag {
  background: var(--color-secondary);
  color: #fff;
  padding: 5px 15px;
  font-weight: 700;
  border: 2px solid #fff;
  transform: rotate(-3deg);
  font-family: var(--font-head);
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0; /* No gap, connected via borders */
}

/* Step Card */
.step {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  gap: 30px;
  padding: 40px;
  border: 2px solid #333;
  background: #111;
  margin-bottom: -2px; /* Overlap borders */
  transition: all 0.3s ease;
  align-items: start;
}

.step:hover {
  background: #1a1a1a;
  border-color: var(--color-primary);
  transform: translateX(10px);
  z-index: 2;
}

.step:hover .step__num {
  color: var(--color-primary);
  text-shadow: 4px 4px 0 #000;
}

.step__num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
  transition: 0.3s;
}

.step__content {
  padding-top: 10px;
}

.step__title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
}

.step__desc {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 600px;
}

.step__desc strong {
  color: var(--color-primary);
}

.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #333;
}

.step:hover .step__arrow {
  color: var(--color-primary);
}

/* Final Step Specifics */
.step--final {
  background: #111;
  border-color: var(--color-primary);
}

.step--final .step__num {
  color: #fff;
}

.btn--full {
  width: auto;
  display: inline-flex;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .process__title {
    font-size: 2rem;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .step__num {
    font-size: 3rem;
    margin: 0 auto;
  }

  .step__arrow {
    display: none;
  }

  .process__header {
    flex-direction: column;
    gap: 15px;
  }
}

/* --- Tech Specs Section --- */
.tech {
  padding: 80px 0;
  background-color: var(--color-bg);
  border-bottom: var(--border-width) solid var(--color-border);
}

.tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Terminal Window Styling */
.terminal-window {
  background: #fff;
  border: var(--border-width) solid var(--color-border);
  box-shadow: 10px 10px 0 #000; /* Deep hard shadow */
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.terminal-window:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 #000;
}

.terminal-header {
  background: var(--color-border);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27c93f;
}

.terminal-title {
  color: #fff;
  font-family: monospace;
  margin-left: 10px;
  font-size: 0.9rem;
}

.terminal-body {
  padding: 20px;
  font-family: "Courier New", Courier, monospace;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
}

.code-line {
  margin-bottom: 5px;
}

.cmd {
  color: var(--color-secondary);
  font-weight: bold;
  margin-right: 5px;
}

.success {
  color: #009900;
  font-weight: bold;
}

.warning {
  background: var(--color-primary);
  color: #000;
  display: inline-block;
  padding: 0 5px;
  font-weight: bold;
}

.code-block {
  border-left: 3px solid var(--color-secondary);
  padding-left: 10px;
  color: #555;
  font-style: italic;
}

.tech__link-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.tech__link-details:hover {
  color: var(--color-secondary);
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 2px 5px;
}

/* Right Column Info */
.tech__title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 20px;
}

.tech__desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 450px;
}

/* Award Box */
.tech__award-box {
  display: flex;
  align-items: center;
  gap: 20px;
  border: var(--border-width) solid var(--color-border);
  padding: 20px;
  background: var(--color-primary); /* Acid Yellow background */
  margin-bottom: 30px;
  position: relative;
}

/* Decorative "Tape" effect */
.tech__award-box::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #000;
}

.award-icon i {
  width: 40px;
  height: 40px;
}

.award-text h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.award-text p {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Consultation Box */
.tech__consult {
  border: 2px dashed var(--color-border);
  padding: 20px;
  background: #fff;
}

.tech__consult-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 992px) {
  .tech__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .terminal-window {
    box-shadow: 6px 6px 0 #000;
  }
}

/* --- Contact Section --- */
.contact {
  padding: 80px 0;
  background-color: var(--color-primary); /* Yellow background for contrast */
  border-bottom: var(--border-width) solid var(--color-border);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: var(--border-width) solid var(--color-border);
  background: #fff;
  box-shadow: 15px 15px 0 #000;
}

/* Left Side */
.contact__info {
  padding: 60px 40px;
  background: #fff;
  border-right: var(--border-width) solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.contact__title {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 0.9;
}

.contact__desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.detail-item {
  margin-bottom: 20px;
}

.detail-label {
  display: block;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 5px;
}

.detail-value {
  font-size: 1.5rem;
  font-weight: 700;
  word-break: break-all;
}

.contact__note {
  margin-top: auto;
  font-size: 0.8rem;
  color: #777;
  border-top: 2px solid #000;
  padding-top: 10px;
}

/* Right Side: Form */
.contact__form-box {
  padding: 60px 40px;
  background: #f9f9f9;
  position: relative;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
}

.brutal-form input[type="text"],
.brutal-form input[type="email"],
.brutal-form input[type="tel"] {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 3px solid #000;
  background: #fff;
  border-radius: 0;
  outline: none;
  transition: 0.2s;
}

.brutal-form input:focus {
  background: #fff;
  box-shadow: 6px 6px 0 var(--color-secondary);
  border-color: #000;
}

.brutal-form input.error {
  border-color: red;
  background: #fff0f0;
}

.error-msg {
  color: red;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 5px;
  display: none;
}

.error-msg.visible {
  display: block;
}

.btn--block {
  width: 100%;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Custom Captcha */
.captcha-group {
  border: 3px solid #000;
  background: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  min-width: 250px;
}

.custom-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox {
  width: 30px;
  height: 30px;
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.check-icon {
  opacity: 0;
  color: green;
  transition: 0.2s;
  width: 20px;
  height: 20px;
}

.custom-checkbox-wrapper.checked .check-icon {
  opacity: 1;
}

.checkbox-label {
  font-weight: 600;
}

/* Native Checkbox Styling for Consent */
.consent-group input[type="checkbox"] {
  display: none;
}

.real-checkbox-style {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  display: inline-block;
  position: relative;
  background: #fff;
  flex-shrink: 0;
}

.consent-group input:checked + .real-checkbox-style::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #000;
}

.checkbox-label-small {
  font-size: 0.9rem;
}

.checkbox-label-small a {
  text-decoration: underline;
  font-weight: 700;
}

/* Success Message */
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 10;
}

.hidden {
  display: none !important;
}

.success-icon {
  color: green;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.success-icon i {
  width: 100%;
  height: 100%;
}

/* --- Cookie Popup --- */
/* --- Cookie Bar (Fixed Bottom) --- */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary); /* Жовтий фон */
  border-top: var(--border-width) solid var(--color-border);
  padding: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);

  /* Сховано за межами екрану за замовчуванням */
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Клас для показу */
.cookie-bar.is-active {
  transform: translateY(0);
}

.cookie-bar__content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-bar__icon {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.cookie-bar__text {
  font-size: 0.95rem;
  color: #000;
  max-width: 800px;
}

.cookie-bar__text a {
  text-decoration: underline;
  font-weight: 700;
}

/* Кнопка всередині бару */
.btn--black {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  font-weight: 700;
  padding: 10px 25px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn--black:hover {
  background: #fff;
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

/* Адаптив для мобільних */
@media (max-width: 768px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

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

/* --- Pages Styles (Privacy, Terms etc) --- */
.pages {
  padding: 80px 0;
  background: #fff;
}

.pages h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  border-bottom: 3px solid #000;
  padding-bottom: 20px;
}

.pages h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.pages p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.pages ul {
  list-style: square;
  margin-left: 20px;
  margin-bottom: 20px;
}

.pages li {
  margin-bottom: 10px;
}

/* Responsive Contact */
@media (max-width: 992px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
  }

  .contact__info {
    border-right: none;
    border-bottom: var(--border-width) solid var(--color-border);
  }
}
