:root {
  /* Colors */
  --clr-bg-light: #f8fafc;
  --clr-bg-white: #ffffff;
  --clr-bg-dark: #0f172a;
  --clr-bg-darker: #020617;

  --clr-primary: #312e81; /* Deep Indigo */
  --clr-accent-teal: #14b8a6; /* Neon Teal */
  --clr-accent-teal-hover: #0d9488;
  --clr-accent-rose: #f43f5e; /* Bright Pink */

  --clr-text-main: #334155;
  --clr-text-muted: #64748b;
  --clr-text-light: #f1f5f9;
  --clr-border: #e2e8f0;
  --clr-border-dark: #1e293b;

  /* Typography */
  --font-sans: "Outfit", sans-serif;
  --font-mono: "Fira Code", monospace;

  /* Spacing & Utilities */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-md: 12px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background-color: var(--clr-bg-light);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
body.scroll-lock {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul.clean-list,
ul.icon-list {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.bg-light {
  background-color: var(--clr-bg-light);
}
.bg-dark {
  background-color: var(--clr-bg-dark);
}
.bg-accent {
  background-color: var(--clr-primary);
}
.text-white {
  color: var(--clr-text-light);
}
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.w-full,
.full-w {
  width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
.body-text {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--clr-text-muted);
}
.text-white .body-text {
  color: #cbd5e1;
}
.max-w-700 {
  max-width: 700px;
}

/* Buttons & Links */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  background: transparent;
  color: var(--clr-accent-teal);
  border: 2px solid var(--clr-accent-teal);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-neon i {
  width: 20px;
  height: 20px;
}
.btn-neon:hover {
  background: var(--clr-accent-teal);
  color: var(--clr-bg-dark);
  box-shadow: 0 0 25px rgba(20, 184, 166, 0.5);
  transform: translateY(-2px);
}

.btn-solid-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--clr-accent-teal);
  color: var(--clr-bg-white);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-solid-teal i {
  width: 20px;
  height: 20px;
}
.btn-solid-teal:hover {
  background: var(--clr-accent-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

.styled-link {
  color: var(--clr-accent-teal);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.styled-link:hover {
  color: var(--clr-accent-rose);
}

/* Layouts */
.ds-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .ds-section {
    padding: 80px 0;
  }
}

.flex-split-layout {
  display: flex;
  gap: 64px;
}
.flex-split-layout > div {
  flex: 1;
  min-width: 0;
}
.align-v-center {
  align-items: center;
}
.reverse-flex {
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .flex-split-layout,
  .flex-split-layout.reverse-flex {
    flex-direction: column;
    gap: 48px;
  }
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.section-header-centered p {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
}
.text-white .section-header-centered p {
  color: #94a3b8;
}

.section-heading {
  color: inherit;
}
.heading-underline {
  width: 60px;
  height: 4px;
  background: var(--clr-accent-teal);
  margin-bottom: 24px;
  border-radius: 2px;
}
.center-underline {
  margin: 0 auto 24px;
}

.rounded-heavy {
  border-radius: var(--radius-lg);
}
.shadow-heavy {
  box-shadow: var(--shadow-lg);
}

/* Header & Global Menu */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition-smooth);
}
.app-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1100;
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.5px;
}

.menu-btn {
  width: 44px;
  height: 44px;
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  transition: var(--transition-fast);
}
.menu-btn:hover {
  border-color: var(--clr-accent-teal);
}
.menu-btn-line {
  width: 22px;
  height: 2px;
  background: var(--clr-primary);
  transition: var(--transition-fast);
}

/* Burger Menu Overlay & Panel */
.global-menu-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.menu-panel {
  position: relative;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background: var(--clr-bg-darker);
  border-left: 1px solid var(--clr-border-dark);
  z-index: 2;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .menu-panel {
    width: 100vw;
    border-left: none;
  }
}

body.scroll-lock .global-menu-wrapper {
  pointer-events: auto;
}
body.scroll-lock .menu-backdrop {
  opacity: 1;
}
body.scroll-lock .menu-panel {
  transform: translateX(0);
}

.menu-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid var(--clr-border-dark);
}
@media (max-width: 768px) {
  .menu-panel-header {
    padding: 20px 24px;
  }
}

.menu-title {
  color: var(--clr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.close-menu-btn {
  background: transparent;
  border: 1px solid var(--clr-border-dark);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--clr-text-light);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}
.close-menu-btn:hover {
  border-color: var(--clr-accent-rose);
  color: var(--clr-accent-rose);
  transform: rotate(90deg);
}

.menu-nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .menu-nav-list {
    padding: 24px;
  }
}

.menu-link {
  font-size: 1.8rem;
  font-weight: 800;
  color: #94a3b8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}
.menu-link:hover {
  color: var(--clr-text-light);
  padding-left: 16px;
  border-bottom-color: var(--clr-accent-teal);
}
.highlight-menu-link {
  color: var(--clr-accent-teal) !important;
  margin-top: 16px;
  border-bottom: none;
  font-size: 1.5rem;
}

.menu-panel-footer {
  padding: 32px 40px;
  border-top: 1px solid var(--clr-border-dark);
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .menu-panel-footer {
    padding: 24px;
  }
}

/* Hero */
.hero-complex {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--clr-bg-darker);
}
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.95) 0%,
    rgba(49, 46, 129, 0.8) 100%
  );
}

