/* =========================================
   VARIABLES & GLOBALS
   ========================================= */
:root {
  /* UK Fintech / Clean Palette */
  --clr-navy: #0a2540; /* Deep Trust Blue */
  --clr-accent: #00d4ff; /* Bright Cyan */
  --clr-white: #ffffff;
  --clr-gray: #f6f9fc; /* Stripe-like off-white */
  --clr-text: #425466; /* Slate text */
  --clr-border: #e2e8f0;

  /* Pastel Accents for Cards */
  --clr-light-blue: #e0f2fe;
  --clr-light-pink: #fce7f3;
  --clr-light-green: #dcfce7;
  --clr-light-purple: #f3e8ff;

  --font-head: "DM Serif Display", serif;
  --font-body: "Inter", sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rad-sm: 8px;
  --rad-md: 12px;
  --rad-lg: 20px;

  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(10, 37, 64, 0.1),
    0 4px 6px -2px rgba(10, 37, 64, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(10, 37, 64, 0.1),
    0 10px 10px -5px rgba(10, 37, 64, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.scroll-lock {
  overflow: hidden;
}

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

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

.bg-navy {
  background-color: var(--clr-navy);
}
.bg-gray {
  background-color: var(--clr-gray);
}
.bg-white {
  background-color: var(--clr-white);
}
.bg-light-blue {
  background-color: var(--clr-light-blue);
}
.bg-light-pink {
  background-color: var(--clr-light-pink);
}
.bg-light-green {
  background-color: var(--clr-light-green);
}
.bg-light-purple {
  background-color: var(--clr-light-purple);
}

.text-white {
  color: var(--clr-white) !important;
}
.text-navy {
  color: var(--clr-navy) !important;
}
.text-accent {
  color: var(--clr-accent) !important;
}
.text-light {
  color: #adbdcc;
}
.text-blue {
  color: #0284c7;
}
.text-pink {
  color: #db2777;
}
.text-green {
  color: #16a34a;
}
.text-purple {
  color: #9333ea;
}

.text-center {
  text-align: center;
}
.max-w-700 {
  max-width: 700px;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-300 {
  max-width: 300px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.full-w {
  width: 100%;
}
.w-full {
  width: 100%;
}

.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mt-12 {
  margin-top: 48px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mt-auto {
  margin-top: auto;
}
.p-12 {
  padding: 48px;
}
@media (max-width: 768px) {
  .p-12 {
    padding: 32px 24px;
  }
}

.fw-bold {
  font-weight: 700;
}
.text-sm {
  font-size: 0.9rem;
}
.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.underline:hover {
  color: var(--clr-accent) !important;
}

.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-xl);
}
.border-rad-lg {
  border-radius: var(--rad-lg);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--clr-navy);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--clr-white);
}
.hero-title span {
  color: var(--clr-accent);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
}
h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
}

p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.5;
}
.section-desc {
  font-size: 1.15rem;
  color: var(--clr-text);
  max-width: 600px;
  margin: 0 auto 48px;
}
.accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--clr-accent);
  margin-bottom: 24px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background-color: var(--clr-accent);
  color: var(--clr-navy);
  padding: 14px 32px;
  font-size: 1rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
  background-color: #00bce5;
}
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.2);
  padding: 14px 32px;
  font-size: 1rem;
}
.btn-secondary:hover {
  background-color: var(--clr-white);
  color: var(--clr-navy);
}
.btn-primary-sm {
  background-color: var(--clr-navy);
  color: var(--clr-white);
  padding: 10px 24px;
  font-size: 0.95rem;
}
.btn-primary-sm:hover {
  background-color: var(--clr-accent);
  color: var(--clr-navy);
}

/* =========================================
   HEADER & NAV
   ========================================= */
.uk-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.uk-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}
.header-flex {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.uk-header.scrolled .header-flex {
  height: 70px;
}

.uk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1100;
  position: relative;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--clr-navy);
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.d-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--clr-text);
}
.d-link:hover {
  color: var(--clr-accent);
}

