:root {
  /* ========================================= */
  /* DESIGN TOKENS (CSS Variables based on UI) */
  /* ========================================= */

  /* Absolute Colors */
  --clr-white: #FFFFFF;
  --clr-black: #000000;

  /* ========================================================================= */
  /* PALETTE 1: Original (Neon Green / Deep Grey) */
  /* ========================================================================= *//*
  --clr-green-50: #EEFF00; 
  --clr-green-60: #D8F200;
  --clr-green-70: #C2D900;
  --clr-green-80: #ACC000;
  --clr-green-90: #96A600;

  --clr-grey-10: #1a1a1a; 
  --clr-grey-15: #262626; 
  --clr-grey-20: #333333; 
  --clr-grey-30: #4D4D4D;  
  --clr-grey-35: #595959;
  --clr-grey-40: #666666;
  --clr-grey-60: #999999;  
  --clr-grey-80: #CCCCCC;   */

  /* ========================================================================= */
  /* PALETTE 2: Cyber Blue (Electric Blue / Midnight Dark) */
  /* RECOMMENDED: Uncomment below and comment out Palette 1 */
  /* ========================================================================= */
  /*
  --clr-green-50: #00E5FF; 
  --clr-green-60: #00C8FF;
  --clr-green-70: #00AFFF;
  --clr-green-80: #0096FF;
  --clr-green-90: #007DFF;

  --clr-grey-10: #090B10;  
  --clr-grey-15: #11141D;  
  --clr-grey-20: #1C2130;  
  --clr-grey-30: #2C354A;  
  --clr-grey-35: #344059;
  --clr-grey-40: #3E4D6A;
  --clr-grey-60: #64748B;  
  --clr-grey-80: #94A3B8;  
  */

  /* ========================================================================= */
  /* PALETTE 3: Sunset Glow (Vibrant Orange / Warm Charcoal) */
  /* RECOMMENDED: Uncomment below and comment out Palette 1 */
  /* ========================================================================= */
  
  --clr-green-50: #FF6B35; 
  --clr-green-60: #F45D25;
  --clr-green-70: #E24F1A;
  --clr-green-80: #D04212;
  --clr-green-90: #BE360A;

  --clr-grey-10: #1c1917;  
  --clr-grey-15: #292524;  
  --clr-grey-20: #44403c;  
  --clr-grey-30: #57534e;  
  --clr-grey-35: #635f5a;
  --clr-grey-40: #78716c;
  --clr-grey-60: #a8a29e;  
  --clr-grey-80: #d6d3d1;  
 

  /* Typography - Font Family */
  --font-primary: 'Barlow', system-ui, -apple-system, sans-serif;

  /* Typography - Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Typography - Scales (Using REM for scalability) */
  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg: 1.125rem;    /* 18px */
  --fs-xl: 1.25rem;     /* 20px */
  --fs-2xl: 1.5rem;     /* 24px */
  --fs-3xl: 2rem;       /* 32px */
  --fs-4xl: 2.5rem;     /* 40px */
  --fs-5xl: 3rem;       /* 48px */
  --fs-6xl: 3.75rem;    /* 60px */

  /* Spacing Scale (Using REM) */
  --sp-1: 0.25rem;   /* 4px  */
  --sp-2: 0.5rem;    /* 8px  */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.25rem;   /* 20px */
  --sp-6: 1.5rem;    /* 24px */
  --sp-8: 2rem;      /* 32px */
  --sp-10: 2.5rem;   /* 40px */
  --sp-12: 3rem;     /* 48px */
  --sp-16: 4rem;     /* 64px */
  --sp-20: 5rem;     /* 80px */
  --sp-24: 6rem;     /* 96px */
  --sp-32: 8rem;     /* 128px*/

  /* Container */
  --container-max-width: 1200px;
  --container-padding-x: var(--sp-4);

  /* Border Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-oval: 9999px;

  /* Utilities */
  --ts-fast: 0.15s ease-in-out;
  --ts-normal: 0.3s ease-in-out;

  /* Ultra-wide screen scaling (1800px+) */
  @media (min-width: 1800px) {
    --fs-xs: 0.85rem; 
    --fs-sm: 1rem;
    --fs-base: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.5rem;
    --fs-5xl: 4.5rem;
    --fs-6xl: 5.5rem;

    --sp-2: 0.6rem;
    --sp-4: 1.25rem;
    --sp-6: 2rem;
    --sp-8: 2.75rem;
    --sp-12: 4rem;
    --sp-20: 6.5rem;
    
    --container-max-width: 1600px;
  }

  /* Ultra-wide screen scaling (2400px+) */
  @media (min-width: 2400px) {
    --fs-xs: 1rem; 
    --fs-sm: 1.25rem;
    --fs-base: 1.375rem;
    --fs-lg: 1.5rem;
    --fs-xl: 1.875rem;
    --fs-2xl: 2.25rem;
    --fs-3xl: 3.5rem;
    --fs-4xl: 4.5rem;
    --fs-5xl: 6rem;
    --fs-6xl: 7.5rem;

    --sp-2: 0.75rem;
    --sp-4: 1.5rem;
    --sp-6: 2.5rem;
    --sp-8: 3.5rem;
    --sp-12: 5rem;
    --sp-20: 8rem;

    --container-max-width: 2200px;
  }
}

/* ========================================= */
/* BASE STYLES & TYPOGRAPHY                  */
/* ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  font-size: 16px; 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--clr-grey-10);
  color: var(--clr-white);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding: 0 var(--sp-4);
}

@media (min-width: 768px) {
  body {
    padding: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

h1 { font-size: var(--fs-4xl); font-weight: var(--fw-bold); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-3xl); font-weight: var(--fw-bold); letter-spacing: -0.01em; }
h3 { font-size: var(--fs-xl); font-weight: var(--fw-semibold); }
h4 { font-size: var(--fs-lg); font-weight: var(--fw-semibold); }

@media (min-width: 768px) {
  h1 { font-size: var(--fs-5xl); }
  h2 { font-size: var(--fs-4xl); }
  h3 { font-size: var(--fs-2xl); }
  h4 { font-size: var(--fs-xl); }
}

p {
  color: var(--clr-grey-60);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ts-fast);
}

a:hover {
  color: var(--clr-green-50);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================= */
