/* PureVAL – main.css */

:root {
  --navy: #0b0e12;
  --navy-light: #10151c;
  --navy-mid: #151d28;
  --accent: #0ad4c0;
  --accent-light: #3de8d6;
  --steel: #3b82a0;
  --steel-light: #60a5c8;
  --text: #dce8f0;
  --text-muted: #7a98b0;
  --border: rgba(10,212,192,0.1);
  --card-bg: rgba(255,255,255,0.03);
  --radius: 8px;
  --radius-lg: 16px;
  --max-w: 1200px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-light); }

img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #fff;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }

p { margin-bottom: 1rem; color: var(--text); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; color: var(--text); }

/* ===== LAYOUT ===== */
.pv-container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.pv-section { padding: 5rem 0; }
.pv-section-sm { padding: 3rem 0; }

/* ===== HEADER / NAV ===== */
.pv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.pv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.pv-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.pv-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), #07a090);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b0e12;
  letter-spacing: -.02em;
}

.pv-logo-text { line-height: 1.1; }
.pv-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.pv-logo-sub {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pv-nav { display: flex; align-items: center; gap: .25rem; list-style: none; padding: 0; margin: 0; }
.pv-nav li a {
  color: var(--text-muted);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s;
  display: block;
}
.pv-nav li a:hover,
.pv-nav li.current-menu-item a { color: #fff; background: var(--card-bg); }

.pv-nav-cta a {
  background: var(--accent) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: .5rem 1.1rem !important;
}
.pv-nav-cta a:hover { background: var(--accent-light) !important; }

.pv-nav-tel {
  font-size: .82rem;
  color: var(--text-muted);
}

.pv-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.pv-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.pv-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #060a0e 0%, #0c1520 50%, #080f18 100%);
}

.pv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(10,212,192,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(59,130,160,0.08) 0%, transparent 50%);
}

.pv-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.pv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(10,212,192,0.12);
  border: 1px solid rgba(10,212,192,0.25);
  color: var(--accent-light);
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pv-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.pv-hero h1 span { color: var(--accent); }

.pv-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.pv-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.pv-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.pv-btn-primary { background: var(--accent); color: #0b0e12; font-weight: 700; }
.pv-btn-primary:hover { background: var(--accent-light); color: #0b0e12; transform: translateY(-1px); box-shadow: 0 8px 25px rgba(10,212,192,0.3); }

.pv-btn-outline { border-color: rgba(255,255,255,0.25); color: #fff; }
.pv-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.pv-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pv-hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pv-hero-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .2s;
}
.pv-hero-stat:hover { border-color: rgba(232,160,32,0.3); }

.pv-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
  text-shadow: 0 0 20px rgba(10,212,192,0.4);
}
.pv-hero-stat-label { font-size: .8rem; color: var(--text-muted); letter-spacing: .05em; }

.pv-trust-bar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.pv-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.pv-trust-item .check { color: var(--accent); font-weight: 700; }

/* ===== SECTION TITLE ===== */
.pv-section-header { text-align: center; margin-bottom: 3rem; }
.pv-section-header h2 { margin-bottom: .75rem; }
.pv-section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.pv-tag {
  display: inline-block;
  background: rgba(10,212,192,0.1);
  color: var(--accent);
  border: 1px solid rgba(10,212,192,0.2);
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

/* ===== PRODUCT CATEGORY GRID ===== */
.pv-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pv-cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .25s;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.pv-cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--steel));
  transform: scaleX(0);
  transition: transform .3s;
}
.pv-cat-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-4px); color: inherit; }
.pv-cat-card:hover::before { transform: scaleX(1); }

.pv-cat-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.pv-cat-card h3 { font-size: 1rem; margin-bottom: .5rem; color: #fff; font-family: var(--font); font-weight: 600; }
.pv-cat-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ===== PRODUCT GRID ===== */
.pv-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pv-product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.pv-product-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.pv-product-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-mid), #0d1a30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--border);
}