.hero-grid-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
}

.hero-text-module {
  color: var(--clr-text-light);
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--clr-accent-teal);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.hero-main-title {
  color: var(--clr-text-light);
  margin-bottom: 24px;
}
.hero-description {
  color: #94a3b8;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.hero-action-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual-module {
  position: relative;
  display: flex;
  justify-content: center;
}
.glass-board {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.glass-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background: #f43f5e;
}
.dot.yellow {
  background: #fbbf24;
}
.dot.green {
  background: #10b981;
}

.glass-body code {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.8;
  display: block;
}
.syntax-keyword {
  color: #c678dd;
}
.syntax-var {
  color: #e06c75;
}
.syntax-class {
  color: #e5c07b;
}
.syntax-string {
  color: #98c379;
}
.syntax-func {
  color: #61afef;
}

.floating-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-bg-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  animation: float 6s ease-in-out infinite;
}
.floating-stat i {
  color: var(--clr-accent-teal);
  width: 32px;
  height: 32px;
}
.floating-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--clr-bg-darker);
  line-height: 1.2;
}
.floating-stat span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
@media (max-width: 576px) {
  .floating-stat {
    display: none;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* About / Concept */
.image-composition {
  position: relative;
  padding: 20px;
}
.image-composition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 40px;
  border: 2px solid var(--clr-accent-teal);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.main-comp-img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.comp-accent-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: 24px;
  border-radius: var(--radius-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.comp-accent-box i {
  color: var(--clr-accent-rose);
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .image-composition::before {
    display: none;
  }
  .image-composition {
    padding: 0;
  }
  .comp-accent-box {
    bottom: -20px;
    right: 20px;
    padding: 16px;
  }
}

/* Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.program-card {
  background: var(--clr-bg-darker);
  border: 1px solid var(--clr-border-dark);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}
.program-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-accent-teal);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
}
.program-icon {
  width: 64px;
  height: 64px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--clr-accent-teal);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.program-icon i {
  width: 32px;
  height: 32px;
}
.program-title {
  color: var(--clr-text-light);
  margin-bottom: 16px;
}
.program-desc {
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Monetization */
.monetization-banner {
  background: var(--clr-bg-darker);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  border: 1px solid var(--clr-border-dark);
  box-shadow: var(--shadow-lg);
}
.monetization-content {
  flex: 1.5;
  padding: 64px;
}
.monetization-graphic {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.2) 0%,
    transparent 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--clr-border-dark);
}
.huge-graphic-icon {
  width: 120px;
  height: 120px;
  color: var(--clr-accent-teal);
  opacity: 0.8;
}
@media (max-width: 991px) {
  .monetization-banner {
    flex-direction: column;
  }
  .monetization-content {
    padding: 40px 24px;
  }
  .monetization-graphic {
    padding: 40px;
    border-left: none;
    border-top: 1px solid var(--clr-border-dark);
  }
}

/* Europe */
.europe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .europe-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Audit */
.audit-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--clr-bg-darker);
  border: 1px solid var(--clr-border-dark);
  padding: 80px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.audit-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--clr-accent-teal),
    var(--clr-accent-rose)
  );
}
.audit-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(244, 63, 94, 0.1);
  color: var(--clr-accent-rose);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 32px;
}
.audit-icon-box i {
  width: 40px;
  height: 40px;
}
.action-btn-centered {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .audit-wrapper {
    padding: 48px 24px;
  }
}

/* Registration / Form */
.contact-snippets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--clr-text-main);
  font-weight: 500;
}
.snippet i {
  color: var(--clr-accent-teal);
  flex-shrink: 0;
}

