:root {
  --cb-red: #e31c25;
  --cb-red-light: #ff3b42;
  --cb-black: #000000;
  --cb-surface: #1c1c1e;
  --cb-white: #f5f5f7;
  --cb-gray: #86868b;
  --cb-border: rgba(255, 255, 255, 0.08);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, sans-serif;
  --font-mono: "SF Mono", SFMono-Regular, ui-monospace, "Cascadia Code", Menlo, monospace;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  background: var(--cb-black);
  color: var(--cb-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.theme-light {
  background: var(--cb-white);
  color: #1d1d1f;
}

a {
  text-decoration: none;
}

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

::selection {
  background: rgba(227, 28, 37, 0.3);
  color: var(--cb-white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(134, 134, 139, 0.4);
  border-radius: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100vw - 24px));
  padding: 10px 24px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow var(--transition);
  animation: fadeDown 0.6s var(--transition) both;
}

body.theme-light .navbar {
  background: rgba(245, 245, 247, 0.72);
  border-color: rgba(6, 6, 6, 0.666);
}

.navbar.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cb-white);
  white-space: nowrap;
}

body.theme-light .nav-logo-text {
  color: #000000;
}

.logo-for-dark {
  display: block;
}

.logo-for-light {
  display: none;
}

body.theme-light .logo-for-dark {
  display: none;
}

body.theme-light .logo-for-light {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cb-gray);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--cb-white);
  background: rgba(255, 255, 255, 0.06);
}

body.theme-light .nav-links a {
  color: #555555;
}

body.theme-light .nav-links a:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-theme {
  margin-left: 6px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  color: var(--cb-gray);
  padding: 6px;
  border-radius: 9999px;
  font-size: 1rem;
  line-height: 1;
  transition: color var(--transition), background var(--transition);
}

.btn-theme:hover {
  color: var(--cb-white);
  background: rgba(255, 255, 255, 0.08);
}

body.theme-light .btn-theme {
  border-color: rgba(0, 0, 0, 0.18);
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--cb-red);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(227, 28, 37, 0.3);
  transition: box-shadow var(--transition), transform var(--transition);
}

.btn-cta-nav:hover {
  box-shadow: 0 0 40px rgba(227, 28, 37, 0.5);
  transform: translateY(-2px);
}

.btn-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cb-white);
  padding: 4px;
}

body.theme-light .btn-hamburger {
  color: #000000;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 12px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  flex-direction: column;
  gap: 4px;
}

body.theme-light .nav-mobile {
  background: rgba(245, 245, 247, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
}

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

.nav-mobile a {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cb-gray);
  transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover {
  color: var(--cb-white);
  background: rgba(255, 255, 255, 0.06);
}

body.theme-light .nav-mobile a:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.06);
}

.nav-mobile .btn-cta-nav {
  margin-top: 8px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 28, 37, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cb-gray);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

body.theme-light .hero-badge {
  color: #555555;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cb-red);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 24px;
}

.hero h1 .line-1 {
  display: block;
  color: var(--cb-white);
}

body.theme-light .hero h1 .line-1 {
  color: #000000;
}

.hero h1 .line-2 {
  display: block;
  background: linear-gradient(90deg, var(--cb-red), var(--cb-red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--cb-gray);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cb-red);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(227, 28, 37, 0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}

.btn-hero:hover {
  box-shadow: 0 0 50px rgba(227, 28, 37, 0.55);
  transform: translateY(-3px);
}

.btn-hero svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.btn-hero:hover svg {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: fadeIn 1s 1.5s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

body.theme-light .scroll-mouse {
  border-color: rgba(0, 0, 0, 0.2);
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--cb-white);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

body.theme-light .scroll-wheel {
  background: #000000;
}

.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cb-red);
  margin-bottom: 12px;
}

.section-label-center {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--cb-white);
  margin-bottom: 60px;
  text-align: center;
}

body.theme-light .section-title {
  color: #000000;
}

.cards-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card,
.pricing-card,
.lead-card {
  background: var(--cb-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card,
.pricing-card {
  border-radius: 24px;
  padding: 32px;
}

.lead-card {
  border-radius: 28px;
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

body.theme-light .card,
body.theme-light .pricing-card,
body.theme-light .lead-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(227, 28, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--cb-red);
  stroke: var(--cb-red);
}

.card-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cb-gray);
  margin-bottom: 4px;
}

.card-title,
.lead-title,
.pricing-name,
.footer-name {
  color: var(--cb-white);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

body.theme-light .card-title,
body.theme-light .lead-title,
body.theme-light .pricing-name,
body.theme-light .footer-name {
  color: #000000;
}

.bar-row {
  margin-bottom: 16px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--cb-gray);
}

.bar-label span:last-child {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--cb-white);
}

body.theme-light .bar-label span:last-child {
  color: #000000;
}

.bar-track {
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

body.theme-light .bar-track {
  background: #f0f0f0;
}

.bar-fill {
  height: 100%;
  border-radius: 9999px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-fill.white {
  background: var(--cb-white);
}

body.theme-light .bar-fill.white {
  background: #000000;
}

.bar-fill.red {
  background: var(--cb-red);
}

.risk-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(227, 28, 37, 0.1);
  color: var(--cb-red);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 20px;
}

.risk-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--cb-red);
  flex-shrink: 0;
}