.pv-product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pv-product-cat {
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.pv-product-body h3 { font-size: 1.05rem; margin-bottom: .75rem; color: #fff; font-family: var(--font); font-weight: 600; }
.pv-product-body p { font-size: .85rem; color: var(--text-muted); flex: 1; margin: 0; }

.pv-product-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pv-product-specs { display: flex; gap: 1rem; flex-wrap: wrap; }
.pv-spec-tag {
  background: rgba(10,212,192,0.08);
  border: 1px solid rgba(10,212,192,0.18);
  color: var(--accent);
  padding: .2rem .6rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 500;
}

.pv-enquire-btn {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  padding: .4rem .9rem;
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
}
.pv-enquire-btn:hover { background: var(--accent); color: var(--navy); }

/* ===== SINGLE PRODUCT ===== */
.pv-product-hero {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.pv-product-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.pv-breadcrumb { font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; }
.pv-breadcrumb a { color: var(--text-muted); }
.pv-breadcrumb a:hover { color: var(--accent); }

.pv-product-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 3rem 0;
}

.pv-product-image-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.pv-product-info h1 { margin-bottom: .5rem; font-size: 2rem; }
.pv-product-desc { color: var(--text-muted); margin: 1.25rem 0; font-size: .95rem; line-height: 1.7; }

.pv-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.pv-spec-table th,
.pv-spec-table td {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  font-size: .88rem;
  text-align: left;
}
.pv-spec-table th {
  background: var(--navy-mid);
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
}
.pv-spec-table td { color: var(--text); }
.pv-spec-table tr:hover td { background: rgba(255,255,255,0.02); }

.pv-enquire-box {
  background: rgba(10,212,192,0.06);
  border: 1px solid rgba(10,212,192,0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}
.pv-enquire-box h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.pv-enquire-box p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; }
.pv-enquire-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== INDUSTRIES ===== */
.pv-industries-sec { background: var(--navy-light); }
.pv-ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.pv-ind-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all .2s;
}
.pv-ind-card:hover { border-color: rgba(74,144,184,0.3); color: var(--steel-light); }
.pv-ind-icon { font-size: 1.8rem; margin-bottom: .5rem; }

/* ===== CTA BANNER ===== */
.pv-cta-banner {
  background: linear-gradient(135deg, rgba(10,212,192,0.08) 0%, rgba(59,130,160,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}
.pv-cta-banner h2 { margin-bottom: .75rem; }
.pv-cta-banner p { color: var(--text-muted); margin-bottom: 2rem; }

/* ===== ABOUT PAGE ===== */
.pv-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin: 2rem 0 3rem; }
.pv-info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.pv-info-box h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.pv-info-box ul { list-style: none; padding: 0; }
.pv-info-box ul li { padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text-muted); }
.pv-info-box ul li:last-child { border-bottom: none; }
.pv-info-box ul li strong { color: var(--text); }

.pv-cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin: 2rem 0; }
.pv-cert-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: var(--accent);
}
.pv-cert-card small { display: block; color: var(--text-muted); font-size: .78rem; font-weight: 400; margin-top: .25rem; }

/* ===== CONTACT PAGE ===== */
.pv-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.pv-contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.pv-contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pv-contact-card h3 { margin-bottom: 1rem; }
.pv-contact-card p { margin: .5rem 0; font-size: .95rem; }
.pv-contact-card a { color: var(--accent); font-weight: 600; }
.pv-contact-card a:hover { color: var(--accent-light); }
.pv-contact-note { font-size: .82rem; color: var(--text-muted); margin-top: .75rem; }

