/* ============================================
   PACK & STACK — Global Styles
   ============================================ */
:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --orange: #e85d00;
  --orange-hover: #ff7421;
  --orange-glow: rgba(232, 93, 0, 0.4);
  --cream: #f7f3ec;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted-2: rgba(255, 255, 255, 0.35);
  --line: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s ease;
}

.nav.scrolled { padding: 12px 6%; }

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-logo .amp { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 768px) {
  .nav { padding: 14px 5%; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 0;
  }
  .nav-links.open li {
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: block;
    padding: 18px 6%;
  }
  .mobile-toggle { display: block; }
  .nav-cta-desktop { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 6% 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

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

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(232, 93, 0, 0.1);
  border: 1px solid rgba(232, 93, 0, 0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--orange-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero card visual */
.hero-card {
  background: linear-gradient(145deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-card-sub {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list .lbl { font-size: 14px; color: var(--cream); font-weight: 500; }
.hero-card-list .price {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: var(--orange);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 6%;
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(232, 93, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.service-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.service-price .unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
}
.why-item h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #c44a00 100%);
  padding: 80px 6%;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1;
}
.cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  background: var(--ink);
}
.cta-buttons .btn-primary:hover { background: #000; }
.cta-buttons .btn-secondary {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 60px 6% 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

.footer-brand-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.footer-brand-name .amp { color: var(--orange); }

.footer-brand-tag {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 360px;
}

.footer h5 {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted-2);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
