/* ============================================================
   Smart Security — service.css  v3.0
   Individual service detail pages — full professional rebuild
   ============================================================ */

/* ─── SERVICE HERO ─────────────────────────────────────────── */
.service-hero {
  min-height: 58vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.service-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% 50%, rgba(0,102,255,0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.service-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.service-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.service-hero-icon-big {
  width: 140px; height: 140px;
  background: linear-gradient(135deg, rgba(0,200,255,0.08), rgba(0,102,255,0.06));
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 70px;
  flex-shrink: 0;
  animation: shieldFloat 4s ease-in-out infinite;
}
.service-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.service-hero .breadcrumb a { color: var(--muted); text-decoration: none; }
.service-hero .breadcrumb a:hover { color: var(--accent); }
.service-hero .breadcrumb span { color: rgba(255,255,255,0.2); }
.service-hero h1 { font-family: var(--font-display); font-size: 46px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.service-hero h1 span { color: var(--accent); }
.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 20px; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-tag { background: rgba(0,200,255,0.07); border: 1px solid rgba(0,200,255,0.15); color: var(--accent); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }

/* Quick stats bar in hero */
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.hero-stat-item { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-val { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--white); }
.hero-stat-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ─── OVERVIEW / DESCRIPTION ────────────────────────────────── */
.overview-section { padding: 80px 40px; background: var(--dark); }
.overview-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; margin-top: 40px; }
.overview-text h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.overview-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.check-list li { font-size: 14px; color: var(--muted); padding-left: 22px; position: relative; line-height: 1.6; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Info sidebar card */
.info-card { background: var(--panel); border: 1px solid rgba(0,200,255,0.12); border-radius: 18px; padding: 28px; }
.info-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; }
.info-row:last-of-type { border-bottom: none; }
.info-row .lbl { color: var(--muted); }
.info-row .val { color: var(--white); font-weight: 600; text-align: right; }
.cta-box { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(0,200,255,0.1); }
.cta-box p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

/* ─── TYPES GRID ────────────────────────────────────────────── */
.types-section { padding: 80px 40px; background: var(--black); }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 40px; }
.type-card { background: var(--panel); border: 1px solid rgba(0,200,255,0.08); border-radius: 16px; padding: 24px; transition: border-color .2s, transform .2s; }
.type-card:hover { border-color: rgba(0,200,255,0.25); transform: translateY(-3px); }
.type-card.popular { border-color: var(--accent); background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(0,200,255,0.04)); }
.type-icon { font-size: 32px; margin-bottom: 12px; }
.type-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.type-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.type-specs { display: flex; gap: 6px; flex-wrap: wrap; }
.spec-tag { background: rgba(0,200,255,0.06); border: 1px solid rgba(0,200,255,0.12); color: var(--accent); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; }

/* ─── COMPARISON TABLE ──────────────────────────────────────── */
.comparison-section { padding: 80px 40px; background: var(--dark); }
.comparison-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(0,200,255,0.1); margin-top: 40px; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 14px 18px; text-align: center; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comparison-table th { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; background: rgba(0,0,0,0.3); padding: 18px; }
.comparison-table th.highlight { color: var(--accent); background: rgba(0,200,255,0.06); }
.comparison-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
.comparison-table td.highlight { background: rgba(0,200,255,0.03); }
.comparison-table tr:last-child td { border-bottom: none; }
.check-yes { color: var(--green); font-weight: 700; }
.check-no { color: #FF3D3D; }
.check-part { color: rgba(255,200,50,0.8); }

/* ─── USE CASES ─────────────────────────────────────────────── */
.usecases-section { padding: 80px 40px; background: var(--black); }
.usecases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 40px; }
.usecase-card { background: var(--panel); border: 1px solid rgba(0,200,255,0.07); border-radius: 14px; padding: 22px; text-align: center; transition: border-color .2s; }
.usecase-card:hover { border-color: rgba(0,200,255,0.2); }
.usecase-icon { font-size: 30px; margin-bottom: 10px; }
.usecase-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.usecase-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ─── PRICING SECTION — v3.0 ────────────────────────────────── */
.pricing-section { padding: 90px 40px; background: var(--dark); }

