:root {
  --background: #0b0f1a;
  --background-rgb: 11, 15, 26;
  --foreground: #e8eaf0;
  --foreground-rgb: 232, 234, 240;
  --card: #131726;
  --card-rgb: 19, 23, 38;
  --primary: #9d5eec;
  --primary-rgb: 157, 94, 236;
  --primary-foreground: #ffffff;
  --primary-foreground-rgb: 255, 255, 255;
  --muted: #1a1f2e;
  --muted-rgb: 26, 31, 46;
  --muted-foreground: #8d96ab;
  --muted-foreground-rgb: 141, 150, 171;
  --accent: #32d4e8;
  --accent-rgb: 50, 212, 232;
  --accent-foreground: #0b0f1a;
  --accent-foreground-rgb: 11, 15, 26;
  --border: #2a3148;
  --border-rgb: 42, 49, 72;
  --cosmic-pink: #e052c8;
  --cosmic-pink-rgb: 224, 82, 200;
  --radius: 0.75rem;
  --font-display: "Avory I PE Variable", "linotype-didot-headline", "linotype-didot", serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --shadow-soft: 0 4px 20px -4px rgba(var(--primary-rgb), 0.2);
  --shadow-elevated: 0 8px 40px -8px rgba(var(--primary-rgb), 0.3);
  --shadow-romantic: 0 0 30px -5px rgba(var(--cosmic-pink-rgb), 0.3);
  --shadow-cosmic: 0 0 40px -5px rgba(var(--accent-rgb), 0.2), 0 0 80px -10px rgba(var(--primary-rgb), 0.15);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: "Avory I PE Variable";
  src: url("../fonts/avory-i-pe-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Avory I PE Variable";
  src: url("../fonts/avory-i-pe-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.clb-main {
  overflow: hidden;
}

.container-wide {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.clb-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.clb-site-header.is-scrolled,
.clb-site-header.is-open,
.clb-site-header.is-solid {
  background: rgba(var(--background-rgb), 0.95);
  border-color: rgba(var(--border-rgb), 1);
  backdrop-filter: blur(12px);
}

.clb-nav {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.clb-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.clb-brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 999px;
  flex-shrink: 0;
}

.clb-brand-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.clb-site-header:not(.is-scrolled):not(.is-open):not(.is-solid) .clb-brand-text {
  color: #fff;
}

.clb-header-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.clb-header-actions {
  display: none;
}

.clb-link-underline {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: rgba(var(--foreground-rgb), 0.8);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.clb-site-header:not(.is-scrolled):not(.is-open):not(.is-solid) .clb-link-underline {
  color: rgba(255, 255, 255, 0.8);
}

.clb-link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition-smooth);
}

.clb-link-underline:hover::after,
.clb-link-underline:focus-visible::after {
  transform: scaleX(1);
}

.clb-button,
.clb-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0.375rem;
  min-height: 44px;
  padding: 0 32px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.clb-button {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
}

.clb-button:hover,
.clb-button:focus-visible {
  background: rgba(var(--primary-rgb), 0.9);
  border-color: rgba(var(--primary-rgb), 0.9);
}

.clb-outline-button {
  background: transparent;
  color: var(--foreground);
  border: 1px solid rgba(var(--border-rgb), 1);
}

.clb-outline-button:hover,
.clb-outline-button:focus-visible {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-foreground);
  border-color: rgba(var(--accent-rgb), 0.55);
}

.clb-hero .clb-outline-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.clb-hero .clb-outline-button:hover,
.clb-hero .clb-outline-button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.clb-button:hover,
.clb-button:focus-visible,
.clb-outline-button:hover,
.clb-outline-button:focus-visible {
  transform: translateY(-1px);
}

.clb-button:focus-visible,
.clb-outline-button:focus-visible,
.clb-nav-toggle:focus-visible,
.clb-header-mobile-link:focus-visible,
.clb-social-button:focus-visible,
.clb-close-button:focus-visible,
.clb-form-input:focus-visible,
.clb-form-textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.clb-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.clb-icon svg {
  width: 100%;
  height: 100%;
}

.clb-nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 0;
  cursor: pointer;
}

