/* ===== PRODUCT PAGE STYLES ===== */

/* Navbar always white on product pages */
.header{ background:#fff; box-shadow:0 2px 16px rgba(10,46,93,.1); }

/* Page Hero */
.page-hero{
  background:linear-gradient(135deg,#0A2E5D,#124C8C);
  padding:120px 5% 60px;
  color:#fff;
}
.page-hero-content{ max-width:800px; }
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,.7);
  margin-bottom:16px;
}
.breadcrumb a{ color:rgba(255,255,255,.7); transition:.2s; }
.breadcrumb a:hover{ color:#D4A017; }
.breadcrumb i{ font-size:10px; }
.breadcrumb span{ color:#E0B84B; font-weight:600; }
.page-hero h1{
  font-size:46px;
  font-weight:900;
  margin-bottom:16px;
  line-height:1.2;
}
.page-hero p{
  font-size:17px;
  color:rgba(255,255,255,.8);
  max-width:600px;
  line-height:1.7;
}

/* Main Section */
.product-page-section{ padding:80px 0; background:#f8fafc; }
.pp-container{ max-width:1200px; margin:0 auto; padding:0 5%; display:flex; flex-direction:column; gap:80px; }

/* Intro Row */
.pp-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
}
.pp-img{
  background:#f1f5f9;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:360px;
}
.pp-img img{
  width:100%;
  max-width:400px;
  height:280px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(10,46,93,.15);
}
.pp-content{
  padding:40px 40px 40px 0;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.pp-content h2{
  font-size:28px;
  font-weight:800;
  color:#0A2E5D;
  line-height:1.3;
}
.pp-content p{
  color:#475569;
  font-size:15px;
  line-height:1.8;
}
.pp-content p strong{ color:#0A2E5D; }

/* Why Choose */
.pp-why{
  background:#fff;
  border-radius:20px;
  padding:50px;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
}
.pp-why h2{
  font-size:32px;
  font-weight:800;
  color:#0A2E5D;
  margin-bottom:16px;
}
.pp-why > p{
  color:#475569;
  font-size:15px;
  line-height:1.8;
  max-width:800px;
  margin-bottom:40px;
}
.pp-features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.pp-feature-card{
  background:#f8fafc;
  border-radius:14px;
  padding:28px 24px;
  border-left:4px solid #D4A017;
  transition:.3s;
}
.pp-feature-card:hover{
  background:#fff;
  box-shadow:0 8px 24px rgba(10,46,93,.1);
  transform:translateY(-4px);
}
.pp-feature-card i{
  font-size:28px;
  color:#D4A017;
  margin-bottom:14px;
  display:block;
}
.pp-feature-card h4{
  font-size:16px;
  font-weight:700;
  color:#0A2E5D;
  margin-bottom:8px;
}
.pp-feature-card p{
  font-size:14px;
  color:#64748b;
  line-height:1.6;
}

/* Specs Table */
.pp-specs{
  background:#fff;
  border-radius:20px;
  padding:50px;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
}
.pp-specs h2{
  font-size:28px;
  font-weight:800;
  color:#0A2E5D;
  margin-bottom:30px;
}
.specs-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.specs-table thead tr{
  background:linear-gradient(135deg,#0A2E5D,#124C8C);
  color:#fff;
}
.specs-table th{
  padding:14px 18px;
  text-align:left;
  font-weight:600;
  font-size:13px;
  letter-spacing:.3px;
}
.specs-table td{
  padding:13px 18px;
  color:#334155;
  border-bottom:1px solid #f1f5f9;
}
.specs-table tbody tr:hover{ background:#f8fafc; }
.specs-table tbody tr:last-child td{ border-bottom:none; }
.specs-table td:last-child{ color:#B8860B; font-weight:700; }

/* Use Cases */
.pp-usecases{
  background:#fff;
  border-radius:20px;
  padding:50px;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
}
.pp-usecases h2{
  font-size:28px;
  font-weight:800;
  color:#0A2E5D;
  margin-bottom:30px;
}
.usecase-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.usecase-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  background:#f8fafc;
  border-radius:14px;
  padding:24px 16px;
  text-align:center;
  transition:.3s;
  cursor:default;
}
.usecase-item:hover{
  background:#0A2E5D;
  transform:translateY(-4px);
}
.usecase-item:hover i,
.usecase-item:hover span{ color:#fff; }
.usecase-item i{
  font-size:28px;
  color:#D4A017;
  transition:.3s;
}
.usecase-item span{
  font-size:13px;
  font-weight:600;
  color:#334155;
  transition:.3s;
}

/* CTA */
.pp-cta{
  background:linear-gradient(135deg,#0A2E5D,#124C8C,#D4A017);
  border-radius:20px;
  padding:60px 50px;
  text-align:center;
  color:#fff;
}
.pp-cta h2{
  font-size:32px;
  font-weight:800;
  margin-bottom:14px;
}
.pp-cta p{
  font-size:16px;
  color:rgba(255,255,255,.85);
  max-width:600px;
  margin:0 auto 32px;
  line-height:1.7;
}
.pp-cta-btns{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-outline-dark{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:2px solid rgba(255,255,255,.5);
  color:#fff;
  padding:13px 28px;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  transition:.3s;
  text-decoration:none;
}
.btn-outline-dark:hover{
  background:rgba(255,255,255,.1);
  border-color:#E0B84B;
  color:#E0B84B;
}

/* Responsive */
@media(max-width:1024px){
  .pp-features-grid{ grid-template-columns:repeat(2,1fr); }
  .usecase-grid{ grid-template-columns:repeat(3,1fr); }
}
@media(max-width:768px){
  .page-hero h1{ font-size:30px; }
  .pp-row{ grid-template-columns:1fr; }
  .pp-img{ min-height:220px; }
  .pp-content{ padding:30px; }
  .pp-why,.pp-specs,.pp-usecases,.pp-cta{ padding:30px 20px; }
  .pp-features-grid{ grid-template-columns:1fr 1fr; }
  .usecase-grid{ grid-template-columns:repeat(2,1fr); }
  .specs-table{ font-size:12px; }
  .specs-table th,.specs-table td{ padding:10px 12px; }
}