/* Disclaimer box */
.price-disclaimer {
  background: rgba(255,180,0,0.05);
  border: 1px solid rgba(255,180,0,0.2);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto 48px;
}
.price-disclaimer p { font-size: 13px; color: rgba(255,200,50,0.85); line-height: 1.7; margin: 0; }
.price-disclaimer strong { color: rgba(255,215,80,1); }

/* Price cards grid */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-bottom: 32px; }

.price-card {
  background: var(--panel);
  border: 1px solid rgba(0,200,255,0.1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .25s, transform .25s;
}
.price-card:hover { border-color: rgba(0,200,255,0.28); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,200,255,0.05));
  transform: scale(1.01);
}
.price-card.featured:hover { transform: scale(1.01) translateY(-4px); }
.price-card.custom { border-style: dashed; text-align: center; align-items: center; justify-content: center; }

.pc-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  font-size: 10px; font-weight: 900; padding: 3px 14px;
  border-radius: 100px; white-space: nowrap; letter-spacing: 1px;
}
.pc-icon { font-size: 28px; margin-bottom: 10px; }
.pc-label { font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.pc-name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pc-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.pc-price-box { margin-bottom: 6px; }
.pc-price { font-family: var(--font-display); font-size: 38px; font-weight: 900; color: var(--white); line-height: 1; }
.pc-price .unit { font-size: 20px; color: var(--muted); font-weight: 400; }
.pc-price-note { font-size: 11px; color: var(--accent); margin-bottom: 20px; letter-spacing: .5px; }

.pc-includes { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pc-includes li { font-size: 13px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.5; }
.pc-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 12px; }
.pc-includes li.highlight { color: var(--white); font-weight: 600; }
.pc-includes li.warn { color: rgba(255,200,50,0.85); }
.pc-includes li.warn::before { content: '⚠'; font-size: 10px; top: 1px; }

/* Per-unit breakdown table inside card */
.pc-breakdown { 
  background: rgba(0,0,0,0.2); 
  border-radius: 10px; 
  padding: 12px 14px; 
  margin-bottom: 16px;
  font-size: 12px;
}
.pc-breakdown-row { 
  display: flex; justify-content: space-between; 
  padding: 4px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--muted);
}
.pc-breakdown-row:last-child { border-bottom: none; font-weight: 700; color: var(--white); }
.pc-breakdown-row span:last-child { color: var(--white); }

/* Bottom note */
.price-bottom-note {
  text-align: center;
  background: rgba(0,200,255,0.03);
  border: 1px solid rgba(0,200,255,0.08);
  border-radius: 14px;
  padding: 24px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.price-bottom-note p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.price-bottom-note strong { color: var(--white); }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 80px 40px; background: var(--black); }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.faq-item { background: var(--panel); border: 1px solid rgba(0,200,255,0.08); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(0,200,255,0.2); }
.faq-q {
  width: 100%; background: none; border: none; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--white);
  cursor: pointer; font-family: var(--font-body); text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-arrow { font-size: 18px; flex-shrink: 0; transition: transform .3s; color: var(--muted); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }
.faq-a strong { color: var(--white); }
.faq-a .price-highlight { color: var(--accent); font-weight: 700; font-family: var(--font-display); }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.service-cta-banner {
  background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(0,200,255,0.08));
  border-top: 1px solid rgba(0,200,255,0.12);
  border-bottom: 1px solid rgba(0,200,255,0.12);
  padding: 70px 40px;
  text-align: center;
}
.service-cta-banner h2 { font-family: var(--font-display); font-size: 30px; font-weight: 900; margin-bottom: 12px; }
.service-cta-banner p { font-size: 16px; color: var(--muted); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── SERVICE FOOTER ────────────────────────────────────────── */
.service-footer { background: var(--panel); border-top: 1px solid rgba(0,200,255,0.1); padding: 30px 40px; }
.service-footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .service-hero-content { grid-template-columns: 1fr; text-align: center; padding: 50px 24px; }
  .service-hero h1 { font-size: 32px; }
  .service-hero-icon-big { margin: 0 auto; width: 100px; height: 100px; font-size: 50px; }
  .hero-desc { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .overview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .overview-section, .types-section, .comparison-section,
  .usecases-section, .pricing-section, .faq-section { padding: 50px 20px; }
  .service-hero-content { padding: 40px 20px; }
  .service-hero h1 { font-size: 26px; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .service-cta-banner { padding: 50px 20px; }
  .service-cta-banner h2 { font-size: 22px; }
}
