/* Corsion — CodeCraft Labs inspired theme */
:root {
  --bg: #0a0a0f;
  --bg-elevated: #111827;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --cyan: #22d3ee;
  --cyan-dark: #06b6d4;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(6, 182, 212, 0.3);
  --card-bg: rgba(255, 255, 255, 0.03);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --container: 72rem;
  --header-h: 4.5rem;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-nav: "Plus Jakarta Sans", var(--font);
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body.cc-body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.cc-body a {
  color: inherit;
  text-decoration: none;
}

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

.cc-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .cc-container {
    padding: 0 1.5rem;
  }
}

/* Grid background */
.cc-grid-bg {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Gradient text */
.cc-gradient-text {
  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--blue),
    var(--violet),
    var(--cyan)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: cc-gradient-shift 6s linear infinite;
}

/* Header */
.cc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  font-family: var(--font-nav);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.cc-header.is-scrolled {
  background: rgba(10, 10, 15, 0.85);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

.cc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.cc-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.cc-logo img {
  height: 2.25rem;
  width: auto;
}

.cc-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .cc-nav {
    display: flex;
  }
}

.cc-nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.cc-nav a:hover,
.cc-nav a.is-active {
  color: var(--text);
  background: rgba(6, 182, 212, 0.08);
}

.cc-nav a.is-active {
  color: var(--cyan);
}

.cc-header-cta {
  display: none;
  font-family: var(--font-nav);
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (min-width: 1024px) {
  .cc-header-cta {
    display: inline-flex;
  }
}

.cc-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--text);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .cc-menu-toggle {
    display: none;
  }
}

.cc-mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  font-family: var(--font-nav);
  background: rgba(10, 10, 15, 0.98);
  padding: 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.5rem;
}

.cc-mobile-nav.is-open {
  display: flex;
}

.cc-mobile-nav a {
  padding: 0.875rem 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cc-mobile-nav a:hover {
  color: var(--cyan);
  border-color: var(--border-hover);
}

/* Buttons */
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.cc-btn-primary {
  background: linear-gradient(to right, var(--cyan-dark), var(--blue));
  color: #fff;
}

.cc-btn-primary:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.cc-btn-primary:active {
  transform: scale(0.98);
}

.cc-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cc-btn-outline:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.cc-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

/* Badge */
.cc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: rgba(6, 182, 212, 0.05);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 2rem;
}

.cc-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan);
  animation: cc-pulse 2s ease-in-out infinite;
}

@keyframes cc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Section header */
.cc-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cc-section-header .cc-badge {
  margin-bottom: 1rem;
}

.cc-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.cc-section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* Hero */
.cc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.cc-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cc-hero-glow-1 {
  width: 24rem;
  height: 24rem;
  top: 10%;
  left: -5%;
  background: rgba(6, 182, 212, 0.15);
  animation: cc-float 8s ease-in-out infinite;
}

.cc-hero-glow-2 {
  width: 20rem;
  height: 20rem;
  bottom: 20%;
  right: -5%;
  background: rgba(139, 92, 246, 0.12);
  animation: cc-float 10s ease-in-out infinite reverse;
}

.cc-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.25rem;
}

.cc-hero-particle {
  position: relative;
  width: 100%;
  height: 5rem;
  margin: 0.25rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

@media (min-width: 768px) {
  .cc-hero-particle {
    height: 6.25rem;
  }
}

.cc-hero-particle canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.35));
}

.cc-hero-rotate {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0;
}

@media (min-width: 768px) {
  .cc-hero-rotate {
    height: 6.25rem;
  }
}

.cc-hero-rotate span {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.cc-hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 42rem;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
}

.cc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Stats */
.cc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 5rem;
}

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

.cc-stat {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.cc-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.cc-stat:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.1);
}

.cc-stat:hover::before {
  opacity: 1;
}

.cc-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
}

.cc-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Sections */
.cc-section {
  position: relative;
  padding: 6rem 0;
}

.cc-section-alt {
  background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.04), transparent);
}

