/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
  /* Cyber/Tech Italian Palette */
  --clr-bg: #0a0a0a; /* Ultra Dark Gray */
  --clr-bg-alt: #121212; /* Slightly lighter for sections */
  --clr-cyan: #00f0ff; /* Cyber Cyan */
  --clr-purple: #d000ff; /* Deep Magenta/Purple */
  --clr-white: #ffffff;
  --clr-text: #a0aec0; /* Cool Gray text */
  --clr-border: rgba(255, 255, 255, 0.1);

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rad-sm: 8px;
  --rad-md: 16px;
  --rad-lg: 24px;
}

/* Crucial reset to prevent horizontal scroll bug */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.7;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body.lock-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.bg-dark {
  background-color: var(--clr-bg);
}
.bg-darker {
  background-color: var(--clr-bg-alt);
}

.text-white {
  color: var(--clr-white) !important;
}
.text-cyan {
  color: var(--clr-cyan) !important;
}
.text-purple {
  color: var(--clr-purple) !important;
}
.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-800 {
  max-width: 800px;
}

.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--rad-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.neon-border {
  position: relative;
}
.neon-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(45deg, var(--clr-cyan), var(--clr-purple));
  border-radius: inherit;
  filter: blur(10px);
  opacity: 0.5;
  transition: var(--transition);
}
.neon-border:hover::before {
  opacity: 0.8;
  filter: blur(15px);
}

/* Pattern */
.pattern-bg {
  position: relative;
}
.pattern-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    rgba(0, 240, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}
.pattern-bg > * {
  position: relative;
  z-index: 1;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--clr-white);
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-weight: 800;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -1px;
}
.hero-title span {
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 1.2rem;
  color: var(--clr-cyan);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: -16px;
  margin-bottom: 48px;
}

p {
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  font-weight: 400;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--clr-text);
  max-width: 650px;
}
.text-large {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-purple));
  margin-bottom: 24px;
  border-radius: 2px;
}
.heading-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.heading-centered .accent-line {
  margin: 0 auto 24px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-gradient,
.btn-gradient-sm,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-white);
}
.btn-gradient {
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-purple));
  padding: 16px 36px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(208, 0, 255, 0.4);
  filter: brightness(1.1);
}

.btn-gradient-sm {
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-purple));
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn-gradient-sm:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(208, 0, 255, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-cyan);
  color: var(--clr-cyan);
  padding: 14px 34px;
  font-size: 1rem;
}
.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2);
}

.form-link {
  color: var(--clr-cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.form-link:hover {
  color: var(--clr-purple);
}

/* =========================================
   HEADER & NAV
   ========================================= */
.ai-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.ai-header.scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-wrap {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.ai-header.scrolled .header-wrap {
  height: 70px;
}

.ai-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1100;
  position: relative;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--clr-cyan);
}

.burger-menu {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--clr-white);
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
}

/* Mobile Fullscreen Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}
body.lock-scroll .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.mob-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--clr-border);
}
@media (max-width: 576px) {
  .mob-top {
    padding: 20px 24px;
  }
}
.close-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--clr-white);
  transition: var(--transition);
}
.close-btn:hover {
  background: var(--clr-purple);
  border-color: var(--clr-purple);
  transform: rotate(90deg);
}

.mob-nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
  overflow-y: auto;
}
.m-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-text);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
.m-link:hover {
  color: var(--clr-cyan);
  transform: scale(1.05);
}
.highlight-text {
  color: var(--clr-cyan);
  font-size: 1.5rem;
  text-decoration: underline;
  margin-top: 24px;
}

.mob-bottom {
  padding: 32px;
  border-top: 1px solid var(--clr-border);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.mob-bottom p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mob-bottom i {
  color: var(--clr-purple);
  width: 18px;
  height: 18px;
}

/* =========================================
   SECTIONS & LAYOUTS
   ========================================= */
.content-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .content-section {
    padding: 80px 0;
  }
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.align-center {
  align-items: center;
}
.reverse-mob .text-box {
  order: 2;
}
.reverse-mob .image-box {
  order: 1;
}
@media (max-width: 991px) {
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .reverse-mob .text-box {
    order: 1;
  }
  .reverse-mob .image-box {
    order: 2;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--clr-purple);
  top: 10%;
  left: -100px;
  animation: float 10s ease-in-out infinite;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--clr-cyan);
  bottom: -100px;
  right: -100px;
  animation: float 15s ease-in-out infinite reverse;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-50px) translateX(50px);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
}

.badge-tech {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--clr-cyan);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.main-glass {
  padding: 0;
  overflow: hidden;
  border-radius: var(--rad-md);
  border: 1px solid var(--clr-border);
  background: rgba(10, 10, 10, 0.6);
}
.code-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--clr-border);
}
.dots {
  display: flex;
  gap: 8px;
}
.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #333;
}
.dots span:nth-child(1) {
  background: #ff5f56;
}
.dots span:nth-child(2) {
  background: #ffbd2e;
}
.dots span:nth-child(3) {
  background: #27c93f;
}
.file-name {
  font-family: monospace;
  color: var(--clr-text);
  font-size: 0.9rem;
}
.code-body {
  padding: 24px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.95rem;
  color: #e6e6e6;
  line-height: 1.8;
  overflow-x: auto;
}
.code-body .keyword {
  color: var(--clr-purple);
  font-weight: bold;
}
.code-body b {
  color: var(--clr-cyan);
}
.code-body i {
  color: var(--clr-text);
}

