/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #162338;
  --orange: #FF6B35;
  --orange-dim: rgba(255, 107, 53, 0.15);
  --cream: #F7F4EF;
  --slate: #8B9DB5;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.08);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--orange); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-outline {
  color: var(--orange);
  -webkit-text-stroke: 1px var(--orange);
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 440px;
}

/* Equipment cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.equipment-card {
  background: rgba(22, 35, 56, 0.9);
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.equipment-card:hover {
  border-color: rgba(255, 107, 53, 0.35);
  transform: translateX(4px);
}

.card-offset { margin-left: 2rem; }
.card-offset-2 { margin-left: 4rem; }

.eq-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-dim);
  border-radius: 10px;
}

.eq-info { flex: 1; }

.eq-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.eq-detail {
  font-size: 0.78rem;
  color: var(--slate);
}

.eq-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.per-day {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--slate);
  margin-left: 2px;
}

/* === PROOF BAR === */
.proof {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 107, 53, 0.08);
  border-bottom: 1px solid rgba(255, 107, 53, 0.08);
  padding: 2.5rem 2rem;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
}

/* === FEATURES === */
.features {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.features-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(22, 35, 56, 0.6);
  border: 1px solid rgba(255, 107, 53, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.25s, background 0.25s;
}

.feature-card:hover {
  border-color: rgba(255, 107, 53, 0.2);
  background: rgba(22, 35, 56, 0.9);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-dim);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* === HOW IT WORKS === */
.how {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 107, 53, 0.06);
  padding: 6rem 2rem;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.how-desc {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 107, 53, 0.08);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.35;
  flex-shrink: 0;
  width: 3rem;
  letter-spacing: -0.02em;
}

.step-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.closing-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.closing-tag {
  background: rgba(22, 35, 56, 0.8);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}

/* === FOOTER === */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 107, 53, 0.08);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.06);
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--slate);
}

.footer-note p {
  font-size: 0.9rem;
  color: var(--slate);
  max-width: 400px;
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.78rem;
  color: rgba(139, 157, 181, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { margin-top: 1rem; }
  .card-offset, .card-offset-2 { margin-left: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 3rem; }
  .proof-inner { justify-content: center; }
  .proof-divider { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 6rem 1.25rem 3rem; }
  .features { padding: 4rem 1.25rem; }
  .how { padding: 4rem 1.25rem; }
  .closing { padding: 5rem 1.25rem; }
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-inner { flex-direction: column; }
  .stat-number { font-size: 1.5rem; }
  .closing-headline { font-size: 2rem; }
}