.form-container {
  background: var(--clr-bg-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}
@media (max-width: 576px) {
  .form-container {
    padding: 32px 24px;
  }
}

.form-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.8rem;
  color: var(--clr-bg-darker);
}
.input-field-group {
  margin-bottom: 24px;
}
.input-field-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text-main);
}
.accent-label {
  color: var(--clr-accent-teal) !important;
}

.input-with-icon {
  position: relative;
}
.input-with-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  width: 20px;
  height: 20px;
}
.input-with-icon input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--clr-text-main);
  transition: var(--transition-fast);
}
.input-with-icon input:focus {
  outline: none;
  border-color: var(--clr-accent-teal);
  background: var(--clr-bg-white);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

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

/* FAQ */
.accordion-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-item {
  background: var(--clr-bg-darker);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}
.accordion-item.active {
  border-color: var(--clr-accent-teal);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--clr-text-light);
}
@media (max-width: 576px) {
  .accordion-trigger {
    padding: 20px 24px;
  }
}
.acc-title {
  font-weight: 600;
  font-size: 1.1rem;
  padding-right: 20px;
}
.acc-icon {
  color: var(--clr-accent-teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.active .acc-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-content p {
  padding: 0 32px 24px;
  color: #94a3b8;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .accordion-content p {
    padding: 0 24px 20px;
  }
}

/* Footer */
.app-footer {
  background: var(--clr-bg-darker);
  padding: 80px 0 24px;
  border-top: 1px solid var(--clr-border-dark);
  color: #94a3b8;
}
.footer-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .footer-layout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .footer-layout-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-segment .brand-name {
  color: var(--clr-text-light);
}
.footer-bio {
  margin-top: 20px;
  font-size: 0.95rem;
  max-width: 350px;
}
.segment-heading {
  color: var(--clr-text-light);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.clean-list li {
  margin-bottom: 12px;
}
.clean-list a {
  font-size: 0.95rem;
}
.clean-list a:hover {
  color: var(--clr-accent-teal);
  padding-left: 4px;
}
.highlight-contact-link {
  color: var(--clr-accent-teal) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
  margin-top: 8px;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.icon-list i {
  color: var(--clr-accent-rose);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.footer-copyright-bar {
  border-top: 1px solid var(--clr-border-dark);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie */
.cookie-consent-modal {
  position: fixed;
  bottom: 32px;
  left: 32px;
  max-width: 420px;
  background: var(--clr-bg-white);
  border: 1px solid var(--clr-border);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .cookie-consent-modal {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
.cookie-consent-modal.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-modal-inner {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cookie-icon-wrapper i {
  color: var(--clr-accent-teal);
  width: 32px;
  height: 32px;
}
.cookie-title {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--clr-bg-darker);
}
.cookie-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}
.cookie-action-wrapper {
  display: flex;
  justify-content: flex-end;
}
#accept-cookie-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 22px;
    margin-top: 25px;
  }
  .margin {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pages {
    padding: 90px 0 50px;
  }
  .pages h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .text-wrapper {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .text-wrapper h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .text-wrapper h3 {
    font-size: 16px;
  }
  .text-wrapper p {
    font-size: 13px;
    line-height: 1.6;
  }
  .margin {
    font-size: 24px;
    margin: 80px 0 30px;
  }
  .split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .pages {
    padding: 80px 0 40px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .text-wrapper {
    padding: 15px 10px;
  }
  .text-wrapper h2 {
    font-size: 16px;
    margin-top: 15px;
  }
  .text-wrapper h3 {
    font-size: 14px;
  }
  .text-wrapper p {
    font-size: 12px;
  }
  .margin {
    font-size: 20px;
    margin: 60px 0 20px;
  }
}

/* --- 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: 768px) {
  .contact-page-main {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .cp-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .cp-phone-link {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 120px;
    text-align: center;
  }

  .cp-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cp-divider {
    margin: 0 auto 30px auto;
  }

  .cp-status {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 40px;
  }

  .cp-phone-link {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cp-details {
    gap: 8px;
  }

  .cp-label {
    font-size: 12px;
  }

  .cp-address-box {
    padding-top: 20px;
    max-width: 100%;
  }

  .cp-addr {
    font-size: 16px;
  }

  .cp-email {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-page-main {
    padding-top: 100px;
    min-height: 70vh;
  }

  .cp-title {
    font-size: 22px;
  }

  .cp-divider {
    width: 50px;
  }

  .cp-status {
    font-size: 12px;
  }

  .cp-phone-link {
    font-size: 20px;
  }

  .cp-addr {
    font-size: 14px;
  }

  .cp-email {
    font-size: 12px;
  }
}
