/* ============================================================
   SMOKE SCREEN USA & CANADA, Main Stylesheet
   Design System: Dark bg, Brand Orange accents, Inter font
   Brand primary: #BF491B (from smoke-screen.com)
   ============================================================ */

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

:root {
  --bg:        #0F1B2D;   /* Crawfords midnight navy */
  --bg-card:   #162234;
  --bg-mid:    #223048;
  --red:       #BF491B;   /* Smoke Screen brand orange */
  --red-hover: #A03914;
  --white:     #FFFFFF;
  --muted:     #8EA8C3;
  --border:    rgba(255,255,255,0.09);
  --radius:    8px;
  --radius-pill: 100px;
  --transition: 0.3s ease;
  --section-pad: clamp(60px, 8vw, 100px);
  --max-w: 1200px;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
}

/* ---------- Layout Utilities ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad) 0; }
.section-title { margin-bottom: 48px; }
.section-title .label { margin-bottom: 12px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p  { max-width: 600px; }
.section-title.center { text-align: center; }
.section-title.center p { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(15,27,45,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo svg { height: 34px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-size: 1rem; font-weight: 900; color: var(--white); letter-spacing: 0.05em; }
.nav-logo-text .region { font-size: 0.65rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.15em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(15,27,45,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}
.nav-drawer.open { display: flex; transform: translateY(0); opacity: 1; }
.nav-drawer a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .btn { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.85) 0%, rgba(15,27,45,0.5) 50%, rgba(15,27,45,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(191,73,27,0.12);
  border: 1px solid rgba(191,73,27,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { max-width: 820px; margin-bottom: 24px; }
.hero h1 span { color: var(--red); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); max-width: 540px; margin-bottom: 40px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat .num { font-size: 2rem; font-weight: 900; color: var(--white); }
.hero-stat .desc { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint svg { opacity: 0.5; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ---------- Why Section ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--red); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(191,73,27,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.why-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; }

/* ---------- Products Section ---------- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 0 24px rgba(191,73,27,0.15); }
.product-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img .placeholder-img {
  font-size: 3rem;
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.product-card-body p { font-size: 0.875rem; margin-bottom: 16px; }
.product-features { margin-bottom: 24px; flex: 1; }
.product-features li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-features li::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ---------- Video Section ---------- */
.video-featured {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  background: var(--bg-mid);
}
.video-featured iframe { width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-thumb {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.video-thumb:hover { border-color: var(--red); transform: translateY(-2px); }
.video-thumb-img {
  aspect-ratio: 16/9;
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
.video-thumb-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.video-thumb:hover .video-thumb-img img { transform: scale(1.05); }
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
}
.play-icon svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.video-thumb-info { padding: 16px; }
.video-thumb-info h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--white); }
.video-thumb-info p { font-size: 0.8rem; color: var(--muted); }
a.video-thumb { text-decoration: none; display: block; color: inherit; }

/* ---------- How It Works ---------- */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
}
.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(191,73,27,0.4);
}
.step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.step p { font-size: 0.875rem; }

/* ---------- Industries / Use Cases ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover { border-color: var(--red); transform: translateY(-4px); }
.industry-card .icon { font-size: 2rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); }

/* ---------- Contact Form ---------- */
.contact-form-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(191,73,27,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group select option { background: var(--bg-card); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
  color: var(--white);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }

/* ---------- Office Cards ---------- */
.office-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.office-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.office-flag { font-size: 2.5rem; flex-shrink: 0; }
.office-info h4 { font-size: 1rem; margin-bottom: 8px; }
.office-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; }
.office-info a { color: var(--red); transition: color var(--transition); }
.office-info a:hover { color: var(--red-hover); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #7A2E0A 100%);
  border-radius: var(--radius);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 8px; }