.cc-section-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(12rem, 50%);
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  pointer-events: none;
}

.cc-section-animated.is-section-visible::before {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* Cards */
.cc-card-grid {
  display: grid;
  gap: 1.5rem;
}

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

  .cc-card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cc-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.35s,
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.45),
    rgba(59, 130, 246, 0.15) 45%,
    rgba(139, 92, 246, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  transition: opacity 0.35s;
  pointer-events: none;
}

.cc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cc-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 0 48px rgba(6, 182, 212, 0.12);
}

.cc-card:hover::before {
  opacity: 1;
}

.cc-card:hover::after {
  left: 140%;
}

.cc-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--cyan);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.cc-card:hover .cc-card-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 28px rgba(6, 182, 212, 0.3);
}

.cc-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.cc-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.cc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-card li {
  font-size: 0.8125rem;
  color: var(--text-dim);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.cc-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--cyan-dark);
}

/* Process cards */
.cc-process-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition:
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}

.cc-process-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(6, 182, 212, 0.08);
}

.cc-process-img {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.cc-process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.7s;
}

.cc-process-card:hover .cc-process-img img {
  transform: scale(1.1);
}

.cc-process-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

.cc-process-step {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(6, 182, 212, 0.2);
  z-index: 1;
}

.cc-process-body {
  padding: 1.5rem;
}

.cc-process-body h4 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.cc-process-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA banner */
.cc-section-cta {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.cc-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(6, 182, 212, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(139, 92, 246, 0.12), transparent 50%),
    linear-gradient(165deg, rgba(17, 24, 39, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(6, 182, 212, 0.06);
}

.cc-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cc-cta-orb--1 {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -80px;
  background: rgba(6, 182, 212, 0.25);
  animation: cc-float 7s ease-in-out infinite;
}

.cc-cta-orb--2 {
  width: 220px;
  height: 220px;
  bottom: -100px;
  right: -60px;
  background: rgba(139, 92, 246, 0.22);
  animation: cc-float 9s ease-in-out infinite reverse;
}

.cc-cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 60%
  );
  pointer-events: none;
}

.cc-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.cc-cta-badge {
  margin-bottom: 1.25rem;
}

.cc-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.cc-cta-desc {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  margin: 0 auto 2rem;
  max-width: 32rem;
}

.cc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}

.cc-cta-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cc-cta-trust strong {
  color: var(--text);
  font-weight: 600;
}

.cc-cta-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
}

/* Footer */
.cc-footer {
  position: relative;
  padding: 0 0 2rem;
  margin-top: 0;
  background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.03));
}

.cc-footer-accent {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(6, 182, 212, 0.5),
    rgba(139, 92, 246, 0.5),
    transparent
  );
  margin-bottom: 3.5rem;
}

.cc-footer-grid {
  display: grid;
  gap: 2.5rem 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cc-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
}

.cc-footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
  max-width: 18rem;
}

.cc-footer-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.2s, color 0.2s;
}

.cc-footer-mini-cta:hover {
  gap: 0.625rem;
  color: var(--text);
}

.cc-footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.cc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-footer-links li {
  margin-bottom: 0.625rem;
}

.cc-footer-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}

.cc-footer-links a:hover {
  color: var(--cyan);
  padding-left: 0.25rem;
}

.cc-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cc-footer-contact a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.cc-footer-contact a:hover {
  color: var(--cyan);
}

.cc-footer-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--cyan);
}

.cc-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.cc-footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

/* Page hero (inner pages) */
.cc-page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  text-align: center;
}

/* Contact form */
.cc-form {
  display: grid;
  gap: 1rem;
}

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

.cc-input,
.cc-textarea,
.cc-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  outline: none;
  transition: border-color 0.2s;
}

.cc-input:focus,
.cc-textarea:focus,
.cc-select:focus {
  border-color: rgba(6, 182, 212, 0.55);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

.cc-textarea {
  min-height: 8rem;
  resize: vertical;
}

.cc-form-full {
  grid-column: 1 / -1;
}

.cc-form-row {
  display: grid;
  gap: 1rem;
}

.cc-form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
}

