@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;900&display=swap');

:root {
  --ocular-theme-accent: #047857; /* Deep Jade/Emerald meeting WCAG AA contrast against white */
  --ocular-theme-accent-hover: #065f46;
  --ocular-theme-dark: #0f172a; /* Slate 900 */
  --ocular-theme-surface: #f8fafc; /* Slate 50 */
  --ocular-theme-border: #e2e8f0; /* Slate 200 */
  --ocular-theme-text-main: #1e293b; /* Slate 800 */
  --ocular-theme-text-light: #ffffff;
  --ocular-theme-text-muted: #64748b; /* Slate 500 */
  
  --ocular-gradient-primary: linear-gradient(135deg, #047857 0%, #0d9488 100%);
  --ocular-gradient-ambient: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  
  --ocular-font-display: 'Montserrat', sans-serif;
  --ocular-font-body: 'Inter', sans-serif;
  
  --ocular-radius-soft: 16px;
  --ocular-shadow-depth: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --ocular-padding-scale: 10dvh;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--ocular-font-body);
  color: var(--ocular-theme-text-main);
  background-color: var(--ocular-theme-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography styles matching Preset C (Bold Typo) */
h1, h2, h3, h4 {
  font-family: var(--ocular-font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ocular-theme-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Header layout (Preset C: Accent color background, white text/links) */
.cl-navigation-header {
  background: var(--ocular-theme-accent);
  color: var(--ocular-theme-text-light);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.cl-nav-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cl-brand-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ocular-font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -1px;
}

.cl-brand-icon {
  width: 32px;
  height: 32px;
  stroke: var(--ocular-theme-text-light);
  stroke-width: 2.5;
  fill: none;
}

/* CSS-Only Hamburger Menu for Mobile */
.cl-nav-hamburger-box {
  display: none;
}

.cl-nav-menu-checkbox {
  display: none;
}

.cl-navigation-links-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.cl-nav-link-item {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
}

.cl-nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ocular-theme-text-light);
  transition: width 0.35s ease;
}

.cl-nav-link-item:hover::after {
  width: 100%;
}

/* Preset C - Bold Accent Hero Section */
.cl-accent-hero-billboard {
  position: relative;
  background: var(--ocular-gradient-primary);
  color: var(--ocular-theme-text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--ocular-padding-scale) 2rem;
  overflow: hidden;
}

.cl-accent-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 5;
}

.cl-accent-hero-captions {
  max-width: 650px;
}

.cl-accent-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--ocular-theme-text-light);
  margin-bottom: 1.5rem;
}

.cl-accent-hero-summary {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* Action Pillar Buttons */
.cl-action-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ocular-theme-text-light);
  color: var(--ocular-theme-accent);
  font-family: var(--ocular-font-display);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  border-radius: 999px;
  box-shadow: var(--ocular-shadow-depth);
  border: 2px solid transparent;
}

.cl-action-pill-button:hover {
  transform: translateY(-3px);
  background-color: var(--ocular-theme-dark);
  color: var(--ocular-theme-text-light);
}

.cl-action-pill-inverted {
  background-color: var(--ocular-theme-accent);
  color: var(--ocular-theme-text-light);
}

.cl-action-pill-inverted:hover {
  background-color: var(--ocular-theme-accent-hover);
}

/* Preset C - Giant decorative number and abstract shapes */
.cl-giant-bg-number {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: var(--ocular-font-display);
  font-weight: 900;
  font-size: clamp(15rem, 30vw, 35rem);
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.cl-abstract-shape-wrap {
  position: relative;
  width: 450px;
  height: 450px;
  flex-shrink: 0;
}

.cl-abstract-shape-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border-radius: var(--ocular-radius-soft);
  border: 6px solid rgba(255, 255, 255, 0.15);
}

.cl-abstract-shape-wrap::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cl-abstract-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--ocular-radius-soft);
  background-color: var(--ocular-theme-dark);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cl-abstract-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(110%);
}