.menu-trigger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  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;
}
.menu-trigger .bar {
  width: 22px;
  height: 2px;
  background-color: var(--clr-navy);
  transition: var(--transition);
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }
  .menu-trigger {
    display: flex;
  }
}

/* Mobile Overlay */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mob-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: var(--clr-white);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .mob-panel {
    width: 100vw;
  }
}

body.scroll-lock .mob-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.scroll-lock .mob-panel {
  transform: translateX(0);
}

.mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--clr-border);
}
@media (max-width: 576px) {
  .mob-header {
    padding: 20px 24px;
  }
}
.close-btn {
  width: 40px;
  height: 40px;
  background: var(--clr-gray);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--clr-navy);
  transition: var(--transition);
}
.close-btn:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
  transform: rotate(90deg);
}

.mob-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  gap: 20px;
  overflow-y: auto;
}
@media (max-width: 576px) {
  .mob-nav {
    padding: 32px 24px;
  }
}
.m-nav-link {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--clr-navy);
  transition: var(--transition);
}
.m-nav-link:hover {
  padding-left: 10px;
  color: var(--clr-accent);
}
.m-nav-link.text-accent {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: underline;
}

.mob-footer {
  padding: 32px;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-gray);
  font-size: 0.95rem;
}
.mob-footer p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mob-footer i {
  color: var(--clr-accent);
  width: 18px;
  height: 18px;
}

/* =========================================
   SECTIONS & LAYOUTS
   ========================================= */
.uk-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .uk-section {
    padding: 80px 0;
  }
}

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

/* =========================================
   HERO (Chat Mockup)
   ========================================= */
.uk-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Subtle background grid pattern */
.uk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.badge-accent {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .hero-cta {
    justify-content: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.trust-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--clr-navy);
  margin-left: -10px;
  object-fit: cover;
}
.trust-avatars img:first-child {
  margin-left: 0;
}
.avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-gray);
  color: var(--clr-navy);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  border: 2px solid var(--clr-navy);
  margin-left: -10px;
  z-index: 4;
}
.trust-text {
  font-size: 0.9rem;
  color: var(--text-light);
}
@media (max-width: 991px) {
  .trust-avatars {
    justify-content: center;
  }
}

/* Chat UI Mockup */
.chat-mockup {
  background: var(--clr-white);
  border-radius: var(--rad-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s;
}
.chat-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
}
@media (max-width: 576px) {
  .chat-mockup {
    height: 450px;
    transform: none;
  }
}

.chat-header {
  background: var(--clr-gray);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--clr-border);
}
.chat-dots {
  display: flex;
  gap: 6px;
}
.chat-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
}
.chat-dots span:nth-child(1) {
  background: #ef4444;
}
.chat-dots span:nth-child(2) {
  background: #f59e0b;
}
.chat-dots span:nth-child(3) {
  background: #10b981;
}
.chat-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-navy);
}