/* Contact page */
.cc-contact-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.cc-contact-quick-section {
  padding-top: 1.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .cc-contact-quick-section {
    padding-top: 2rem;
  }
}

.cc-contact-quick-grid {
  display: grid;
  gap: 1rem;
}

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

.cc-contact-info-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cc-contact-info-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cc-contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}

.cc-contact-info-card--link:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), 0 0 40px rgba(6, 182, 212, 0.1);
}

.cc-contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.12);
}

.cc-contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.cc-contact-info-value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.cc-contact-info-value--link {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.cc-contact-info-value--link:hover {
  color: #67e8f9;
}

.cc-contact-info-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cc-contact-hours {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  width: 100%;
}

.cc-contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  color: var(--text-muted);
}

.cc-contact-hours li span:last-child {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.cc-contact-main {
  padding-top: 4rem;
}

.cc-contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .cc-contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.cc-contact-form-panel {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.cc-contact-form-header {
  margin-bottom: 1.75rem;
}

.cc-contact-form-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cc-contact-form-header p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.cc-contact-form {
  gap: 1.25rem;
}

.cc-contact-form-trust {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cc-contact-form-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cc-contact-form-trust svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.cc-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc-contact-map-card,
.cc-contact-sidebar-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.cc-contact-map-card:hover,
.cc-contact-sidebar-card:hover {
  border-color: var(--border-hover);
}

.cc-contact-map-header h3,
.cc-contact-sidebar-card h3 {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.cc-contact-map-header p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cc-contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.cc-contact-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) brightness(0.9);
}

.cc-contact-address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.cc-contact-address strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cc-contact-directions {
  width: 100%;
  justify-content: center;
}

.cc-contact-areas {
  justify-content: flex-start;
  margin-bottom: 0;
}

.cc-contact-open-today {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cc-contact-open-dot {
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.6);
  animation: cc-pulse 2s ease-in-out infinite;
}

.cc-contact-open-today strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.cc-contact-open-today span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cc-contact-quote-section {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.cc-contact-quote-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 182, 212, 0.22);
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(6, 182, 212, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(139, 92, 246, 0.14), transparent 50%),
    linear-gradient(165deg, rgba(17, 24, 39, 0.95), rgba(10, 10, 15, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.cc-contact-quote-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.cc-contact-quote-orb--1 {
  width: 240px;
  height: 240px;
  top: -100px;
  left: -60px;
  background: rgba(6, 182, 212, 0.22);
  animation: cc-float 8s ease-in-out infinite;
}

.cc-contact-quote-orb--2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -40px;
  background: rgba(139, 92, 246, 0.2);
  animation: cc-float 10s ease-in-out infinite reverse;
}

.cc-contact-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.cc-contact-quote-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cc-contact-quote-inner > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.cc-contact-quote-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}

.cc-contact-quote-features li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .cc-contact-quote-features {
    flex-wrap: wrap;
  }
}

.cc-contact-quote-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--cyan);
}

.cc-contact-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.cc-contact-quote-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.cc-contact-quote-note svg {
  color: var(--cyan);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cc-contact-info-card--link:hover {
    transform: none;
  }

  .cc-contact-quote-orb--1,
  .cc-contact-quote-orb--2 {
    animation: none;
  }
}

/* Portfolio */
.cc-portfolio-card {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition:
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}

.cc-portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(6, 182, 212, 0.12);
}

.cc-portfolio-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-portfolio-card:hover img {
  transform: scale(1.06);
}

.cc-portfolio-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.cc-portfolio-card-body {
  padding: 1.25rem;
}

.cc-portfolio-card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
}

