/* ==========================================================================
   CSS Variables & Theme System
   ========================================================================== */

:root {
  /* Light Theme (Default) */
  --bg: #fcfcfd;
  --panel: #ffffff;
  --panel-2: #f8f9fa;
  --text: #1a1d29;
  --muted: #6b7280;
  --border: rgba(0, 0, 0, 0.08);
  --glow: rgba(5, 150, 105, 0.08);
  --accent: #1a1d29;
  --primary: #059669;
  --primary-light: #10b981;
  --primary-dark: #047857;
  --privacy: #059669;
  --success: #059669;
  --error: #dc2626;
  --warning: #d97706;
}

[data-theme="dark"] {
  /* Dark Theme */
  --bg: #0a0b0d;
  --panel: #0f1115;
  --panel-2: #12141a;
  --text: #e8eaf0;
  --muted: #8e95a3;
  --border: rgba(255, 255, 255, 0.06);
  --glow: rgba(5, 150, 105, 0.08);
  --accent: #ffffff;
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --privacy: #10b981;
  --success: #10b981;
  --error: #f87171;
  --warning: #fbbf24;
}

/* ==========================================================================
   Theme Transition & Base Styles
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(900px 400px at 50% -200px, rgba(5, 150, 105, 0.03) 0%, transparent 60%),
    radial-gradient(600px 300px at 10% 20%, rgba(5, 150, 105, 0.02) 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

[data-theme="dark"] body {
  background:
    radial-gradient(900px 400px at 50% -200px, #1a1e2c 0%, transparent 60%),
    radial-gradient(600px 300px at 10% 20%, #14182a 0%, transparent 55%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(5, 150, 105, 0.2);
}

::-moz-selection {
  background: rgba(5, 150, 105, 0.2);
}

/* ==========================================================================
   Theme Toggle Switch
   ========================================================================== */

.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

[data-theme="dark"] .toggle-switch {
  background: rgba(255, 255, 255, 0.05);
}

.toggle-switch:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.toggle-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.toggle-icon.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.toggle-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(252, 252, 253, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

[data-theme="dark"] header {
  background: rgba(10, 11, 13, 0.85);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.logo span:last-child {
  color: var(--text);
}

.badges {
  display: flex;
  gap: 12px;
  font-size: 11px;
  align-items: center;
}

.badges span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text);
}

[data-theme="dark"] .badges span {
  background: rgba(255, 255, 255, 0.03);
}

.premium-badge {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: rgba(5, 150, 105, 0.08) !important;
}

button {
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  text-align: center;
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

[data-theme="dark"] .hero::before {
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
}

.hero h1 {
  font-size: 58px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--primary);
  position: relative;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-highlight {
  color: var(--text);
  font-weight: 500;
}

.note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(5, 150, 105, 0.2);
}

/* ==========================================================================
   Social Proof
   ========================================================================== */

.social-proof {
  margin-top: 80px;
  text-align: center;
}

.social-proof p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 14px;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
}

/* ==========================================================================
   Visual Stack / Feature Cards
   ========================================================================== */

.visual-stack {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(5, 150, 105, 0.08);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 20% 0%, var(--glow), transparent 60%);
  pointer-events: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 20px;
  margin: 0 auto 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   Target Audience
   ========================================================================== */

.audience {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.audience h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text);
}

.audience p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.audience-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.3s;
}

.audience-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  background: var(--panel);
}

[data-theme="dark"] .audience-item {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   Privacy Section
   ========================================================================== */

.privacy-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(248, 249, 250, 0.8) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .privacy-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 17, 21, 0.8) 100%);
}

.privacy-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-section .section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text);
}

.privacy-section .section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.privacy-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.privacy-card:hover {
  border-color: rgba(5, 150, 105, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.privacy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--privacy), transparent);
}

.privacy-icon {
  width: 56px;
  height: 56px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--privacy);
}

.privacy-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.privacy-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.privacy-card strong {
  color: var(--privacy);
  font-weight: 500;
}

.privacy-proof {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 80px 0 60px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--privacy);
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
}

.proof-text {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.privacy-cta {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 16px;
}

.privacy-cta p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
}

.privacy-cta strong {
  color: var(--privacy);
}


.section-header {
  text-align: center;
}

/* ==========================================================================
   ROI Calculator Section
   ========================================================================== */

.roi-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.8) 0%, var(--bg) 100%);
}

[data-theme="dark"] .roi-section {
  background: linear-gradient(180deg, rgba(15, 17, 21, 0.8) 0%, var(--bg) 100%);
}

