/* TeenDigital CSS - O'zbekiston qizlari uchun IT platformasi */

:root {
  --coral: #FF6B6B;
  --coral-light: #FFB3B3;
  --mint: #00C9A7;
  --mint-light: #B2F0E8;
  --cream: #FFF8F3;
  --ink: #1A0A00;
  --ink-soft: #4A3728;
  --sand: #F5E6D3;
  --gold: #FFD166;
  --lavender: #C9B8FF;
  --bg: #FFF8F3;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,248,243,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,107,0.12);
}
.nav-logo {
  font-family: 'Space Mono', monospace;
  font-weight: 700; font-size: 1.1rem;
  color: var(--coral); letter-spacing: -0.5px;
}
.nav-logo span { color: var(--mint); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-cta {
  background: var(--coral); color: white !important;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: #e55a5a !important; transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,107,0.18), transparent 70%);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,201,167,0.15), transparent 70%);
  bottom: 0; left: 30%;
  animation: float2 10s ease-in-out infinite;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,209,102,0.2), transparent 70%);
  top: 50%; left: -80px;
  animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.08); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px,20px) scale(1.05); }
}

.hero-left { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint-light); color: #007A65;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge::before { content: "✦"; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  color: var(--ink); margin-bottom: 24px;
  letter-spacing: -1px;
}
h1 em {
  font-style: italic; color: var(--coral);
  position: relative; display: inline-block;
}
h1 em::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.08rem; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 40px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--coral); color: white;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(255,107,107,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,107,0.45);
}
.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none; border: 2px solid var(--sand);
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--coral); color: var(--coral);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.6rem; font-weight: 700;
  color: var(--ink);
}
.stat-num span { color: var(--coral); }
.stat-label {
  font-size: 0.78rem; color: var(--ink-soft);
  letter-spacing: 0.5px;
}

.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 320px; height: 420px; }

.floating-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  animation: cardFloat 6s ease-in-out infinite;
}
.floating-card:nth-child(2) { animation-delay: -2s; }
.floating-card:nth-child(3) { animation-delay: -4s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.card-main {
  width: 280px; top: 40px; left: 20px;
  background: white; z-index: 3;
}
.card-main .card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), #FF8E8E);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.card-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 6px;
}
.card-main p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.progress-bar {
  height: 6px; background: var(--sand); border-radius: 3px;
  margin-top: 14px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  width: 65%;
  animation: progressAnim 3s ease-in-out infinite;
}
@keyframes progressAnim {
  0% { width: 40%; }
  50% { width: 75%; }
  100% { width: 40%; }
}

.card-mini-1 {
  width: 180px; top: 10px; right: 0; z-index: 2;
  background: linear-gradient(135deg, var(--mint), #00b396);
  color: white; animation-delay: -1.5s;
}
.card-mini-1 .m-label { font-size: 0.72rem; opacity: 0.85; margin-bottom: 6px; }
.card-mini-1 .m-value { font-family: 'Space Mono', monospace; font-size: 1.4rem; font-weight: 700; }

.card-mini-2 {
  width: 200px; bottom: 30px; right: -10px; z-index: 4;
  animation-delay: -3s;
}
.card-mini-2 .tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  background: var(--mint-light); color: #007A65;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.card-mini-2 .girl-name { font-weight: 600; font-size: 0.85rem; margin-bottom: 2px; }
.card-mini-2 .girl-role { font-size: 0.75rem; color: var(--ink-soft); }
.card-mini-2 .stars { color: var(--gold); font-size: 0.8rem; margin-top: 6px; }

/* ── SECTION COMMON ── */
section { padding: 80px 48px; }
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: '——'; opacity: 0.5; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.15;
  color: var(--ink); margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 1rem; color: var(--ink-soft);
  line-height: 1.65; max-width: 520px;
  margin-bottom: 48px;
}