.cc-portfolio-card-summary {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc-portfolio-card-body span {
  font-size: 0.8125rem;
  color: var(--cyan);
}

.cc-portfolio-card-hint {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}

.cc-portfolio-card:hover .cc-portfolio-card-hint {
  color: var(--cyan);
}

/* Portfolio modal */
body.cc-modal-open {
  overflow: hidden;
}

.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cc-modal[hidden] {
  display: none;
}

.cc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.cc-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  max-height: min(90vh, 800px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: cc-modal-in 0.25s ease;
}

.cc-modal-panel--portfolio {
  max-width: min(56rem, 96vw);
  max-height: min(94vh, 1200px);
}

@keyframes cc-modal-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cc-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(10, 10, 15, 0.85);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cc-modal-close:hover {
  border-color: var(--border-hover);
  color: var(--cyan);
}

.cc-modal-content {
  max-height: min(90vh, 800px);
  overflow-y: auto;
}

.cc-modal-panel--portfolio .cc-modal-content {
  max-height: min(94vh, 1200px);
}

.cc-portfolio-modal-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}

.cc-portfolio-modal-hero img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 880px);
  object-fit: contain;
  object-position: center top;
  display: block;
}

.cc-portfolio-modal-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.cc-portfolio-modal-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.cc-portfolio-modal-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: 1.25;
}

.cc-portfolio-modal-summary {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cc-portfolio-modal-meta {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cc-portfolio-modal-meta li {
  margin: 0;
}

.cc-portfolio-modal-meta strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 0.125rem;
}

.cc-portfolio-modal-section {
  margin-bottom: 1.25rem;
}

.cc-portfolio-modal-section h3 {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.cc-portfolio-modal-section p,
.cc-portfolio-modal-case {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.cc-portfolio-modal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cyan);
  transition: color 0.2s;
}

.cc-portfolio-modal-link:hover {
  color: #67e8f9;
}

.cc-portfolio-modal-empty {
  color: var(--text-dim);
  font-style: italic;
}

.cc-portfolio-modal-actions {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Testimonials */
.cc-testimonial {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.cc-testimonial-quote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.cc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cc-testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.cc-testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
}

.cc-testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.cc-stars {
  color: #facc15;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

/* Blog */
.cc-blog-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.cc-blog-list-section {
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .cc-blog-list-section {
    padding-top: 4rem;
  }
}

.cc-blog-featured {
  display: grid;
  gap: 0;
  margin-bottom: 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition:
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 900px) {
  .cc-blog-featured {
    grid-template-columns: 1.1fr 1fr;
  }
}

.cc-blog-featured:hover {
  border-color: var(--border-hover);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 48px rgba(6, 182, 212, 0.08);
}

.cc-blog-featured-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 14rem;
}

@media (min-width: 900px) {
  .cc-blog-featured-media {
    min-height: 100%;
  }
}

.cc-blog-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-blog-featured:hover .cc-blog-featured-media img {
  transform: scale(1.04);
}

.cc-blog-featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.35);
  backdrop-filter: blur(8px);
}

.cc-blog-featured-body {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cc-blog-featured-title {
  margin: 0.75rem 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cc-blog-featured-title a {
  color: inherit;
  transition: color 0.2s;
}

.cc-blog-featured-title a:hover {
  color: var(--cyan);
}

.cc-blog-featured-excerpt {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.cc-blog-section-label {
  margin-bottom: 1.75rem;
}

.cc-blog-section-label h2 {
  margin: 0 0 0.35rem;
  font-size: 1.375rem;
  font-weight: 700;
}

.cc-blog-section-label p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.cc-blog-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

.cc-blog-empty a {
  color: var(--cyan);
}

.cc-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition:
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}

.cc-blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(6, 182, 212, 0.08);
}

.cc-blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.cc-blog-card-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-blog-card:hover .cc-blog-card-media img {
  transform: scale(1.05);
}

.cc-blog-card-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.22);
}

.cc-blog-card-media .cc-blog-card-tag {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  margin: 0;
  backdrop-filter: blur(8px);
}

.cc-blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.cc-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.cc-blog-meta time {
  color: var(--cyan);
}

.cc-blog-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.cc-blog-card-title a {
  color: inherit;
  transition: color 0.2s;
}