/* Preset C - Content Diagonal clip-path Section with bg2.webp */
.cl-diagonal-visual-section {
  position: relative;
  margin: 6vh 0;
  padding: calc(var(--ocular-padding-scale) + 40px) 0;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--ocular-theme-text-light);
}

.cl-diagonal-inner-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--ocular-radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: var(--ocular-shadow-depth);
}

.cl-diagonal-inner-title {
  color: var(--ocular-theme-text-light);
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cl-diagonal-inner-p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Preset C - Features Section (No icons, big numbers) */
.cl-features-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--ocular-padding-scale) 2rem;
}

.cl-features-grid-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cl-features-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.cl-features-grid-item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--ocular-theme-text-light);
  padding: 2.5rem 2rem;
  border-radius: var(--ocular-radius-soft);
  box-shadow: var(--ocular-shadow-depth);
}

.cl-features-item-num {
  font-family: var(--ocular-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ocular-theme-accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.cl-features-item-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ocular-theme-dark);
}

.cl-features-item-desc {
  color: var(--ocular-theme-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Preset C - "How it works" - Horizontal steps with solid line-connector */
.cl-workflow-segment {
  background: var(--ocular-gradient-ambient);
  padding: var(--ocular-padding-scale) 2rem;
}

.cl-workflow-inner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.cl-workflow-title-wrap {
  text-align: center;
  margin-bottom: 4.5rem;
}

.cl-workflow-steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
}

.cl-workflow-steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--ocular-theme-accent);
  z-index: 1;
}

.cl-workflow-step-card {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cl-workflow-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ocular-font-display);
  font-weight: 900;
  font-size: 1.8rem;
  box-shadow: var(--ocular-shadow-depth);
}

.cl-workflow-step-filled {
  background-color: var(--ocular-theme-accent);
  color: var(--ocular-theme-text-light);
}

.cl-workflow-step-outlined {
  background-color: var(--cl-ocular-bg-light, #f8fafc);
  border: 4px solid var(--ocular-theme-accent);
  color: var(--ocular-theme-accent);
}

.cl-workflow-step-heading {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--ocular-theme-dark);
}

.cl-workflow-step-text {
  color: var(--ocular-theme-text-muted);
  font-size: 0.95rem;
  max-width: 250px;
  margin: 0 auto;
}

/* Preset C - CTA Strip (Dark background, flex-row split) */
.cl-action-strip {
  background: var(--ocular-theme-dark);
  color: var(--ocular-theme-text-light);
  padding: 5rem 2rem;
}

.cl-action-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.cl-action-strip-content {
  max-width: 700px;
}

.cl-action-strip-headline {
  color: var(--ocular-theme-text-light);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.cl-action-strip-paragraph {
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Single Form Section / Split Layout in reserve.html */
.cl-reserve-split-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--ocular-padding-scale) 2rem;
  display: flex;
  gap: 4rem;
}

.cl-reserve-form-block {
  flex: 3;
  background: var(--ocular-theme-text-light);
  padding: 3rem;
  border-radius: var(--ocular-radius-soft);
  box-shadow: var(--ocular-shadow-depth);
}

.cl-reserve-form-headline {
  margin-bottom: 1.5rem;
}

.cl-reserve-form-paragraph {
  color: var(--ocular-theme-text-muted);
  margin-bottom: 2.5rem;
}

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