.pv-enquiry-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
}
.pv-enquiry-box h2 { margin-bottom: 1rem; }
.pv-enquiry-box ul { margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.pv-footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.pv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.pv-footer-brand .pv-logo-name { font-size: 1.6rem; }
.pv-footer-brand p { font-size: .85rem; color: var(--text-muted); margin: 1rem 0; max-width: 300px; }

.pv-footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.pv-footer-col ul { list-style: none; padding: 0; }
.pv-footer-col ul li { margin-bottom: .75rem; }
.pv-footer-col ul li a { font-size: .88rem; color: var(--text-muted); transition: color .2s; }
.pv-footer-col ul li a:hover { color: var(--accent); }

.pv-footer-contact li { font-size: .88rem; color: var(--text-muted); margin-bottom: .75rem; }
.pv-footer-contact a { color: var(--text-muted); }
.pv-footer-contact a:hover { color: var(--accent); }

.pv-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: var(--text-muted);
}

.pv-footer-bottom a { color: var(--text-muted); }
.pv-footer-bottom a:hover { color: var(--accent); }

/* ===== PRODUCTS ARCHIVE FILTER ===== */
.pv-filter-bar {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.pv-filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.pv-filter-btn:hover,
.pv-filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--navy); }

/* ===== PAGE HEADER ===== */
.pv-page-header {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}
.pv-page-header .pv-tag { margin-bottom: .75rem; }
.pv-page-header h1 { margin-bottom: .5rem; }
.pv-page-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .pv-hamburger { display: block; }
  .pv-nav-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }
  .pv-nav-wrapper.open { display: block; }
  .pv-nav { flex-direction: column; gap: 0; }
  .pv-nav li a { padding: .75rem 1rem; border-radius: var(--radius); }
  .pv-hero-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .pv-hero-visual { display: none; }
  .pv-about-grid,
  .pv-contact-grid,
  .pv-product-layout { grid-template-columns: 1fr; }
  .pv-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pv-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .pv-footer-grid { grid-template-columns: 1fr; }
  .pv-cat-grid { grid-template-columns: 1fr 1fr; }
  .pv-hero h1 { font-size: 2rem; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.pv-whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: #fff;
  padding: .75rem 1.25rem .75rem .85rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all .25s;
  animation: pv-wa-pulse 2.5s ease-in-out infinite;
}
.pv-whatsapp-float:hover {
  background: #1db954;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.pv-whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.pv-wa-label { display: flex; flex-direction: column; line-height: 1.2; }
.pv-wa-label span:first-child { font-size: .7rem; font-weight: 400; opacity: .85; }
@keyframes pv-wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}
@media (max-width: 480px) {
  .pv-whatsapp-float { right: 1rem; bottom: 1rem; padding: .75rem; border-radius: 50%; }
  .pv-wa-label { display: none; }
}

/* ===== MADE IN INDIA BADGE ===== */
.pv-made-india {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, rgba(255,153,51,0.12), rgba(19,136,8,0.12));
  border: 1px solid rgba(255,153,51,0.25);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .05em;
}
.pv-made-india .flag { font-size: 1rem; }

/* ===== HERO IMAGE ===== */
.pv-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.pv-hero-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.pv-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,14,18,0.6) 100%);
  border-radius: var(--radius-lg);
}

/* ===== FULL-WIDTH HERO ===== */
.pv-hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image with Ken Burns zoom */
.pv-hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: pv-kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes pv-kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-2%, 1%); }
  100% { transform: scale(1.08) translate(2%, -1%); }
}

/* Multi-layer overlay: bottom is darkest */
.pv-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11,14,18,0.88) 0%, rgba(11,14,18,0.55) 55%, rgba(11,14,18,0.25) 100%),
    linear-gradient(to top, rgba(11,14,18,0.9) 0%, transparent 40%);
  z-index: 1;
}

/* Content sits above overlay */
.pv-hero-full-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}

.pv-hero-full-content {
  max-width: 660px;
}

.pv-hero-full-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.pv-accent-text { color: var(--accent); }

