/* ================================================================
   PowerProWeb.com — Main Stylesheet
   Blues + Gold palette, gradient flows, modern effects
   ================================================================ */

/* ----------------------------------------------------------------
   GOOGLE FONTS IMPORT
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #0d2b50;
  --royal:      #1A4A8A;
  --blue:       #2563EB;
  --blue-lt:    #3B82F6;
  --gold:       #D4AF37;
  --gold-lt:    #F5D060;
  --gold-dk:    #A88B20;
  --white:      #F0F4FF;
  --offwhite:   #E8EDF8;
  --light-bg:   #EEF2FF;
  --text-dark:  #1a1a2e;
  --text-muted: #64748b;

  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(11,31,58,0.18);
  --shadow-lg:  0 8px 40px rgba(11,31,58,0.28);
  --gold-glow:  0 0 18px rgba(212,175,55,0.4);

  --transition: 0.3s ease;
  --nav-h:      72px;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }

/* ----------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   ---------------------------------------------------------------- */
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.on-dark { color: var(--white); }

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.section-intro.on-dark { color: rgba(240,244,255,0.8); }

/* Gold underline accent */
.gold-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
}
.gold-underline.centered::after { left: 50%; transform: translateX(-50%); }

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm { max-width: 860px; }

.section {
  padding: 80px 0;
}

.section-sm { padding: 56px 0; }
.section-lg { padding: 110px 0; }

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.col-2 { flex: 0 0 calc(50% - 16px); }
.col-3 { flex: 0 0 calc(33.333% - 22px); }
.col-4 { flex: 0 0 calc(25% - 24px); }

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Gold shimmer sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-lt);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg  { padding: 16px 36px; font-size: 16px; }
.btn-sm  { padding: 9px 20px; font-size: 13px; }

/* ----------------------------------------------------------------
   GOLD ACCENT LINE (used as section divider element)
   ---------------------------------------------------------------- */
.gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11,31,58,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: rgba(11,31,58,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border-bottom-color: rgba(212,175,55,0.3);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--white); }

/* Top bar above nav — email */
.nav-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 36px;
  background: var(--navy);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  font-size: 12px;
  color: rgba(240,244,255,0.6);
}
.nav-topbar a { color: rgba(240,244,255,0.6); }
.nav-topbar a:hover { color: var(--gold); }

.has-topbar .site-nav { top: 36px; }
.has-topbar .page-content { padding-top: calc(var(--nav-h) + 36px); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-links button.nav-btn {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(240,244,255,0.85);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

/* Gold underline slide-in on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > button.nav-btn::after {
  content: '▾';
  font-size: 10px;
  margin-left: 4px;
  transition: transform var(--transition);
}
.nav-dropdown:hover > button.nav-btn::after { transform: rotate(180deg); }
.nav-dropdown > button.nav-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(-8px);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: rgba(240,244,255,0.8);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
  border-radius: 0;
}
.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  padding-left: 24px;
}

.dropdown-menu .dropdown-label {
  display: block;
  padding: 10px 18px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.6);
  border-top: 1px solid rgba(212,175,55,0.1);
  margin-top: 4px;
}
.dropdown-menu .dropdown-label:first-child { border-top: none; margin-top: 0; }

/* Get A Quote button in nav */
.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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-h);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 16px 24px 24px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: rgba(240,244,255,0.85);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }

.nav-mobile .mobile-label {
  display: block;
  padding: 12px 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  border-bottom: none;
}

/* ----------------------------------------------------------------
   PAGE CONTENT OFFSET (below fixed nav + topbar)
   ---------------------------------------------------------------- */
.page-content {
  padding-top: calc(var(--nav-h) + 36px);
}

/* ----------------------------------------------------------------
   HERO / MASTHEAD (page-top banner with gradient + image overlay)
   ---------------------------------------------------------------- */
.masthead {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 50%, var(--navy-mid) 100%);
  overflow: hidden;
}

.masthead-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

/* Diagonal gradient overlay */
.masthead::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.7) 0%, rgba(26,74,138,0.4) 60%, rgba(11,31,58,0.6) 100%);
  pointer-events: none;
}