/* COMPONENT UTILITIES                       */
/* ========================================= */
/* Base Container */
.container-custom {
  width: 100%;
  max-width: var(--container-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
@media (min-width: 768px) {
    .container-custom { padding: 0 var(--sp-12); }
}

/* Text Enhancements */
.text-green { color: var(--clr-green-50); }
.text-white { color: var(--clr-white); }
.text-center { text-align: center; }

/* Margins */
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }
.mb-16 { margin-bottom: var(--sp-16); }
.mt-4 { margin-top: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mt-16 { margin-top: var(--sp-16); }

.w-100 { width: 100%; }
.pt-0 { padding-top: 0 !important; }

/* Layout Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.grid-2 > * { min-width: 0; }

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.grid-3 > * { min-width: 0; }

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.grid-4 > * { min-width: 0; }

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

/* Base Sections */
.section-padding {
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-12);
}
@media (min-width: 768px) {
  .section-padding { 
    padding-top: var(--sp-24);
    padding-bottom: var(--sp-24);
  }
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-12) auto;
}
@media (min-width: 768px) {
    .section-title-wrap { margin: 0 auto var(--sp-16) auto; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--ts-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--clr-green-50);
  color: var(--clr-white);
}
.btn-primary:hover {
  background-color: var(--clr-green-60);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--clr-grey-15);
  color: var(--clr-white);
  border: 1px solid var(--clr-grey-20);
}
.btn-dark:hover {
  background-color: var(--clr-grey-20);
  border-color: var(--clr-green-50);
}

/* Responsive display classes */
.desktop-only { display: none !important; }
.mobile-only { display: block; }
@media (min-width: 768px) {
    /* Standard utility for blocks, footers, etc. */
    .desktop-only { display: inline-flex !important; }
    .mobile-only { display: none !important; }
}

/* Override desktop-only back to hidden for navbar specifically between 768px and our new breakpoints */
@media (max-width: 929px) {
    .nav-no-prices .desktop-only { display: none !important; }
}
@media (max-width: 989px) {
    .nav-has-prices .desktop-only { display: none !important; }
}

/* Navbar specific desktop-only restoration */
@media (min-width: 930px) {
    .nav-no-prices .desktop-only { display: inline-flex !important; }
}
@media (min-width: 990px) {
    .nav-has-prices .desktop-only { display: inline-flex !important; }
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--clr-grey-20);
  position: relative;
}
@media (min-width: 930px) {
    .nav-no-prices .navbar { padding: var(--sp-6) 0; }
}
@media (min-width: 990px) {
    .nav-has-prices .navbar { padding: var(--sp-6) 0; }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
}
.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--clr-green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-grey-10);
  font-size: var(--fs-lg);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--clr-grey-10);
  padding: var(--sp-4);
  border-bottom: 1px solid var(--clr-grey-20);
  z-index: 50;

  /* Animation properties */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--ts-normal), transform var(--ts-normal), visibility var(--ts-normal);
  pointer-events: none;
}
.nav-links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Desktop styles for short menu */
@media (min-width: 930px) {
  .nav-no-prices .nav-links { 
      display: flex; 
      flex-direction: row; 
      position: static; 
      width: auto; 
      background: transparent; 
      padding: 0; 
      border: none;
      gap: var(--sp-8);
      opacity: 1;
      visibility: visible;
      transform: none;
      pointer-events: auto;
      transition: none;
  }
}

/* Desktop styles for long menu or any menu above 990px */
@media (min-width: 990px) {
  .nav-links { 
      display: flex; 
      flex-direction: row; 
      position: static; 
      width: auto; 
      background: transparent; 
      padding: 0; 
      border: none;
      gap: var(--sp-8);
      opacity: 1;
      visibility: visible;
      transform: none;
      pointer-events: auto;
      transition: none;
  }
}
.nav-links li a {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-grey-60);
  display: block;
}
@media (min-width: 768px) {
   .nav-links li a { font-size: var(--fs-sm); }
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--clr-white);
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: var(--fs-3xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: var(--sp-1);
}
@media (min-width: 930px) {
    .nav-no-prices .mobile-menu-toggle { display: none; }
}
@media (min-width: 990px) {
    .mobile-menu-toggle { display: none; }
}

/* Cards */
.custom-card {
  background-color: var(--clr-grey-15);
  border: 1px solid var(--clr-grey-20);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: transform var(--ts-normal), border-color var(--ts-normal);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
    .custom-card { padding: var(--sp-8); }
}

.custom-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-green-50);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--clr-grey-20);
  border-radius: var(--radius-md);
  color: var(--clr-green-50);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-4);
}
@media (min-width: 768px) {
   .card-icon { margin-bottom: var(--sp-6); }
}

.card-title {
  font-size: var(--fs-xl);
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
  font-weight: var(--fw-semibold);
}

/* Service Detail Cards (from services page) */
.service-box {
  background-color: transparent;
  border: 1px solid var(--clr-grey-20);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: all var(--ts-normal);
  display: flex;
  flex-direction: column;
}
.service-box:hover {
  background-color: var(--clr-grey-15);
  border-color: var(--clr-green-50);
}
.service-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--clr-green-50);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-4);
  background-color: transparent;
  border: 1px solid var(--clr-grey-20);
  border-radius: var(--radius-sm);
  transition: all var(--ts-normal);
}
.service-box:hover .service-box-icon {
  background-color: var(--clr-grey-20);
  border-color: transparent;
}
.service-box-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  line-height: 1.4;
}

/* Section Header Left Aligned */
.section-header-left {
  text-align: left;
  border-bottom: 1px solid var(--clr-grey-20);
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.section-header-left h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}
.section-header-left p {
  max-width: 800px;
}
@media (min-width: 768px) {
   .section-header-left { margin-bottom: var(--sp-12); }
   .section-header-left h2 { font-size: var(--fs-4xl); }
}

/* Category Title */
.category-title {
  font-size: var(--fs-lg);
  color: var(--clr-grey-60);
  margin-bottom: var(--sp-6);
  font-weight: var(--fw-medium);
}