.terminal {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.8;
  min-height: 120px;
  margin-bottom: 20px;
}

body.theme-light .terminal {
  background: #f4f4f5;
  border-color: rgba(0, 0, 0, 0.08);
}

.terminal .cmd {
  color: #4ade80;
}

body.theme-light .terminal .cmd {
  color: #16a34a;
}

.terminal .output {
  color: var(--cb-gray);
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
  color: var(--cb-red);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.data-cell {
  text-align: center;
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

body.theme-light .data-cell,
body.theme-light .step {
  background: #f4f4f5;
}

.data-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--cb-white);
}

body.theme-light .data-value {
  color: #000000;
}

.data-label {
  font-size: 0.7rem;
  color: var(--cb-gray);
  margin-top: 3px;
}

.blueprint-desc {
  font-size: 0.85rem;
  color: var(--cb-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.step {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 10px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(227, 28, 37, 0.1);
  color: var(--cb-red);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-week {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-red);
}

.step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cb-white);
  margin: 2px 0;
}

body.theme-light .step-title {
  color: #000000;
}

.step-desc {
  font-size: 0.75rem;
  color: var(--cb-gray);
}

.manifesto {
  padding: 120px 24px;
  text-align: left;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto p {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cb-white);
  margin-bottom: 28px;
}

body.theme-light .manifesto p {
  color: #000000;
}

.manifesto p.accent {
  color: var(--cb-red);
}

.lead-icon {
  color: var(--cb-red);
  margin: 0 auto 24px;
}

.lead-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--cb-red);
}

.lead-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead-desc {
  font-size: 1rem;
  color: var(--cb-gray);
  max-width: 580px;
  margin: 0 auto 36px;
}

.lead-desc strong {
  color: var(--cb-white);
}

body.theme-light .lead-desc strong {
  color: #000000;
}

.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.lead-form input {
  flex: 1 1 200px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cb-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

body.theme-light .lead-form input {
  background: #f4f4f5;
  border-color: rgba(0, 0, 0, 0.1);
  color: #000000;
}

.lead-form input::placeholder {
  color: var(--cb-gray);
}

.lead-form input:focus {
  border-color: rgba(227, 28, 37, 0.5);
  box-shadow: 0 0 0 3px rgba(227, 28, 37, 0.1);
}

.btn-lead {
  padding: 14px 24px;
  border-radius: 14px;
  border: 2px solid var(--cb-red);
  background: transparent;
  color: var(--cb-red);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-lead:hover {
  background: var(--cb-red);
  color: #ffffff;
}

.lead-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cb-white);
}

body.theme-light .lead-success {
  color: #000000;
}

.lead-success .check-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-success svg {
  width: 20px;
  height: 20px;
  stroke: #4ade80;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--cb-red);
  box-shadow: 0 0 40px rgba(227, 28, 37, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cb-red);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--cb-gray);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cb-white);
  margin-bottom: 4px;
}

body.theme-light .pricing-price {
  color: #000000;
}

.pricing-unit {
  font-size: 0.8rem;
  color: var(--cb-gray);
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0;
}

body.theme-light .pricing-divider {
  background: rgba(0, 0, 0, 0.06);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--cb-gray);
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.featured .pricing-features li svg {
  stroke: var(--cb-red);
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-pricing.outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cb-white);
  background: rgba(255, 255, 255, 0.04);
}

body.theme-light .btn-pricing.outline {
  border-color: rgba(0, 0, 0, 0.1);
  color: #000000;
  background: rgba(0, 0, 0, 0.04);
}

.btn-pricing.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.theme-light .btn-pricing.outline:hover {
  background: rgba(0, 0, 0, 0.08);
}

.btn-pricing.solid {
  background: var(--cb-red);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(227, 28, 37, 0.3);
}

.btn-pricing.solid:hover {
  box-shadow: 0 0 40px rgba(227, 28, 37, 0.5);
  transform: translateY(-2px);
}

.footer {
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-light .footer {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.footer-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--cb-gray);
  margin-top: 6px;
}

.footer-address svg {
  width: 14px;
  height: 14px;
  stroke: var(--cb-gray);
  flex-shrink: 0;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cb-gray);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 2s ease-in-out infinite;
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.social-link {
  position: relative;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link img {
  position: absolute;
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.icon-black {
  opacity: 1;
  transform: scale(1);
  filter: brightness(0) invert(1);
}

body.theme-light .icon-black {
  filter: brightness(0);
}

.icon-color {
  opacity: 0;
  transform: scale(0.88);
}

.social-link:hover .icon-black {
  opacity: 0;
  transform: scale(0.88);
}

.social-link:hover .icon-color {
  opacity: 1;
  transform: scale(1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-light .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.footer-copy,
.footer-links a {
  font-size: 0.75rem;
  color: rgba(134, 134, 139, 0.6);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cb-white);
}

body.theme-light .footer-links a:hover {
  color: #000000;
}

@media (max-width: 900px) {
  .cards-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    gap: 12px;
    padding: 10px 16px;
  }

  .nav-links,
  .btn-cta-nav:not(.mobile-cta) {
    display: none;
  }

  .btn-hamburger {
    display: block;
  }

  .nav-logo-text {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 140px;
  }
}

@media (max-width: 600px) {
  .lead-form {
    flex-direction: column;
  }

  .lead-form input,
  .btn-lead {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-address {
    justify-content: center;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.35);
  }
}
