/* ============================================================
   DIRECTPTT.COM — Main Stylesheet
   Theme: Professional & Trustworthy
   Version 3.0 | August 2026
   Palette: Warm Slate · Rich Gold · Cream
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Primary — Warm Slate */
  --navy:        #1E293B;   /* was navy, now deep slate */
  --navy-mid:    #334155;
  --navy-light:  #475569;

  /* Accent — Rich Gold / Amber */
  --red:         #B8860B;   /* was red, now dark gold */
  --red-dark:    #966D09;
  --red-light:   #D4A017;
  --gold:        #B8860B;
  --gold-mid:    #C89A0F;
  --gold-light:  #E8C34A;
  --gold-pale:   #FEF3C7;

  /* Backgrounds */
  --white:       #FFFFFF;
  --off-white:   #FDFAF4;   /* warm cream */
  --cream:       #F8F3E8;   /* deeper cream */
  --cream-mid:   #F0E9D6;

  /* Grays */
  --gray-100:    #F4F2EE;
  --gray-200:    #E8E4DB;
  --gray-300:    #D4CFC4;
  --gray-400:    #B8B2A6;
  --gray-500:    #8C8579;
  --gray-600:    #5E574C;
  --gray-800:    #332E26;
  --gray-900:    #1C1813;

  /* Typography */
  --text:        #1C1813;
  --text-mid:    #4A4540;
  --text-light:  #7A7570;
  --border:      #DDD8CC;

  /* Shadows — warmer tones */
  --shadow-xs:   0 1px 3px rgba(30,20,10,0.06);
  --shadow-sm:   0 2px 8px rgba(30,20,10,0.08);
  --shadow-md:   0 4px 20px rgba(30,20,10,0.10);
  --shadow-lg:   0 8px 40px rgba(30,20,10,0.13);
  --shadow-xl:   0 16px 60px rgba(30,20,10,0.16);

  /* Shape */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* Motion */
  --transition:      0.22s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --max-width:   1200px;
  --nav-height:  144px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; color: var(--text-mid); }

/* ── Utility ───────────────────────────────────────────────── */
.container  { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.bg-white   { background: var(--white); }
.bg-off     { background: var(--off-white); }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: var(--navy); }
.bg-navy-mid{ background: var(--navy-mid); }
.text-center{ text-align: center; }
.flex       { display: flex; }
.gap-12     { gap: 12px; }
.gap-24     { gap: 24px; }
.mt-32      { margin-top: 32px; }
.mt-48      { margin-top: 48px; }
.flex-between { display: flex; justify-content: space-between; }

/* ── Section Headers ───────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header.center .section-label {
  justify-content: center;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-header.center .section-label::before { display: none; }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--navy);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.75;
}
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

/* Gold primary */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,134,11,0.35);
}

/* Slate secondary */
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

/* Outline on dark */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

/* Outline on light */
.btn-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-pale);
}
.btn-ghost:hover {
  background: var(--gold-pale);
  color: var(--red-dark);
}

/* Sizes */
.btn-sm { padding: 8px 16px; font-size: 0.83rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ── Badges / Labels ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-gold    { background: var(--gold-pale); color: var(--red-dark); border: 1px solid rgba(184,134,11,0.3); }
.badge-green   { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.badge-slate   { background: rgba(30,41,59,0.08); color: var(--navy); border: 1px solid rgba(30,41,59,0.18); }

/* ── Notice / Alert Box ────────────────────────────────────── */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.55;
}
.notice-green { background: rgba(16,85,32,0.06); border: 1px solid rgba(16,85,32,0.18); color: #0D4A1E; }
.notice-blue  { background: rgba(30,41,59,0.06); border: 1px solid rgba(30,41,59,0.15); color: var(--navy); }
.notice-gold  { background: var(--gold-pale); border: 1px solid rgba(184,134,11,0.25); color: var(--red-dark); }
.notice-icon  { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 2px 16px rgba(30,20,10,0.10);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 64px;
}
.nav-logo {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.31rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--navy); background: var(--off-white); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--navy); padding-left: 22px; }
.nav-dropdown .divider { height: 1px; background: var(--border); margin: 6px 0; }