.cl-reserve-form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cl-reserve-form-field input,
.cl-reserve-form-field textarea {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid var(--ocular-theme-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

.cl-reserve-form-field input:focus,
.cl-reserve-form-field textarea:focus {
  outline: none;
  border-color: var(--ocular-theme-accent);
}

.cl-reserve-checkbox-area {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cl-reserve-checkbox-area input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.cl-reserve-checkbox-label {
  font-size: 0.85rem;
  color: var(--cl-ocular-text-muted, #64748b);
  line-height: 1.4;
}

.cl-reserve-submit-action {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 999px;
  font-family: var(--ocular-font-display);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--ocular-gradient-primary);
  color: var(--ocular-theme-text-light);
  cursor: pointer;
  box-shadow: var(--cl-ocular-shadow-raised);
}

.cl-reserve-submit-action:hover {
  transform: translateY(-2px);
  background: var(--cl-ocular-theme-accent-hover, #065f46);
}

.cl-info-cards-block {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cl-bullet-card {
  background: var(--cl-ocular-theme-text-light, #ffffff);
  border-radius: var(--ocular-radius-soft);
  padding: 2rem;
  box-shadow: var(--ocular-shadow-depth);
  border-top: 4px solid var(--ocular-theme-accent);
}

.cl-bullet-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cl-bullet-card-svg {
  width: 24px;
  height: 24px;
  stroke: var(--ocular-theme-accent);
  stroke-width: 2;
  fill: none;
}

.cl-bullet-card-title {
  font-size: 1.15rem;
  margin: 0;
}

.cl-bullet-card-desc {
  font-size: 0.95rem;
  color: var(--ocular-theme-text-muted);
  margin-bottom: 1.25rem;
}

.cl-bullet-card-list {
  list-style: none;
}

.cl-bullet-card-list-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--ocular-theme-text-main);
}

.cl-bullet-point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ocular-theme-accent);
  flex-shrink: 0;
}

/* Contact Info Column (Reserve footer anchor link) */
.cl-reserve-mailto-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ocular-theme-accent);
  margin-top: 1rem;
}

.cl-reserve-mailto-anchor:hover {
  text-decoration: underline;
}

/* FAQ Area (reserve.html details - all open fully) */
.cl-faq-segment {
  max-width: 800px;
  margin: 3vh auto var(--ocular-padding-scale);
  padding: 0 2rem;
}

.cl-faq-segment-headline {
  text-align: center;
  margin-bottom: 3rem;
}

.cl-faq-assembly {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cl-faq-qa-card {
  background: var(--cl-ocular-theme-text-light, #ffffff);
  border-radius: var(--ocular-radius-soft);
  padding: 2rem;
  box-shadow: var(--ocular-shadow-depth);
}

.cl-faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ocular-theme-dark);
  margin-bottom: 0.5rem;
}