/* ── PROBLEM ── */
#problem {
  background: var(--ink);
  color: white;
  border-radius: 32px;
  margin: 0 24px;
}
#problem .section-label { color: var(--gold); }
#problem h2 { color: white; }
#problem .section-sub { color: rgba(255,255,255,0.65); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px;
  transition: all 0.25s;
}
.problem-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.problem-card .p-num {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem; font-weight: 700;
  color: var(--coral); line-height: 1; margin-bottom: 16px;
}
.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 10px;
}
.problem-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── ROADMAPS ── */
.roadmap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.roadmap-card {
  border-radius: 24px; padding: 32px;
  transition: all 0.3s; cursor: pointer;
  position: relative; overflow: hidden;
}
.roadmap-card::before {
  content: ''; position: absolute;
  inset: 0; opacity: 0;
  transition: opacity 0.3s;
}
.roadmap-card:hover::before { opacity: 1; }
.roadmap-card:hover { transform: translateY(-6px); }

.rc-design {
  background: linear-gradient(145deg, #FFF0F0, #FFE4E4);
  border: 2px solid rgba(255,107,107,0.2);
}
.rc-design:hover { box-shadow: 0 20px 60px rgba(255,107,107,0.2); }

.rc-smm {
  background: linear-gradient(145deg, #F0FFF8, #E0FFF5);
  border: 2px solid rgba(0,201,167,0.2);
}
.rc-smm:hover { box-shadow: 0 20px 60px rgba(0,201,167,0.2); }

.rc-dev {
  background: linear-gradient(145deg, #F5F0FF, #EDE0FF);
  border: 2px solid rgba(201,184,255,0.4);
}
.rc-dev:hover { box-shadow: 0 20px 60px rgba(201,184,255,0.35); }

.rc-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.rc-design .rc-icon { background: rgba(255,107,107,0.15); }
.rc-smm .rc-icon { background: rgba(0,201,167,0.15); }
.rc-dev .rc-icon { background: rgba(201,184,255,0.3); }

.rc-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.rc-design .rc-label { color: var(--coral); }
.rc-smm .rc-label { color: var(--mint); }
.rc-dev .rc-label { color: #8B68FF; }

.roadmap-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  margin-bottom: 12px;
}
.roadmap-card p {
  font-size: 0.88rem; color: var(--ink-soft);
  line-height: 1.6; margin-bottom: 20px;
}
.rc-steps { list-style: none; }
.rc-steps li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--ink-soft);
  padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.rc-steps li:last-child { border: none; }
.rc-steps li::before {
  content: '→'; font-size: 0.7rem;
  margin-top: 2px; flex-shrink: 0;
  color: var(--coral);
}
.rc-smm .rc-steps li::before { color: var(--mint); }
.rc-dev .rc-steps li::before { color: #8B68FF; }

.rc-free {
  display: inline-block; margin-top: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
}
.rc-design .rc-free { background: rgba(255,107,107,0.12); color: var(--coral); }
.rc-smm .rc-free { background: rgba(0,201,167,0.12); color: var(--mint); }
.rc-dev .rc-free { background: rgba(201,184,255,0.25); color: #8B68FF; }

/* ── SERVICES MARKET ── */
#services {
  background: var(--sand);
  border-radius: 32px;
  margin: 0 24px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.service-card {
  background: white; border-radius: 18px; padding: 22px;
  transition: all 0.25s; cursor: pointer;
  border: 2px solid transparent;
}
.service-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,107,107,0.12);
}
.s-emoji { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.service-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.service-card .price {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem; font-weight: 700; color: var(--coral);
  margin-bottom: 6px;
}
.service-card .delivery {
  font-size: 0.74rem; color: var(--ink-soft);
}
.commission-note {
  display: flex; align-items: center; gap: 12px;
  background: white; border-radius: 16px; padding: 16px 24px;
  margin-top: 24px; border-left: 4px solid var(--mint);
  font-size: 0.88rem;
}
.commission-note strong { color: var(--mint); }

/* ── STORIES ── */
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: white; border-radius: 24px; padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.25s; position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '"';
  position: absolute; top: -10px; right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem; color: var(--sand);
  line-height: 1;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.story-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  position: relative; z-index: 1;
}
.story-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.95rem;
  line-height: 1.65; color: var(--ink);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.story-name { font-weight: 600; font-size: 0.88rem; position: relative; z-index: 1; }
.story-role { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; position: relative; z-index: 1; }
.story-field {
  display: inline-block; margin-top: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
  position: relative; z-index: 1;
}

/* ── HOW IT WORKS ── */
#how {
  background: white;
  border-radius: 32px;
  margin: 0 24px;
}
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.how-steps::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--mint));
  z-index: 0;
}
.how-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.how-num {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 20px;
}
.how-step:nth-child(1) .how-num { background: var(--coral); color: white; }
.how-step:nth-child(2) .how-num { background: var(--gold); color: var(--ink); }
.how-step:nth-child(3) .how-num { background: var(--mint); color: white; }
.how-step:nth-child(4) .how-num { background: var(--lavender); color: var(--ink); }
.how-step h4 { font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; }
.how-step p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.55; }