.cc-blog-card-title a:hover {
  color: var(--cyan);
}

.cc-blog-card-excerpt {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.cc-blog-card-link {
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* Blog article (detail) */
.cc-blog-article-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 1.5rem);
  overflow: hidden;
}

.cc-blog-article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding-bottom: 2rem;
}

.cc-blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.cc-blog-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.cc-blog-breadcrumb a:hover {
  color: var(--cyan);
}

.cc-blog-breadcrumb [aria-current="page"] {
  color: var(--text-muted);
}

.cc-blog-article-title {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cc-blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cc-blog-article-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.cc-blog-author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.cc-blog-article-hero-image {
  position: relative;
  max-height: 28rem;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cc-blog-article-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 45%);
  pointer-events: none;
}

.cc-blog-article-hero-image img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: center;
}

.cc-blog-article-body-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.cc-blog-article-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .cc-blog-article-layout {
    grid-template-columns: 1fr 18rem;
    gap: 3rem;
  }
}

.cc-blog-prose {
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.cc-blog-prose h2 {
  margin: 2.25rem 0 0.875rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.cc-blog-prose h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.cc-blog-prose p {
  margin: 0 0 1.25rem;
}

.cc-blog-prose ul,
.cc-blog-prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.cc-blog-prose li {
  margin-bottom: 0.5rem;
}

.cc-blog-prose strong {
  color: var(--text);
  font-weight: 600;
}

.cc-blog-prose em {
  color: var(--text);
}

.cc-blog-prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cc-blog-prose a:hover {
  color: #67e8f9;
}

.cc-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .cc-blog-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.cc-blog-sidebar-card {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
}

.cc-blog-sidebar-card h3 {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
}

.cc-blog-sidebar-card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.cc-blog-share {
  display: flex;
  gap: 0.625rem;
}

.cc-blog-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cc-blog-share-btn:hover {
  border-color: var(--border-hover);
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.08);
}

.cc-blog-sidebar-cta .cc-btn {
  width: 100%;
}

.cc-blog-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-blog-related-list li {
  border-top: 1px solid var(--border);
}

.cc-blog-related-list li:first-child {
  border-top: none;
}

.cc-blog-related-list a {
  display: block;
  padding: 0.875rem 0;
  transition: padding-left 0.2s;
}

.cc-blog-related-list a:hover {
  padding-left: 0.25rem;
}

.cc-blog-related-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.cc-blog-related-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.cc-blog-article-footer {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--border);
}

/* About page */
.cc-about-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.cc-about-stats-section {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .cc-about-stats-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.cc-about-stats {
  margin-top: 0;
}

.cc-about-story-section {
  padding-top: 4rem;
}

.cc-about-story {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cc-about-story {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.cc-about-story-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.cc-about-story-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-about-story-media:hover img {
  transform: scale(1.03);
}

.cc-about-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.cc-about-story-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 15, 0.75);
  border: 1px solid rgba(6, 182, 212, 0.3);
  backdrop-filter: blur(10px);
}

.cc-about-story-badge-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.2;
}

.cc-about-story-badge-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.cc-about-story-content .cc-badge {
  margin-bottom: 1rem;
}

.cc-about-story-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cc-about-story-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.cc-about-story-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.cc-about-story-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.cc-about-story-list svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--cyan);
}

.cc-about-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.cc-about-process {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cc-about-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cc-about-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.cc-about-process-step {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition:
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}

.cc-about-process-step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.1);
}

.cc-about-process-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(to bottom, rgba(6, 182, 212, 0.35), rgba(6, 182, 212, 0.08));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.cc-about-process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.cc-about-process-step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .cc-about-process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.875rem;
    width: 1rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.4), transparent);
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc-about-story-media:hover img,
  .cc-about-process-step:hover {
    transform: none;
  }
}

/* Estimator */
.cc-estimator {
  max-width: 40rem;
  margin: 0 auto;
}

.cc-estimator-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cc-estimator-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}

