/* ==================================================
   PVABUNDLE HOMEPAGE REDESIGN v3 — CARD PRICING EDITION
   Theme: Dark Cinematic / Ivory Contrast
   Scope: index.html only
   ================================================== */

:root {
  --primary: #0f766e;
  --primary-dark: #0a5c56;
  --secondary: #b45309;
  --accent: #14b8a6;
  --highlight: #f59e0b;
  --success: #10b981;
  --background: #fbfaf6;
  --light-bg: #f4efe6;
  --soft-surface: #eef7f4;
  --soft-accent: #fff7ed;
  --text-primary: #101827;
  --text-secondary: #5f6b7a;
  --border: #e7dfd2;
  --footer-bg: #07111f;
  --footer-text: #f8fafc;
  --gradient-primary: linear-gradient(135deg, #0f766e 0%, #14b8a6 55%, #d97706 100%);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 28px 80px rgba(15, 23, 42, 0.14);
}

body.home-redesigned {
  background:
    radial-gradient(circle at 8% 6%, rgba(20, 184, 166, 0.12), transparent 28rem),
    radial-gradient(circle at 94% 10%, rgba(217, 119, 6, 0.10), transparent 26rem),
    #fbfaf6;
}

.home-redesigned .header {
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(231, 223, 210, 0.9);
  backdrop-filter: blur(22px);
}

.home-redesigned .logo {
  background: linear-gradient(135deg, #0f766e, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.az-home {
  color: #101827;
  overflow: hidden;
}

/* ===========================================
   HERO — FULL-BLEED IMAGE WITH ALT PHOTO
   =========================================== */

.az-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 12vw, 160px) 0 clamp(64px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #040a16 0%, #071220 40%, #0a1a2e 70%, #061018 100%);
}

.az-hero-bg {
  display: none;
}

.az-hero-overlay {
  display: none;
}

.az-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 999px;
  right: 4%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.25), transparent 68%);
  filter: blur(44px);
  z-index: 0;
  pointer-events: none;
}

.az-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  left: -50px;
  top: 80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.22), transparent 70%);
  filter: blur(44px);
  z-index: 0;
  pointer-events: none;
}

.az-hero .container { position: relative; z-index: 1; width: 100%; }

.az-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

/* Eyebrow badge */
.az-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(20, 184, 166, 0.38);
  border-radius: 999px;
  color: #5eead4;
  background: rgba(20, 184, 166, 0.10);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.az-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 5px rgba(20,184,166,0.20);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 5px rgba(20,184,166,0.20); }
  50% { box-shadow: 0 0 0 9px rgba(20,184,166,0.06); }
}

.az-hero h1 {
  color: #f8fafc;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.065em;
  max-width: 860px;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(4,10,22,0.5);
}

.az-hero h1 span {
  background: linear-gradient(120deg, #5eead4, #fbbf24 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.az-hero-lead {
  max-width: 680px;
  color: #b2c0d4;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.78;
  margin-bottom: 38px;
}

.az-hero-actions,
.az-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.az-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.az-btn-light {
  background: #f8fafc;
  color: #0a1628;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.az-btn-light:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.36); }

.az-btn-dark {
  background: rgba(255,255,255,0.09);
  color: #e2e8f0;
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}
.az-btn-dark:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700;
}
.btn-whatsapp:hover { transform: translateY(-3px) !important; }

/* Proof stats */
.az-hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}