/* Hero Background Decoration */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  padding: var(--sp-12) 0;
  text-align: center;
}
@media (min-width: 768px) {
   .hero-wrapper { padding: var(--sp-20) 0; }
}
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(238,255,0,0.1) 0%, rgba(26,26,26,0) 70%);
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 768px) {
    .hero-wrapper::before {
        top: -100px;
        width: 80%;
        height: 400px;
        background: radial-gradient(ellipse at center, rgba(238,255,0,0.08) 0%, rgba(26,26,26,0) 70%);
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    justify-content: center;
}
@media (min-width: 480px) {
    .hero-buttons { flex-direction: row; }
}

/* Sponsors / Logoside */
.brand-ticker {
  border-top: 1px solid var(--clr-grey-20);
  border-bottom: 1px solid var(--clr-grey-20);
  padding: var(--sp-6) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-6);
  opacity: 0.6;
}
@media (min-width: 768px) {
   .brand-ticker { gap: var(--sp-12); }
}
.brand-ticker span {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--clr-white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
@media (min-width: 768px) {
   .brand-ticker span { font-size: var(--fs-xl); }
}

/* FAQ Accordion */
.faq-box {
  background-color: var(--clr-grey-15);
  border: 1px solid var(--clr-grey-20);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-4);
  padding: var(--sp-4);
  cursor: pointer;
  transition: all var(--ts-normal);
}
@media (min-width: 768px) {
   .faq-box { padding: var(--sp-6); }
}
.faq-box.active {
  border-color: var(--clr-green-50);
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-header h4 {
  margin: 0;
  padding-right: var(--sp-4);
  font-size: var(--fs-base);
}
@media (min-width: 768px) {
   .faq-header h4 { font-size: var(--fs-lg); }
}
.faq-icon {
  color: var(--clr-green-50);
  font-size: var(--fs-xl);
  transition: transform var(--ts-normal);
  flex-shrink: 0;
}
.faq-box.active .faq-icon {
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  margin-top: 0; /* Managed by content padding for smoothness */
  color: var(--clr-grey-60);
  font-size: var(--fs-sm);
  transition: grid-template-rows 0.3s ease-out, margin-top 0.3s ease-out;
}
@media (min-width: 768px) {
   .faq-body { font-size: var(--fs-base); }
}
.faq-box.active .faq-body {
  grid-template-rows: 1fr;
  margin-top: var(--sp-4);
}
.faq-content {
    min-height: 0;
}

/* Footer / CTA Banner */
.cta-banner {
  background: linear-gradient(to bottom, var(--clr-grey-15) 0%, var(--clr-grey-10) 100%);
  border: 1px solid var(--clr-grey-20);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-4);
  text-align: center;
  margin-top: var(--sp-8);
}
@media (min-width: 768px) {
    .cta-banner {
        padding: var(--sp-16) var(--sp-8);
        margin-top: var(--sp-12);
    }
}

.footer {
  border-top: 1px solid var(--clr-grey-20);
  padding: var(--sp-8) 0;
  margin-top: var(--sp-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  color: var(--clr-grey-60);
  font-size: var(--fs-sm);
  text-align: center;
}
@media (min-width: 900px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-4);
}
@media (min-width: 768px) {
    .footer-nav { gap: var(--sp-6); }
}

.footer-social {
    display: flex;
    gap: var(--sp-4);
    align-items: center;
    justify-content: center;
}

/* FORMS */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.form-group label {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    color: var(--clr-white);
}
.form-group label .req {
    color: #ff4747;
}

.form-control {
    background-color: var(--clr-grey-10);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-lg);
    width: 100%; /* Ensure full width on mobile */
    padding: var(--sp-4) var(--sp-5);
    color: var(--clr-white);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    transition: all var(--ts-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--clr-green-50);
    background-color: var(--clr-grey-15);
}
.form-control::placeholder {
    color: var(--clr-grey-60);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Custom Checkbox */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
}
@media (min-width: 768px) {
    .checkbox-grid { grid-template-columns: repeat(4, 1fr); }
}
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--clr-grey-60);
    transition: color var(--ts-fast);
}
.custom-checkbox:hover {
    color: var(--clr-white);
}
.custom-checkbox input {
    display: none;
}
.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-grey-10);
    transition: all var(--ts-fast);
}
.custom-checkbox input:checked + .checkmark {
    background-color: var(--clr-green-50);
    border-color: var(--clr-green-50);
}
.custom-checkbox input:checked + .checkmark::after {
    content: '\eb7b'; /* boxicons check */
    font-family: 'boxicons';
    color: var(--clr-grey-10);
    font-size: 14px;
    font-weight: bold;
}
.custom-checkbox input:checked ~ span {
    color: var(--clr-white);
}

/* Custom Range */
.range-wrap {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    background-color: var(--clr-grey-10);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-md);
    padding: var(--sp-3) var(--sp-4);
}
.range-wrap input[type=range] {
    flex-grow: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
}
.range-wrap input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--clr-green-50);
    cursor: pointer;
    margin-top: -6px; 
}
.range-wrap input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: var(--clr-grey-20);
    border-radius: var(--radius-sm);
}

.bg-grey-15 { background-color: var(--clr-grey-15); }
.rounded-xl { border-radius: var(--radius-xl); }
.border-grey-20 { border: 1px solid var(--clr-grey-20); }
.p-6 { padding: var(--sp-6); }
@media (min-width: 768px) {
    .p-8 { padding: var(--sp-8); }
}

/* Process List */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .process-grid { 
      grid-template-columns: 1fr 1fr; 
      gap: var(--sp-16) var(--sp-12);
  }
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--clr-grey-20);
}
@media (min-width: 768px) {
  .process-step {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
      gap: var(--sp-6);
  }
}

.process-number {
  font-size: 3.5rem;
  font-weight: var(--fw-bold);
  color: var(--clr-green-50);
  line-height: 0.85;
  padding-top: var(--sp-1);
}
@media (min-width: 768px) {
  .process-number { font-size: 4.5rem; line-height: 0.8; }
}

.process-content {
  flex: 1;
}

.process-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin: 0 0 var(--sp-4) 0;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-grey-20);
}

.process-desc {
  font-size: var(--fs-sm);
  color: var(--clr-grey-60);
  line-height: 1.6;
}

/* About Section Enhancements */
.about-hero-box {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}
@media (min-width: 768px) {
    .about-hero-box {
        flex-direction: row;
        align-items: center;
        gap: var(--sp-12);
    }
}
.about-hero-text { flex: 1; }
.about-hero-visual { 
    flex: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 300px;
    background: radial-gradient(circle at center, rgba(238,255,0,0.1) 0%, rgba(26,26,26,0) 60%);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-xl);
}
@media (min-width: 768px) {
  .about-hero-visual { min-height: 400px; }
}