.cc-estimator-step-dot.is-done,
.cc-estimator-step-dot.is-active {
  background: linear-gradient(to right, var(--cyan-dark), var(--blue));
}

.cc-estimator-panel {
  display: none;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.cc-estimator-panel.is-active {
  display: block;
}

.cc-option-grid {
  display: grid;
  gap: 0.75rem;
}

.cc-option {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cc-option:hover {
  border-color: var(--border-hover);
}

.cc-option input {
  display: none;
}

.cc-option:has(input:checked) {
  border-color: var(--cyan-dark);
  background: rgba(6, 182, 212, 0.08);
}

.cc-option strong {
  display: block;
  margin-bottom: 0.25rem;
}

.cc-option span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cc-estimator-result {
  text-align: center;
  padding: 2rem;
}

.cc-estimator-result .cc-stat-value {
  font-size: 2.5rem;
  color: var(--cyan);
}

.cc-estimator-details-form {
  margin-top: 0;
}

.cc-estimator-details-form .cc-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Legacy page wrapper */
.cc-legacy-page {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.cc-legacy-page .services-details-area,
.cc-legacy-page .project-area,
.cc-legacy-page .contact-area {
  background: transparent;
}

.cc-legacy-page h1,
.cc-legacy-page h2,
.cc-legacy-page h3,
.cc-legacy-page h4 {
  color: var(--text);
}

.cc-legacy-page p,
.cc-legacy-page li {
  color: var(--text-muted);
}

/* Toast */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  animation: cc-toast-in 0.3s ease;
}

.toast-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.toast-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

@keyframes cc-toast-in {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-weight: 500;
  transition: gap 0.2s;
}

.cc-link-arrow:hover {
  gap: 0.75rem;
  color: #67e8f9;
}

.cc-text-center {
  text-align: center;
}

.cc-mt-10 {
  margin-top: 2.5rem;
}

main.cc-main {
  min-height: 50vh;
}

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

.cc-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cc-area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}

.cc-area-pill:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(6, 182, 212, 0.45);
  background: rgba(6, 182, 212, 0.14);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.cc-areas-note {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}

/* ── Motion & scroll reveal ── */
@keyframes cc-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-8px, 10px) scale(0.98);
  }
}

@keyframes cc-gradient-shift {
  to {
    background-position: 200% center;
  }
}

@keyframes cc-shine-sweep {
  0% {
    transform: translateX(-100%) skewX(-18deg);
  }
  100% {
    transform: translateX(250%) skewX(-18deg);
  }
}

.cc-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.cc-reveal.cc-reveal-scale {
  transform: translateY(24px) scale(0.96);
}

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

.cc-hero.is-hero-ready .cc-reveal-hero {
  opacity: 1;
  transform: translateY(0);
}

.cc-hero .cc-reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.cc-cta:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.cc-cta.is-visible {
  animation: cc-cta-pop 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cc-cta-pop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cc-cta-shine {
  animation: cc-shine-sweep 8s ease-in-out infinite;
}

.cc-testimonial {
  transition:
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}

.cc-testimonial:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.08);
}

.cc-page-hero .cc-reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.cc-page-hero.is-hero-ready .cc-reveal-hero {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cc-reveal,
  .cc-hero .cc-reveal-hero,
  .cc-page-hero .cc-reveal-hero {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cc-hero-glow-1,
  .cc-hero-glow-2,
  .cc-cta-orb--1,
  .cc-cta-orb--2,
  .cc-gradient-text,
  .cc-cta-shine {
    animation: none;
  }

  .cc-card::after,
  .cc-card:hover,
  .cc-process-card:hover,
  .cc-portfolio-card:hover,
  .cc-blog-card:hover,
  .cc-stat:hover,
  .cc-area-pill:hover,
  .cc-testimonial:hover {
    transform: none;
  }

  .cc-card:hover::after {
    left: -120%;
  }

  .cc-portfolio-card:hover img,
  .cc-blog-card:hover img,
  .cc-process-card:hover .cc-process-img img {
    transform: none;
  }
}
