/* ============================================================
   DhiDoc Liquid Glass Theme
   Additive layer on top of styles.css
   ============================================================ */

/* Aurora background gradient blobs */
.aurora {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FFB380 0%, transparent 70%);
  top: -100px; left: -100px;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FF7A1A 0%, transparent 70%);
  top: 200px; right: -150px;
  animation-delay: -7s;
  opacity: 0.35;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FFD4B3 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -14s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Glass base */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 122, 26, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}
.glass-strong {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 122, 26, 0.06);
}

/* Nav glass override */
.nav {
  background: rgba(250, 247, 242, 0.6) !important;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Hero */
.hero-glass {
  padding: 100px 0 120px;
  position: relative;
  text-align: center;
}
.hero-glass h1 {
  font-size: clamp(44px, 6.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 900px;
  margin: 24px auto;
  background: linear-gradient(180deg, #1F1B16 0%, #3D3629 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-glass h1 .accent {
  background: linear-gradient(135deg, #FF7A1A 0%, #FFA55C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-glass .sub {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 232, 214, 0.8);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-hover);
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.08);
}
.glass-pill .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2s infinite;
}

/* Buttons */
.btn-glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
  cursor: pointer;
}
.btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(255, 232, 214, 0.9);
}

.btn-orange {
  background: linear-gradient(135deg, #FF7A1A 0%, #FF9142 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(255, 122, 26, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.hero-cta-glass {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s;
  animation: wa-pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  z-index: -1;
  animation: wa-ring 2s infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* Stats */
.stats-glass {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 40px;
  margin: 60px 0;
}
.stat-glass-item {
  text-align: center;
  padding: 20px;
}
.stat-glass-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FF7A1A 0%, #FF9142 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-glass-label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

/* Feature glass card */
.feature-glass {
  padding: 32px;
  border-radius: 20px;
  transition: all 0.3s;
}
.feature-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 122, 26, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}
.feature-glass .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.15) 0%, rgba(255, 122, 26, 0.05) 100%);
  border: 1px solid rgba(255, 122, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.feature-glass h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.feature-glass p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.features-glass {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Sections */
.section-glass {
  padding: 100px 0;
  position: relative;
}
.section-glass h2 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-glass .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FF7A1A 0%, #FF9142 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-glass .lead {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Photo Rx demo */
.rx-demo-glass {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(255, 122, 26, 0.12);
  position: relative;
}
.rx-demo-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
}

/* Steps list */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.step-num {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF7A1A 0%, #FF9142 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(255, 122, 26, 0.3);
}

/* Pill row */
.pill-glass-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0;
}
.pill-glass {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
}
.pill-glass:hover {
  background: rgba(255, 122, 26, 0.1);
  border-color: rgba(255, 122, 26, 0.3);
  color: var(--orange-hover);
  transform: translateY(-1px);
}

/* Local proof glass */
.proof-glass {
  padding: 32px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 232, 214, 0.7) 0%, rgba(255, 244, 235, 0.5) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 232, 214, 0.9);
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 40px 0;
}
.proof-glass p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
.proof-glass strong { color: var(--orange-hover); }

/* Pricing glass */
.pricing-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-glass {
  padding: 36px 32px;
  border-radius: 24px;
  position: relative;
  transition: all 0.3s;
}
.price-glass:hover { transform: translateY(-4px); }
.price-glass.featured {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 2px solid rgba(255, 122, 26, 0.3);
  box-shadow: 0 20px 40px rgba(255, 122, 26, 0.15);
}
.price-glass .price-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: linear-gradient(135deg, #FF7A1A 0%, #FF9142 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.3);
}
.price-glass .price-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.price-glass .price-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #1F1B16 0%, #3D3629 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-glass .price-amount .period {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-muted);
  -webkit-text-fill-color: var(--ink-muted);
}
.price-glass .price-tagline {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 10px 0 28px;
}

/* CTA banner */
.cta-glass {
  position: relative;
  padding: 72px 56px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(135deg, #1F1B16 0%, #2D2620 100%);
  overflow: hidden;
  margin: 60px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.cta-glass::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.4) 0%, transparent 70%);
  filter: blur(40px);
}
.cta-glass::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 154, 92, 0.3) 0%, transparent 70%);
  filter: blur(40px);
}
.cta-glass h2 {
  color: white;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-glass p {
  color: rgba(255,255,255,0.75);
  font-size: 19px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-glass .btn-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Contact cards */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.contact-card-glass {
  padding: 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.contact-card-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.contact-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.contact-icon-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.contact-icon-email {
  background: linear-gradient(135deg, #FF7A1A 0%, #FF9142 100%);
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.3);
}
.contact-icon-phone {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.contact-card-glass .contact-label {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-card-glass .contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

/* Mobile */
@media (max-width: 760px) {
  .cta-glass { padding: 48px 24px; }
  .cta-glass h2 { font-size: 32px; }
  .rx-demo-glass, .feature-glass { padding: 24px; }
  .stats-glass { padding: 24px; }
  .proof-glass { padding: 24px; }
  .price-glass { padding: 28px; }
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}
