/* ============================================
   Screen Room Co — styles.css
   Dark navy + gold premium design system
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a0f1e;
  --navy-mid: #0f1830;
  --navy-light: #1a2540;
  --navy-card: #111828;
  --gold: #c9a84c;
  --gold-light: #e0bc6a;
  --gold-dark: #a8863a;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.75);
  --white-muted: rgba(255,255,255,0.45);
  --border: rgba(201,168,76,0.18);
  --border-subtle: rgba(255,255,255,0.07);

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);

  --nav-h: 72px;
  --max-w: 1160px;
  --section-gap: 100px;
}

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

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold-light); }

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

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================
   NAV
   ============================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s;
}

#nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { padding: 12px 24px !important; }
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0a0f1e 0%, #0d1526 50%, #0a0f1e 100%);
  z-index: 0;
}

/* Subtle grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 0 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-dim);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-top: 48px;
}

.hero-trust-dots {
  display: flex;
  gap: 4px;
}
.hero-trust-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.hero-trust-dots span:nth-child(1) { opacity: 1; }
.hero-trust-dots span:nth-child(2) { opacity: 0.7; }

/* ============================================
   STATS BAR
   ============================================ */
#stats {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  min-height: 72px;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid rgba(10,15,30,0.15);
  gap: 10px;
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stats-inner {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 0 0 50%;
    border-right: 1px solid rgba(10,15,30,0.15);
    border-bottom: 1px solid rgba(10,15,30,0.15);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:last-child { border-right: none; border-bottom: none; }
}

@media (max-width: 440px) {
  .stat-item {
    flex: 0 0 100%;
    border-right: none;
  }
}

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
#problem {
  padding: var(--section-gap) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-visual {
  position: relative;
}

.screen-mockup {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.screen-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green { background: #28c840; }

.mock-screen-title {
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-left: 8px;
  font-family: monospace;
}

.mock-slide {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f1a2e, #1a2540);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.mock-slide-stale {
  font-size: 0.7rem;
  background: rgba(255,80,80,0.15);
  color: #ff8080;
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 4px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: absolute;
  top: 14px;
  right: 14px;
}

.mock-slide-content {
  text-align: center;
  padding: 20px;
}
.mock-slide-content h3 {
  font-size: 1.1rem;
  color: var(--white-dim);
  margin-bottom: 8px;
}
.mock-slide-content p {
  font-size: 0.78rem;
  color: var(--white-muted);
}

.mock-date {
  font-size: 0.72rem;
  color: var(--white-muted);
  text-align: center;
  margin-top: 12px;
}

.problem-arrow {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.12);
}

.solution-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-gold);
}

.solution-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 14px;
}

.solution-slide {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light), #1e2e50);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.solution-slide-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  background: rgba(40,200,100,0.15);
  color: #4de89a;
  border: 1px solid rgba(40,200,100,0.3);
  border-radius: 4px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.solution-slide-bar {
  width: 80%;
  height: 6px;
  background: var(--border-subtle);
  border-radius: 3px;
  margin: 8px 0;
  overflow: hidden;
}
.solution-slide-bar .fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gold);
}
.solution-slide-bar .fill.w90 { width: 90%; }
.solution-slide-bar .fill.w70 { width: 70%; }
.solution-slide-bar .fill.w55 { width: 55%; }

.solution-footer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.problem-copy blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.7;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-dim);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem-arrow { display: none; }
}

/* ============================================
   SERVICES
   ============================================ */
#services {
  padding: var(--section-gap) 0;
  background: var(--navy-mid);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), var(--shadow-gold);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.82rem;
  color: var(--white-muted);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#how {
  padding: var(--section-gap) 0;
}

.steps-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 60px;
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.5;
}

@media (max-width: 760px) {
  .steps-track {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

/* ============================================
   PRICING
   ============================================ */
#pricing {
  padding: var(--section-gap) 0;
  background: var(--navy-mid);
  position: relative;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold), var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-dollar {
  font-size: 1.2rem;
  color: var(--white-dim);
  font-weight: 600;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-unit {
  font-size: 0.82rem;
  color: var(--white-muted);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-dim);
}

.pricing-features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured { transform: none; }
}

/* ============================================
   INDUSTRIES
   ============================================ */
#industries {
  padding: var(--section-gap) 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.industry-pill {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}

.industry-pill:hover {
  border-color: var(--border);
  background: var(--navy-light);
}

.industry-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.industry-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-dim);
}

@media (max-width: 760px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CTA / CONTACT
   ============================================ */
#contact {
  padding: var(--section-gap) 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-copy .section-sub {
  margin-bottom: 40px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.perk-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.perk-text span {
  font-size: 0.82rem;
  color: var(--white-muted);
}

.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-muted);
}

input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--white-muted); }

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: var(--navy-card);
  color: var(--white);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--white-muted);
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form {
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #060b17;
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.footer-brand .nav-logo {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer-copy a {
  color: var(--gold);
}

.footer-badge {
  font-size: 0.75rem;
  color: var(--white-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 4px 14px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE MISC
   ============================================ */
@media (max-width: 640px) {
  :root { --section-gap: 70px; }
  .hero-content { padding: 60px 0 80px; }
  .hero-title { font-size: 2.4rem; }
}