.nav-cta {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}
.nav-phone {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.7rem;
  color: var(--text-mid);
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  gap: 6px;
}
.nav-phone strong { color: var(--navy); white-space: nowrap; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  z-index: 999;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .btn { margin-top: 16px; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2D3F55 100%);
  position: relative;
  overflow: hidden;
}
/* Warm grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,134,11,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
/* Decorative gold rule */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-mid), transparent);
}
.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,134,11,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(184,134,11,0.08); }
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-title .highlight {
  color: var(--gold-light);
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.49rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-item .num {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-trust-item .label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-radio-showcase {
  position: relative;
  width: 320px;
  height: 380px;
}
.hero-radio-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  width: 140px;
  height: 260px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero-badge-float {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float-badge 4s ease-in-out infinite;
}
.badge-coverage { top: 20px; left: -20px; animation-delay: 0s; }
.badge-encrypted { top: 60px; right: -30px; animation-delay: 1s; }
.badge-gps { bottom: 80px; left: -30px; animation-delay: 2s; }
.badge-global { bottom: 20px; right: -20px; animation-delay: 0.5s; }
.icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar-label {
  font-size: 2rem;
  font-weight: 700;
  color: #0C2340;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.3;
}
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.trust-logo:hover { opacity: 1; }

/* ── Why Section ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { list-style: none; padding: 0; margin: 24px 0; }
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--red-dark);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 900;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.why-stat {
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.why-stat .num {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.why-stat .label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}
.why-visual {
  position: relative;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(184,134,11,0.15), transparent 60%);
}
.why-visual-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  text-align: center;
  color: white;
}

/* ── Products ──────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}
/* Gold left-border on hover */
.product-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
  border-radius: 0 0 0 var(--radius-lg);
}
.product-card:hover::before { transform: scaleY(1); }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.product-img {
  height: 200px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(184,134,11,0.15), transparent 65%);
}
.product-img.variant-b { background: linear-gradient(145deg, #2D4A3A 0%, #3D6050 100%); }
.product-img.variant-c { background: linear-gradient(145deg, #3A2D1A 0%, #5C4A2A 100%); }
.product-img.variant-d { background: linear-gradient(145deg, var(--navy-mid) 0%, #404E62 100%); }
.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.product-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.product-spec-tag {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.product-price .amount {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}
.product-price .sub {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  color: var(--gray-500);
  display: block;
  margin-top: 2px;
}
.product-actions { display: flex; gap: 8px; }

/* ── Feature Cards ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
  border-top: 3px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-info .name {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.testimonial-info .role {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ── Industries Grid ───────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}
.industry-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.industry-card:hover .industry-title { color: var(--gold-light); }
.industry-card:hover .industry-sub   { color: rgba(255,255,255,0.6); }
.industry-card:hover .industry-link  { color: var(--gold-light); }
.industry-icon  { font-size: 2rem; margin-bottom: 12px; }
.industry-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color var(--transition);
}
.industry-sub {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.industry-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img.b { background: linear-gradient(135deg, #2D3F2A 0%, #475E40 100%); }
.blog-card-img.c { background: linear-gradient(135deg, #3D2D1A 0%, #6B4E2A 100%); }
.blog-card-img.d { background: linear-gradient(135deg, var(--navy-mid) 0%, #404E62 100%); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-category {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.blog-date { font-size: 0.78rem; color: var(--text-light); }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin: 0; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* Blog page extras */
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}

/* ── Podcast Strip ─────────────────────────────────────────── */
.podcast-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #263548 100%);
  border-top: 3px solid var(--gold);
  padding: 56px 0;
  color: white;
}
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.2);
  border: 1px solid rgba(184,134,11,0.35);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.podcast-title { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 8px; }
.podcast-sub   { font-size: 1rem; color: rgba(255,255,255,0.7); }
.podcast-actions { display: flex; gap: 12px; flex-shrink: 0; }
.podcast-icon  { font-size: 3rem; flex-shrink: 0; }
.podcast-text h3 { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 8px; }
.podcast-text p  { color: rgba(255,255,255,0.72); font-size: .95rem; max-width: 540px; }

/* ── CTA Strip ─────────────────────────────────────────────── */
.cta-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--navy); margin-bottom: 16px; }
.cta-strip p  { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions  { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
}
.cta-phone strong { color: var(--navy); font-size: 1.05rem; }

/* ══════════════════════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Service plan comparison */
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--white);
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.plan-card.featured {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.plan-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}
.plan-name {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.plan-price {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
}
.plan-sub {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
}
.comparison-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--navy);
  color: white;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.comparison-table .check { color: var(--gold); font-weight: 700; }
.comparison-table .cross { color: var(--gray-400); }

/* ══════════════════════════════════════════════════════════════
   INNER PAGES (page-hero, contact form, FAQ)
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: calc(var(--nav-height) + 64px) 0 72px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--gold);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(184,134,11,0.1), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  position: relative;
}
.page-hero p  {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.page-hero-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 12px;
  position: relative;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question.open  { color: var(--gold); }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-family: sans-serif;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}

/* Contact Forms */
.contact-form { max-width: 680px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer-brand .logo span { color: var(--gold-light); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-col h5 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col a {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-anim] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-anim].anim-up { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content   { grid-template-columns: 1fr; text-align: center; }
  .hero-visual    { display: none; }
  .hero-trust     { justify-content: center; }
  .hero-actions   { justify-content: center; }
  .hero-subtitle  { margin: 0 auto 36px; }
  .why-grid       { grid-template-columns: 1fr; }
  .why-visual     { min-height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: 1fr 1fr; }
  .podcast-inner  { grid-template-columns: 1fr; }
  .podcast-actions { justify-content: flex-start; }
  .plan-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .products-grid  { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; text-align: center; gap: 12px; }
  .form-grid-2    { grid-template-columns: 1fr; }
}

/* ── Blog / About / Industries / Contact extras ────────────── */
.bg-navy .section-title    { color: white; }
.bg-navy .section-subtitle { color: rgba(255,255,255,0.7); }
.bg-navy .section-label    { color: rgba(184,134,11,0.8); }
.bg-navy .section-label::before { background: rgba(184,134,11,0.8); }

/* ============================================================
   LIGHTBOX — click product images to enlarge
   ============================================================ */
.product-img img,
.blog-img img    { cursor: zoom-in !important; transition: transform .2s ease, box-shadow .2s ease; }
.product-img img:hover,
.blog-img img:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

#ptt-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lbFadeIn .2s ease;
}
#ptt-lightbox.open { display: flex; }
#ptt-lightbox img {
  max-width: min(90vw, 860px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  cursor: default;
  animation: lbZoomIn .25s cubic-bezier(.22,.68,0,1.2);
}
#ptt-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1.4rem;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}
#ptt-lightbox-close:hover { background: rgba(255,255,255,0.3); }
#ptt-lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: .85rem;
  letter-spacing: .03em;
  text-align: center;
  pointer-events: none;
}
@keyframes lbFadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes lbZoomIn  { from { opacity:0; transform:scale(.88) } to { opacity:1; transform:scale(1) } }
