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

:root {
  --green: #3B6D11;
  --green-mid: #639922;
  --green-light: #EAF3DE;
  --green-pale: #f4f9ed;
  --amber: #BA7517;
  --amber-light: #FAEEDA;
  --text: #1a1a18;
  --text-muted: #5F5E5A;
  --surface: #ffffff;
  --bg: #f8f6f1;
  --border: #D3D1C7;
  --discord: #5865F2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(26, 26, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 3px;
  text-decoration: none;
  position: relative;
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--green-mid);
  transition: width 0.3s;
}
.nav-logo:hover::after { width: 100%; }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--green-mid);
  transition: width 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.lang-switch:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.nav-mobile-lang {
  margin-top: 1.5rem;
}
.nav-mobile-lang .lang-switch {
  font-size: 16px;
  padding: 10px 24px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a18 0%, #2c3a1a 50%, #1a1a18 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.hero-video-placeholder p {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bg-disc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99,153,34,0.12);
  animation: spin-slow linear infinite;
}
@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,24,0.85) 0%,
    rgba(26,26,24,0.55) 55%,
    rgba(26,26,24,0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 2.5rem 6rem;
  max-width: 680px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,153,34,0.2);
  border: 1px solid rgba(99,153,34,0.4);
  color: #a8d660;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeInDown 0.8s 0.2s forwards;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.93;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s 0.45s forwards;
}
.hero h1 span {
  color: var(--green-mid);
  display: block;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 0.9s 0.65s forwards;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s 0.85s forwards;
}
.btn-primary {
  background: var(--green-mid);
  color: white;
  padding: 15px 32px;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover { background: var(--green); transform: translateY(-2px); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: white;
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s 1.4s forwards;
}
.scroll-hint span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(99,153,34,0.7), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.stats-bar {
  background: var(--green);
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: white;
  letter-spacing: 1px;
  line-height: 1;
  transition: transform 0.3s;
}
.stat-item:hover .stat-num { transform: scale(1.08); }
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0.5px;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.78;
  font-weight: 300;
}

.location-strip {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.location-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(59,109,17,0.12);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}
.booking-note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--green-mid);
  background: var(--green-pale);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.booking-note strong { color: var(--green); }

/* ── Problem-focused selling section ── */
.problems-section {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding: 2.5rem;
  background: var(--text);
  border-radius: 6px;
}
.problems-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 300;
  line-height: 1.5;
}
.problem-arrow {
  color: var(--green-mid);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}
.problems-cta {
  font-size: 15px;
  color: #a8d660;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

/* ── Inline section anchor ── */
.section-anchor { display: block; visibility: hidden; height: 0; }

/* ── Calendar export buttons ── */
.booking-cal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.booking-cal-actions .btn-ghost {
  font-size: 13px;
  padding: 10px 18px;
}

.about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}
.about-timeline {
  display: flex; flex-direction: column;
  margin-top: 2.5rem;
}
.timeline-item {
  display: flex; gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px; top: 32px;
  width: 1px; bottom: 0;
  background: var(--border);
}
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 500;
  color: var(--green);
  transition: transform 0.3s, background 0.3s;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  background: var(--green-mid);
  color: white;
}
.timeline-year {
  font-size: 11px;
  font-weight: 500;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 3px;
  font-weight: 300;
}

.skills-section { background: var(--text); }
.skills-section .section-title { color: white; }
.skills-section .section-body { color: rgba(255,255,255,0.45); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.skill-item:last-child:nth-child(3n+1) {
  grid-column: 2;
}
.skill-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.skill-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-mid);
  transition: width 0.4s;
}
.skill-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(99,153,34,0.2); }
.skill-item:hover::before { width: 100%; }

.skill-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}
.skill-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
}

.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green-mid);
  transition: height 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #c5d9aa;
  box-shadow: 0 12px 40px rgba(59,109,17,0.1);
}
.service-card:hover::after { height: 100%; }
.service-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: var(--green-mid);
  transform: rotate(-5deg) scale(1.05);
}
.service-card:hover .service-icon svg { stroke: white; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--green);
  letter-spacing: 0.5px;
}
.service-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

