/* ===========================
   GIGLIFT NYC — THEME CSS
   =========================== */

:root {
  --orange: #F97316;
  --orange-light: #FFF0E6;
  --orange-dark: #C2520B;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --white: #FFFFFF;
  --off-white: #FAFAF9;
  --gray-100: #F5F5F4;
  --gray-200: #E7E5E4;
  --gray-400: #A8A29E;
  --gray-600: #57534E;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-nyc {
  color: var(--orange);
}
.nav-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.art-block {
  position: absolute;
  border-radius: 16px;
  opacity: 0.06;
}
.art-1 { width: 480px; height: 480px; background: var(--orange); top: -80px; right: -60px; transform: rotate(15deg); }
.art-2 { width: 280px; height: 280px; background: var(--orange); bottom: 120px; right: 160px; border-radius: 50%; }
.art-3 { width: 160px; height: 160px; background: #FFF; top: 200px; right: 80px; }
.art-circle { position: absolute; width: 600px; height: 600px; border: 1px solid rgba(249,115,22,0.15); border-radius: 50%; top: -200px; right: -200px; }
.art-dots {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 400px;
  background-image: radial-gradient(circle, rgba(249,115,22,0.2) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -3px;
  margin: 0 0 24px;
}
.headline-accent { color: var(--orange); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-400);
  margin: 0 0 32px;
}
.hero-services-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-400);
}
.sep { color: rgba(255,255,255,0.15); }

/* HERO CARD */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.card-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(249,115,22,0.12);
  padding: 4px 10px;
  border-radius: 100px;
}

/* SERVICES */
.services {
  background: var(--off-white);
  padding: 100px 32px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s ease;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.08);
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card.featured .service-name,
.service-card.featured .service-desc {
  color: var(--white);
}
.service-card.featured .service-icon { color: var(--orange); }
.service-card.featured .service-desc { color: var(--gray-400); }
.service-icon {
  color: var(--orange);
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 8px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--white);
  padding: 100px 32px;
  border-top: 1px solid var(--gray-200);
}
.hw-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hw-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin: 0 0 16px;
}
.hw-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 1px;
  min-width: 32px;
  padding-top: 2px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 4px;
}
.step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* URGENCY BLOCK */
.urgency {
  background: var(--navy);
  padding: 80px 32px;
  text-align: center;
}
.urgency-inner {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.urgency-stat { text-align: center; }
.u-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
}
.u-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 8px;
  line-height: 1.4;
}
.urgency-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
}
.urgency-cta {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* PRICING MODEL */
.pricingmodel {
  background: var(--gray-100);
  padding: 100px 32px;
}
.pm-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-600);
  margin: 0 0 48px;
  line-height: 1.6;
}
.pm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.pm-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pm-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--orange);
  opacity: 0.3;
  margin-bottom: 12px;
}
.pm-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 12px;
}
.pm-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 20px;
}
.pm-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(249,115,22,0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

/* CLOSING */
.closing {
  background: var(--navy);
  padding: 120px 32px;
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0 0 24px;
}
.closing-body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.65;
  margin: 0 0 48px;
}
.closing-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-400);
}
.closing-expand span {
  background: rgba(255,255,255,0.05);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.closing-expand svg { color: var(--orange); flex-shrink: 0; }

/* FOOTER */
.footer {
  background: #070D17;
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-400);
  margin: 0;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-400);
}
.footer-links a { color: var(--gray-400); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 80px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hw-inner { grid-template-columns: 1fr; gap: 48px; }
  .urgency-inner { flex-direction: column; gap: 32px; }
  .urgency-divider { width: 80px; height: 1px; }
  .pm-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 42px; letter-spacing: -1.5px; }
  .closing-headline { font-size: 32px; }
}