/* ==========================================================================
   ULTRA-PREMIUM & CLEAN LANDING PAGE CSS - KETO TEA BRANDED
   ========================================================================== */

:root {
  /* Brand Palette from Product Can Artwork */
  --brand-cyan: #0EA5E9;       /* Fresh Sky Blue / Cyan Can Body */
  --brand-cyan-dark: #0284C7;  /* Deep Sky Blue */
  --brand-cyan-light: #F0F9FF; /* Soft Light Sky Tint */
  --brand-cyan-glow: rgba(14, 165, 233, 0.25);

  --brand-purple: #7E22CE;     /* Rich Purple Logo Badge */
  --brand-purple-dark: #6B21A8;/* Deep Purple */
  --brand-purple-light: #FAF5FF;/* Subtle Purple Tint */
  --brand-purple-glow: rgba(126, 34, 206, 0.3);

  --brand-yellow: #EAB308;     /* Bright Accent Yellow */
  
  /* Modern High-Contrast Text & Neutrals */
  --bg-page: #FAF9F6;          /* Clean Off-White */
  --bg-subtle: #F1F5F9;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  
  --text-main: #0F172A;
  --text-headline: #1E1B4B;    /* Deep Slate-Indigo */
  --text-secondary: #475569;
  --text-muted: #64748B;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(14, 165, 233, 0.05);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(126, 34, 206, 0.12);
}

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

body.light-vsl-theme {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TOP STICKY HEADER BAR & BRANDED SVG LOGO
   ========================================================================== */
.top-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #0B0F19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.top-nav-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.nav-logo:hover .logo-mark {
  transform: scale(1.06) rotate(-3deg);
}

.logo-text {
  font-weight: 900;
  font-size: 1.35rem;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.logo-accent {
  color: #38BDF8;
}

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

.nav-cta-btn {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-purple));
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(126, 34, 206, 0.4);
}

/* VSL Container */
.vsl-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 20px 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Header & Headlines */
.vsl-header {
  text-align: center;
}

.main-headline {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0F172A 0%, var(--brand-purple) 60%, var(--brand-cyan-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Video Player Section */
.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.full-size-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #0F172A;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(14, 165, 233, 0.3);
  position: relative;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Paused Video Overlay */
.paused-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.paused-video-overlay:hover {
  background: rgba(15, 23, 42, 0.94);
}

.paused-badge-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 28px 44px;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
  max-width: 85%;
}

.paused-video-overlay:hover .paused-badge-card {
  transform: scale(1.05);
}

.play-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.7);
  margin-bottom: 4px;
  padding-left: 4px;
  border: 3px solid var(--brand-yellow);
}

.paused-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.paused-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Minimal Player Controls */
.minimal-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(15, 23, 42, 0.92);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 15;
}

.ctrl-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.ctrl-btn:hover {
  color: var(--brand-cyan);
}

.time-slider-container {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-cyan) 0%, var(--brand-purple) 100%);
  border-radius: 3px;
  width: 0%;
}

.time-readout {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-family: monospace;
}

/* ==========================================================================
   CLEAN LEAD FORM SECTION
   ========================================================================== */
.lead-form-section {
  width: 100%;
}

.lead-form-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
}

/* Product Preview Box */
.product-preview-card {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--brand-cyan-light) 100%);
  border: 2px solid rgba(14, 165, 233, 0.25);
  border-radius: 28px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.product-img {
  width: 100%;
  height: auto;
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(126, 34, 206, 0.15));
  transition: transform 0.3s ease;
}

.product-preview-card:hover .product-img {
  transform: scale(1.04) translateY(-2px);
}

.product-info-tag {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--brand-purple);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--brand-cyan-dark);
  font-weight: 700;
}

/* Clean White Lead Card */
.white-lead-card {
  background: #FFFFFF;
  border: 2px solid rgba(126, 34, 206, 0.15);
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clean-price-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

.percent-tag {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
  color: var(--brand-yellow);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px var(--brand-purple-glow);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.old-price-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
}

.new-price-text {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand-purple);
  letter-spacing: -0.5px;
}