.az-proof-item { display: flex; flex-direction: column; gap: 3px; }
.az-proof-item strong {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.az-proof-item span {
  color: #7fa3b6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Right card */
.az-command-card {
  background: rgba(10, 18, 36, 0.80);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  backdrop-filter: blur(28px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(20,184,166,0.10);
}

.az-command-inner { padding: 22px; }
.az-command-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.az-window-dots { display: flex; gap: 7px; }
.az-window-dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.az-window-dots span:nth-child(1) { background: #f87171; }
.az-window-dots span:nth-child(2) { background: #fbbf24; }
.az-window-dots span:nth-child(3) { background: #34d399; }

.az-live-badge {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.18);
  border: 1px solid rgba(20, 184, 166, 0.32);
  color: #5eead4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.az-dashboard-body { display: flex; flex-direction: column; gap: 16px; }

.az-feature-product {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.az-feature-product h3 { color: #f8fafc; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.az-feature-product p { color: #8a9bb5; font-size: 13px; line-height: 1.5; margin-bottom: 14px; }

.az-mini-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.az-mini-metric {
  text-align: center;
  padding: 10px 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
}
.az-mini-metric strong { display: block; color: #5eead4; font-size: 13px; font-weight: 800; letter-spacing: -0.02em; }
.az-mini-metric span { display: block; color: #637489; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; margin-top: 2px; }

.az-order-list { display: flex; flex-direction: column; gap: 8px; }

.az-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.az-order-item strong { display: block; color: #e2e8f0; font-size: 13px; font-weight: 700; }
.az-order-item span { color: #637489; font-size: 11px; }

.az-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(20, 184, 166, 0.14);
  border: 1px solid rgba(20, 184, 166, 0.24);
  color: #5eead4;
  white-space: nowrap;
}

/* ===========================
   BELOW-HERO SECTIONS
   =========================== */
.az-section {
  padding: clamp(56px, 7vw, 100px) 0;
  background: transparent;
}
.az-section.alt {
  background: rgba(20,184,166,0.04);
  border-top: 1px solid rgba(20,184,166,0.10);
  border-bottom: 1px solid rgba(20,184,166,0.10);
}

.az-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.az-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(20,184,166,0.22);
  color: #0f766e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.az-section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #101827;
}
.az-section-head p { font-size: 17px; color: #5f6b7a; line-height: 1.7; }

/* Category grid */
.az-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.az-category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e7dfd2;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: #101827;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.az-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(15,23,42,0.13);
  border-color: #14b8a6;
}

.az-category-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.az-category-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.az-category-card p { font-size: 13.5px; color: #5f6b7a; line-height: 1.55; }
.az-card-link { font-size: 13px; font-weight: 700; color: #0f766e; margin-top: 4px; }

/* Split grid */
.az-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.az-split-panel h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.az-split-panel p { font-size: 16px; color: #5f6b7a; line-height: 1.7; margin-bottom: 24px; }

.az-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.az-check-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #374151;
  line-height: 1.5;
}
.az-check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: cover;
}

/* Product grid */
.az-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.az-product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e7dfd2;
  box-shadow: 0 2px 12px rgba(15,23,42,0.06);
  text-decoration: none;
  color: #101827;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.az-product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,23,42,0.12); }
.az-product-top { display: flex; align-items: center; gap: 12px; }
.az-product-logo {
  width: 40px; height: 40px; border-radius: 10px; flex: 0 0 auto;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.az-product-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.az-pill {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  background: rgba(20,184,166,0.12); color: #0f766e; border: 1px solid rgba(20,184,166,0.22);
}
.az-product-card p { font-size: 12.5px; color: #637489; line-height: 1.5; }
.az-price-line { display: flex; align-items: baseline; gap: 6px; margin-top: auto; }
.az-price-line span { font-size: 11px; color: #9ca3af; }
.az-price-line strong { font-size: 16px; font-weight: 800; color: #0f766e; letter-spacing: -0.02em; }

/* Assurance cards */
.az-assurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.az-assurance-card {
  padding: 28px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e7dfd2;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.az-assurance-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,23,42,0.10); }

.az-assurance-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(15,118,110,0.08), rgba(20,184,166,0.12));
  color: #0f766e;
  margin-bottom: 18px;
}
.az-assurance-icon svg { width: 24px; height: 24px; }
.az-assurance-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.az-assurance-card p { font-size: 14px; color: #5f6b7a; line-height: 1.6; }

/* Process steps */
.az-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.az-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, #f59e0b);
  opacity: 0.25;
  z-index: 0;
}

.az-step {
  position: relative;
  padding: 0 24px 0 0;
  z-index: 1;
}

.az-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(15,118,110,0.30);
}

.az-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #101827; }
.az-step p { font-size: 14px; color: #5f6b7a; line-height: 1.6; }

/* =======================================
   PRICING CARDS — FULL FEATURE REDESIGN
   ======================================= */
.az-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1060px;
  margin: 0 auto;
}

.az-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  border-radius: 20px;
  background: #ffffff;
  border: 1.5px solid #e7dfd2;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.az-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);
}

.az-pricing-card.featured {
  background: linear-gradient(155deg, #062d29 0%, #0a3d37 50%, #0c4840 100%);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(15, 118, 110, 0.30), 0 0 0 1px rgba(20,184,166,0.25);
}

.az-pricing-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(15, 118, 110, 0.38), 0 0 0 1px rgba(20,184,166,0.30);
}

/* Popular badge */
.az-pricing-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  padding: 6px 18px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 0 10px 10px;
}

/* Plan icon */
.az-plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.az-pricing-card:not(.featured) .az-plan-icon {
  background: rgba(15,118,110,0.08);
  color: #0f766e;
}

.az-pricing-card.featured .az-plan-icon {
  background: rgba(20,184,166,0.18);
  color: #5eead4;
}

/* Plan name */
.az-plan-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.az-pricing-card:not(.featured) .az-plan-name { color: #0f766e; }
.az-pricing-card.featured .az-plan-name { color: #5eead4; }

/* Plan heading */
.az-plan-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.az-pricing-card:not(.featured) .az-plan-title { color: #101827; }
.az-pricing-card.featured .az-plan-title { color: #f0fdfc; }

/* Price */
.az-plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 18px 0 6px;
  padding: 16px 20px;
  border-radius: 12px;
}
.az-pricing-card:not(.featured) .az-plan-price-block {
  background: rgba(20,184,166,0.06);
  border: 1px solid rgba(20,184,166,0.14);
}
.az-pricing-card.featured .az-plan-price-block {
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.20);
}

.az-plan-qty {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}
.az-pricing-card:not(.featured) .az-plan-qty { color: #0f766e; }
.az-pricing-card.featured .az-plan-qty { color: #5eead4; }

.az-plan-qty-label {
  font-size: 15px;
  font-weight: 600;
}
.az-pricing-card:not(.featured) .az-plan-qty-label { color: #5f6b7a; }
.az-pricing-card.featured .az-plan-qty-label { color: #99d5cd; }

.az-plan-tagline {
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.az-pricing-card:not(.featured) .az-plan-tagline { color: #5f6b7a; }
.az-pricing-card.featured .az-plan-tagline { color: #99d5cd; }

/* Divider */
.az-pricing-divider {
  height: 1px;
  margin: 0 0 20px;
}
.az-pricing-card:not(.featured) .az-pricing-divider { background: #e7dfd2; }
.az-pricing-card.featured .az-pricing-divider { background: rgba(255,255,255,0.10); }

/* Features list */
.az-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.az-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  line-height: 1.45;
}
.az-pricing-card:not(.featured) .az-plan-features li { color: #374151; }
.az-pricing-card.featured .az-plan-features li { color: #c9ede9; }

.az-feat-check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.az-pricing-card:not(.featured) .az-feat-check {
  background: rgba(15,118,110,0.12);
  color: #0f766e;
}
.az-pricing-card.featured .az-feat-check {
  background: rgba(20,184,166,0.22);
  color: #5eead4;
}

.az-feat-check svg { width: 11px; height: 11px; stroke-width: 3; }

/* CTA button */
.az-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  margin-top: auto;
  cursor: pointer;
  border: none;
}

.az-pricing-card:not(.featured) .az-plan-cta {
  background: transparent;
  color: #0f766e;
  border: 1.5px solid #14b8a6;
}
.az-pricing-card:not(.featured) .az-plan-cta:hover {
  background: #0f766e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,118,110,0.22);
}

.az-pricing-card.featured .az-plan-cta {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(20,184,166,0.30);
}
.az-pricing-card.featured .az-plan-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(20,184,166,0.40);
}

/* FAQ grid */
.az-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.az-faq-card {
  padding: 28px 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e7dfd2;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}
.az-faq-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #101827; }
.az-faq-card p { font-size: 14px; color: #5f6b7a; line-height: 1.65; }

/* CTA panel */
.az-cta-panel {
  text-align: center;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
  border-radius: 24px;
  background: linear-gradient(135deg, #040e1e 0%, #091828 60%, #0c1f1c 100%);
  position: relative;
  overflow: hidden;
}

.az-cta-panel::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(20,184,166,0.18), transparent 65%);
  pointer-events: none;
}

.az-cta-panel .az-kicker { color: #5eead4; background: rgba(20,184,166,0.12); border-color: rgba(20,184,166,0.28); }

.az-cta-panel h2 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.06em;
  line-height: 1.08;
  color: #f8fafc;
  margin-bottom: 16px;
}

.az-cta-panel p { font-size: 17px; color: #8aa2bb; line-height: 1.7; margin-bottom: 36px; }
.az-cta-actions { justify-content: center; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .az-pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .az-hero { min-height: auto; padding-top: 110px; }
  .az-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .az-command-card { max-width: 480px; }
  .az-hero-proof { gap: 20px; }
  .az-split-grid { grid-template-columns: 1fr; }
  .az-product-grid { grid-template-columns: 1fr; }
  .az-process { grid-template-columns: 1fr 1fr; gap: 32px; }
  .az-process::before { display: none; }
}

@media (max-width: 680px) {
  .az-pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .az-pricing-card.featured { order: -1; }
}

@media (max-width: 600px) {
  .az-hero h1 { font-size: 36px; }
  .az-category-grid { grid-template-columns: 1fr 1fr; }
  .az-hero-proof { flex-wrap: wrap; gap: 16px; }
  .az-proof-item strong { font-size: 24px; }
  .az-process { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO RIGHT — PLATFORM SHOWCASE PANEL
   ============================================================ */
.az-showcase-panel {
  background: rgba(10, 18, 36, 0.82);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  backdrop-filter: blur(32px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(20,184,166,0.10);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Trust bar */
.az-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,184,166,0.06);
}
.az-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #5eead4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.az-trust-item svg {
  width: 14px; height: 14px;
  stroke: #5eead4;
  flex-shrink: 0;
}
.az-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Platform grid */
.az-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 18px 18px 14px;
  flex: 1;
}

.az-platform-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .18s, transform .18s;
  cursor: pointer;
}
.az-platform-tile:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
  text-decoration: none;
}

.az-tile-logo {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.az-tile-logo svg { width: 20px; height: 20px; }

.az-platform-tile span {
  font-size: 11px;
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
  letter-spacing: -0.01em;
}
.az-platform-tile em {
  font-style: normal;
  font-size: 10px;
  color: #4b5e73;
  font-weight: 600;
  text-align: center;
}
.az-platform-tile:hover em { color: #5eead4; }

.az-tile-more .az-tile-logo {
  color: #637489;
}
.az-tile-more span { color: #637489; }

/* Bottom CTA */
.az-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,184,166,0.08);
  color: #5eead4;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background .18s, color .18s;
}
.az-panel-cta:hover {
  background: rgba(20,184,166,0.16);
  color: #99f6e4;
  text-decoration: none;
}
.az-panel-cta svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Responsive tweaks */
@media (max-width: 1024px) {
  .az-trust-item span { display: none; }
  .az-trust-item svg { width: 16px; height: 16px; }
}
@media (max-width: 768px) {
  .az-showcase-panel { max-width: 480px; margin: 0 auto; }
  .az-trust-bar { padding: 12px 16px; gap: 8px; }
  .az-trust-item span { display: inline; font-size: 10px; }
  .az-platform-grid { grid-template-columns: repeat(3, 1fr); padding: 12px; }
}
