* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #000;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 76%, transparent 77%, transparent);
  background-size: 100px 100px;
  background-attachment: fixed;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.08) 76%, transparent 0%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.08) 76%, transparent 0%, transparent);
  background-size: 100px 100px;
  background-attachment: fixed;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 150, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 150, 255, 0.6); }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 150, 255, 0.5); }
  50% { text-shadow: 0 0 20px rgba(0, 150, 255, 0.8), 0 0 40px rgba(0, 150, 255, 0.4); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 150, 255, 0.3); }
  50% { border-color: rgba(0, 150, 255, 0.6); }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes scanLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes progressBar {
  from { width: 0; }
  to { width: var(--target-width); }
}

.cursor-glow {
  display: none;
}


.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 150, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 150, 255, 0.1);
}

.pack-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  position: relative;
}

.logo-text {
  color: #fff;
}

.logo-ccu {
  color: #0096ff;
  text-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0096ff, #00d4ff);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #60a5fa;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 24px;
  transition: color 0.3s;
}

.menu-toggle:hover {
  color: #0096ff;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

#nav-menu.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.98);
  border-top: 1px solid rgba(0, 150, 255, 0.4);
  padding: 24px;
  gap: 20px;
}

.hero {
  min-height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(0, 150, 255, 0.1) 25%, rgba(0, 150, 255, 0.1) 26%, transparent 27%, transparent 74%, rgba(0, 150, 255, 0.1) 75%, rgba(0, 150, 255, 0.1) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(0, 150, 255, 0.1) 25%, rgba(0, 150, 255, 0.1) 26%, transparent 27%, transparent 74%, rgba(0, 150, 255, 0.1) 75%, rgba(0, 150, 255, 0.1) 76%, transparent 77%, transparent);
  background-size: 80px 80px;
  animation: fadeInScale 1s ease-out;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
  z-index: 2;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-logo-text {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-logo-ccu {
  color: #0096ff;
  text-shadow: 0 0 30px rgba(0, 150, 255, 0.6);
  animation: textGlow 3s ease-in-out infinite;
}

.hero-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 1024px) {
  .hero-title { font-size: 72px; }
}

.hero-title .accent {
  color: #0096ff;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px rgba(0, 150, 255, 0.5);
}

.hero-description {
  font-size: 20px;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 1024px) {
  .hero-description { font-size: 22px; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; gap: 20px; }
}

.btn {
  padding: 18px 40px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 150, 255, 0.4);
  animation: glowPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(0, 150, 255, 0.7);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0077dd 0%, #0055aa 100%);
}

.btn-secondary {
  border: 2px solid rgba(0, 150, 255, 0.6);
  color: #60a5fa;
  background-color: transparent;
}

.btn-secondary:hover {
  border-color: #0096ff;
  color: #93c5fd;
  box-shadow: 0 0 30px rgba(0, 150, 255, 0.4), inset 0 0 30px rgba(0, 150, 255, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid rgba(0, 150, 255, 0.3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
  text-align: center;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(0, 150, 255, 0.5), transparent);
}

.stat:last-child::after {
  display: none;
}

.stat-value {
  font-size: 42px;
  font-weight: 900;
  color: #0096ff;
  text-shadow: 0 0 30px rgba(0, 150, 255, 0.5);
}

.stat-label {
  font-size: 11px;
  color: #6b7280;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .section-title { font-size: 56px; }
}

.section-subtitle {
  font-size: 18px;
  color: #9ca3af;
  max-width: 700px;
  margin-bottom: 80px;
  line-height: 1.7;
}

.what-we-do {
  background-color: #000;
  padding: 120px 24px;
  border-top: 1px solid rgba(0, 150, 255, 0.3);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.08) 0%, transparent 100%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 150, 255, 0.1), transparent 30%);
  animation: rotateGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(0, 150, 255, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.2);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 150, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.feature-card p {
  color: #9ca3af;
  line-height: 1.7;
  position: relative;
}