.chat-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fafafa;
}
.msg {
  max-width: 85%;
}
.user-msg {
  align-self: flex-end;
  background: var(--clr-navy);
  color: var(--clr-white);
  padding: 16px;
  border-radius: 16px 16px 0 16px;
  font-size: 0.95rem;
}
.user-msg p {
  margin: 0;
}
.ai-msg {
  align-self: flex-start;
  display: flex;
  gap: 12px;
}
.ai-avatar {
  width: 36px;
  height: 36px;
  background: var(--clr-accent);
  color: var(--clr-navy);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.ai-avatar i {
  width: 20px;
  height: 20px;
}
.ai-bubble {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 16px;
  border-radius: 0 16px 16px 16px;
  font-size: 0.95rem;
  color: var(--clr-text);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.ai-bubble p {
  margin-bottom: 12px;
}
.chat-list {
  padding-left: 20px;
  margin-bottom: 12px;
}
.chat-link {
  color: var(--clr-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chat-input-area {
  padding: 16px 24px;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-white);
  display: flex;
  gap: 12px;
  align-items: center;
}
.fake-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--clr-gray);
  border-radius: 50px;
  color: #94a3b8;
  font-size: 0.95rem;
  border: 1px solid var(--clr-border);
}
.fake-send {
  width: 40px;
  height: 40px;
  background: var(--clr-accent);
  color: var(--clr-navy);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.fake-send i {
  width: 18px;
  height: 18px;
  transform: translateX(-1px);
}

/* =========================================
   USE CASES (Grid)
   ========================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}
.case-card {
  background: var(--clr-white);
  padding: 40px;
  border-radius: var(--rad-lg);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}
.case-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--rad-md);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.case-icon i {
  width: 32px;
  height: 32px;
}

/* Benefits / Training */
.img-wrapper {
  overflow: hidden;
  position: relative;
}
.img-wrapper img {
  width: 100%;
  transition: transform 0.5s ease;
}
.img-wrapper:hover img {
  transform: scale(1.05);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--clr-navy);
}
.benefits-list i {
  flex-shrink: 0;
}

/* Audit */
.audit-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.audit-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--clr-accent);
}
.massive-icon {
  width: 72px;
  height: 72px;
}
@media (max-width: 576px) {
  .audit-banner {
    padding: 48px 24px;
  }
}

/* Privacy */
.privacy-card {
  padding: 40px;
  text-align: center;
  border: 1px solid var(--clr-border);
}
.icon-xl {
  width: 64px;
  height: 64px;
}

/* FAQ */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-md);
  transition: var(--transition);
  background: var(--clr-white);
}
.faq-card.active {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}
.faq-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-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--clr-navy);
}
@media (max-width: 576px) {
  .faq-header {
    padding: 20px 24px;
    font-size: 1.05rem;
  }
}
.faq-header i {
  color: var(--clr-accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  background: var(--clr-gray);
  border-radius: 50%;
  padding: 4px;
}
.faq-card.active .faq-header i {
  transform: rotate(45deg);
  background: var(--clr-accent);
  color: var(--clr-navy);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body p {
  padding: 0 32px 32px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .faq-body p {
    padding: 0 24px 24px;
  }
}

/* Form Section */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  overflow: hidden;
}
@media (max-width: 991px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-info {
  display: flex;
  flex-direction: column;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
}

.form-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-navy);
}
.input-block {
  margin-bottom: 24px;
}
.input-block label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-navy);
}
.input-rel {
  position: relative;
}
.input-rel i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  width: 20px;
  height: 20px;
}
.input-rel input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--clr-gray);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-navy);
  transition: var(--transition);
}
.input-rel input:focus {
  outline: none;
  border-color: var(--clr-accent);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.check-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-block input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--clr-navy);
  cursor: pointer;
  flex-shrink: 0;
}
.check-block label {
  font-size: 0.85rem;
  color: var(--clr-text);
  cursor: pointer;
  line-height: 1.5;
}

/* Footer */
.uk-footer {
  padding: 80px 0 0;
}
.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
@media (max-width: 991px) {
  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .footer-layout {
    grid-template-columns: 1fr;
  }
}

.f-title {
  color: var(--clr-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.f-list li {
  margin-bottom: 12px;
}
.f-list a {
  font-size: 0.95rem;
  color: var(--text-light);
}
.f-list a:hover {
  color: var(--clr-accent);
  padding-left: 4px;
}
.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.f-contact-item i {
  flex-shrink: 0;
}
.border-t-light {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Modal */
.cookie-banner {
  position: fixed;
  bottom: 32px;
  left: 32px;
  max-width: 450px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-accent);
  padding: 24px;
  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-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-flex {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cookie-icon i {
  width: 32px;
  height: 32px;
}


.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(--ink);
  margin-bottom: 40px;
  margin-top: 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(--ink);
}

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

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

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

  .cp-phone-link {
    font-size: 2rem;
  }
}
