/* ====================================================
   PIWIPE — Main Stylesheet
   ==================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-blue { color: #2563eb; }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  border: none;
}

.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; }
.btn-outline { background: transparent; color: #2563eb; border: 2px solid #2563eb; }
.btn-outline:hover { background: #eff6ff; }
.btn-white { background: #fff; color: #2563eb; }
.btn-white:hover { background: #eff6ff; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ====================================================
   HEADER / NAVBAR
   ==================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow .2s;
}

.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; }

/* TR menü sığdırma */
html[lang="tr"] .nav-inner { gap: 16px; }
html[lang="tr"] .nav-link  { padding: 6px 8px; font-size: 13px; }
html[lang="tr"] .nav-actions { gap: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: all .15s;
}

.nav-link:hover, .nav-link.active-page { color: #2563eb; background: #eff6ff; }

/* --- Products Dropdown --- */
.nav-dropdown { position: relative; }

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  transition: transform .2s;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 640px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.03);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 1000;
}

.nav-dropdown:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: 10px;
  transition: background .15s;
}

.mega-item:hover {
  background: #f1f5f9;
}

.mega-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mega-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.mega-text span {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.35;
}

.mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid #f1f5f9;
  margin-top: 2px;
  padding: 10px 14px 4px;
  text-align: center;
}

.mega-footer a {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  transition: color .15s;
}