/* Inline Banner block */
.inline-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-6);
    background-color: var(--clr-grey-15);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-xl);
    padding: var(--sp-6);
    margin-top: var(--sp-16);
}
@media (min-width: 900px) {
    .inline-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: var(--sp-8);
    }
}
.inline-banner-icon {
    width: 80px;
    height: 80px;
    background-color: var(--clr-green-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-grey-10);
    font-size: var(--fs-4xl);
    flex-shrink: 0;
}
.inline-banner-content { flex: 1; }
.inline-banner-content h3 {
    margin-bottom: var(--sp-2);
}
.inline-banner-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    width: 100%;
}
@media (min-width: 900px) {
    .inline-banner-bottom {
        flex-direction: row;
        align-items: center;
        background-color: var(--clr-grey-10);
        padding: var(--sp-4);
        border-radius: var(--radius-md);
        border: 1px solid var(--clr-grey-20);
        margin-top: var(--sp-6);
    }
}

/* Contact Page Methods */
.contact-method-tile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--sp-4);
    background-color: var(--clr-grey-15);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-md);
    padding: var(--sp-6);
    color: var(--clr-white);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    transition: all var(--ts-normal);
}
.contact-method-tile:hover {
    border-color: var(--clr-green-50);
}
.contact-method-icon {
    width: 32px;
    height: 32px;
    background-color: var(--clr-grey-20);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-green-50);
    font-size: var(--fs-lg);
    flex-shrink: 0;
}
.faq-content {
    flex: 1;
}

/* Scroll Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger grid items delays */
.grid-2 > .fade-up:nth-child(even) { transition-delay: 0.15s; }
.grid-3 > .fade-up:nth-child(1) { transition-delay: 0s; }
.grid-3 > .fade-up:nth-child(2) { transition-delay: 0.15s; }
.grid-3 > .fade-up:nth-child(3) { transition-delay: 0.3s; }
.process-grid > .fade-up:nth-child(even) { transition-delay: 0.15s; }

/* ========================================= */
/* BLOG STYLES                               */
/* ========================================= */

.blog-hero {
    padding: var(--sp-24) var(--sp-4);
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000;
}

/* Featured Blog Post */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    background-color: var(--clr-grey-15);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--ts-normal), border-color var(--ts-normal), box-shadow var(--ts-normal);
}
@media (min-width: 900px) {
    .blog-featured {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
}
.blog-featured:hover {
    transform: translateY(-4px);
    border-color: var(--clr-grey-30);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.blog-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
@media (min-width: 900px) {
    .blog-featured-image { height: 100%; min-height: 400px; }
}
.blog-featured-content {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 900px) {
    .blog-featured-content { padding: var(--sp-10) var(--sp-8); }
}

/* Standard Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
}
@media (min-width: 768px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--clr-grey-15);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--ts-normal), border-color var(--ts-normal), box-shadow var(--ts-normal);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-grey-30);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--clr-grey-20);
    transition: opacity var(--ts-normal);
}
.blog-card:hover .blog-card-image {
    opacity: 0.9;
}
.blog-card-content {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Shared Blog Elements */
.blog-meta-top {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
    font-size: var(--fs-sm);
}
.blog-tag {
    background-color: rgba(255, 107, 53, 0.15); /* Sunset Glow tinted */
    color: var(--clr-green-50);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--radius-oval);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-xs);
}
.blog-date {
    color: var(--clr-grey-60);
}
.blog-title {
    color: var(--clr-white);
    margin-bottom: var(--sp-3);
    transition: color var(--ts-fast);
}
.blog-card:hover .blog-title,
.blog-featured:hover .blog-title {
    color: var(--clr-green-50);
}
.blog-excerpt {
    color: var(--clr-grey-60);
    font-size: var(--fs-base);
    line-height: 1.6;
    margin-bottom: var(--sp-6);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-weight: var(--fw-semibold);
    color: var(--clr-green-50);
    text-transform: uppercase;
    font-size: var(--fs-sm);
    letter-spacing: 0.05em;
    margin-top: auto;
    transition: gap var(--ts-fast);
}
.blog-read-more i {
    font-size: var(--fs-lg);
    transition: transform var(--ts-normal);
}
.blog-card:hover .blog-read-more,
.blog-featured:hover .blog-read-more {
    color: var(--clr-green-50);
}
.blog-card:hover .blog-read-more i,
.blog-featured:hover .blog-read-more i {
    transform: translateX(4px);
}

/* ========================================= */
/* SINGLE BLOG POST STYLES                   */
/* ========================================= */

.post-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--sp-12);
    background-color: #000; /* Darker background for particle contrast */
}
.post-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(17,20,29,0.2) 0%, rgba(17,20,29,0.95) 100%);
    z-index: 1;
}
.post-hero-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.post-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--sp-4);
}
.post-header-meta {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
    font-size: var(--fs-sm);
    color: var(--clr-grey-80);
}
.post-header-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--sp-6);
    color: var(--clr-white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* Post Content Body */
.post-body {
    max-width: 800px;
    margin: var(--sp-12) auto;
    padding: 0 var(--sp-4);
    font-size: 1.125rem; /* Larger font for reading */
    line-height: 1.8;
    color: var(--clr-grey-80);
}
.post-body p {
    margin-bottom: var(--sp-6);
    color: var(--clr-grey-80);
}
.post-body h2 {
    color: var(--clr-white);
    margin-top: var(--sp-12);
    margin-bottom: var(--sp-6);
    font-size: var(--fs-2xl);
}
.post-body h3 {
    color: var(--clr-white);
    margin-top: var(--sp-10);
    margin-bottom: var(--sp-4);
    font-size: var(--fs-xl);
}
.post-body ul, .post-body ol {
    margin-bottom: var(--sp-6);
    padding-left: var(--sp-6);
}
.post-body li {
    margin-bottom: var(--sp-2);
}
.post-body img {
    border-radius: var(--radius-lg);
    margin: var(--sp-8) 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.post-body blockquote {
    border-left: 4px solid var(--clr-green-50);
    padding-left: var(--sp-6);
    margin: var(--sp-8) 0;
    font-size: var(--fs-xl);
    font-style: italic;
    color: var(--clr-white);
    background: linear-gradient(90deg, rgba(238,255,0,0.05) 0%, transparent 100%);
    padding-top: var(--sp-4);
    padding-bottom: var(--sp-4);
}

/* Author Section */
.post-author-box {
    margin-top: var(--sp-16);
    padding: var(--sp-8);
    background-color: var(--clr-grey-15);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .post-author-box {
        flex-direction: row;
        text-align: left;
    }
}
.post-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-green-50);
}
.post-author-info h4 {
    margin-bottom: var(--sp-2);
    color: var(--clr-white);
}
.post-author-info p {
    font-size: var(--fs-sm);
    margin-bottom: 0;
}