/* ── CTA ── */
#cta {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8E53 100%);
  border-radius: 32px; margin: 0 24px;
  text-align: center; color: white;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -150px; right: -100px;
}
#cta::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -100px; left: -80px;
}
#cta h2 { color: white; position: relative; z-index: 1; }
#cta p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 36px; position: relative; z-index: 1; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white {
  background: white; color: var(--coral);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent; color: white;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ── FOOTER ── */
footer {
  padding: 48px 48px 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--sand);
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Space Mono', monospace;
  font-weight: 700; color: var(--coral); font-size: 1rem;
}
.footer-logo span { color: var(--mint); }
footer p { font-size: 0.8rem; color: var(--ink-soft); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.82rem; color: var(--ink-soft); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  #hero { padding: 120px 24px 60px; }
  .hero-left { max-width: 100%; }
}

@media (max-width: 992px) {
  nav { padding: 15px 24px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: white; flex-direction: column; padding: 80px 40px;
    gap: 24px; align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .mobile-menu-toggle { display: block !important; }

  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-desc { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; width: 100%; }
  .hero-stats { justify-content: center; flex-wrap: wrap; margin-top: 40px; }
  .hero-right { margin-top: 60px; order: -1; }
  .hero-card-stack { margin: 0 auto; width: 280px; height: 380px; }
  .card-main { width: 240px; }
  
  .problem-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }

  section { padding: 60px 20px; }
  #problem, #roadmaps, #services, #stories, #how, #cta { margin: 0 10px; border-radius: 20px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-stats { gap: 10px; }
  .stat-item { padding: 10px; min-width: 80px; flex: 1; }
  .stat-num { font-size: 1.1rem; }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .form-container { padding: 24px 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .hero-badge { font-size: 0.6rem; letter-spacing: 1px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .problem-card, .roadmap-card, .story-card { padding: 20px; }
  .how-num { width: 50px; height: 50px; font-size: 0.9rem; }
}

/* ── OVERLAY ── */
.nav-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); display: none; z-index: 999;
}
.nav-overlay.active { display: block; }

/* ── FORM STYLES ── */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-submit {
  width: 100%;
  background: var(--coral);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-submit:hover {
  background: #e55a5a;
  transform: translateY(-2px);
}

/* ── ADMIN PANEL STYLES ── */
.admin-header {
  background: var(--ink);
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-nav {
  display: flex;
  gap: 24px;
}
.admin-nav a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.admin-nav a:hover,
.admin-nav a.active {
  background: var(--coral);
}
.admin-content {
  padding: 40px;
}
.admin-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.table-container {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--sand);
}
.admin-table th {
  background: var(--cream);
  font-weight: 600;
}
.btn-edit,
.btn-delete {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-right: 8px;
  transition: all 0.2s;
}
.btn-edit {
  background: var(--mint);
  color: white;
}
.btn-delete {
  background: var(--coral);
  color: white;
}
.btn-edit:hover,
.btn-delete:hover {
  transform: translateY(-1px);
}

/* ── FILTER STYLES ── */
.filter-container {
  background: white;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-container select {
  padding: 8px 12px;
  border: 2px solid var(--sand);
  border-radius: 8px;
  background: white;
}

/* ── ROADMAP PAGES ── */
.roadmap-header {
  text-align: center;
  margin-bottom: 48px;
}
.roadmap-content {
  max-width: 800px;
  margin: 0 auto;
}
.roadmap-section {
  background: white;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.roadmap-section h3 {
  color: var(--coral);
  margin-bottom: 16px;
}
.resource-list {
  list-style: none;
}
.resource-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.resource-list li:last-child {
  border: none;
}
.resource-link {
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
}
.resource-link:hover {
  text-decoration: underline;
}
.resource-badge {
  background: var(--mint-light);
  color: var(--mint);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