.roi-calculator {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.input-group label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.input-with-symbol {
  position: relative;
}

.input-with-symbol .symbol {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 500;
}

.input-with-symbol input {
  width: 100%;
  padding: 14px 16px 14px 40px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

[data-theme="dark"] .input-with-symbol input {
  background: rgba(255, 255, 255, 0.02);
}

.input-with-symbol input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .input-with-symbol input:focus {
  background: rgba(255, 255, 255, 0.03);
}

.slider-container {
  margin: 20px 0 10px;
}

.slider-container input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

[data-theme="dark"] .slider-container input[type="range"] {
  background: rgba(255, 255, 255, 0.1);
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.slider-value {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 15px;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.result-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

[data-theme="dark"] .result-card {
  background: rgba(255, 255, 255, 0.02);
}

.result-card.highlight {
  border-color: var(--primary);
  background: rgba(5, 150, 105, 0.05);
}

.result-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.result-note {
  font-size: 14px;
  color: var(--muted);
}

.roi-note {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 24px;
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 16px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.roi-note strong {
  color: var(--text);
}

/* ==========================================================================
   Workflow Section
   ========================================================================== */

.workflow-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.workflow-steps {
  max-width: 800px;
  margin: 60px auto 0;
}

.workflow-step {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: rgba(5, 150, 105, 0.1);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.step-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-content strong {
  color: var(--privacy);
}

.step-note {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

[data-theme="dark"] .badge {
  background: rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   Compliance Section
   ========================================================================== */

.compliance-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(248, 249, 250, 0.8) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .compliance-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 17, 21, 0.8) 100%);
}

.compliance-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
}

.compliance-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.compliance-card:hover {
  border-color: var(--privacy);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.compliance-icon {
  font-size: 52px;
  margin-bottom: 5px;
  text-align: center;
}

.compliance-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
  text-align: center;
}

.compliance-card p {
  color: var(--muted);
  line-height: 1.6;
}

.compliance-cta {
  max-width: 700px;
  margin: 60px auto 0;
  padding: 30px;
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 16px;
  text-align: center;
}

.compliance-cta p {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.compliance-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--privacy);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.compliance-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 15px;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}

.author-info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.author-badge {
  display: inline-block;
  background: rgba(5, 150, 105, 0.1);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.industries-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 60px;
}

.industry {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.3s;
}

[data-theme="dark"] .industry {
  background: rgba(255, 255, 255, 0.02);
}

.industry:hover {
  border-color: var(--primary);
  background: rgba(5, 150, 105, 0.05);
}

/* ==========================================================================
   Final CTA Panel
   ========================================================================== */

.section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.panel {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.05), rgba(5, 150, 105, 0.01));
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

[data-theme="dark"] .panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text);
}

.panel p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.privacy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--privacy);
  justify-content: center;
  flex-wrap: wrap;
}

.privacy span {
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  background: rgba(5, 150, 105, 0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  padding: 60px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

footer a {
  color: var(--muted);
  transition: color 0.3s;
}

footer a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Login Page Styles
   ========================================================================== */

.login-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.login-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.login-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(5, 150, 105, 0.05), transparent 60%);
  pointer-events: none;
}

.logo-section {
  text-align: center;
  margin-bottom: 40px;
}

.tagline {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

[data-theme="dark"] .form-input {
  background: rgba(255, 255, 255, 0.02);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .form-input:focus {
  background: rgba(255, 255, 255, 0.03);
}

.form-input::placeholder {
  color: var(--muted);
}

.login-button {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}

.login-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
}

.login-button:active {
  transform: translateY(0);
}

.divider {
  display: flex;
  align-items: center;
  margin: 32px 0;
  color: var(--muted);
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider span {
  padding: 0 16px;
}

.footer-links {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.forgot-password {
  text-align: center;
  margin-top: 20px;
}

.forgot-password a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.forgot-password a:hover {
  color: var(--primary);
}

.legal-footer {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
}

.legal-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-footer a:hover {
  color: var(--primary);
}

.error {
  border-color: var(--error) !important;
}

.error-message {
  color: var(--error);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}


/* ==========================================================================
   Animation
   ========================================================================== */
.sonar{
  width:12px;height:12px;
  background:#222;
  border-radius:50%;
  position:relative;
  float: left;
  margin: 21px 20px 10px 0px;
}
.sonar::before,
.sonar::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:rgba(0,0,0,.5);
  animation:ping 4s infinite;
}
.sonar::after{animation-delay:2s}

@keyframes ping{
  0%{transform:scale(1);opacity:.6}
  100%{transform:scale(4);opacity:0}
}



/* ==========================================================================
   SweetAlert Customization
   ========================================================================== */

.swal2-backdrop-show {
  backdrop-filter: blur(7px);
}

.swal2-popup {
  background: var(--panel) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  color: var(--text) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}

.swal2-title {
  color: var(--text) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.swal2-input {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  color: var(--text) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
}

[data-theme="dark"] .swal2-input {
  background: rgba(255, 255, 255, 0.02) !important;
}

.swal2-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1) !important;
}

.swal2-input::placeholder {
  color: var(--muted) !important;
}

.swal2-confirm {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border: none !important;
  width: 220px;
  margin-top: -10px;
}

.swal2-close {
  color: var(--muted) !important;
}

.swal2-close:hover {
  color: var(--text) !important;
}

div:where(.swal2-container) .swal2-input {
  height: auto;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 900px) {
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .visual-stack {
    grid-template-columns: 1fr;
  }
  
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  
  .roi-inputs {
    grid-template-columns: 1fr;
  }
  
  .roi-results {
    grid-template-columns: 1fr;
  }
  
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  
  .compliance-features {
    grid-template-columns: 1fr;
  }
  
  .workflow-step {
    flex-direction: column;
    gap: 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .badges {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .panel {
    padding: 40px 24px;
  }
  
  .privacy-proof {
    gap: 40px;
  }
  
  .privacy-section .section-header h2,
  .compliance-section .section-header h2,
  .roi-section .section-header h2 {
    font-size: 28px;
  }
  
  .proof-number {
    font-size: 36px;
  }
  
  .theme-toggle {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 40px 24px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .nav {
    padding: 16px;
  }
  
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}