.btn-white {
  background: var(--white);
  color: #7A2E0A;
  border-color: var(--white);
  font-weight: 800;
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer {
  background: #080F1A;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; color: var(--muted); margin-top: 16px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo svg { height: 22px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 130px 0 60px;
  background: linear-gradient(180deg, rgba(191,73,27,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; max-width: 560px; }

/* ---------- Products Page Specific ---------- */
.product-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.product-full:last-child { border-bottom: none; }
.product-full.reverse { direction: rtl; }
.product-full.reverse > * { direction: ltr; }
.product-gallery { position: relative; }
.product-gallery-main {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-main .placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 4rem;
  color: var(--muted);
  opacity: 0.4;
}
.product-info .label { margin-bottom: 12px; }
.product-info h2 { margin-bottom: 16px; font-size: clamp(1.5rem, 3vw, 2rem); }
.product-info > p { margin-bottom: 28px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 10px 0; font-size: 0.875rem; }
.spec-table td:first-child { color: var(--muted); width: 45%; }
.spec-table td:last-child { color: var(--white); font-weight: 600; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- News Grid ---------- */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.news-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.news-card:hover { border-color: var(--red); transform: translateY(-3px); }
.news-card-img { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-mid); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-cat { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 3px; }
.news-card-body { padding: 20px 24px 24px; }
.news-card-body time { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.news-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.news-card-body h3 a { color: var(--white); text-decoration: none; }
.news-card-body h3 a:hover { color: var(--red); }
.news-card-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.news-read-more { font-size: 0.8rem; font-weight: 600; color: var(--red); text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; transition: opacity 0.2s; }
.news-read-more:hover { opacity: 0.7; }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }

/* News full page */
.news-article { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.news-article-img { aspect-ratio: 21/9; overflow: hidden; background: var(--bg-mid); }
.news-article-img img { width: 100%; height: 100%; object-fit: cover; }
.news-article-body { padding: 32px 40px; }
.news-article-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.news-article-body h2 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); margin-bottom: 20px; }
.news-article-body p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-size: 0.95rem; }
@media (max-width: 768px) { .news-article-body { padding: 24px 20px; } }

/* ---------- Videos Page ---------- */
.video-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.video-page-card:hover { border-color: var(--red); transform: translateY(-4px); }
.video-page-card .embed { aspect-ratio: 16/9; }
.video-page-card .embed iframe { width: 100%; height: 100%; border: 0; }
.video-page-card .info { padding: 20px; }
.video-page-card .info h3 { font-size: 1rem; margin-bottom: 8px; }
.video-page-card .info p { font-size: 0.85rem; }

/* ---------- Applications Page ---------- */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.app-card:hover { border-color: var(--red); transform: translateY(-4px); }
.app-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.app-card-body { padding: 24px; }
.app-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.app-card-body p { font-size: 0.85rem; }

/* ---------- Thank You Page ---------- */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.thank-you-content { max-width: 560px; }
.thank-you-icon {
  width: 96px; height: 96px;
  background: rgba(191,73,27,0.1);
  border: 2px solid rgba(191,73,27,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 32px;
}
.thank-you-content h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.thank-you-content p { font-size: 1.05rem; margin-bottom: 32px; }

/* ---------- Contact Page Specific ---------- */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.contact-details h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-details > p { margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(191,73,27,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item-text h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 0.875rem; color: var(--muted); }
.contact-item-text a { transition: color var(--transition); }
.contact-item-text a:hover { color: var(--red); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border); }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-full { grid-template-columns: 1fr; gap: 32px; }
  .product-full.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .office-strip { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-section { padding: 28px 20px; }
  .app-grid { grid-template-columns: 1fr; }
  .video-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- US/Canada Flag Strip ---------- */
.us-canada-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 24px;
  background: rgba(191,73,27,0.07);
  border-top: 1px solid rgba(191,73,27,0.15);
  border-bottom: 1px solid rgba(191,73,27,0.15);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.us-canada-strip .flags { font-size: 1.1rem; display: flex; gap: 6px; }

/* ---------- 3-Step Inverted (Light Panel) ---------- */
.section-light {
  background: #FFFFFF !important;
  color: #111827;
}
.section-light .label { color: var(--red); }
.section-light h2 { color: #111827; }
.section-light p { color: #4B5563; }
.section-light .section-title p { color: #4B5563; }
.how-steps-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.how-steps-light::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(191,73,27,0.2));
}
.step-light {
  text-align: center;
  padding: 32px 24px;
  background: #F8FAFC;
  border-radius: var(--radius);
  border: 1px solid #E5E7EB;
  transition: var(--transition);
  position: relative;
}
.step-light:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(191,73,27,0.1); }
.step-light .step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(191,73,27,0.35);
}
.step-light h3 { color: #111827; font-size: 1.1rem; margin-bottom: 12px; }
.step-light p { color: #4B5563; font-size: 0.875rem; }
@media (max-width: 768px) {
  .how-steps-light { grid-template-columns: 1fr; }
  .how-steps-light::before { display: none; }
}

/* ---------- Reseller Badge SVG ---------- */
.reseller-badge-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(191,73,27,0.06);
  border: 1px solid rgba(191,73,27,0.2);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.reseller-badge-wrap p { font-size: 0.8rem; color: var(--muted); max-width: 420px; margin: 0; }

/* ---------- Inquiry Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  margin: 24px;
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(0.95) translateY(8px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: var(--muted); font-size: 1.4rem;
  cursor: pointer; line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--white); }
.modal-box h3 { font-size: 1.3rem; margin-bottom: 6px; }
.modal-box .modal-product { font-size: 0.8rem; color: var(--red); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.modal-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-form-grid .full { grid-column: 1 / -1; }
@media (max-width: 540px) {
  .modal-box { padding: 28px 20px; }
  .modal-form-grid { grid-template-columns: 1fr; }
}

/* ---------- About Page ---------- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-text h2 { margin-bottom: 20px; }
.about-intro-text p { margin-bottom: 16px; font-size: 0.95rem; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--red); }
.cert-card .cert-icon { font-size: 2.4rem; margin-bottom: 16px; }
.cert-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.cert-card p { font-size: 0.8rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.team-card .avatar { width: 72px; height: 72px; border-radius: 50%; background: rgba(191,73,27,0.15); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 16px; }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { font-size: 0.78rem; color: var(--red); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { font-size: 0.82rem; }
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cert-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