/* =========================================
   Hero Slider Specific Styles
   ========================================= */
.hero-slide-dynamic {
    padding: 80px 0 20px 0;
}
.hero-title-dynamic {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--clr-white);
    text-shadow: 0px 4px 12px rgba(0,0,0,0.9);
    margin-bottom: var(--sp-4);
}
.hero-text-dynamic {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
    text-shadow: 0px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: var(--sp-6);
}
.hero-buttons-wrapper {
    margin-top: var(--sp-2);
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons-wrapper .btn {
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .hero-slide-dynamic {
        padding: 100px 0 40px 0;
    }
    .hero-title-dynamic {
        font-size: 4rem;
        margin-bottom: var(--sp-8);
        line-height: 1.1;
    }
    .hero-text-dynamic {
        font-size: 1.25rem;
        margin-bottom: var(--sp-12);
        line-height: 1.6;
    }
    .hero-buttons-wrapper {
        margin-top: var(--sp-8);
        gap: var(--sp-4);
    }
    .hero-buttons-wrapper .btn {
        width: auto;
        min-width: 200px;
    }
}

/* =========================================
   Hero Canvas & Overlays (Extracted from home.php)
   ========================================= */
.hero-slider-section {
    position: relative; 
    overflow: hidden; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.hero-canvas-bg,
.blog-hero-canvas,
.process-hero-canvas,
.services-hero-canvas,
.contact-hero-canvas,
.error-hero-canvas {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    z-index: 0; 
    pointer-events: auto;
}
.hero-canvas-overlay {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.5); 
    z-index: 1;
    pointer-events: none; /* Let mouse events pass through to canvas */
}
.hero-slider-container {
    position: absolute; 
    top: 0; left: 0; 
    z-index: 2; 
    width: 100%; height: 100%;
}
.hero-slide-base {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    transition: opacity 1s ease-in-out; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    box-sizing: border-box;
    background-color: transparent; /* Changed from #000 to let canvas show through */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none; /* Let mouse events pass through the slide wrapper */
}
.hero-gradient-overlay {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%); 
    z-index: 1;
    pointer-events: none; /* Let mouse events pass through */
}
.hero-content-z3 {
    position: relative; 
    z-index: 3; 
    width: 100%;
    pointer-events: auto; /* Re-enable clicks for text and buttons */
}
.hero-title-dynamic {
    max-width: 1000px; 
    margin-left: auto; 
    margin-right: auto;
}
.hero-text-dynamic {
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto;
}

/* =========================================
   Component Styles (Services, Process, Grid Cards) 
   ========================================= */
.service-icon-heading {
    display: flex; 
    align-items: center; 
    gap: var(--sp-4); 
    margin-bottom: var(--sp-4);
}
.service-icon-heading .card-icon {
    margin: 0;
}
.service-icon-heading h3 {
    margin: 0; 
    font-size: var(--fs-lg);
}
.service-card-text {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-6);
}
.service-card-btn {
    margin-top: auto;
    width: 100%;
}
.process-card-custom {
    background-color: transparent; 
    border-color: var(--clr-grey-20); 
    padding: var(--sp-4);
}
.process-icon-heading {
    display: flex; 
    align-items: center; 
    gap: var(--sp-4); 
    margin-bottom: var(--sp-3);
}
.process-icon-heading .card-icon {
    margin: 0; 
    width: 40px; 
    height: 40px; 
    font-size: var(--fs-lg);
}
.process-icon-heading h4 {
    font-size: var(--fs-lg); 
    margin: 0;
}
.process-card-text {
    font-size: var(--fs-sm);
}

/* =========================================
   Testimonial Card Custom Layout 
   ========================================= */
.testimonial-card-custom {
    padding: var(--sp-6);
}
.testimonial-card-title {
    font-size: var(--fs-base);
    color: var(--clr-green);
    margin-bottom: var(--sp-4);
}
.testimonial-card-text {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-6);
}
.testimonial-author-wrapper {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-top: auto; 
    padding-top: var(--sp-4); 
    border-top: 1px solid var(--clr-grey-20);
}
.testimonial-author-content {
    display: flex; 
    align-items: center; 
    gap: var(--sp-3);
}
.testimonial-author-avatar {
    width: 40px; 
    height: 40px; 
    border-radius: var(--radius-sm); 
    overflow: hidden; 
    background-color: var(--clr-grey-30);
}
.testimonial-author-avatar img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}
.testimonial-author-name {
    font-weight: var(--fw-bold); 
    font-size: var(--fs-sm); 
    color: var(--clr-white);
}
.testimonial-author-role {
    font-size: var(--fs-xs); 
    color: var(--clr-grey-60);
}

/* =========================================
   Slider Controls Custom Classes 
   ========================================= */
.hero-slider-prev {
    position: absolute; 
    top: 50%; left: 20px; 
    transform: translateY(-50%); 
    z-index: 10; 
    background: rgba(0,0,0,0.5); 
    color: white; 
    border: none; 
    width: 50px; height: 50px; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: 0.3s;
}
.hero-slider-prev:hover {
    background: var(--clr-primary);
}
.hero-slider-next {
    position: absolute; 
    top: 50%; right: 20px; 
    transform: translateY(-50%); 
    z-index: 10; 
    background: rgba(0,0,0,0.5); 
    color: white; 
    border: none; 
    width: 50px; height: 50px; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: 0.3s;
}
.hero-slider-next:hover {
    background: var(--clr-primary);
}
.hero-slider-dots-wrapper {
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10; 
    display: flex; gap: 10px;
}
.hero-slider-dot {
    width: 12px; height: 12px; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: 0.3s;
}

/* =========================================
   FAQ Section Layout 
   ========================================= */