.savings-note {
  font-size: 0.9rem;
  color: var(--brand-cyan-dark);
  font-weight: 800;
}

.form-action-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-headline);
}

/* Form Inputs & Styling */
.clean-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clean-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clean-input-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-headline);
}

.clean-input-group input[type="text"] {
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-headline);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.clean-input-group input[type="text"]:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px var(--brand-cyan-glow);
}

.phone-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
}

.phone-wrapper:focus-within {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px var(--brand-cyan-glow);
}

.phone-prefix {
  background: var(--brand-cyan-light);
  border-right: 1px solid var(--border-color);
  padding: 14px 16px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand-purple);
  user-select: none;
}

.phone-wrapper input {
  border: none !important;
  box-shadow: none !important;
  padding: 14px 16px !important;
  font-size: 1rem !important;
  font-family: monospace;
  font-weight: 700;
  width: 100%;
  outline: none;
}

.phone-error-msg {
  color: #DC2626;
  font-size: 0.82rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.phone-error-msg.show {
  display: flex;
}

.clean-submit-btn {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-purple) 100%);
  color: #FFFFFF;
  border: none;
  padding: 17px 22px;
  border-radius: var(--radius-sm);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  margin-top: 6px;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.clean-submit-btn:hover {
  background: linear-gradient(135deg, var(--brand-cyan-dark) 0%, var(--brand-purple-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(126, 34, 206, 0.4);
}

.clean-trust-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--brand-cyan-dark);
  font-weight: 700;
}

/* Standalone Pages */
.standalone-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-container {
  max-width: 800px;
  margin: 40px auto 60px auto;
  padding: 0 20px;
  flex: 1;
  width: 100%;
}

.page-card {
  background: #FFFFFF;
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-cyan-light);
  border: 2px solid var(--brand-cyan);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.page-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-purple);
  text-align: center;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
}

.page-content-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.page-content-body h3 {
  color: var(--brand-purple);
  font-size: 1.15rem;
  margin-top: 8px;
}

.page-action-footer {
  width: 100%;
  margin-top: 10px;
}

/* ==========================================================================
   ULTRA-CLEAN HIGH-CONTRAST STRUCTURED FOOTER
   ========================================================================== */
.full-width-footer {
  width: 100%;
  background: #0B0F19;
  color: #CBD5E1;
  border-top: 2px solid rgba(14, 165, 233, 0.3);
  margin-top: auto;
}

.footer-inner-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Top Disclaimer Warning Box */
.footer-disclaimer-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--brand-cyan);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #CBD5E1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.disclaimer-icon {
  color: var(--brand-cyan);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.disclaimer-title {
  font-weight: 800;
  color: #FFFFFF;
  margin-right: 4px;
}

/* 3-Column Footer Information */
.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 36px;
}

.footer-col h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-cyan);
  border-radius: 2px;
  margin-left: 4px;
}

/* Column 1: Company Info */
.company-name {
  font-weight: 800;
  color: #38BDF8;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.company-meta {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 500;
}

.company-address {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
}

.shop-note {
  color: #64748B;
  font-style: italic;
  font-size: 0.8rem;
}

/* Column 2: Useful Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow {
  font-size: 0.75rem;
  color: var(--brand-cyan);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #38BDF8;
  transform: translateX(4px);
}

.footer-links a:hover .link-arrow {
  transform: translateX(2px);
  color: #A855F7;
}

/* Column 3: Contact Details */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-icon {
  color: #38BDF8;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item strong {
  color: #FFFFFF;
}

.footer-email-link {
  color: #38BDF8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-email-link:hover {
  color: #A855F7;
  text-decoration: underline;
}

/* Copyright Bottom Line */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 820px) {
  .main-headline { font-size: 1.45rem; }
  .lead-form-wrapper { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; }
  .white-lead-card { padding: 24px 20px; }
  .nav-cta-btn { font-size: 0.82rem; padding: 8px 14px; }
  .top-nav-container { padding: 10px 14px; }
}