.cl-faq-answer {
  color: var(--cl-ocular-text-muted, #64748b);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Stats Section on Expert page */
.cl-stats-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--cl-ocular-padding-scale, 6vh) 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.cl-stat-card {
  text-align: center;
  background: var(--ocular-theme-text-light);
  padding: 2.5rem var(--cl-ocular-radius-soft, 16px);
  border-radius: var(--ocular-radius-soft);
  box-shadow: var(--cl-shadow-raised, 0 4px 6px -1px rgba(0,0,0,0.1));
}

.cl-stat-number {
  font-family: var(--ocular-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ocular-theme-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cl-stat-label {
  font-size: 0.9rem;
  color: var(--ocular-theme-text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Expert Page Custom Bio Content (bg2.webp aligned right) */
.cl-expert-split-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--cl-ocular-padding-scale, 8vh) 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.cl-expert-bio-captions {
  flex: 55%;
}

.cl-expert-bio-title {
  margin-bottom: 1.5rem;
}

.cl-expert-bio-p {
  color: var(--cl-ocular-text-muted, #64748b);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cl-expert-photo-wrap {
  flex: 45%;
  border-radius: var(--ocular-radius-soft);
  overflow: hidden;
  box-shadow: var(--cl-shadow-raised, 0 4px 6px -1px rgba(0,0,0,0.1));
}

.cl-expert-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Final Expert Section with bg3.webp and text overlays */
.cl-expert-final-bg-billboard {
  position: relative;
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  padding: var(--ocular-padding-scale) 2rem;
  color: var(--ocular-theme-text-light);
}

.cl-expert-final-holder {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cl-expert-final-title {
  color: var(--ocular-theme-text-light);
  margin-bottom: 1.5rem;
}

/* Thank You Section with bg3.webp */
.cl-thank-you-canvas {
  background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--ocular-theme-text-light);
}

.cl-thank-you-card {
  max-width: 600px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 4rem 3rem;
  border-radius: var(--ocular-radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cl-thank-you-heading {
  color: var(--cl-ocular-text-light, #ffffff);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.cl-thank-you-text {
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Simple Document Panel (Privacy / Terms) */
.cl-legal-panel-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--cl-ocular-padding-scale, 10vh) 2rem;
}

.cl-legal-document-title {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.cl-legal-paragraph {
  margin-bottom: 1.5rem;
  color: var(--ocular-theme-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cl-legal-subheading {
  margin: 2.5rem 0 1rem;
  font-size: 1.3rem;
}

/* Footer (Shared layout) */
.cl-site-footer {
  background-color: var(--cl-ocular-theme-dark, #0f172a);
  color: var(--ocular-theme-text-light);
  padding: 4rem 2rem;
  border-top: 3px solid var(--ocular-theme-accent);
}

.cl-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cl-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cl-footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.9rem;
}

.cl-footer-disclaimer-card {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  border-left: 3px solid var(--ocular-theme-accent);
}

.cl-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* Cookie Consent Bar styles */
.cl-cookie-overlay-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ocular-theme-dark);
  color: var(--ocular-theme-text-light);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: cl-slide-up-anim 0.4s ease-out;
}

@keyframes cl-slide-up-anim {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cl-cookie-banner-copy {
  font-size: 0.9rem;
  max-width: 800px;
}

.cl-cookie-banner-controls {
  display: flex;
  gap: 1rem;
}

.cl-cookie-banner-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--ocular-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.cl-cookie-accept-action {
  background-color: var(--ocular-theme-accent);
  color: var(--ocular-theme-text-light);
}

.cl-cookie-accept-action:hover {
  background-color: var(--ocular-theme-accent-hover);
}

.cl-cookie-refuse-action {
  background-color: transparent;
  color: var(--ocular-theme-text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cl-cookie-refuse-action:hover {
  border-color: var(--ocular-theme-text-light);
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
  .cl-accent-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .cl-features-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  .cl-reserve-split-layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  /* Navigation Hamburger Toggle */
  .cl-nav-hamburger-box {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }
  
  .cl-nav-hamburger-lines {
    width: 24px;
    height: 3px;
    background-color: var(--ocular-theme-text-light);
    display: block;
    position: relative;
    transition: background-color 0.2s ease;
  }
  
  .cl-nav-hamburger-lines::before,
  .cl-nav-hamburger-lines::after {
    content: '';
    width: 24px;
    height: 3px;
    background-color: var(--ocular-theme-text-light);
    position: absolute;
    left: 0;
    transition: all 0.2s ease;
  }
  
  .cl-nav-hamburger-lines::before { top: -8px; }
  .cl-nav-hamburger-lines::after { top: 8px; }
  
  .cl-navigation-links-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--ocular-theme-dark);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.35s ease;
    box-shadow: -10px 0 20px rgba(0,0,0,0.25);
    align-items: flex-start;
  }
  
  /* Checkbox hack activation */
  .cl-nav-menu-checkbox:checked ~ .cl-navigation-links-list {
    right: 0;
  }
  
  .cl-nav-menu-checkbox:checked ~ .cl-nav-hamburger-box .cl-nav-hamburger-lines {
    background-color: transparent;
  }
  
  .cl-nav-menu-checkbox:checked ~ .cl-nav-hamburger-box .cl-nav-hamburger-lines::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .cl-nav-menu-checkbox:checked ~ .cl-nav-hamburger-box .cl-nav-hamburger-lines::after {
    transform: rotate(-45deg);
    top: 0;
  }
  
  .cl-features-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .cl-workflow-steps-row {
    flex-direction: column;
    gap: 3rem;
  }
  
  .cl-workflow-steps-row::before {
    display: none;
  }
  
  .cl-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .cl-expert-split-section {
    flex-direction: column;
  }
  
  .cl-abstract-shape-wrap {
    width: 280px;
    height: 280px;
  }
}