/* ===== AIAUREA - NEO-BRUTALIST CSS ===== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --brutal-black: #0a0a0a;
  --brutal-white: #f4f4f0;
  --brutal-red: #ff3300;
  --brutal-green: #00ff88;
  --brutal-blue: #3366ff;
  --brutal-gray: #888888;
  --brutal-dark: #111111;
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--brutal-black);
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--brutal-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(255, 51, 0, 0.1);
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

/* ===== PAGE SYSTEM ===== */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4vw;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
}

.logo:hover {
  color: var(--brutal-red);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brutal-red);
  color: #ffffff;
  border-color: var(--brutal-red);
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--brutal-black);
  border-color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--brutal-black);
  border-color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--brutal-black);
  border-color: #ffffff;
}

.btn-white:hover {
  background: var(--brutal-red);
  color: #ffffff;
  border-color: var(--brutal-red);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--brutal-black);
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-bg-x svg {
  width: 80vw;
  height: 80vh;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 4vw;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 2rem;
  transform: rotate(-3deg);
  border: 2px solid var(--brutal-red);
  padding: 0.5rem 1rem;
}

.hero-badge span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brutal-red);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 12vw, 15vw);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-title-red {
  color: var(--brutal-red);
  margin-left: 10vw;
  margin-top: -0.5rem;
}

.hero-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-top: 2rem;
}

.hero-cta {
  margin-top: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
}

.hero-stat-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
}

.hero-stat-value.red {
  color: var(--brutal-red);
}

.hero-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--brutal-white);
  border-top: 2px solid var(--brutal-black);
  border-bottom: 2px solid var(--brutal-black);
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 5rem);
  text-transform: uppercase;
  color: var(--brutal-black);
  padding: 0 2rem;
}

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

/* ===== SECTIONS ===== */
.section {
  padding: 8rem 4vw;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4rem;
}

.section-title-red {
  color: var(--brutal-red);
}

/* ===== US VS THEM ===== */
.comparison-section {
  position: relative;
  padding: 8rem 4vw;
}

.comparison-vertical-title {
  display: none;
  position: absolute;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 8vw;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .comparison-vertical-title {
    display: block;
  }
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.comparison-them {
  text-decoration: line-through;
  color: #666;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .comparison-them {
    font-size: 1.5rem;
  }
}

.comparison-us {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .comparison-us {
    font-size: 1.5rem;
  }
}

.comparison-us svg {
  color: var(--brutal-red);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 2.5rem;
  background: var(--brutal-dark);
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-card:hover {
  border-color: var(--brutal-red);
  transform: translateX(10px);
}

.step-number {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  color: var(--brutal-red);
  opacity: 0.3;
}

.step-content {
  position: relative;
  z-index: 10;
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.step-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== BEFORE/AFTER ===== */
.before-after {
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid #ffffff;
}

@media (min-width: 768px) {
  .before-after {
    grid-template-columns: 1fr 1fr;
  }
}

.before,
.after {
  position: relative;
  padding: 3rem 2rem;
}

.before {
  background: var(--brutal-dark);
  filter: grayscale(100%);
}

.after {
  background: var(--brutal-red);
}

.before-label,
.after-label {
  position: absolute;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.before-label {
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  color: rgba(255, 255, 255, 0.5);
}

.after-label {
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: rgba(0, 0, 0, 0.5);
}

.before-value,
.after-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  text-align: center;
}

.before-value {
  color: rgba(255, 255, 255, 0.3);
}

.after-value {
  color: var(--brutal-black);
}

.before-subtitle,
.after-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0.5rem;
}

.before-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.after-subtitle {
  color: rgba(0, 0, 0, 0.7);
}

.before-list,
.after-list {
  margin-top: 2rem;
  list-style: none;
}

.before-list li,
.after-list li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.before-list li {
  color: rgba(255, 255, 255, 0.4);
}

.after-list li {
  color: rgba(0, 0, 0, 0.7);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  background: var(--brutal-dark);
  transition: all 0.3s ease;
}

.testimonial-card:nth-child(1) { transform: rotate(1deg); }
.testimonial-card:nth-child(2) { transform: rotate(-1deg); margin-top: 2rem; }
.testimonial-card:nth-child(3) { transform: rotate(1deg); }

.testimonial-card:hover {
  border-color: var(--brutal-red);
  transform: scale(1.02) rotate(0deg);
  z-index: 10;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brutal-red);
}