.faq-section-wrapper {
    max-width: 800px; 
    margin: 0 auto;
}

/* =========================================
   Social Icon Links (Footer)
   ========================================= */
.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-sm);
    color: var(--clr-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon-box:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

/* =========================================
   About Page Custom Classes 
   ========================================= */
.about-hero-wrapper {
    padding: var(--sp-24) var(--sp-4); 
    min-height: 50vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    overflow: hidden; 
    width: 100%;
}
.about-hero-canvas {
    position: absolute; 
    top:0; left:0; 
    width:100%; height:100%; 
    z-index: 0; 
    pointer-events: auto;
}
.about-canvas-overlay-dark {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.6); 
    z-index: 1;
}
.about-canvas-overlay-gradient {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%); 
    z-index: 1;
}
.about-hero-content {
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: var(--container-max-width, 1200px); 
    width: 100%;
}
.about-hero-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.about-intro-text {
    font-size: var(--fs-base); 
    display: inline-block; 
    max-width: 800px; 
    text-shadow: 1px 1px 8px rgba(0,0,0,0.9); 
    color: #ffffff; 
    font-weight: var(--fw-medium); 
    line-height: 1.8; 
    background: rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.15); 
    backdrop-filter: blur(8px);
}
.about-hero-box-custom {
    padding: var(--sp-8); 
    border-top: none; 
    border-bottom: none; 
    border-radius: 0; 
    background: transparent;
}
.about-hero-visual-custom {
    position: relative; 
    overflow: hidden; 
    padding: 0;
}
.about-hero-visual-img {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    object-fit: cover; 
    border-radius: inherit;
}

/* =========================================
   Blog Post Custom Classes 
   ========================================= */
.post-author-header-wrapper {
    display: flex; 
    align-items: center; 
    gap: var(--sp-3); 
    margin-top: var(--sp-6);
}
.post-author-header-avatar {
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
}
.post-author-header-name {
    font-weight: var(--fw-semibold); 
    font-size: var(--fs-sm); 
    color: var(--clr-white);
}
.post-author-header-role {
    font-size: var(--fs-xs); 
    color: var(--clr-grey-60);
}
.post-author-bio-role {
    color: var(--clr-green-50); 
    margin-bottom: var(--sp-2); 
    font-weight: 500;
}
.post-nav-buttons-wrapper {
    display: flex; 
    justify-content: center; 
    gap: var(--sp-4); 
    flex-wrap: wrap;
}
.post-nav-icon-left {
    margin-right: 8px;
}
.post-nav-icon-right {
    margin-left: 8px;
}

/* =========================================
   Blog List Custom Classes 
   ========================================= */
.blog-hero-bg-image {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    object-fit: cover; 
    z-index: 0; 
    opacity: 0.6;
}
.blog-hero-canvas {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    z-index: 0; 
    pointer-events: auto;
}
.blog-hero-overlay {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%); 
    z-index: 1;
}
.blog-hero-content-wrapper {
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: var(--container-max-width, 1200px); 
    width: 100%;
}
.blog-hero-title-custom {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.blog-intro-wrap-custom {
    margin-bottom: 0; 
    transition-delay: 0.2s;
}
.blog-intro-text {
    font-size: var(--fs-base); 
    display: inline-block; 
    max-width: 800px; 
    text-shadow: 1px 1px 8px rgba(0,0,0,0.9); 
    color: #ffffff; 
    font-weight: var(--fw-medium); 
    line-height: 1.8; 
    background: rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.15); 
    backdrop-filter: blur(8px);
}
.blog-list-container {
    margin-top: -30px; 
    position: relative; 
    z-index: 10;
}
.blog-empty-message {
    font-size: 1.2rem; 
    background: var(--clr-grey-15); 
    border-radius: 12px;
}

/* =========================================
   Contact Page Custom Classes 
   ========================================= */
.contact-hero-wrapper {
    min-height: 60vh;
}
.contact-hero-bg-image {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    object-fit: cover; 
    z-index: 0; 
    opacity: 0.6;
}
.contact-hero-canvas {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    z-index: 0; 
    pointer-events: auto;
}
.contact-hero-overlay {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%); 
    z-index: 1;
}
.contact-hero-content-wrapper {
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: var(--container-max-width, 1200px); 
    width: 100%;
}
.contact-hero-title-custom {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.contact-intro-wrap-custom {
    margin-bottom: 0; 
    transition-delay: 0.2s;
}
.contact-intro-text {
    font-size: var(--fs-base); 
    display: inline-block; 
    max-width: 800px; 
    text-shadow: 1px 1px 8px rgba(0,0,0,0.9); 
    color: #ffffff; 
    font-weight: var(--fw-medium); 
    line-height: 1.8; 
    background: rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.15); 
    backdrop-filter: blur(8px);
}
.contact-main-section {
    margin-top: -30px; 
    position: relative; 
    z-index: 10;
}
.contact-methods-grid {
    max-width: 900px; 
    margin: 0 auto 4rem auto;
}
.contact-method-link {
    text-decoration: none;
}
.contact-method-text {
    color: var(--clr-white); 
    transition: color 0.3s;
}
.contact-method-tile:hover .contact-method-text {
    color: var(--clr-green);
}
.contact-form-wrapper {
    max-width: 800px; 
    margin: 0 auto var(--sp-16) auto; 
    padding: var(--sp-4);
}
.contact-faq-wrapper {
    padding-top: var(--sp-12); 
    padding-bottom: var(--sp-8);
}
.contact-faq-container {
    max-width: 800px; 
    margin: 0 auto; 
    padding-bottom: var(--sp-12);
}

/* =========================================
   Process Page Custom Classes 
   ========================================= */
.process-hero-wrapper {
    padding: var(--sp-24) var(--sp-4);
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.process-hero-overlay-dark {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.6); 
    z-index: 1;
}
.process-hero-overlay-gradient {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%); 
    z-index: 1;
}
.process-hero-content-wrapper {
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: var(--container-max-width, 1200px); 
    width: 100%;
}
.process-hero-title-custom {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.process-intro-wrap-custom {
    margin-bottom: 0;
}
.process-intro-text {
    font-size: var(--fs-base); 
    display: inline-block; 
    max-width: 800px; 
    text-shadow: 1px 1px 8px rgba(0,0,0,0.9); 
    color: #ffffff; 
    font-weight: var(--fw-medium); 
    line-height: 1.8; 
    background: rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.15); 
    backdrop-filter: blur(8px);
}
.process-section-text {
    font-size: var(--fs-base); 
    line-height: 1.8; 
    color: var(--clr-grey-60);
}