.masthead-content {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}

.masthead-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.masthead h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(212,175,55,0.25);
  margin-bottom: 16px;
  max-width: 700px;
}

.masthead p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(240,244,255,0.8);
  max-width: 580px;
  line-height: 1.7;
}

/* Wave bottom */
.masthead-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.masthead-wave svg { display: block; width: 100%; }

/* ----------------------------------------------------------------
   HERO SLIDESHOW (homepage)
   ---------------------------------------------------------------- */
.hero-slideshow {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1.05); }

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.85) 0%, rgba(26,74,138,0.55) 55%, rgba(11,31,58,0.75) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 700px;
}

.slide-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
}

.slide h2 {
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.5s ease, transform 0.6s 0.5s ease;
}
.slide h2 em { font-style: normal; color: var(--gold); }

.slide p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(240,244,255,0.85);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.7s ease, transform 0.6s 0.7s ease;
}

.slide .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.9s ease, transform 0.6s 0.9s ease;
}

.slide.active .slide-eyebrow,
.slide.active h2,
.slide.active p,
.slide.active .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Slide indicators */
.slide-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240,244,255,0.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.slide-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Slide arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(11,31,58,0.5);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  font-size: 18px;
}
.slide-arrow:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); }
.slide-arrow-prev { left: 24px; }
.slide-arrow-next { right: 24px; }

/* Wave bottom of slideshow */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ----------------------------------------------------------------
   FEATURES / CARDS
   ---------------------------------------------------------------- */
.features-grid {
  display: grid;
  gap: 28px;
}
.features-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.features-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.feature-card {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gold-glow), var(--shadow);
  border-color: rgba(212,175,55,0.45);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-card .btn { font-size: 13px; }

/* ----------------------------------------------------------------
   PRICING CARDS
   ---------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(26,74,138,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--navy), var(--royal));
  border-color: var(--gold);
  transform: scale(1.04);
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.pricing-card.featured h3 { color: var(--white); }

.pricing-price {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card.featured .pricing-price span { color: rgba(240,244,255,0.6); }

/* ----------------------------------------------------------------
   SECTION GRADIENTS (wave flow between sections)
   ---------------------------------------------------------------- */
.section-navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.section-royal {
  background: linear-gradient(180deg, var(--royal) 0%, var(--navy) 100%);
  color: var(--white);
}

.section-light {
  background: var(--light-bg);
}