.mega-footer a:hover {
  color: #1d4ed8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.lang-toggle { display: flex; align-items: center; gap: 4px; font-size: 13px; }
.lang-btn { color: #94a3b8; font-weight: 600; padding: 2px 4px; border-radius: 4px; transition: color .15s; }
.lang-btn:hover { color: #2563eb; }
.lang-btn.lang-active { color: #2563eb; }
.lang-sep { color: #cbd5e1; }

.btn-demo {
  background: #2563eb;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s;
}
.btn-demo:hover { background: #1d4ed8; }

/* Buy Now — top bar */
.btn-buy {
  background: #0ea5e9;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.btn-buy:hover { background: #0284c7; }

/* Buy Now — hero */
.btn-buy-hero {
  background: #0ea5e9;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
}
.btn-buy-hero:hover { background: #0284c7; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #475569;
  border-radius: 2px;
  transition: all .2s;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-actions { gap: 8px; }
  .hamburger { display: flex; }
  .btn-demo { display: none; }
  /* Desktop lang toggle gizle, mobile menüdeki göster */
  .nav-desktop-lang { display: none; }
  .nav-mobile-lang { display: flex; align-items: center; padding: 8px 0; border-top: 1px solid #f1f5f9; margin-top: 4px; width: 100%; }
  .nav-mobile-lang .lang-toggle { display: flex; }

  .nav-mega {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 12px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-dropdown.open .nav-mega { display: block; }
  .mega-item { padding: 8px 10px; }
  .mega-icon { width: 36px; height: 36px; border-radius: 8px; }
  .mega-footer { padding: 8px 10px 2px; }
}

/* Desktop: mobile lang gizle */
.nav-mobile-lang { display: none; }

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

.hero-content { flex: 1; }
.hero-visual { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  color: #93c5fd;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.3rem;
}

.hero h1 .accent { color: #60a5fa; }

.hero p.lead {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 520px;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: .8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 1.8rem;
  font-size: .78rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.hero-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero .container { flex-direction: column; }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 0 3rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p.lead { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-trust { gap: 1rem; }
}

/* ====================================================
   3 CORE CAPABILITIES
   ==================================================== */
.capabilities-section {
  padding: 5rem 1.5rem;
  background: #fff;
}

.capabilities-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.capabilities-section .section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .6rem;
}

.capabilities-section .section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .8rem;
}

.capabilities-section .section-header p {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cap-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all .25s ease;
}

.cap-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,99,235,.12);
}

.cap-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  background: #0f172a;
  border-color: #1e293b;
  color: #fff;
}

.cap-card-wide:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(15,23,42,.3);
}

.cap-card-wide .cap-icon {
  background: rgba(37,99,235,.2);
  color: #60a5fa;
  min-width: 64px;
  margin-bottom: 0;
}


.cap-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.cap-icon-blue  { background: #eff6ff; color: #2563eb; }
.cap-icon-green { background: #eff6ff; color: #2563eb; }
.cap-icon-red   { background: #eff6ff; color: #2563eb; }

.cap-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: .6rem;
}

.cap-card p {
  font-size: .92rem;
  color: #64748b;
  line-height: 1.65;
}

.cap-card-wide h3 { color: #fff; }
.cap-card-wide p { color: #94a3b8; }

@media (max-width: 768px) {
  .cap-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .capabilities-section { padding: 3rem 1rem; }
  .capabilities-section .section-header h2 { font-size: 1.5rem; }
  .cap-card-wide {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
  .cap-card-wide .cap-icon { min-width: unset; margin-bottom: 0; }
}

/* ====================================================
   TRUST BAR
   ==================================================== */
.trust-bar {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 2.2rem 0;
}

.trust-bar-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  min-width: 105px;
  transition: all .2s;
}

.trust-item:hover {
  border-color: #2563eb;
  background: #eff6ff;
  transform: translateY(-2px);
}

.trust-icon {
  font-size: .7rem;
  font-weight: 800;
  color: #1e3a5f;
  letter-spacing: .02em;
  line-height: 1.3;
  text-align: center;
}

.trust-icon .ti-num {
  font-size: .88rem;
  font-weight: 900;
  color: #2563eb;
  display: block;
}

.trust-item > span {
  font-size: .72rem;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* Keep old trust-badge class for compliance pages */
.trust-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: #fff; border: 1px solid #e2e8f0; border-radius: 100px; font-size: 12px; font-weight: 600; color: #475569; white-space: nowrap; }
.trust-badge .check { color: #22c55e; font-weight: 700; }

/* ====================================================
   PROBLEM SECTION
   ==================================================== */
.problem-section {
  padding: 80px 24px;
  background: #fff;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.problem-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #1e40af, #2563eb);
}

.problem-card-icon {
  width: 48px; height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* ====================================================
   FEATURES SECTION
   ==================================================== */
.features-section {
  padding: 80px 24px;
  background: #f8fafc;
}

.features-section .section-sub { margin: 0 auto 40px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all .2s;
}

.feature-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.08);
}

.feature-icon {
  width: 44px; height: 44px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ====================================================
   HOW IT WORKS
   ==================================================== */
.how-section {
  padding: 80px 24px;
  background: #fff;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.how-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%; right: 16%;
  height: 2px;
  background: #e5e7eb;
}

.how-step:not(:last-child)::after { content: none; }

.how-num {
  width: 72px; height: 72px;
  background: #eff6ff;
  border: 3px solid #2563eb;
  color: #2563eb;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: #64748b; }

/* ====================================================
   SCREENSHOTS PREVIEW
   ==================================================== */
.screenshots-section {
  padding: 80px 24px;
  background: #0f172a;
  color: #fff;
}

.screenshots-section .badge { color: #93c5fd; }
.screenshots-section .section-title { color: #fff; }
.screenshots-section .section-sub { color: #94a3b8; margin: 0 auto 40px; }

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .screenshots-grid { grid-template-columns: 1fr; }
}

.screenshot-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  background: #1e293b;
}

.screenshot-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.screenshot-item:hover img { transform: scale(1.03); }

.screenshot-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transform: translateY(8px);
  opacity: 0;
  transition: all .2s;
}

.screenshot-item:hover .screenshot-overlay { opacity: 1; transform: translateY(0); }

.screenshots-cta { text-align: center; margin-top: 32px; }

/* ====================================================
   DEVICES SECTION
   ==================================================== */
.devices-section {
  padding: 80px 24px;
  background: #fff;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0 32px;
}

@media (max-width: 768px) {
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
}

.device-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all .2s;
}

.device-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.device-icon {
  width: 48px; height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.device-icon svg { color: #2563eb; }

.device-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.device-card p { font-size: 11px; color: #94a3b8; }

/* Wipe methods table */
.methods-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.methods-table th {
  background: #f8fafc;
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}

.methods-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.methods-table tr:last-child td { border-bottom: none; }

.methods-table td:first-child { font-weight: 600; color: #1e293b; }

.tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.tag-amber { background: #fef3c7; color: #92400e; }
.tag-blue { background: #dbeafe; color: #1e40af; }
.tag-indigo { background: #e0e7ff; color: #3730a3; }
.tag-green { background: #dcfce7; color: #166534; }
.check-yes { color: #22c55e; font-weight: 700; font-size: 16px; }
.check-no { color: #94a3b8; }

/* ====================================================
   CERTIFICATE SECTION
   ==================================================== */
.cert-section {
  padding: 80px 24px;
  background: #f8fafc;
}

.cert-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .cert-layout { grid-template-columns: 1fr; }
}

.cert-features { display: flex; flex-direction: column; gap: 20px; }

.cert-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cert-feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cert-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cert-feature p { font-size: 13px; color: #64748b; }

.cert-preview {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.cert-preview img { width: 100%; }

.cert-preview-caption {
  padding: 12px 16px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

/* ====================================================
   COMPLIANCE SECTION
   ==================================================== */
.compliance-section {
  padding: 80px 24px;
  background: #fff;
}

.compliance-section .section-sub { margin: 0 auto 40px; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.compliance-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s;
}

.compliance-card:hover { border-color: #2563eb; }

.comp-badge {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  white-space: nowrap;
  min-width: 60px;
  text-align: center;
}

.comp-blue { background: #dbeafe; color: #1e40af; }
.comp-indigo { background: #e0e7ff; color: #3730a3; }
.comp-red { background: #fee2e2; color: #991b1b; }
.comp-green { background: #dcfce7; color: #166534; }
.comp-gray { background: #f1f5f9; color: #475569; }

.compliance-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.compliance-card p { font-size: 13px; color: #64748b; }

/* ====================================================
   PRICING SECTION
   ==================================================== */
.pricing-section {
  padding: 80px 0;
  background: #fff;
}

.pricing-section .section-sub { margin: 0 auto 16px; }

/* Credit rules row */
.pr-rule-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.pr-rule {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  flex: 1;
  min-width: 220px;
}

.pr-rule-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.pr-rule strong { font-size: .9rem; display: block; margin-bottom: .2rem; color: #111; }
.pr-rule p { font-size: .78rem; color: #6b7280; margin: 0; }

/* Pricing cards grid */
.pricing-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .pricing-grid-inner { grid-template-columns: 1fr; }
  .pr-rule-row { flex-direction: column; }
}

.price-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all .3s;
  position: relative;
}

.price-card:hover { border-color: #2563eb; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,99,235,.1); }
.price-card.pop { border-color: #2563eb; box-shadow: 0 8px 30px rgba(37,99,235,.12); }

.pop-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: .2rem .9rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.pr-badge {
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}

.pr-badge-gray  { background: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }
.pr-badge-blue  { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.pr-badge-orange{ background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }

.pr-credits { margin-bottom: .8rem; }
.pr-cr-num { font-size: 2.8rem; font-weight: 900; color: #111; line-height: 1; }
.pr-cr-lbl { font-size: .85rem; color: #6b7280; margin-left: .3rem; font-weight: 500; }

.price-amt { font-size: 2.4rem; font-weight: 800; margin-bottom: .2rem; }
.price-cent { font-size: 1.1rem; font-weight: 400; }
.pr-per-unit { font-size: .82rem; color: #6b7280; margin: .3rem 0 .6rem; }

.pr-discount {
  font-size: .75rem;
  font-weight: 600;
  padding: .18rem .55rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.pr-discount-green { background: #d1fae5; color: #059669; }
.pr-discount-none  { background: #f3f4f6; color: #9ca3af; }

/* All includes box */
.pr-includes {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 1.8rem 2rem;
  margin-top: 2.2rem;
}

.pr-inc-title {
  font-size: .82rem;
  font-weight: 700;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.1rem;
  text-align: center;
}

.pr-inc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}

@media (max-width: 768px) {
  .pr-inc-grid { grid-template-columns: repeat(2, 1fr); }
}

.pr-inc-item {
  font-size: .82rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem 0;
}

.pr-inc-item .chk { color: #22c55e; font-weight: 700; }

/* ====================================================
   PRICING CALCULATOR
   ==================================================== */
.pricing-calc-section {
  padding: 3rem 1.5rem;
  background: #f8fafc;
}

.pricing-calc {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

/* Slider area */
.calc-top {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.calc-question {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.calc-slider-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.calc-slider-track {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.calc-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2563eb var(--fill, 0%), #e2e8f0 var(--fill, 0%));
  outline: none;
  margin: 0;
  padding: 0;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.35);
  cursor: pointer;
  transition: transform .15s;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.35);
  cursor: pointer;
}

.calc-qty-badge {
  background: #0f172a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  padding: .5rem 1.2rem;
  border-radius: 8px;
  min-width: 52px;
  text-align: center;
  white-space: nowrap;
  margin-top: -6px;
  transition: all .25s ease;
}

.calc-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: .6rem;
  padding: 0 10px;
}

.calc-ticks span {
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 600;
  cursor: pointer;
  transition: color .15s;
  text-align: center;
  min-width: 28px;
}

.calc-ticks span:hover { color: #2563eb; }

/* 2-column body */
.calc-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.calc-included h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .3rem;
}

.calc-subtitle {
  font-size: .88rem;
  color: #64748b;
  margin-bottom: 1.2rem;
}

.calc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.5rem;
}

.calc-features li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: #374151;
}

/* Delivery */
.calc-delivery-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: .6rem;
}

.calc-delivery-opts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.calc-radio {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .7rem .9rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all .15s;
}

.calc-radio:has(input:checked) {
  border-color: #2563eb;
  background: #f8faff;
}

.calc-radio input { display: none; }

.calc-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color .15s;
}

.calc-radio:has(input:checked) .calc-radio-dot {
  border-color: #2563eb;
}

.calc-radio:has(input:checked) .calc-radio-dot::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.calc-radio strong {
  font-size: .82rem;
  display: block;
  margin-bottom: .1rem;
}

.calc-radio small {
  font-size: .72rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Price card */
.calc-price-card {
  background: #0f172a;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
}

.calc-price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: .4rem;
}

.calc-currency {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: .6rem;
  color: #93c5fd;
}

.calc-price {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.calc-cents {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: .6rem;
  color: #93c5fd;
}

.calc-per-device {
  font-size: .82rem;
  color: #93c5fd;
  margin-bottom: 1rem;
}

.calc-price-metas {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-bottom: 1.2rem;
}

.calc-price-metas span {
  font-size: .72rem;
  color: #64748b;
}

.calc-cta {
  width: 100%;
  justify-content: center;
  padding: .85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
}

.calc-custom {
  display: block;
  margin-top: .8rem;
  font-size: .78rem;
  color: #93c5fd;
  text-decoration: underline;
}

.calc-badges {
  display: flex;
  gap: .4rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.calc-badges span {
  background: rgba(255,255,255,.1);
  color: #94a3b8;
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
}

/* Calculator footer */
.calc-footer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.calc-footer p {
  font-size: .82rem;
  color: #6b7280;
}

.calc-footer a {
  color: #2563eb;
  font-weight: 600;
}

/* Payment methods */
.pricing-methods-section {
  padding: 3rem 1.5rem;
  background: #fff;
}

.pricing-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-method-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.8rem;
  text-align: center;
}

.pricing-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-method-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: .8rem;
}

.pricing-method-card p {
  font-size: .85rem;
  color: #64748b;
  margin-bottom: .8rem;
}

.pricing-method-logos {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-method-logos span {
  background: #f1f5f9;
  padding: .35rem .7rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.pricing-po-link {
  color: #2563eb;
  font-weight: 600;
  font-size: .88rem;
}

/* Responsive */
@media (max-width: 768px) {
  .calc-body { grid-template-columns: 1fr; }
  .calc-features { grid-template-columns: 1fr; }
  .pricing-methods-grid { grid-template-columns: 1fr; }
  .pricing-calc { padding: 1.5rem; }
}

/* Keep old classes for index.php pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card { background: #fff; border: 2px solid #e5e7eb; border-radius: 16px; padding: 2rem; text-align: center; transition: all .3s; position: relative; }
.pricing-card:hover { border-color: #2563eb; transform: translateY(-3px); }
.pricing-card.popular { border-color: #2563eb; box-shadow: 0 8px 30px rgba(37,99,235,.12); }
.popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #2563eb; color: #fff; padding: .2rem .9rem; border-radius: 50px; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.pricing-credits { font-size: 2.8rem; font-weight: 900; color: #111; line-height: 1; }
.pricing-credit-label { font-size: .85rem; color: #6b7280; margin-bottom: 1rem; }
.pricing-price { font-size: 2.4rem; font-weight: 800; margin-bottom: .2rem; }
.pricing-base { font-size: .75rem; color: #9ca3af; text-decoration: line-through; }
.pricing-save { font-size: .75rem; color: #059669; font-weight: 600; background: #d1fae5; padding: .15rem .5rem; border-radius: 4px; display: inline-block; margin-bottom: 1.2rem; }
.pricing-card hr { border: none; border-top: 1px solid #e5e7eb; margin: 1rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.3rem; text-align: left; }
.pricing-feature { display: flex; gap: 8px; font-size: .82rem; color: #374151; }
.pricing-feature .pf-check { color: #22c55e; font-weight: 700; }
.pricing-note { text-align: center; font-size: .82rem; color: #6b7280; margin-top: 1.5rem; }
.pricing-note a { color: #2563eb; font-weight: 600; }

/* ====================================================
   PRICING PREVIEW (Index page)
   ==================================================== */
.pricing-preview {
  padding: 72px 24px;
  background: #f8fafc;
}
.pricing-preview-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.pp-left {
  padding: 36px 40px;
}
.pp-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.pp-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}
.pp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pp-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}
.pp-badges {
  display: flex;
  gap: 8px;
}
.pp-badges span {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: .3px;
}
.pp-right {
  background: #0f172a;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pp-starting {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pp-price {
  display: flex;
  align-items: flex-start;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.pp-currency {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  margin-right: 2px;
}
.pp-amount {
  font-size: 56px;
  font-weight: 800;
}
.pp-cents {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
}
.pp-per {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 2px;
}
.pp-unit {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}
.pp-cta {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 10px;
}
.pp-custom {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
}
.pp-custom:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pricing-preview-card {
    grid-template-columns: 1fr;
  }
  .pp-left { padding: 28px 24px; }
  .pp-features { grid-template-columns: 1fr; }
  .pp-right { padding: 28px 24px; }
  .pp-amount { font-size: 44px; }
}

/* ====================================================
   STATS SECTION
   ==================================================== */
.stats-section {
  padding: 64px 24px;
  background: #f9fafb;
}

.stats-section .badge { display: block; }
.stats-section .section-title { color: #111827; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
}

.stat-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: .2rem;
}

.stat-lbl { font-size: .85rem; color: #6b7280; }

/* ====================================================
   FAQ SECTION
   ==================================================== */
.faq-section {
  padding: 80px 24px;
  background: #fff;
}

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  user-select: none;
  gap: 16px;
}

.faq-q:hover { color: #2563eb; }

.faq-arrow {
  font-size: 18px;
  transition: transform .2s;
  color: #94a3b8;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: #2563eb; }

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ====================================================
   CTA SECTION
   ==================================================== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f, #1e40af);
  color: #fff;
  text-align: center;
}

.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: #94a3b8; margin: 0 auto 36px; }

.cta-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .cta-form { grid-template-columns: 1fr; }
}

.cta-input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}

.cta-input::placeholder { color: #94a3b8; }
.cta-input:focus { border-color: #60a5fa; background: rgba(255,255,255,.15); }
.cta-input.col-span-2 { grid-column: span 2; }
.cta-input.col-span-2-mobile { grid-column: span 2; }

select.cta-input option { background: #1e3a5f; color: #fff; }

.cta-submit {
  grid-column: span 2;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}

.cta-submit:hover { background: #1d4ed8; }

.cta-phone {
  margin-top: 20px;
  font-size: 14px;
  color: #94a3b8;
}

.cta-phone strong { color: #fff; }

.cta-success {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 32px;
}

.cta-success .success-icon { font-size: 40px; margin-bottom: 12px; }
.cta-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.cta-success p { font-size: 14px; color: #94a3b8; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 0 1.5rem;
}

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: .8rem;
}

.footer-brand-col p {
  font-size: .82rem;
  line-height: 1.8;
  color: #9ca3af;
}

.footer-col h4 {
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .8rem;
}

.footer-col a {
  display: block;
  font-size: .82rem;
  color: #9ca3af;
  padding: .15rem 0;
  transition: color .2s;
  text-decoration: none;
}

.footer-col a:hover { color: #60a5fa; }

/* keep ul support as fallback */
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li a { display: block; font-size: .82rem; color: #9ca3af; padding: .15rem 0; transition: color .2s; }
.footer-col ul li a:hover { color: #60a5fa; }

.footer-btm {
  border-top: 1px solid #1f2937;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: .5rem;
  color: #6b7280;
}

/* ====================================================
   INNER PAGE HEADER (for sub-pages)
   ==================================================== */
.page-hero {
  padding: 100px 24px 56px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
  text-align: center;
}

.page-hero .badge { color: #93c5fd; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; }
.page-hero p { font-size: 16px; color: #94a3b8; max-width: 560px; margin: 0 auto; }

/* ====================================================
   LIGHTBOX
   ==================================================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 48px 80px;
}

.lightbox-overlay.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 760px;
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  display: block;
}

.lightbox-caption {
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  margin-top: 12px;
}

.lightbox-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: .7;
  transition: opacity .15s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: -52px; }
.lightbox-next { right: -52px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }

@media (max-width: 768px) {
  .lightbox-overlay { padding: 48px 16px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-inner { max-width: 100%; }
}

/* ====================================================
   CONTACT / DEMO FORMS
   ==================================================== */
.form-page {
  padding: 64px 24px 80px;
  background: #f8fafc;
  min-height: 60vh;
}

.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.col-span-2 { grid-column: span 2; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.form-input {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}

.form-input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }

textarea.form-input { resize: vertical; min-height: 100px; }

.form-submit {
  grid-column: span 2;
  padding: 13px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}

.form-submit:hover { background: #1d4ed8; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success .success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: #64748b; }

.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  grid-column: span 2;
}

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-section {
  padding: 64px 24px;
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; }
}

.about-text p { font-size: 15px; color: #475569; margin-bottom: 16px; line-height: 1.7; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
}

.about-highlight .highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-highlight h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.about-highlight p { font-size: 13px; color: #64748b; }

.products-section {
  padding: 64px 24px;
  background: #f8fafc;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all .2s;
}

.product-card:hover { border-color: #2563eb; transform: translateY(-2px); }
.product-card .product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.product-card p { font-size: 13px; color: #64748b; }

/* ====================================================
   FULL SCREENSHOTS PAGE
   ==================================================== */
.screenshots-page {
  padding: 64px 24px 80px;
  background: #f8fafc;
}

.screenshots-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .screenshots-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .screenshots-page-grid { grid-template-columns: 1fr; }
}

.screenshot-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
}

.screenshot-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.screenshot-card-caption {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  border-top: 1px solid #e2e8f0;
}

/* ====================================================
   COMPLIANCE PAGE
   ==================================================== */
.compliance-page {
  padding: 64px 24px 80px;
  background: #f8fafc;
}

.standard-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.standard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.standard-badge-lg {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .05em;
}

.standard-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.standard-sub { font-size: 13px; color: #64748b; }

.standard-body { font-size: 14px; color: #475569; line-height: 1.7; }

/* ====================================================
   MISC
   ==================================================== */
.section-heading { text-align: center; margin-bottom: 8px; }
.section-heading + .section-sub { text-align: center; }

/* Scroll top offset for fixed header */
[id] { scroll-margin-top: 80px; }

/* ====================================================
   LEGAL PAGES (privacy, terms, cookies)
   ==================================================== */
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 2rem 0 .6rem;
  color: #111827;
}

.legal-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content strong { color: #111827; }

/* ====================================================
   PRODUCTS PAGE (Tab Layout)
   ==================================================== */
.products-section {
  padding: 3rem 1.5rem 5rem;
  background: #f8fafc;
}

/* Tab navigation */
.prod-tabs {
  display: flex;
  gap: .5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: .4rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.prod-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.2rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #64748b;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.prod-tab:hover { background: #f1f5f9; color: #0f172a; }

.prod-tab.active {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.25);
}

.prod-tab svg { flex-shrink: 0; }

/* Tab panels */
.prod-panel { display: none; }
.prod-panel.active { display: block; }

.prod-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  align-items: center;
}

/* Product info */
.prod-meta-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.prod-meta {
  font-size: .78rem;
  color: #6b7280;
  background: #f1f5f9;
  padding: .3rem .7rem;
  border-radius: 6px;
}

.prod-meta strong { color: #374151; }

.prod-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .8rem;
}

.prod-desc {
  font-size: .92rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.prod-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.8rem;
}

.prod-feat {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: #374151;
}

.prod-feat svg { flex-shrink: 0; }

.prod-actions {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.prod-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 8px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Product visual */
.prod-visual {
  background: #0f172a;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .prod-content { grid-template-columns: 1fr; gap: 2rem; }
  .prod-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .prod-tabs { flex-direction: column; }
  .prod-content { padding: 1.5rem; }
  .prod-info h2 { font-size: 1.4rem; }
  .prod-meta-row { flex-direction: column; gap: .5rem; }
}

/* ====================================================
   CONTACT & DEMO GRIDS
   ==================================================== */
.contact-grid { grid-template-columns: 1fr 380px; }
.demo-grid { grid-template-columns: 1fr 340px; }

/* ====================================================
   MOBILE RESPONSIVE FIXES
   ==================================================== */

/* --- Global mobile padding reduction --- */
@media (max-width: 640px) {
  .hero { padding: 6rem 0 3rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero .lead { font-size: .95rem; }
  .hero-btns { flex-direction: column; gap: .75rem; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-trust { flex-wrap: wrap; gap: .5rem; }
  .hero-trust span { font-size: .7rem; }

  .capabilities-section,
  .problem-section,
  .features-section,
  .how-section,
  .devices-section,
  .cert-section,
  .compliance-section,
  .pricing-preview,
  .stats-section,
  .faq-section { padding: 48px 16px; }

  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: .9rem; }

  /* Pricing preview card */
  .pricing-preview-card { grid-template-columns: 1fr; }
  .pp-left { padding: 24px 20px; }
  .pp-features { grid-template-columns: 1fr; }
  .pp-right { padding: 24px 20px; }
  .pp-amount { font-size: 40px; }

  /* Stats grid 2 columns on small mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Footer single column */
  .footer-grid { grid-template-columns: 1fr; }

  /* CTA form single column */
  .cta-form { grid-template-columns: 1fr; }
  .cta-input.col-span-2,
  .cta-input[style*="grid-column"] { grid-column: span 1 !important; }
  .cta-submit { grid-column: span 1; }

  /* How steps vertical */
  .how-steps { flex-direction: column; gap: 2rem; }

  /* Problem cards vertical */
  .problem-cards { grid-template-columns: 1fr; }

  /* Features grid 1 column */
  .features-grid { grid-template-columns: 1fr; }

  /* Devices grid 2 columns */
  .devices-grid { grid-template-columns: 1fr 1fr; }

  /* Compliance grid 2 columns — kartlar dikey, sıkışmasın */
  .compliance-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .compliance-card { flex-direction: column; gap: 8px; padding: 14px 12px; }
  .comp-badge { font-size: 10px; padding: 4px 8px; align-self: flex-start; }
  .compliance-card h4 { font-size: 13px; }
  .compliance-card p { font-size: 12px; }

  /* Methods table responsive */
  .methods-table { font-size: .75rem; }
  .methods-table th, .methods-table td { padding: 8px 6px; }

  /* Cert layout stack */
  .cert-layout { flex-direction: column; }

  /* Screenshots grid */
  .screenshots-grid { grid-template-columns: 1fr; }

  /* Pricing calc */
  .calc-slider-wrap { flex-direction: column; align-items: stretch; gap: .8rem; }
  .calc-qty-badge { align-self: center; }
  .calc-ticks span { font-size: .65rem; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-features { grid-template-columns: 1fr; }

  /* Pricing methods */
  .pricing-methods-grid { grid-template-columns: 1fr; }

  /* Contact/Demo page fixed grids */
  .page-hero h1 { font-size: 1.6rem; }
}

/* --- Tablet fixes (641-768px) --- */
@media (max-width: 768px) and (min-width: 641px) {
  .hero h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .compliance-card { padding: 18px 16px; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Small phone (375px) --- */
@media (max-width: 400px) {
  .hero h1 { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .calc-ticks span { font-size: .6rem; }
  .trust-items { flex-direction: column; align-items: center; }
}

/* --- Contact/Demo grid responsive --- */
@media (max-width: 768px) {
  .contact-grid,
  .demo-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* --- Table responsive wrapper --- */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.table-responsive::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.table-responsive:hover::after { opacity: 1; }

/* ── Parts Verification Section ─────────────────────────────────────────── */
.parts-section {
  padding: 72px 0;
  background: #fff;
}

.parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.parts-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.parts-screenshot {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.parts-table-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.parts-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2rem;
  font-size: .875rem;
}

.parts-table th {
  background: #F8FAFC;
  color: var(--text-light);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.parts-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.7;
}

.parts-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 700;
}

.parts-badge--ok   { background: #D1FAE5; color: #065F46; }
.parts-badge--warn { background: #FEF3C7; color: #92400E; }
.parts-badge--na   { background: #F3F4F6; color: #6B7280; }

.parts-badge-note {
  font-size: .76rem;
  color: #6B7280;
  margin-left: 4px;
}

.parts-cert-note {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: .84rem;
  color: #374151;
  line-height: 1.65;
}

.parts-cert-note strong {
  color: #1D4ED8;
  display: block;
  margin-bottom: .35rem;
}

@media (max-width: 768px) {
  .parts-grid { grid-template-columns: 1fr; }
  .parts-screenshot { max-height: 220px; }
}

/* feature card — clickable variant (parts verification) */
.feature-card--link {
  cursor: pointer;
  position: relative;
}
.feature-card--link:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37,99,235,.12);
}
.feature-card-more {
  display: inline-block;
  margin-top: .75rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
}