.testimonial-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== ROI CALCULATOR ===== */
.calculator-section {
  padding: 8rem 4vw;
  background: var(--brutal-black);
  background-image: radial-gradient(circle, #333 1px, transparent 1px);
  background-size: 20px 20px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .calculator-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calculator-field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.calculator-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.calculator-slider::-webkit-slider-track {
  background: var(--brutal-black);
  height: 4px;
  border: 1px solid #ffffff;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: var(--brutal-red);
  height: 20px;
  width: 20px;
  border: 2px solid var(--brutal-black);
  margin-top: -9px;
}

.calculator-values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.calculator-value-min,
.calculator-value-max {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
}

.calculator-value-current {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.calculator-result {
  border: 4px solid #ffffff;
  padding: 2rem;
  background: var(--brutal-dark);
}

.calculator-result-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.calculator-result-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brutal-red);
}

.calculator-result-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* ===== INTEGRATIONS ===== */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.integration-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.integration-item:hover {
  background: #ffffff;
  color: var(--brutal-black);
  border-color: #ffffff;
}

.integration-item.small {
  width: 80px;
  height: 80px;
}

.integration-item.medium {
  width: 100px;
  height: 100px;
}

.integration-item.large {
  width: 120px;
  height: 120px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-item:last-child {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.faq-icon {
  color: var(--brutal-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 1.5rem;
  padding-left: 0;
  border-left: 4px solid var(--brutal-red);
  padding-left: 1.5rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
  min-height: 100vh;
  background: var(--brutal-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem;
}

.final-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 20vw, 30vw);
  text-transform: uppercase;
  color: var(--brutal-black);
  text-align: center;
  line-height: 0.9;
}

.final-cta-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 2rem;
  text-align: center;
}

.final-cta-button {
  margin-top: 3rem;
  width: 80%;
  max-width: 600px;
  height: 100px;
  background: var(--brutal-black);
  color: #ffffff;
  border: 4px solid var(--brutal-black);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.final-cta-button:hover {
  background: #ffffff;
  color: var(--brutal-black);
}

.bounce-arrow {
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.final-cta-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brutal-black);
  padding: 1rem 0;
  overflow: hidden;
}

.final-cta-marquee .marquee-text {
  color: var(--brutal-red);
  font-size: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brutal-black);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding: 4rem 4vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
}

.footer-logo:hover {
  color: var(--brutal-red);
}

.footer-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

.footer-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== SHOP PAGE ===== */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--brutal-red);
}

.product-card.featured {
  border: 4px solid var(--brutal-red);
}

.product-badge {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background: var(--brutal-red);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
}

.product-duration {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features li svg {
  color: var(--brutal-red);
  width: 1rem;
  height: 1rem;
}

/* ===== CART PAGE ===== */
.cart-empty {
  text-align: center;
  padding: 5rem 0;
}

.cart-empty-icon {
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.cart-empty-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.cart-item {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-item-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 51, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-icon svg {
  color: var(--brutal-red);
}

.cart-item-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.cart-item-duration {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.cart-item-qty {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #ffffff;
  color: var(--brutal-black);
}

.qty-value {
  font-family: 'IBM Plex Mono', monospace;
  color: #ffffff;
  width: 2rem;
  text-align: center;
}

.cart-item-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: #ffffff;
  min-width: 80px;
  text-align: right;
}

.cart-item-remove {
  color: rgba(255, 255, 255, 0.3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--brutal-red);
}

.cart-summary {
  border: 4px solid #ffffff;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.cart-summary-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cart-summary-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cart-summary-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: #ffffff;
}

.cart-summary-value.free {
  color: var(--brutal-green);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
}

.cart-summary-total-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.cart-summary-total-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brutal-red);
}

.cart-guarantees {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.cart-guarantee svg {
  color: var(--brutal-green);
  width: 1rem;
  height: 1rem;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--brutal-green);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.checkout-security svg {
  color: var(--brutal-green);
}

.checkout-security span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.checkout-section {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkout-section-number {
  width: 2rem;
  height: 2rem;
  background: var(--brutal-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
}

.checkout-field {
  margin-bottom: 1rem;
}

.checkout-field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.checkout-field input,
.checkout-field select {
  width: 100%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
}

.checkout-field input:focus,
.checkout-field select:focus {
  border-color: var(--brutal-red);
  outline: none;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-payment-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-payment-logo {
  height: 2rem;
  object-fit: contain;
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.checkout-terms input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--brutal-red);
  margin-top: 0.125rem;
}

.checkout-terms label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.checkout-terms a {
  color: var(--brutal-red);
  text-decoration: none;
}

.checkout-terms a:hover {
  text-decoration: underline;
}

.checkout-terms strong {
  color: #ffffff;
}

.checkout-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.checkout-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
}

.checkout-badge svg {
  width: 1rem;
  height: 1rem;
}

.checkout-badge svg.shield {
  color: var(--brutal-green);
}

.checkout-badge svg.globe {
  color: var(--brutal-blue);
}

.checkout-badge svg.truck {
  color: #f59e0b;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-summary-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkout-summary-item-qty {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 51, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: var(--brutal-red);
}

.checkout-summary-item-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: #ffffff;
}

.checkout-summary-item-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: #ffffff;
}

.checkout-worldwide {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkout-worldwide svg {
  color: var(--brutal-green);
  width: 1.5rem;
  height: 1.5rem;
}

.checkout-worldwide-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: #ffffff;
}

.checkout-worldwide-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.legal-updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-section p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section ul li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  position: relative;
}

.legal-section ul li::before {
  content: '•';
  color: var(--brutal-red);
  position: absolute;
  left: -1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  color: var(--brutal-red);
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}

.contact-info-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-info-text a {
  color: #ffffff;
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--brutal-red);
}

.contact-form {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
}

.contact-form-field {
  margin-bottom: 1.5rem;
}

.contact-form-field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--brutal-red);
  outline: none;
}

.contact-form-field textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--brutal-black);
}

::-webkit-scrollbar-thumb {
  background: var(--brutal-red);
  border: 2px solid var(--brutal-black);
}

/* ===== GLITCH EFFECT ===== */
@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.glitch-hover:hover {
  animation: glitch 0.2s ease-in-out;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  display: none !important;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4vw;
}

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

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