.pv-hero-full-sub {
  font-size: 1.1rem;
  color: rgba(220,232,240,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}

/* Trust pills */
.pv-hero-trust {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pv-trust-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(10,212,192,0.2);
  color: rgba(220,232,240,0.8);
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ===== STEAM PARTICLES ===== */
.pv-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.pv-particle {
  position: absolute;
  border-radius: 50%;
  animation: pv-float linear infinite;
  opacity: 0;
}

/* Teal sparkle particles */
.pv-particle:nth-child(odd) {
  background: radial-gradient(circle, rgba(10,212,192,0.8) 0%, transparent 70%);
  box-shadow: 0 0 6px 2px rgba(10,212,192,0.4);
}

/* White steam particles */
.pv-particle:nth-child(even) {
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  box-shadow: 0 0 8px 3px rgba(255,255,255,0.2);
}

@keyframes pv-float {
  0%   { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-20vh) translateX(var(--drift)) scale(1.2); opacity: 0; }
}

/* Individual particle positions & timings */
.pv-particle-1  { width:6px;  height:6px;  left:5%;   --drift:20px;  animation-duration:7s;  animation-delay:0s;   }
.pv-particle-2  { width:4px;  height:4px;  left:12%;  --drift:-15px; animation-duration:9s;  animation-delay:1s;   }
.pv-particle-3  { width:8px;  height:8px;  left:20%;  --drift:30px;  animation-duration:11s; animation-delay:0.5s; }
.pv-particle-4  { width:3px;  height:3px;  left:28%;  --drift:-10px; animation-duration:8s;  animation-delay:2s;   }
.pv-particle-5  { width:5px;  height:5px;  left:35%;  --drift:25px;  animation-duration:10s; animation-delay:0.8s; }
.pv-particle-6  { width:7px;  height:7px;  left:42%;  --drift:-20px; animation-duration:12s; animation-delay:1.5s; }
.pv-particle-7  { width:4px;  height:4px;  left:50%;  --drift:15px;  animation-duration:9s;  animation-delay:3s;   }
.pv-particle-8  { width:6px;  height:6px;  left:58%;  --drift:-25px; animation-duration:8s;  animation-delay:0.3s; }
.pv-particle-9  { width:3px;  height:3px;  left:65%;  --drift:20px;  animation-duration:11s; animation-delay:2.5s; }
.pv-particle-10 { width:8px;  height:8px;  left:72%;  --drift:-15px; animation-duration:13s; animation-delay:1s;   }
.pv-particle-11 { width:4px;  height:4px;  left:80%;  --drift:10px;  animation-duration:7s;  animation-delay:4s;   }
.pv-particle-12 { width:5px;  height:5px;  left:88%;  --drift:-20px; animation-duration:9s;  animation-delay:1.8s; }
.pv-particle-13 { width:6px;  height:6px;  left:8%;   --drift:30px;  animation-duration:10s; animation-delay:5s;   }
.pv-particle-14 { width:3px;  height:3px;  left:22%;  --drift:-12px; animation-duration:12s; animation-delay:2.2s; }
.pv-particle-15 { width:7px;  height:7px;  left:45%;  --drift:18px;  animation-duration:8s;  animation-delay:3.5s; }
.pv-particle-16 { width:4px;  height:4px;  left:62%;  --drift:-22px; animation-duration:11s; animation-delay:0.7s; }
.pv-particle-17 { width:5px;  height:5px;  left:75%;  --drift:14px;  animation-duration:9s;  animation-delay:4.5s; }
.pv-particle-18 { width:6px;  height:6px;  left:92%;  --drift:-18px; animation-duration:10s; animation-delay:1.2s; }

/* Mobile hero */
@media (max-width: 768px) {
  .pv-hero-full { min-height: 75vh; }
  .pv-hero-overlay {
    background: linear-gradient(to bottom, rgba(11,14,18,0.75) 0%, rgba(11,14,18,0.85) 100%);
  }
  .pv-hero-full-inner { padding: 4rem 1.5rem 3rem; }
  .pv-hero-full-h1 { font-size: clamp(2rem, 7vw, 3rem); }
}