/* =========================================
   Services Page Custom Classes 
   ========================================= */
.services-hero-wrapper {
    padding: var(--sp-24) var(--sp-4);
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.process-hero-overlay-dark,
.services-hero-overlay-dark,
.contact-hero-overlay,
.blog-hero-overlay,
.post-hero-overlay {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.6); 
    z-index: 1;
}
.services-hero-overlay-gradient {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%); 
    z-index: 1;
}
.services-hero-content-wrapper {
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: var(--container-max-width, 1200px); 
    width: 100%;
}
.services-hero-title-custom {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.services-intro-wrap-custom {
    margin-bottom: 0;
}
.services-intro-text {
    font-size: var(--fs-base); 
    display: inline-block; 
    max-width: 800px; 
    text-shadow: 1px 1px 8px rgba(0,0,0,0.9); 
    color: #ffffff; 
    font-weight: var(--fw-medium); 
    line-height: 1.8; 
    background: rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.15); 
    backdrop-filter: blur(8px);
}
.services-section-text {
    font-size: var(--fs-base); 
    line-height: 1.8; 
    color: var(--clr-grey-60); 
    margin-top: var(--sp-4);
}
.services-category-title {
    margin-top: var(--sp-8);
}

/* =========================================
   Form Toast Notifications
   ========================================= */
.form-toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-150%); /* Hidden initially */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.form-toast-notification.show {
    transform: translateX(0);
}
.form-toast-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 1px solid #1e7e34;
}
.form-toast-error {
    background: linear-gradient(135deg, #dc3545, #e0a800);
    border: 1px solid #c82333;
}
.form-toast-icon {
    font-size: 1.5rem;
}

/* =========================================
   404 Error Page 
   ========================================= */
.error-hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    padding: var(--sp-20) var(--sp-4);
}
.error-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}
.error-hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}
.error-svg-container {
    max-width: 400px;
    margin: 0 auto;
}
.error-hero-title {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: var(--fw-bold);
    color: var(--clr-green);
    line-height: 1;
    margin-bottom: var(--sp-4);
    text-shadow: 0 0 30px rgba(158, 255, 0, 0.3);
}
.error-intro-text {
    font-size: var(--fs-lg);
    color: var(--clr-grey-60);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* =========================================
   Cookie Consent (PrivacyWire Overrides)
   ========================================= */
.privacywire {
    background: rgba(15, 15, 15, 0.85) !important;
    border: 1px solid var(--clr-grey-20) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: var(--radius-lg) !important;
    padding: var(--sp-6) !important;
    color: var(--clr-white) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    max-width: 600px !important;
    margin: 24px !important;
    left: auto !important;
    right: 0 !important;
    bottom: -250% !important; /* Managed by PrivacyWire JS */
    font-family: inherit !important;
    z-index: 99999 !important;
}

.show-banner .privacywire-banner, 
.show-message .privacywire-message, 
.show-options .privacywire-options {
    bottom: 24px !important;
    z-index: 99999 !important;
}

@media (min-width: 768px) {
    .show-banner .privacywire-banner, 
    .show-message .privacywire-message, 
    .show-options .privacywire-options {
        bottom: 40px !important;
        right: 40px !important;
    }
}

.privacywire-header {
    font-size: var(--fs-lg) !important;
    font-weight: var(--fw-semibold) !important;
    margin-bottom: var(--sp-4) !important;
    color: var(--clr-green) !important;
    display: block !important;
}

.privacywire-message-text {
    font-size: var(--fs-sm) !important;
    color: var(--clr-grey-40) !important;
    line-height: 1.6 !important;
    margin-bottom: var(--sp-6) !important;
}

.privacywire button {
    padding: var(--sp-3) var(--sp-6) !important;
    border-radius: var(--radius-md) !important;
    font-size: var(--fs-sm) !important;
    font-weight: var(--fw-medium) !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: inherit !important;
    border: none !important;
    margin-right: 10px !important;
}

/* "Allow all" / Primary button */
.privacywire button.privacywire-btn-all,
.privacywire button[type="submit"] {
    background: var(--clr-green) !important;
    color: var(--clr-black) !important;
}

.privacywire button.privacywire-btn-all:hover,
.privacywire button[type="submit"]:hover {
    background: #b4ff33 !important;
    transform: translateY(-2px) !important;
}

/* "Settings" / Secondary button */
.privacywire button.privacywire-btn-options,
.privacywire button.privacywire-btn-save {
    background: transparent !important;
    color: var(--clr-white) !important;
    border: 1px solid var(--clr-grey-20) !important;
}

.privacywire button.privacywire-btn-options:hover,
.privacywire button.privacywire-btn-save:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--clr-white) !important;
}

/* ========================================= */
/* CONTACT INFO LAYOUT REFINEMENTS          */
/* ========================================= */

.contact-methods-grid,
.contact-info-grid {
    display: flex !important;
    flex-direction: column;
    gap: var(--sp-4);
    align-items: center;
    width: 100%;
}

.contact-method-tile {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .contact-methods-grid,
    .contact-info-grid {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--sp-6);
    }
    
    .contact-method-tile {
        flex: 0 1 380px;
        width: auto;
    }
}

/* ========================================= */
/* CONTACT FORM LAYOUT REFINEMENTS          */
/* ========================================= */
.form-submit-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--sp-4);
}

.form-submit-wrapper .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .form-submit-wrapper {
        justify-content: flex-end;
    }
    .form-submit-wrapper .btn {
        width: auto;
        min-width: 200px;
    }
}