.section-white { background: #fff; }

.section-gradient-flow {
  background: linear-gradient(180deg, #fff 0%, var(--light-bg) 50%, #fff 100%);
}

/* SVG Wave divider */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* CTA Band */
.cta-band {
  position: relative;
  background: linear-gradient(90deg, var(--navy) 0%, var(--royal) 50%, var(--navy-mid) 100%);
  padding: 72px 0;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-band h2 {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band h2 span { color: var(--gold); }

.cta-band p {
  font-size: 17px;
  color: rgba(240,244,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   ARTICLE / CONTENT AREA
   ---------------------------------------------------------------- */
.ppw-content-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.ppw-content {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

.ppw-content h1, .ppw-content h2 {
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 32px;
}
.ppw-content h1:first-child,
.ppw-content h2:first-child { margin-top: 0; }

.ppw-content p { margin-bottom: 16px; }

.ppw-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.ppw-content ul li { margin-bottom: 6px; }

.ppw-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.ppw-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--light-bg);
  margin: 20px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}

.ppw-content strong { color: var(--navy); }

/* Image float utilities (replaces old custom.css classes) */
.ppw-img-float-right {
  float: right;
  margin: 0 0 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 380px;
}

.ppw-img-center {
  display: block;
  margin: 20px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Mobile/desktop show-hide (from old site) */
@media (max-width: 767px) {
  .ppw-desktop-only { display: none !important; }
  .ppw-mobile-only  { display: block !important; }
  .ppw-img-float-right { float: none; margin: 16px auto; max-width: 100%; }
}
@media (min-width: 768px) {
  .ppw-desktop-only { display: block !important; }
  .ppw-mobile-only  { display: none !important; }
}

/* ----------------------------------------------------------------
   SIDEBAR (quick links)
   ---------------------------------------------------------------- */
.ppw-sidebar {
  width: 240px;
  flex-shrink: 0;
}

.sidebar-widget {
  background: var(--light-bg);
  border: 1px solid rgba(26,74,138,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid rgba(26,74,138,0.08); }
.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--royal);
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-links a:hover { color: var(--navy); padding-left: 4px; }
.sidebar-links a.active { color: var(--gold); font-weight: 600; }

/* ----------------------------------------------------------------
   CONTACT FORM
   ---------------------------------------------------------------- */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(26,74,138,0.2);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(26,74,138,0.1);
}
.form-control.error { border-color: #dc3545; }

textarea.form-control { resize: vertical; min-height: 140px; }

select.form-control { cursor: pointer; }

.form-alert {
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-alert.success {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-dk);
}
.form-alert.error {
  background: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.3);
  color: #a01020;
}

/* ----------------------------------------------------------------
   NEWSLETTER SUBSCRIBE (footer)
   ---------------------------------------------------------------- */
.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.subscribe-form input[type="email"]::placeholder { color: rgba(240,244,255,0.45); }
.subscribe-form input[type="email"]:focus { border-color: var(--gold); }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(240,244,255,0.75);
  border-top: 3px solid rgba(212,175,55,0.35);
  padding: 64px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-brand .footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240,244,255,0.6);
  margin-bottom: 20px;
}

.footer-subscribe-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.7);
  margin-bottom: 10px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(240,244,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  color: rgba(240,244,255,0.65);
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(240,244,255,0.4);
}

.footer-bottom a {
  color: rgba(240,244,255,0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ----------------------------------------------------------------
   HOMEPAGE — 30+ YEARS FEATURES SECTION
   ---------------------------------------------------------------- */
.home-features {
  background: var(--light-bg);
  position: relative;
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hf-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(212,175,55,0.15);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}
.hf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gold-glow), var(--shadow);
  border-color: rgba(212,175,55,0.4);
}

.hf-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 26px;
}

.hf-card h3 { font-size: 17px; margin-bottom: 12px; }
.hf-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

/* ----------------------------------------------------------------
   ALERT / INFO BOXES (replaces old custom.css alert styles)
   ---------------------------------------------------------------- */
.ppw-alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.6;
}

.ppw-alert-info {
  background: rgba(37,99,235,0.08);
  border-left: 4px solid var(--blue);
  color: #1e3a6e;
}

.ppw-alert-success {
  background: rgba(34,197,94,0.08);
  border-left: 4px solid #22c55e;
  color: #14532d;
}

.ppw-alert-warning {
  background: rgba(212,175,55,0.1);
  border-left: 4px solid var(--gold);
  color: #78560a;
}

.ppw-alert-danger {
  background: rgba(220,53,69,0.08);
  border-left: 4px solid #dc3545;
  color: #7a0010;
}

/* ----------------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------------- */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: rgba(240,244,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(240,244,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .current { color: rgba(240,244,255,0.85); }

/* ----------------------------------------------------------------
   404 PAGE
   ---------------------------------------------------------------- */
.error-page {
  min-height: calc(100vh - var(--nav-h) - 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--royal), var(--navy));
  padding: 60px 24px;
}

.error-code {
  font-family: var(--font-head);
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-features-grid { grid-template-columns: 1fr 1fr; }
  .features-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .col-3 { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  .home-features-grid { grid-template-columns: 1fr; }
  .features-grid.cols-3 { grid-template-columns: 1fr; }
  .features-grid.cols-2 { grid-template-columns: 1fr; }

  .ppw-content-wrap { flex-direction: column; }
  .ppw-sidebar { width: 100%; }

  .col-2, .col-3, .col-4 { flex: 0 0 100%; }

  .hero-slideshow { min-height: 480px; }
  .slide h2 { font-size: 30px; }

  .cta-band { padding: 52px 0; }

  .masthead { min-height: 260px; }
  .masthead h1 { font-size: 28px; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .hero-slideshow { min-height: 400px; }
}