.clb-site-header:not(.is-scrolled):not(.is-open):not(.is-solid) .clb-nav-toggle {
  color: #fff;
}

.clb-mobile-panel {
  display: none;
  border-top: 1px solid rgba(var(--border-rgb), 1);
  padding: 16px 0;
  animation: fadeIn 0.6s var(--transition-smooth) forwards;
}

.clb-mobile-panel.is-visible {
  display: block;
}

.clb-mobile-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clb-header-mobile-link {
  text-align: left;
  border: 0;
  background: none;
  padding: 8px 0;
  color: rgba(var(--foreground-rgb), 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.clb-header-mobile-link:hover {
  color: var(--primary);
}

.clb-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.clb-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.clb-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.12), transparent 45%),
    linear-gradient(180deg, rgba(6, 7, 15, 0.18), rgba(6, 7, 15, 0.5));
  z-index: 1;
}

.clb-floating-star {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 0 6px currentColor);
  z-index: 2;
}

.clb-floating-star.star-1,
.clb-floating-star.star-5,
.clb-floating-star.star-9 {
  width: 16px;
  height: 16px;
}

.clb-floating-star.star-2,
.clb-floating-star.star-6,
.clb-floating-star.star-10 {
  width: 12px;
  height: 12px;
}

.clb-floating-star.star-3,
.clb-floating-star.star-7,
.clb-floating-star.star-11,
.clb-floating-star.star-12,
.clb-floating-star.star-4,
.clb-floating-star.star-8 {
  width: 20px;
  height: 20px;
}

.clb-hero-content {
  position: relative;
  z-index: 3;
  padding: 96px 0 96px;
}

.clb-hero-inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clb-hero-logo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 999px;
  margin-bottom: 32px;
  border: 2px solid rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.4), 0 0 60px rgba(var(--accent-rgb), 0.2);
}

.clb-fade-item {
  opacity: 0;
  transform: translateY(30px);
  animation: clbFadeUp 0.6s ease-out forwards;
}

.clb-fade-item[data-delay="1"] { animation-delay: 0.12s; }
.clb-fade-item[data-delay="2"] { animation-delay: 0.24s; }
.clb-fade-item[data-delay="3"] { animation-delay: 0.36s; }

.clb-hero-title,
.clb-section-title,
.clb-card-title,
.clb-pricing-title,
.clb-modal-title,
.clb-success-title,
.clb-cta-title,
.clb-brand-text,
.clb-footer-brand,
.clb-404-title {
  font-family: var(--font-display);
  font-weight: 700;
}

.clb-hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.clb-hero-title-line {
  color: #fff;
}

.clb-cosmic-glow-text {
  background: linear-gradient(135deg, var(--accent), var(--primary), var(--cosmic-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.5));
}

.clb-hero-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 576px;
  margin: 0 auto 40px;
  font-size: 1.125rem;
  line-height: 1.7;
}

.clb-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.animate-glow-pulse {
  animation: glowPulse 2.5s ease-in-out infinite;
}

.clb-section-card {
  background: var(--card);
}

.clb-section-background {
  background: var(--background);
}

.clb-scroll-section {
  scroll-margin-top: 96px;
}

.clb-section-padding {
  padding: 80px 0;
}

.clb-section-center {
  max-width: 672px;
  margin: 0 auto;
  text-align: center;
}

.clb-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.clb-section-title {
  font-size: 2rem;
  margin: 0 0 24px;
}

.clb-section-description {
  color: var(--muted-foreground);
  margin: 0 0 16px;
  line-height: 1.75;
}

.clb-owner-grid,
.clb-contact-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.clb-owner-image-wrap {
  position: relative;
}