/* ========================================= */
/* PRICING PAGE (Kainos)                    */
/* ========================================= */
.pricing-categories-nav {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.pricing-cat-btn {
    background-color: var(--clr-grey-15);
    color: var(--clr-white);
    border: 1px solid var(--clr-grey-20);
    padding: var(--sp-2) var(--sp-6);
    border-radius: 50px;
    font-size: var(--fs-sm);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ts-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.pricing-cat-btn:hover,
.pricing-cat-btn.active {
    background-color: var(--clr-green-50);
    border-color: var(--clr-green-50);
    color: var(--clr-grey-10);
}

.pricing-block {
    background-color: var(--clr-grey-15);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
}

.pricing-section-title {
    font-size: var(--fs-2xl);
    color: var(--clr-white);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 2px solid var(--clr-grey-30);
}

.pricing-list {
    display: flex;
    flex-direction: column;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--clr-grey-20);
    transition: background-color var(--ts-fast);
}

.pricing-row:hover {
    background-color: rgba(255,255,255,0.02);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-name {
    color: var(--clr-grey-60);
    font-size: var(--fs-base);
}

.pricing-price {
    font-weight: 600;
    color: var(--clr-white);
    font-size: var(--fs-base);
    text-align: right;
}

@media (max-width: 600px) {
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-1);
    }
    .pricing-price {
        text-align: left;
        color: var(--clr-green-50);
    }
    .pricing-block {
        padding: var(--sp-4);
    }
    .pricing-cat-btn {
    margin-bottom: var(--sp-6) !important;
}

.privacywire button {
    padding: var(--sp-3) var(--sp-6) !important;
    border-radius: var(--radius-md) !important;
    font-size: var(--fs-sm) !important;
    font-weight: var(--fw-medium) !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: inherit !important;
    border: none !important;
    margin-right: 10px !important;
}

/* "Allow all" / Primary button */
.privacywire button.privacywire-btn-all,
.privacywire button[type="submit"] {
    background: var(--clr-green) !important;
    color: var(--clr-black) !important;
}

.privacywire button.privacywire-btn-all:hover,
.privacywire button[type="submit"]:hover {
    background: #b4ff33 !important;
    transform: translateY(-2px) !important;
}

/* "Settings" / Secondary button */
.privacywire button.privacywire-btn-options,
.privacywire button.privacywire-btn-save {
    background: transparent !important;
    color: var(--clr-white) !important;
    border: 1px solid var(--clr-grey-20) !important;
}

.privacywire button.privacywire-btn-options:hover,
.privacywire button.privacywire-btn-save:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--clr-white) !important;
}

/* ========================================= */
/* CONTACT INFO LAYOUT REFINEMENTS          */
/* ========================================= */

.contact-methods-grid,
.contact-info-grid {
    display: flex !important;
    flex-direction: column;
    gap: var(--sp-4);
    align-items: center;
    width: 100%;
}

.contact-method-tile {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .contact-methods-grid,
    .contact-info-grid {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--sp-6);
    }
    
    .contact-method-tile {
        flex: 0 1 380px;
        width: auto;
    }
}

/* ========================================= */
/* CONTACT FORM LAYOUT REFINEMENTS          */
/* ========================================= */
.form-submit-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--sp-4);
}

.form-submit-wrapper .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .form-submit-wrapper {
        justify-content: flex-end;
    }
    .form-submit-wrapper .btn {
        width: auto;
        min-width: 200px;
    }
}

/* ========================================= */
/* PRICING PAGE (Kainos)                    */
/* ========================================= */
.pricing-categories-nav {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.pricing-cat-btn {
    background-color: var(--clr-grey-15);
    color: var(--clr-white);
    border: 1px solid var(--clr-grey-20);
    padding: var(--sp-2) var(--sp-6);
    border-radius: 50px;
    font-size: var(--fs-sm);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ts-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.pricing-cat-btn:hover,
.pricing-cat-btn.active {
    background-color: var(--clr-green-50);
    border-color: var(--clr-green-50);
    color: var(--clr-grey-10);
}

.pricing-block {
    background-color: var(--clr-grey-15);
    border: 1px solid var(--clr-grey-20);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
}

.pricing-section-title {
    font-size: var(--fs-2xl);
    color: var(--clr-white);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 2px solid var(--clr-grey-30);
}

.pricing-list {
    display: flex;
    flex-direction: column;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--clr-grey-20);
    transition: background-color var(--ts-fast);
}

.pricing-row:hover {
    background-color: rgba(255,255,255,0.02);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-name {
    color: var(--clr-grey-60);
    font-size: var(--fs-base);
}

.pricing-price {
    font-weight: 600;
    color: var(--clr-white);
    font-size: var(--fs-base);
    text-align: right;
}

@media (max-width: 600px) {
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-1);
    }
    .pricing-price {
        text-align: left;
        color: var(--clr-green-50);
    }
    .pricing-block {
        padding: var(--sp-4);
    }
    .pricing-cat-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* PRIVACYWIRE CUSTOM DARK THEME - HIGH SPEC    */
/* Uses transform (GPU) not bottom (layout)     */
/* ============================================ */
body .privacywire {
    background: #1c1917 !important;
    border: 1px solid #44403c !important;
    padding: 1.5rem !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: translateY(110%) !important;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.6) !important;
    color: #fff !important;
    font-family: 'Barlow', system-ui, sans-serif !important;
    border-radius: 12px 12px 0 0 !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform;
}

body .show-banner .privacywire.privacywire-banner,
body .show-options .privacywire.privacywire-options,
body .show-message .privacywire.privacywire-message {
    transform: translateY(0) !important;
    display: block !important;
    opacity: 1 !important;
}

body .privacywire .privacywire-header {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 0.75rem !important;
}

body .privacywire p { color: #a8a29e !important; font-size: 0.85rem !important; line-height: 1.5 !important; }

body .privacywire .privacywire-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 1.25rem !important;
    padding: 0 !important;
}

body .privacywire button {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border-radius: 8px !important;
    font-family: 'Barlow', system-ui, sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
    border: none !important;
    text-align: center !important;
}

body .privacywire button.allow-all {
    background-color: #FF6B35 !important;
    color: #111111 !important;
}

body .privacywire button.allow-necessary,
body .privacywire button.choose {
    background-color: #292524 !important;
    color: #111111 !important;
    border: 1px solid #44403c !important;
}

body .privacywire .privacywire-footer a {
    color: #a8a29e !important;
    text-decoration: underline !important;
    font-size: 0.8rem !important;
    pointer-events: auto !important;
    display: inline-block !important;
}

@media (min-width: 768px) {
    body .privacywire {
        max-width: 450px !important;
        left: 20px !important;
        right: auto !important;
        bottom: 0 !important;
        transform: translateY(110%) !important;
        border-radius: 12px !important;
        margin-bottom: 20px !important;
    }
}
