/* ── Postaboy Website – Shared Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy:   #1B2464;
  --navy2:  #141a4e;
  --gold:   #F2A61D;
  --gold2:  #d4900f;
  --white:  #ffffff;
  --lgray:  #F4F6FA;
  --gray:   #6b7280;
  --dark:   #111827;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { height: 38px; }

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: 68px;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,36,100,0.92) 0%, rgba(27,36,100,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 70px;
  max-width: 800px;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-content h1 span.gold { color: var(--gold); }
.hero-content h1 span.white { color: #fff; }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6); color: #fff;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  display: flex; justify-content: center;
  gap: 0;
}
.stat {
  flex: 1; max-width: 240px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(27,36,100,0.15);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-size: 2.4rem; font-weight: 900;
  color: var(--navy); line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 0.82rem; color: var(--navy); font-weight: 600; opacity: 0.8; }

/* ── SECTIONS ── */
section { padding: 80px 60px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 14px;
}
h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.15; margin-bottom: 16px;
}
h2.section-title span { color: var(--gold); }
.section-desc { color: var(--gray); font-size: 1.05rem; max-width: 640px; margin-bottom: 48px; }

/* ── INDUSTRY CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}
.industry-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.15); }

.card-photo {
  position: relative; height: 180px; overflow: hidden;
}
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.industry-card:hover .card-photo img { transform: scale(1.04); }
.card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,36,100,0.75) 0%, transparent 55%);
}
.card-badge {
  position: absolute; bottom: 12px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.55; margin-bottom: 14px; }
.card-bullets { list-style: none; }
.card-bullets li {
  font-size: 0.82rem; color: var(--gray); padding: 3px 0;
  display: flex; align-items: center; gap: 8px;
}
.card-bullets li::before { content: '›'; color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ── FEATURE BLOCKS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-block {
  background: var(--lgray); border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.feature-block h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-block p { font-size: 0.875rem; color: var(--gray); line-height: 1.55; }

/* ── HOW IT WORKS ── */
.steps { display: flex; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: var(--gold); z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.step p { font-size: 0.85rem; color: var(--gray); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  text-align: center;
  padding: 72px 40px;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-band h2 span { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-band .btn-primary { font-size: 1.05rem; padding: 16px 40px; }

/* ── SPECS TABLE ── */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-section-header { background: var(--navy); color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 20px; }
.specs-table tr:nth-child(even) td { background: var(--lgray); }
.specs-table td { padding: 13px 20px; font-size: 0.9rem; border-bottom: 1px solid #e5e7eb; }
.specs-table td:first-child { font-weight: 600; color: var(--navy); width: 40%; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid #d1d5db; border-radius: 8px;
  font-size: 0.95rem; font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border: none; border-radius: 8px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold2); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--lgray); border-radius: 12px;
  padding: 24px; border-top: 3px solid var(--gold);
}
.contact-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-card-value { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-card-note { font-size: 0.82rem; color: var(--gray); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  margin-top: 68px;
  padding: 64px 60px 56px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 4px; background: var(--gold);
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; }

/* ── FOOTER ── */
footer {
  background: var(--navy2);
  color: rgba(255,255,255,0.7);
  padding: 56px 60px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand img { height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 300px; }
.footer-col h4 { color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-split img { width: 100%; border-radius: 16px; object-fit: cover; height: 420px; }
.about-text .section-tag { margin-bottom: 12px; }
.about-text p { color: var(--gray); font-size: 0.97rem; margin-bottom: 16px; line-height: 1.7; }

/* ── CHECKLIST ── */
.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.92rem; color: var(--dark); }
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 28px 52px; }
  section { padding: 56px 28px; }
  .page-hero { padding: 48px 28px 40px; }
  .steps { flex-direction: column; gap: 32px; }
  .steps::before { display: none; }
  .step { display: flex; align-items: flex-start; text-align: left; gap: 20px; padding: 0; }
  .step-num { margin: 0; flex-shrink: 0; }
  .about-split, .contact-grid { grid-template-columns: 1fr; }
  .about-split img { height: 260px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding: 40px 28px 24px; }
  .specs-table td { padding: 10px 14px; font-size: 0.82rem; }
}

@media (max-width: 600px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-logo img { height: 30px; }
  .hero { margin-top: 60px; min-height: 520px; }
  .page-hero { margin-top: 60px; padding: 36px 20px 32px; }
  section { padding: 44px 20px; }
  footer { padding: 36px 20px 20px; }
  .cta-band { padding: 52px 20px; }

  .cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .stat { max-width: 100%; border-right: none; border-bottom: 1px solid rgba(27,36,100,0.15); padding: 20px 12px; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(27,36,100,0.15); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat-val { font-size: 1.7rem; }
  .stat-lbl { font-size: 0.75rem; }

  /* Form: first/last name stack on mobile */
  .contact-form div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
  .form-submit { width: 100%; text-align: center; align-self: stretch; }

  /* Specs table scrollable */
  .specs-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Hero content tighter on mobile */
  .hero-content { padding: 0 20px !important; max-width: 100% !important; }
  .hero-sub { font-size: 0.95rem !important; margin-bottom: 28px !important; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; padding: 14px 20px; }

  /* Section title spacing */
  h2.section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-desc { font-size: 0.95rem; margin-bottom: 32px; }
}