.community { background: var(--text); position: relative; overflow: hidden; }
.community::before {
  content: '';
  position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(88, 101, 242, 0.08);
}
.community::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(88, 101, 242, 0.05);
}
.community .section-title { color: white; }
.community .section-body { color: rgba(255,255,255,0.5); }
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.community-price-card {
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.community-price-card:hover {
  border-color: rgba(88, 101, 242, 0.4);
  background: rgba(88, 101, 242, 0.12);
}
.discord-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--discord);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.community-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: white;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.community-price sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  vertical-align: middle;
}
.community-price-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  font-weight: 300;
}
.community-features {
  list-style: none;
  margin-bottom: 2rem;
}
.community-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 300;
  line-height: 1.5;
}
.community-features li:last-child { border-bottom: none; }
.community-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.btn-discord {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--discord);
  color: white;
  padding: 15px 28px;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  justify-content: center;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }
.community-why h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.community-why-item {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: rgba(99,153,34,0.4);
  line-height: 1;
  min-width: 36px;
}
.why-text h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.why-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.6;
}

.pricing { background: var(--surface); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 1060px;
}
.price-card.enterprise {
  border-color: var(--amber);
}
.price-card.enterprise .price-type { color: var(--amber); }
.price-card.enterprise .price-badge { background: var(--amber); }
.price-card.enterprise .price-amount {
  font-size: 38px;
  color: var(--amber);
  line-height: 1.2;
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.price-card.featured {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card.discord-card {
  background: rgba(88, 101, 242, 0.05);
  border-color: rgba(88, 101, 242, 0.2);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.price-type {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.price-card.featured .price-type { color: rgba(255,255,255,0.65); }
.price-card.discord-card .price-type { color: var(--discord); }
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--text);
  letter-spacing: 1px;
  line-height: 1;
}
.price-card.featured .price-amount { color: white; }
.price-card.discord-card .price-amount { color: var(--discord); }
.price-unit {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 300;
}
.price-per-person {
  font-size: 12px;
  color: var(--green-mid);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.3px;
}
.price-card.featured .price-unit { color: rgba(255,255,255,0.65); }
.price-features {
  list-style: none;
  margin: 1.75rem 0;
  text-align: left;
  flex: 1;
}
.price-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 6px;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }
.price-card.discord-card .price-features li::before { background: var(--discord); }

.faq {
  background: var(--bg);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.4rem;
}
.faq-item h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 0.55rem;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.contact-form {
  display: flex; flex-direction: column; gap: 1.1rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 6px;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 13px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(99,153,34,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status {
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  display: none;
}
.form-status.success {
  display: block;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(59,109,17,0.2);
}
.form-status.error {
  display: block;
  background: #fcebeb;
  color: #a32d2d;
  border: 1px solid rgba(163,45,45,0.2);
}

.contact-info-item {
  display: flex; gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 3px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.contact-info-item:hover .contact-icon { background: var(--green-mid); }
.contact-info-item:hover .contact-icon svg { stroke: white; }
.contact-info-text h4 { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.contact-info-text p { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.5; }

footer {
  background: #111110;
  padding: 3rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: white;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.65;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.floating-disc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-180deg); }
}

/* ── Booking steps indicator ── */
.booking-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.booking-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-mid);
  color: white;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-step-text {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}
.booking-step-arrow {
  color: var(--text-muted);
  font-size: 18px;
}

/* ── Booking modal ── */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.booking-overlay.open {
  display: flex;
}
.booking-modal {
  background: var(--surface);
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.booking-close:hover {
  background: var(--border);
  color: var(--text);
}
.booking-modal-step {
  padding: 2.5rem;
}
.booking-modal-step.hidden {
  display: none;
}
.booking-modal-header {
  margin-bottom: 2rem;
}
.booking-modal-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
  display: block;
}
.booking-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.5px;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.booking-modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
.booking-back {
  background: none;
  border: none;
  color: var(--green-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.booking-back:hover { color: var(--green); }

/* Location picker inside modal */
.booking-locations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-region h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.booking-loc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  margin-bottom: 0.5rem;
  text-align: left;
}
.booking-loc-btn:hover {
  border-color: var(--green-mid);
  background: var(--green-pale);
  transform: translateX(4px);
}
.loc-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.loc-info {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}
.booking-loc-other {
  border-style: dashed;
}

/* Calendly embed in modal */
.booking-calendly-wrap {
  min-height: 500px;
}

/* Demo calendar */
.demo-phase.hidden { display: none; }
.demo-times.hidden { display: none; }
#demo-date {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}
.demo-calendar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  flex: 1;
  min-width: 0;
}
.demo-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.demo-cal-month {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--text);
}
.demo-cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.demo-cal-nav:hover {
  background: var(--green-pale);
  border-color: var(--green-mid);
}
.demo-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}
.demo-cal-weekdays span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0;
}
.demo-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.demo-day {
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.demo-day:hover:not(.disabled):not(.empty) {
  background: var(--green-pale);
  color: var(--green);
}
.demo-day.today {
  font-weight: 600;
  border: 1px solid var(--green-mid);
}
.demo-day.available {
  color: var(--green);
  font-weight: 500;
}
.demo-day.selected {
  background: var(--green-mid);
  color: white;
  font-weight: 600;
}
.demo-day.disabled {
  color: var(--border);
  cursor: not-allowed;
}
.demo-day.empty {
  cursor: default;
}

.demo-times {
  flex: 1;
  margin-top: 0;
  min-width: 160px;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}
.demo-times h4 {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.demo-time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.demo-time-btn {
  padding: 0.65rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--green);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.demo-time-btn:hover {
  border-color: var(--green-mid);
  background: var(--green-pale);
}
.demo-time-btn.selected {
  border-color: var(--green-mid);
  background: var(--green-mid);
  color: white;
}

.demo-summary {
  padding: 1rem 1.25rem;
  background: var(--green-pale);
  border: 1px solid rgba(59,109,17,0.12);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.demo-summary strong {
  color: var(--green);
}

.demo-info-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-payment-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}
.demo-payment-box h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 1rem;
}
.demo-pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.demo-pay-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 14px;
}
.demo-pay-option:has(input:checked) {
  border-color: var(--green-mid);
  background: var(--green-pale);
}
.demo-pay-option input[type="radio"] {
  accent-color: var(--green-mid);
}
.demo-pay-placeholder {
  padding: 1rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.demo-done-content {
  text-align: center;
  padding: 2rem 0;
}
.demo-done-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-mid);
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.demo-done-details {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.demo-done-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.demo-done-content p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none;z-index:201;position:relative}
.nav-hamburger span{display:block;width:24px;height:2px;background:white;border-radius:2px;transition:transform 0.3s,opacity 0.3s;transform-origin:center}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-mobile-menu{display:none;position:fixed;inset:0;background:rgba(26,26,24,0.98);z-index:199;flex-direction:column;align-items:center;justify-content:center;padding-top:60px;opacity:0;transition:opacity 0.3s}
.nav-mobile-menu.open{display:flex;opacity:1}
.nav-mobile-menu a{display:block;width:100%;text-align:center;padding:1.25rem 2rem;font-family:'Bebas Neue',sans-serif;font-size:32px;letter-spacing:3px;color:rgba(255,255,255,0.7);text-decoration:none;border-bottom:1px solid rgba(255,255,255,0.06);transition:color 0.2s,background 0.2s}
.nav-mobile-menu a:hover{color:white;background:rgba(99,153,34,0.08)}
.nav-mobile-cta{margin-top:2rem;padding:0 2rem;width:100%;text-align:center}

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .about-grid, .community-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .booking-steps { gap: 0.5rem; }
  .booking-step-arrow { display: none; }
  .booking-modal-step { padding: 1.5rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  #demo-date { flex-direction: column; }
  .demo-calendar { width: 100%; }
}

@media (max-width: 600px) {
  .skills-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .demo-time-slots { grid-template-columns: repeat(2, 1fr); }
  .booking-modal-title { font-size: 28px; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 0; }
  .stat-item { padding: 1.25rem 0.5rem; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10px; letter-spacing: 0.5px; }
  .hero-content { padding: 6.5rem 1.25rem 4rem; }
  .hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero-desc { font-size: 15px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; text-align: center; display: block; }
  .scroll-hint { display: none; }
  section { padding: 3rem 1.25rem; }
  .community-price { font-size: 54px; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}