/* Shared layout for industry / trade landing pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0f2240;
  --navy-light: #2a4a80;
  --blue: #1e5fcc;
  --bg: #f8f7f4;
  --white: #ffffff;
  --border: #dde2ea;
  --text: #0f1c2e;
  --muted: #6b7a90;
  --subtle: #9aa3b0;
  --accent: #c8a96e;
  --radius: 4px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
}
.nav-logo { display: flex; align-items: baseline; gap: 3px; text-decoration: none; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.nav-logo-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; margin-bottom: 3px; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.btn-ghost-sm { color: var(--navy); text-decoration: none; font-size: 14px; font-weight: 500; padding: 9px 20px; border: 1.5px solid var(--border); border-radius: var(--radius); transition: border-color .2s, background .2s; }
.btn-ghost-sm:hover { border-color: var(--navy); background: var(--bg); }
.btn-navy-sm { background: var(--navy); color: #fff; padding: 9px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 500; text-decoration: none; transition: background .2s; }
.btn-navy-sm:hover { background: var(--navy-light); }

.lp-hero {
  padding: 72px 48px 88px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-hero > * { min-width: 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--blue); }
.lp-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--navy);
  margin-bottom: 20px;
}
.lp-hero h1 em { font-style: italic; color: var(--blue); }
.lp-lead { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.75; max-width: 480px; margin-bottom: 28px; }
.lp-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 24px; }
.btn-navy {
  background: var(--navy); color: #fff; padding: 16px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; text-decoration: none; transition: background .2s;
}
.btn-navy:hover { background: var(--navy-light); }
.btn-outline {
  color: var(--navy); padding: 15px 22px; font-size: 15px; text-decoration: none;
  border-radius: var(--radius); border: 1.5px solid var(--border); font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--navy); background: var(--bg); }

.offer-card {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(15,34,64,.18);
}
.offer-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,169,110,.95);
  margin-bottom: 14px;
}
.offer-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}
.offer-value {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.5;
}
.offer-value strong { color: #fff; font-weight: 600; }
.offer-list { list-style: none; font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.65; }
.offer-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.offer-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: rgba(200,169,110,.95);
  font-weight: 600;
}

.lp-section {
  padding: 88px 48px;
  border-top: 1px solid var(--border);
}
.lp-section.alt { background: var(--bg); }
.lp-inner { max-width: 900px; margin: 0 auto; }
.section-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--subtle); margin-bottom: 16px;
}
.lp-section h2, .faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 20px;
}
.lp-section p, .lp-section li { font-size: 16px; color: var(--muted); font-weight: 300; line-height: 1.75; }
.lp-section p + p { margin-top: 16px; }
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.lp-point {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}
.lp-point h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.lp-point p { font-size: 14px; margin: 0; }

.faq-section .faq-title { margin-bottom: 8px; }
.faq-list { margin-top: 8px; max-width: 800px; }
.faq-list dt {
  font-weight: 600;
  color: var(--navy);
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.35;
}
.faq-list dt:first-child { margin-top: 0; }
.faq-list dd {
  margin: 10px 0 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-section {
  background: var(--navy);
  padding: 88px 48px;
  text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-section .section-kicker { color: var(--accent); justify-content: center; display: flex; align-items: center; gap: 10px; }
.cta-section .section-kicker::before { content: ''; width: 24px; height: 1.5px; background: var(--accent); }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 16px 0 16px;
}
.cta-section h2 em { font-style: italic; color: rgba(200,169,110,.95); }
.cta-section > .cta-inner > p {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.65;
}
.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-cta-white:hover { opacity: .92; }

footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 48px 32px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  font-weight: 300;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-weight: 300;
  transition: color .2s;
}
.footer-legal a:hover { color: #fff; }

.fine-print {
  font-size: 13px;
  color: var(--subtle);
  margin-top: 28px;
  line-height: 1.6;
  max-width: 720px;
}

@media (max-width: 960px) {
  .nav-inner { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .btn-ghost-sm { padding: 8px 14px; font-size: 13px; }
  .btn-navy-sm { padding: 8px 16px; font-size: 13px; }
  .lp-hero { grid-template-columns: 1fr; padding: 56px 20px 64px; gap: 40px; }
  .lp-lead { max-width: none; }
  .lp-section { padding: 64px 20px; }
  .lp-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 20px; }
  footer { padding: 24px 20px 28px; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 480px) {
  .nav-inner { padding-left: 16px; padding-right: 16px; }
  .lp-hero { padding-top: 48px; }
  .offer-card { padding: 24px 20px; }
  .lp-ctas { flex-direction: column; align-items: stretch; }
  .lp-ctas .btn-navy, .lp-ctas .btn-outline { text-align: center; }
}