.clb-owner-image-frame {
  max-width: 448px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 4px solid var(--card);
  box-shadow: var(--shadow-elevated);
}

.clb-owner-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.clb-owner-sparkle {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  color: var(--accent);
  animation: float 3s ease-in-out infinite;
}

.clb-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.clb-service-card,
.clb-pricing-card,
.clb-cta-card,
.clb-contact-shell {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.clb-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
}

.clb-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.clb-service-media {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.clb-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.clb-service-card:hover .clb-service-media img {
  transform: scale(1.1);
}

.clb-service-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(var(--background-rgb), 0.2), transparent);
}

.clb-service-content {
  padding: 24px;
  text-align: center;
}

.clb-card-title {
  font-size: 1.125rem;
  margin: 0 0 8px;
}

.clb-card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.clb-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.clb-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 32px;
}

.clb-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.clb-pricing-card.is-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.18);
  z-index: 10;
}

.clb-pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatBadge 2s ease-in-out infinite;
}

.clb-pricing-badge span {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.clb-pricing-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.clb-pricing-title {
  font-size: 1.125rem;
  margin: 0;
}

.clb-pricing-description {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 4px;
}

.clb-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 24px;
}

.clb-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

.clb-period {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.clb-feature-list {
  list-style: none;
  padding: 24px 0 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.clb-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.clb-feature-item .clb-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  margin-top: 2px;
}

.clb-cta-wrap {
  padding: 80px 0;
}

.clb-cta-card {
  max-width: 896px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.clb-cta-card:hover {
  border-color: rgba(var(--cosmic-pink-rgb), 0.5);
  box-shadow: var(--shadow-romantic), 0 0 60px -15px rgba(var(--cosmic-pink-rgb), 0.2);
}

.clb-cta-image {
  width: 208px;
  height: 208px;
  object-fit: contain;
  border-radius: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.6));
  animation: ctaScale 3s ease-in-out infinite;
}

.clb-cta-content {
  text-align: center;
}

.clb-cta-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.clb-cta-text {
  color: var(--muted-foreground);
  margin: 0 0 32px;
  max-width: 420px;
}

.clb-contact-shell {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.clb-contact-panel {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), var(--background), rgba(var(--accent-rgb), 0.1));
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clb-contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clb-contact-link,
.clb-contact-static {
  display: flex;
  align-items: center;
  gap: 16px;
}

.clb-contact-icon-box,
.clb-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.1);
}

.clb-contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  color: var(--primary);
  transition: background-color 0.2s ease;
}

.clb-contact-link:hover .clb-contact-icon-box {
  background: rgba(var(--primary-rgb), 0.2);
}

.clb-contact-overline {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin: 0 0 2px;
}

.clb-contact-value {
  font-size: 0.875rem;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.clb-contact-link:hover .clb-contact-value {
  color: var(--primary);
}

.clb-social-row {
  display: flex;
  gap: 12px;
  padding-top: 16px;
}

.clb-social-button {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  color: var(--primary);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.clb-social-button:hover {
  background: rgba(var(--primary-rgb), 0.2);
  transform: translateY(-1px);
}

.clb-contact-form-wrap {
  background: var(--background);
  padding: 40px;
}

.clb-form-success {
  min-height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.clb-form-success.is-visible {
  display: flex;
}

.clb-form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.clb-form-success-icon .clb-icon {
  width: 32px;
  height: 32px;
}

.clb-success-title {
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.clb-success-text {
  color: var(--muted-foreground);
  margin: 0;
}

.clb-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clb-form.is-hidden {
  display: none;
}

.clb-form-row {
  display: grid;
  gap: 20px;
}

.clb-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.clb-form-input,
.clb-form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  color: var(--foreground);
  padding: 14px 16px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.clb-form-input::placeholder,
.clb-form-textarea::placeholder {
  color: var(--muted-foreground);
}

.clb-form-input:focus,
.clb-form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
  outline: none;
}

.clb-form-textarea {
  resize: none;
  min-height: 128px;
}

.clb-form-error {
  font-size: 0.875rem;
  color: #ff9fa9;
}

.clb-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.clb-modal[hidden],
.clb-modal[hidden=""] {
  display: none !important;
}

.clb-modal:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clb-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clb-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 18, 0.7);
}

.clb-modal-dialog {
  position: relative;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 5vh auto;
  background: var(--card);
  color: var(--foreground);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 24px;
  width: calc(100% - 32px);
  animation: fadeIn 0.3s ease;
}

.clb-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: rgba(var(--foreground-rgb), 0.7);
  cursor: pointer;
  border-radius: 4px;
}