.templates {
  background-color: #000;
  padding: 120px 24px;
  border-top: 1px solid rgba(0, 150, 255, 0.3);
}

.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .templates-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
}

.template-card {
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.template-card:hover {
  border-color: rgba(0, 150, 255, 0.6);
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1) 0%, transparent 100%);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.2);
}

.template-card:hover .card-glow {
  opacity: 1;
}

.template-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.5));
}

.fishing-models {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 150, 255, 0.2);
}

.rod-model {
  font-size: 56px;
  filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.4));
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.rod-model:nth-child(2) {
  animation-delay: 0.3s;
}

.rod-model:nth-child(3) {
  animation-delay: 0.6s;
}

.template-card:hover .rod-model {
  filter: drop-shadow(0 0 25px rgba(0, 150, 255, 0.7));
  transform: scale(1.1);
}

.pack-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack-features li {
  color: #9ca3af;
  font-size: 13px;
  padding-left: 16px;
  position: relative;
}

.pack-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0096ff;
  font-weight: bold;
}

.template-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}

.template-card p {
  color: #9ca3af;
  margin-bottom: 28px;
  line-height: 1.7;
  position: relative;
}

.template-meta {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 150, 255, 0.2);
  color: #0096ff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.meta-arrow {
  transition: transform 0.3s ease;
}

.template-card:hover .meta-arrow {
  transform: translateX(5px);
}

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid #dc2626;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.btn-order:hover::before {
  left: 100%;
}

.btn-order:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-color: #ef4444;
}

.btn-order:active {
  transform: translateY(-2px);
}

.order-text {
  font-weight: 800;
}

.order-arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: bold;
}

.btn-order:hover .order-arrow {
  transform: translateX(4px);
}

.discord-cta {
  border: 1px solid rgba(0, 150, 255, 0.4);
  border-radius: 16px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.15) 0%, transparent 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.discord-cta h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.discord-cta p {
  color: #9ca3af;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.why-us {
  background-color: #000;
  padding: 120px 24px;
  border-top: 1px solid rgba(0, 150, 255, 0.3);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 100px;
}

@media (min-width: 768px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
}

.reason {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-left: 80px;
}

.reason-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 150, 255, 0.15);
  line-height: 1;
}

.reason h3 {
  font-size: 22px;
  font-weight: 900;
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.reason p {
  color: #d1d5db;
  line-height: 1.7;
}

.stats-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 80px;
  border-top: 1px solid rgba(0, 150, 255, 0.3);
}

@media (min-width: 768px) {
  .stats-section { grid-template-columns: repeat(3, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(0, 150, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.05) 0%, transparent 100%);
  transition: all 0.4s ease;
}

.stat-item:hover {
  border-color: rgba(0, 150, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 150, 255, 0.15);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #0096ff;
  display: block;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(0, 150, 255, 0.5);
}

.stat-bar {
  height: 4px;
  background: rgba(0, 150, 255, 0.2);
  border-radius: 2px;
  margin: 16px auto;
  width: 80%;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #0096ff, #00d4ff);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s ease-out;
}

.stat-fill.infinite {
  width: 100%;
  background: linear-gradient(90deg, #0096ff, #00d4ff, #0096ff, #00d4ff);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.stat-item p {
  color: #9ca3af;
  font-size: 14px;
}

.footer {
  background-color: #000;
  border-top: 1px solid rgba(0, 150, 255, 0.3);
  padding: 80px 24px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 640px) {
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .footer-content { grid-template-columns: repeat(4, 1fr); }
}

.footer-section h3,
.footer-section h4 {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-logo {
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
}

.footer-logo-ccu {
  color: #0096ff;
  text-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a:hover {
  color: #60a5fa;
  padding-left: 8px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 150, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; }
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}

.makebig-logo {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.makebig-logo .makebig-big {
  color: #dc2626;
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.footer-bottom p {
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .hero-description { font-size: 18px; }
  .section-subtitle { font-size: 16px; }
  .hero-title { font-size: 40px; }
  .section-title { font-size: 36px; }
}