/* =========================================
   EVOLUTION & DEPLOY (Images)
   ========================================= */
.img-wrapper {
  border-radius: var(--rad-lg);
  overflow: hidden;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
  transition: var(--transition);
}
.img-wrapper:hover img {
  transform: scale(1.05);
  filter: contrast(1.2) brightness(1);
}

/* =========================================
   ARCHITECTURE (Bento Grid)
   ========================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}
.bento-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--clr-border);
  padding: 48px;
  border-radius: var(--rad-lg);
  transition: var(--transition);
}
.bento-card:hover {
  border-color: var(--clr-cyan);
  transform: translateY(-5px);
  background: rgba(0, 240, 255, 0.02);
}
.bento-card.wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .bento-card.wide {
    grid-column: span 1;
  }
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: var(--rad-md);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.card-icon i {
  width: 32px;
  height: 32px;
  color: var(--clr-cyan);
}
.bento-card h3 {
  font-size: 1.8rem;
}

/* =========================================
   MONETIZATION (Stat Card)
   ========================================= */
.glass-stat-card {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-lg);
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.giant-icon {
  width: 80px;
  height: 80px;
  color: var(--clr-purple);
  margin-bottom: 24px;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-desc {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text);
  font-size: 0.9rem;
}

/* =========================================
   EU COMPLIANCE
   ========================================= */
.eu-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 991px) {
  .eu-banner {
    grid-template-columns: 1fr;
  }
}
.eu-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 576px) {
  .eu-content {
    padding: 32px 24px;
  }
}
.eu-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  filter: grayscale(50%) sepia(20%) hue-rotate(200deg);
}

/* =========================================
   AUDIT
   ========================================= */
.massive-icon {
  width: 80px;
  height: 80px;
}

/* =========================================
   FAQ
   ========================================= */
.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.acc-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-md);
  transition: var(--transition);
}
.acc-item.active {
  border-color: var(--clr-purple);
  background: rgba(208, 0, 255, 0.05);
}
.acc-header {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--clr-white);
}
@media (max-width: 576px) {
  .acc-header {
    padding: 20px 24px;
    font-size: 1.05rem;
  }
}
.acc-header i {
  color: var(--clr-cyan);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.acc-item.active .acc-header i {
  transform: rotate(45deg);
  color: var(--clr-purple);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-body p {
  padding: 0 32px 32px;
  margin-bottom: 0;
  color: var(--clr-text);
}
@media (max-width: 576px) {
  .acc-body p {
    padding: 0 24px 24px;
  }
}

/* =========================================
   FORM SECTION
   ========================================= */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--clr-cyan);
}
@media (max-width: 991px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }
}

.form-info {
  padding: 64px;
  background: rgba(0, 240, 255, 0.05);
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .form-info {
    padding: 40px 24px;
  }
}
.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bullet {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--clr-white);
}
.bullet i {
  color: var(--clr-purple);
  flex-shrink: 0;
}

.form-container {
  padding: 64px;
  background: rgba(10, 10, 10, 0.8);
}
@media (max-width: 576px) {
  .form-container {
    padding: 40px 24px;
  }
}
.form-heading {
  font-size: 2rem;
  color: var(--clr-white);
}

.form-field {
  margin-bottom: 24px;
}
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.input-box {
  position: relative;
}
.input-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text);
  width: 20px;
  height: 20px;
}
.input-box input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-white);
  transition: var(--transition);
}
.input-box input:focus {
  outline: none;
  border-color: var(--clr-cyan);
  background: rgba(0, 240, 255, 0.05);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-field input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  accent-color: var(--clr-purple);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-field label {
  font-size: 0.85rem;
  color: var(--clr-text);
  cursor: pointer;
  line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */
.ai-footer {
  padding: 80px 0 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.f-brand-col {
  max-width: 350px;
}
.f-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.f-title {
  color: var(--clr-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.f-list li {
  margin-bottom: 12px;
}
.f-list a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.f-list a:hover {
  color: var(--clr-cyan);
  padding-left: 5px;
}
.f-highlight {
  color: var(--clr-purple) !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.f-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.f-contact-row i {
  flex-shrink: 0;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 32px;
  left: 32px;
  max-width: 420px;
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  border-left: 4px solid var(--clr-purple);
}
@media (max-width: 576px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cookie-icon i {
  width: 32px;
  height: 32px;
}
.cookie-text-block h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-text-block p {
  font-size: 0.85rem;
  color: var(--clr-text);
  margin-bottom: 0;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 18px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    margin: 80px 0 30px;
    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;
  }
}