.clb-close-button:hover {
  color: var(--foreground);
  background: rgba(var(--foreground-rgb), 0.08);
}

.clb-modal-title {
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.clb-modal-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0 0 24px;
}

.clb-modal-success .clb-form-success-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.clb-modal-success .clb-form-success-icon .clb-icon {
  width: 28px;
  height: 28px;
}

.clb-footer {
  border-top: 1px solid var(--border);
}

.clb-footer-grid {
  display: grid;
  gap: 32px;
  padding: 48px 0 64px;
}

.clb-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.clb-footer-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 999px;
}

.clb-footer-brand {
  font-size: 1.25rem;
  color: var(--primary);
}

.clb-footer-copy {
  max-width: 360px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.clb-footer-title {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--foreground);
}

.clb-footer-links,
.clb-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clb-footer-links button,
.clb-footer-contact a,
.clb-footer-contact span {
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: left;
  transition: color 0.2s ease;
}

.clb-footer-links button:hover,
.clb-footer-contact a:hover {
  color: var(--primary);
}

.clb-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.clb-footer-contact-item .clb-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.clb-footer-bottom {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.clb-footer-bottom p,
.clb-footer-bottom a {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.clb-footer-bottom a:hover {
  color: var(--primary);
}

.clb-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.clb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.clb-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 24px 64px;
  background: var(--muted);
}

.clb-404-card {
  text-align: center;
}

.clb-404-title {
  font-size: 2.5rem;
  margin: 0 0 16px;
}

.clb-404-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin: 0 0 16px;
}

.clb-hero [data-setting],
.clb-section-padding [data-setting],
.clb-footer [data-setting],
.clb-modal [data-setting] {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes clbFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.4), 0 0 30px rgba(var(--accent-rgb), 0.15); }
  50% { box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.6), 0 0 60px rgba(var(--accent-rgb), 0.3); }
}

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

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
}

@keyframes ctaScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (min-width: 640px) {
  .clb-hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .clb-footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .container-wide {
    padding: 0 32px;
  }

  .clb-hero-logo {
    width: 160px;
    height: 160px;
  }

  .clb-hero-title {
    font-size: 3rem;
  }

  .clb-section-title,
  .clb-cta-title {
    font-size: 2.5rem;
  }

  .clb-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clb-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clb-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clb-cta-card {
    padding: 64px;
    flex-direction: row;
    justify-content: center;
  }

  .clb-cta-content {
    text-align: left;
  }

  .clb-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .clb-nav {
    height: 112px;
  }

  .clb-brand-logo {
    width: 80px;
    height: 80px;
  }

  .clb-brand-text {
    font-size: 1.25rem;
  }

  .clb-header-links,
  .clb-header-actions {
    display: flex;
  }

  .clb-nav-toggle {
    display: none;
  }

  .clb-owner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
  }

  .clb-contact-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clb-contact-panel,
  .clb-contact-form-wrap {
    padding: 56px;
  }

  .clb-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .clb-hero-title {
    font-size: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .clb-fade-item,
  .clb-reveal {
    opacity: 1;
    transform: none;
  }
}
