/* ==========================================
   PROLOGIE DESIGN SYSTEM & STYLE SHEET
   Colors:
     Primary Green: #10b981 (dominant buttons, badges, success)
     Sky Blue: #0ea5e9 (secondary actions, highlights, links)
     White: #ffffff (primary background)
     Dark Text: #1e293b / #475569
     Light Background/Borders: #f8fafc / #e2e8f0
   ========================================== */

/* --- ROOT AND GLOBAL STYLES --- */
:root {
  --primary-green: #047857;
  --primary-green-hover: #065f46;
  --primary-green-light: #ecfdf5;
  --accent-blue: #0ea5e9;
  --accent-blue-hover: #0284c7;
  --accent-blue-light: #f0f9ff;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark-gray: #1e293b;
  --border-color: #e2e8f0;
  --border-color-dark: #cbd5e1;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light-muted: #64748b;
  --text-light: #94a3b8;
  --error-red: #ef4444;
  --error-red-light: #fef2f2;
  --warning-amber: #f59e0b;
  --warning-amber-light: #fffbeb;
  --font-family-sans: 'Inter', sans-serif;
  --font-family-display: 'Outfit', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-sans);
  background-color: #fafbfd;
  background-image: 
    radial-gradient(rgba(148, 163, 184, 0.08) 1.5px, transparent 0),
    radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.06) 0px, transparent 50%), 
    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.06) 0px, transparent 50%),
    radial-gradient(at 90% 40%, rgba(16, 185, 129, 0.04) 0px, transparent 50%),
    radial-gradient(at 10% 70%, rgba(14, 165, 233, 0.04) 0px, transparent 50%);
  background-size: 24px 24px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-attachment: scroll, fixed, fixed, fixed, fixed;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-blue-hover);
}

.text-green { color: var(--primary-green) !important; }
.text-blue { color: var(--accent-blue) !important; }
.text-red { color: var(--error-red) !important; }
.text-center { text-align: center !important; }
.text-muted { color: var(--text-light-muted) !important; }
.font-bold { font-weight: 600 !important; }
.pointer { cursor: pointer; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-3 { flex: 3; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.border-top { border-top: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }
.code-font { font-family: monospace; font-size: 13px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-sans);
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  border: 1px solid transparent;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-secondary-accent {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
}

.btn-secondary-accent:hover {
  background-color: var(--accent-blue);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.btn-muted {
  background-color: var(--bg-light);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.btn-muted:hover {
  background-color: var(--border-color);
  color: var(--text-dark);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

/* --- BADGES --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-success { background-color: var(--primary-green-light); color: var(--primary-green); }
.badge-danger { background-color: var(--error-red-light); color: var(--error-red); }
.badge-info { background-color: var(--accent-blue-light); color: var(--accent-blue); }
.badge-warning { background-color: var(--warning-amber-light); color: var(--warning-amber); }

.beta-testing-banner {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-hover));
  color: #ffffff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: var(--font-family-display);
}

/* ================= HEADER / NAV BAR ================= */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--primary-green);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-text {
  font-family: var(--font-family-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--bg-white);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--bg-white);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

/* Header Specific Button Styling on Green Background */
.app-header .btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-green);
  border: 1px solid var(--bg-white);
  font-weight: 600;
}

.app-header .btn-primary:hover {
  background-color: var(--primary-green-light);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  color: var(--primary-green-hover);
}

.app-header .btn-secondary-accent {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.app-header .btn-secondary-accent:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--bg-white);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.app-header .btn-muted {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.app-header .btn-muted:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ================= VIEW SECTIONS ================= */
.view-section {
  display: none;
}

.view-section.active {
  display: block;
}

/* ================= LANDING PAGE VIEW ================= */

/* --- Hero Section --- */
.hero-section {
  padding: 80px 0;
  background: transparent;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-green-light);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  margin-bottom: 35px;
  max-width: 550px;
}

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

/* --- Window Mockups (Hero Right) --- */
.window-mockup {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.window-header {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.window-dot.red { background-color: #ef4444; }
.window-dot.yellow { background-color: #f59e0b; }
.window-dot.green { background-color: var(--primary-green); }

.window-title {
  margin-left: 10px;
  font-size: 12px;
  color: var(--text-light-muted);
  font-weight: 500;
}

.window-content {
  padding: 20px;
}

.preview-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  border: 1px solid var(--border-color);
}

.preview-metric {
  display: flex;
  flex-direction: column;
}

.pm-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  font-weight: 600;
}

.pm-value {
  font-size: 14px;
  font-weight: 700;
}

.preview-arrow {
  color: var(--text-light);
}

.preview-sheet-grid {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.preview-sheet-grid table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.preview-sheet-grid th {
  background-color: var(--bg-light);
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-color);
}

.preview-sheet-grid td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.preview-sheet-grid tr:last-child td {
  border-bottom: none;
}

/* --- SECTION GENERAL HEADERS --- */
.section-header {
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.section-tag {
  color: var(--primary-green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* --- Use Cases Section --- */
.use-cases-section {
  padding: 80px 0;
  background: transparent;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.use-case-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.use-case-card.active {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 2px var(--primary-green-light);
}

.uc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.use-case-card.active .uc-icon-wrap {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

.use-case-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.use-case-card p {
  font-size: 13.5px;
}

.use-case-demo-pane {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.uc-pane-header {
  margin-bottom: 20px;
}

.uc-pane-header h4 {
  font-size: 20px;
  margin: 10px 0 6px 0;
}

.uc-pane-header p {
  font-size: 14px;
}

.sheet-mockup-mini {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow-x: auto;
}

.sheet-mockup-mini table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.sheet-mockup-mini th {
  background-color: var(--bg-light);
  color: var(--text-muted);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
}

.sheet-mockup-mini td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

/* --- How It Works Section --- */
.how-it-works-section {
  padding: 80px 0;
}

.steps-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.flow-step {
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  border: 3px solid var(--bg-white);
}

.flow-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px dashed var(--border-color);
}

.flow-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 13.5px;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 80px 0;
  background: transparent;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-calculator {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.calc-header h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.calc-body {
  margin-top: 24px;
}

.slider-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  outline: none;
  border-radius: 3px;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-green);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light-muted);
  font-weight: 500;
}

#runs-display {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 15px;
}

.fair-use-badge {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-green);
  color: var(--bg-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card-price {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
}

.price-strike {
  font-size: 15px;
  text-decoration: line-through;
  color: var(--text-light-muted);
}

.price-val {
  font-size: 44px;
  font-weight: 800;
  font-family: var(--font-family-display);
  color: var(--text-dark);
  display: inline-flex;
  align-items: baseline;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-note {
  font-size: 12px;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-features li {
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.trial-note {
  font-size: 11.5px;
  color: var(--text-light-muted);
  margin-top: 10px;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-family: var(--font-family-display);
  font-size: 16px;
}

.faq-arrow {
  color: var(--text-light-muted);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-item.active {
  background-color: var(--bg-white);
  border-color: var(--primary-green);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}


/* ================= ONBOARDING WIZARD VIEW ================= */
.onboarding-card-wrapper {
  padding: 50px 24px;
}

.onboarding-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.onboarding-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

.oh-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.wizard-logo {
  font-family: var(--font-family-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-green);
}

.step-indicator {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light-muted);
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background-color: var(--border-color);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--accent-blue);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.progress-bar.green {
  background-color: var(--primary-green);
}

.onboarding-steps-container {
  padding: 35px 30px;
}

.onboarding-step-view {
  display: none;
}

.onboarding-step-view.active {
  display: block;
}

.onboarding-step-view h2 {
  font-size: 26px;
  margin-bottom: 8px;
  font-family: var(--font-family-display);
}

.step-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* --- FORMS --- */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

label .req {
  color: var(--error-red);
}

label .help-text {
  font-weight: 400;
  color: var(--text-light-muted);
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  font-family: var(--font-family-sans);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  background-color: var(--bg-white);
  transition: all 0.2s ease;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px var(--primary-green-light);
}

input:disabled {
  background-color: var(--bg-light);
  color: var(--text-light-muted);
  cursor: not-allowed;
}

.input-with-button {
  display: flex;
  gap: 8px;
}

.input-with-button input {
  flex-grow: 1;
}

.textarea-suggestions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.suggestion-tag {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.suggestion-tag:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background-color: var(--primary-green-light);
}

.form-note {
  font-size: 11.5px;
  color: var(--text-light-muted);
}

.error-msg {
  color: var(--error-red);
  font-size: 12px;
  display: none;
}

/* --- STEP 2 CHOICE CARDS --- */
.choice-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 25px;
}

.choice-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-dark);
}

.choice-card.active {
  border-color: var(--primary-green);
  background-color: var(--primary-green-light);
  box-shadow: 0 0 0 2px var(--primary-green-light);
}

.choice-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.choice-card.active .choice-icon {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

.choice-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.choice-card p {
  font-size: 11.5px;
}

/* --- Choice Details Panel --- */
.choice-details-panel {
  display: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  overflow: hidden;
}

.choice-details-panel.active {
  display: block;
}

.panel-section {
  padding: 20px;
}

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

.panel-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Connect App Panel details */
.quick-connect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.qc-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.qc-btn:hover, .qc-btn.active {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
}

.connection-fields-row {
  display: flex;
  gap: 15px;
}

.flex-2 { flex: 2; }

/* API Guide Box */
.api-guide-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 15px;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.guide-content {
  font-size: 12px;
  color: var(--text-light-muted);
}

.guide-content ol {
  padding-left: 16px;
  margin-top: 6px;
}

.guide-content li {
  margin-bottom: 4px;
}

.connection-status-msg {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  display: none;
}

.connection-status-msg.success { color: var(--primary-green); display: block; }
.connection-status-msg.error { color: var(--error-red); display: block; }

/* Existing Sheet Panel details */
.sheet-upload-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.sheet-tab-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light-muted);
  cursor: pointer;
  position: relative;
  outline: none;
}

.sheet-tab-btn.active {
  color: var(--primary-green);
}

.sheet-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-green);
}

.sheet-tab-content {
  display: none;
}

.sheet-tab-content.active {
  display: block;
}

.drag-drop-area {
  border: 2px dashed var(--border-color-dark);
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drag-drop-area:hover {
  border-color: var(--primary-green);
  background-color: var(--primary-green-light);
}

.upload-icon {
  width: 36px;
  height: 36px;
  color: var(--text-light-muted);
  margin-bottom: 10px;
}

.file-limits {
  display: block;
  font-size: 10.5px;
  color: var(--text-light);
  margin-top: 4px;
}

.selected-file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
}

.remove-file-btn {
  background: none;
  border: none;
  color: var(--text-light-muted);
  cursor: pointer;
}

.remove-file-btn:hover {
  color: var(--error-red);
}

/* Mapping Table Styles */
.mapping-table-section {
  margin-top: 25px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.mapping-table-section h5 {
  font-size: 14px;
  margin-bottom: 4px;
}

.mapping-subtitle {
  font-size: 11.5px;
  color: var(--text-light-muted);
  margin-bottom: 15px;
}

.mapping-table-wrapper {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.mapping-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  background-color: var(--bg-white);
}

.mapping-table th {
  background-color: var(--bg-light);
  color: var(--text-muted);
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
}

.mapping-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-color);
}

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

/* Return & Refund sub cards */
.sub-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sub-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.sub-card:hover {
  border-color: var(--border-color-dark);
}

.sub-card.active {
  border-color: var(--primary-green);
  background-color: var(--primary-green-light);
}

.sub-card i {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.sub-card.active i {
  color: var(--primary-green);
}

.sub-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.sub-card small {
  font-size: 9.5px;
  color: var(--text-light-muted);
}

/* --- STEP 4 FREQUENCY --- */
.frequency-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.freq-option {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.freq-option.active {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 2px var(--primary-green-light);
}

.freq-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.freq-option i {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.freq-option h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.freq-option p {
  font-size: 12.5px;
}

.scheduled-selector-box {
  margin-top: 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
}

/* --- STEP 5 TEST EVENT --- */
.test-container {
  display: block;
}

.test-input-area {
  display: flex;
  flex-direction: column;
}

.test-type-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.toggle-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  font-weight: 600;
}

.btn-toggle-json {
  display: none !important;
}

.test-output-area {
  display: none !important;
}

.output-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.log-terminal {
  background-color: #0f172a;
  color: #38bdf8;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: monospace;
  font-size: 12.5px;
  min-height: 180px;
  max-height: 250px;
  overflow-y: auto;
  white-space: pre-wrap;
  border: 1px solid #1e293b;
}

/* --- STEP 6 ALERTS --- */
.checkbox-row {
  display: flex;
  gap: 24px;
  margin-top: 10px;
}

.checkbox-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 13.5px;
  user-select: none;
  font-weight: 500;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color-dark);
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark-box {
  border-color: var(--primary-green);
}

.checkbox-container input:checked ~ .checkmark-box {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark-box:after {
  display: block;
}

.checkbox-container .checkmark-box:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: stroke var(--bg-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-style: solid;
}

/* --- STEP 7 CONFIRMATION SUMMARY --- */
.confirmation-summary-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
}

.summary-header {
  background-color: var(--bg-white);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-family-display);
}

.summary-body {
  padding: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.summary-line {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.summary-val {
  color: var(--text-dark);
  font-weight: 500;
}

.alert-info-text {
  font-size: 12px;
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- STEP 8 TIMER SIMULATION --- */
.timer-simulation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
}

.spinner-circle {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.sla-progress-box {
  width: 100%;
  max-width: 400px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.sla-timer-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  font-weight: 600;
}

.sla-time-val {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-family-display);
  margin: 6px 0 12px 0;
}

.sla-status-text {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

.progress-bar-container.mini {
  height: 4px;
}

/* --- FOOTER --- */
.onboarding-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light);
}


/* ================= DASHBOARD VIEW (ADMIN CONSOLE) ================= */
.dashboard-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background-color: var(--bg-light);
}

/* --- Sidebar --- */
.dashboard-sidebar {
  background-color: var(--bg-white);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.sidebar-brand .logo-text {
  font-size: 18px;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.avatar {
  width: 32px;
  height: 32px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-family-display);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-company {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.user-role {
  font-size: 10px;
  color: var(--text-light-muted);
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.menu-item i {
  width: 16px;
  height: 16px;
  color: var(--text-light-muted);
}

.menu-item:hover {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.menu-item.active {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  font-weight: 600;
}

.menu-item.active i {
  color: var(--primary-green);
}

.notification-dot {
  width: 6px;
  height: 6px;
  background-color: var(--error-red);
  border-radius: 50%;
  margin-left: auto;
}

.sidebar-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

/* --- Main content --- */
.dashboard-main {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 100vh;
}

.dashboard-topbar {
  height: 70px;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  width: 300px;
}

.topbar-search i {
  width: 14px;
  height: 14px;
  color: var(--text-light-muted);
}

.topbar-search input {
  border: none;
  background: none;
  font-size: 13px;
  outline: none;
  width: 100%;
}

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

.topbar-bell {
  position: relative;
  cursor: pointer;
  color: var(--text-muted);
}

.bell-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--error-red);
  color: var(--bg-white);
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-content-panel {
  padding: 30px;
  flex-grow: 1;
}

.db-tab-content {
  display: none;
}

.db-tab-content.active {
  display: block;
}

/* Metrics Dashboard Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.m-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.m-card-header i {
  width: 18px;
  height: 18px;
}

.metric-card h2 {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-family-display);
  margin-bottom: 4px;
}

.m-trend {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-light-muted);
}

/* Dashboard Row Structures */
.dashboard-grid-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.dashboard-graph-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.graph-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.graph-card-header h3 {
  font-size: 16px;
}

.graph-toggles {
  display: flex;
  gap: 6px;
}

.graph-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}

.graph-btn.active {
  background-color: var(--accent-blue);
  color: var(--bg-white);
  border-color: var(--accent-blue);
}

.graph-mock-container {
  height: 150px;
  width: 100%;
}

.graph-bars-mock {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.graph-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.graph-bar {
  width: 70%;
  max-width: 32px;
  background-color: var(--accent-blue-light);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: height 0.5s ease;
  min-height: 4px;
  border: 1px solid var(--accent-blue);
}

.graph-bar.green {
  background-color: var(--primary-green-light);
  border-color: var(--primary-green);
}

.graph-bar-val {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light-muted);
}

.graph-bar-label {
  font-size: 9px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Activity Feed Table Styles */
.dashboard-list-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.list-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.list-card-header h3 {
  font-size: 16px;
}

.list-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.list-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background-color: var(--bg-white);
}

.list-table th {
  background-color: var(--bg-light);
  color: var(--text-muted);
  padding: 10px 14px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.list-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-color);
}

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

/* --- TAB 2: AUTOMATIONS LIST --- */
.automations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.automation-row-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.arc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.arc-title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-family-display);
}

.arc-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background-color: var(--bg-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.arc-meta-item {
  display: flex;
  flex-direction: column;
}

.arc-meta-label {
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  font-weight: 600;
}

.arc-meta-val {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.arc-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* --- TAB 3: NOTIFICATIONS LOG --- */
.notification-log-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif-row-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.notif-row-item.unread {
  border-left: 3px solid var(--primary-green);
}

.notif-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-icon-wrap.success { background-color: var(--primary-green-light); color: var(--primary-green); }
.notif-icon-wrap.error { background-color: var(--error-red-light); color: var(--error-red); }
.notif-icon-wrap.info { background-color: var(--accent-blue-light); color: var(--accent-blue); }

.notif-info-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.notif-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notif-title {
  font-size: 14px;
  font-weight: 600;
}

.notif-time {
  font-size: 11px;
  color: var(--text-light);
}

.notif-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.no-notif-row {
  text-align: center;
  padding: 40px;
  color: var(--text-light-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* --- TAB 4: BILLING STYLES --- */
.billing-main-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

.billing-card-detail {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.subscription-status-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-status-info {
  display: flex;
  flex-direction: column;
}

.sub-plan-name {
  font-size: 14px;
  font-weight: 700;
}

.sub-status-badge {
  background-color: var(--primary-green);
  color: var(--bg-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
  margin-top: 4px;
  width: max-content;
}

.trial-days-countdown {
  font-size: 13px;
  font-weight: 600;
  color: var(--warning-amber);
}

.meter-row {
  margin-bottom: 16px;
}

.meter-details {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.payment-card-display {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.billing-summary-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: max-content;
}

.billing-summary-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.bill-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-muted);
}

.bill-line.sub-note {
  font-size: 11px;
  color: var(--text-light-muted);
  margin-top: -8px;
}

.bill-line.total {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.bill-sub-text {
  font-size: 11px;
  color: var(--text-light-muted);
  display: block;
  text-align: center;
}

/* --- TAB 5: REFUND MANAGEMENT PAGE --- */
.refunds-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
}

.refund-dispute-card, .refund-logs-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.connected-apps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conn-app-row {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.conn-app-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conn-app-details {
  display: flex;
  flex-direction: column;
}

.conn-app-name {
  font-size: 13.5px;
  font-weight: 600;
}

.conn-app-status {
  font-size: 10.5px;
  color: var(--text-light-muted);
}


/* ================= OVERLAYS (MODALS) ================= */
.overlay-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.overlay-modal-backdrop.active {
  display: flex;
}

.simulator-modal {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.sim-header {
  padding: 16px 24px;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-family-display);
  font-size: 15px;
}

.close-sim-btn {
  background: none;
  border: none;
  color: var(--text-light-muted);
  cursor: pointer;
  outline: none;
}

.close-sim-btn:hover {
  color: var(--error-red);
}

.sim-body {
  display: block;
  flex-grow: 1;
  max-height: calc(85vh - 55px);
}

.modal-body {
  display: block;
  flex-grow: 1;
  max-height: calc(85vh - 55px);
}

.sim-control-panel {
  padding: 24px;
  border-right: none;
  overflow-y: auto;
}

.sim-terminal-panel {
  display: none !important;
}

.sim-control-panel h3 {
  font-size: 16px;
}

.sim-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.error-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 6px 0;
}

.warning-text {
  color: var(--warning-amber);
}

/* Switch styling */
.switch-container {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color-dark);
  transition: .2s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}

.switch-container input:checked + .switch-slider {
  background-color: var(--primary-green);
}

.switch-container input:checked + .switch-slider:before {
  transform: translateX(20px);
}

.sim-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.sim-terminal-panel {
  background-color: #0f172a;
  color: #38bdf8;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.sim-terminal-panel h3 {
  color: var(--bg-white);
  font-size: 15px;
  margin-bottom: 12px;
}

.sim-terminal-log {
  flex-grow: 1;
  font-family: monospace;
  font-size: 12.5px;
  overflow-y: auto;
  white-space: pre-wrap;
  color: #38bdf8;
  padding-bottom: 15px;
}


/* ================= SHEET VIEWER MODAL ================= */
.sheet-modal {
  background-color: var(--bg-white);
  width: 95%;
  max-width: 1100px;
  height: 85vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.sheet-modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sm-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-family-display);
}

.sheet-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sheet-live-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sheet-modal-body {
  flex-grow: 1;
  overflow: hidden;
  background-color: #f1f5f9;
  padding: 15px;
}

/* Mock spreadsheet layout */
.google-sheet-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.gs-formula-bar {
  height: 36px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
}

.gs-fx-label {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  color: var(--text-light-muted);
  border-right: 1px solid var(--border-color);
  background-color: #e2e8f0;
}

.gs-fx-input {
  border: none;
  background: none;
  font-family: monospace;
  font-size: 12.5px;
  padding: 0 12px;
  width: 100%;
  outline: none;
}

.gs-grid-container {
  flex-grow: 1;
  overflow: auto;
  position: relative;
}

.google-sheet-grid {
  border-collapse: collapse;
  width: 100%;
  font-size: 12.5px;
}

.google-sheet-grid th {
  background-color: var(--bg-light);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  font-weight: 500;
  text-align: left;
}

.google-sheet-grid td {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  color: var(--text-dark);
}

.google-sheet-grid tbody tr:hover {
  background-color: #f8fafc;
}

/* Row highlighting */
.gs-row-new-highlight {
  animation: bg-flash-green 2s ease;
}

.gs-row-error-highlight {
  background-color: var(--error-red-light);
  color: var(--error-red);
}

.gs-row-error-highlight td {
  border-color: #fecaca;
}

/* --- ADD CARD MODAL --- */
.p-20 {
  padding: 24px !important;
}

.card-modal {
  background-color: var(--bg-white);
  border-radius: 16px;
  width: 90%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 10px 10px -5px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  animation: modal-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.card-modal .sim-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 24px;
}

.card-modal .sim-header span {
  font-family: var(--font-family-display);
  font-size: 17px;
  color: var(--text-dark);
  font-weight: 700;
}

.card-modal .close-sim-btn {
  background: var(--bg-light);
  border: none;
  color: var(--text-light-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.card-modal .close-sim-btn:hover {
  background-color: var(--error-red-light);
  color: var(--error-red);
  transform: rotate(90deg);
}

.card-modal .form-note {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px !important;
}

.card-modal .form-group {
  margin-bottom: 18px;
}

.card-modal .form-group label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.card-modal input[type="text"],
.card-modal input[type="email"],
.card-modal input[type="password"],
.card-modal textarea,
.card-modal select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.card-modal input[type="text"]:focus,
.card-modal input[type="email"]:focus,
.card-modal input[type="password"]:focus,
.card-modal textarea:focus,
.card-modal select:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.card-modal input::placeholder,
.card-modal textarea::placeholder {
  color: var(--text-light);
}

.card-modal textarea {
  resize: vertical;
  min-height: 80px;
}

.card-modal .btn {
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 24px !important;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.15);
}

.card-modal .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.25);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ================= TOAST ALERTS OVERLAY ================= */
.toasts-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2000;
}

.toast-alert {
  background-color: #1e293b;
  color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  animation: slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid var(--primary-green);
}

.toast-alert.error {
  border-left-color: var(--error-red);
}

.toast-alert.sms {
  border-left-color: var(--accent-blue);
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-icon.success { color: var(--primary-green); }
.toast-icon.error { color: var(--error-red); }
.toast-icon.sms { color: var(--accent-blue); }

.toast-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.toast-title {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.toast-desc {
  font-size: 12px;
  color: #cbd5e1;
}

.close-toast-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
}


/* ================= KEY ANIMATIONS ================= */
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bg-flash-green {
  0% { background-color: var(--primary-green-light); }
  100% { background-color: transparent; }
}

@keyframes slide-in {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes row-pulse-red {
  0% { background-color: var(--error-red-light); }
  50% { background-color: rgba(239, 68, 68, 0.15); }
  100% { background-color: var(--error-red-light); }
}

.row-error-pulse {
  animation: row-pulse-red 3s infinite;
}

.row-anim {
  animation: bg-flash-green 3s ease;
}


/* ================= REVIEWS / TESTIMONIALS SECTION ================= */
.reviews-section {
  padding: 80px 0;
  background: transparent;
  border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
}

.review-card.featured-review {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.12);
}

.review-card.featured-review:hover {
  box-shadow: 0 15px 35px -10px rgba(16, 185, 129, 0.2);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--warning-amber);
}

.review-stars svg, 
.review-stars i {
  width: 16px;
  height: 16px;
  fill: var(--warning-amber);
  stroke: var(--warning-amber);
}

.review-content {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: auto;
}

.author-avatar.initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
  flex-shrink: 0;
}

.author-avatar.initials.green {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
}

.author-avatar.initials.blue {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
}

.author-avatar.initials.dark {
  background-color: #f1f5f9;
  color: var(--bg-dark-gray);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.author-title {
  font-size: 12px;
  color: var(--text-light-muted);
  line-height: 1.3;
}


/* ================= AUTOMATION BENEFITS & COST EFFECTIVENESS ================= */
.benefits-section {
  padding: 80px 0;
  background: transparent;
  border-bottom: 1px solid var(--border-color);
}

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

.benefit-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.3);
}

.benefit-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  margin-bottom: 20px;
}

.benefit-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.comparison-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 45px;
}

.comparison-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--bg-light);
  color: var(--text-muted);
  font-weight: 600;
}

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

.comparison-table td.porlogie-column, 
.comparison-table th.porlogie-column {
  background-color: rgba(16, 185, 129, 0.03);
  color: var(--primary-green);
  font-weight: 700;
  border-left: 2px solid rgba(16, 185, 129, 0.1);
  border-right: 2px solid rgba(16, 185, 129, 0.1);
}


/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .steps-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .comparison-card {
    padding: 24px 16px;
  }
  .onboarding-card-wrapper {
    padding: 20px 10px;
  }
  .choice-cards-container {
    grid-template-columns: 1fr;
  }
  .connection-fields-row {
    flex-direction: column;
  }
  .sub-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-container {
    grid-template-columns: 1fr;
  }
  .dashboard-wrapper {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    display: none; /* In reality would have hamburger menu */
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid-row {
    flex-direction: column;
  }
  .billing-main-row {
    grid-template-columns: 1fr;
  }
  .refunds-grid {
    grid-template-columns: 1fr;
  }
  .sim-body {
    grid-template-columns: 1fr;
  }
  .sim-terminal-panel {
    min-height: 200px;
  }
}

@media (max-width: 575px) {
  .steps-flow-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .checkbox-row {
    flex-direction: column;
    gap: 10px;
  }
  .sub-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- APP FOOTER --- */
.app-footer {
  background-color: var(--primary-green);
  padding: 60px 0 40px 0;
  margin-top: 60px;
  color: var(--bg-white);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand .logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.footer-brand .logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-white) !important;
  letter-spacing: -0.5px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-col h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--bg-white) !important;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--bg-white) !important;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-email {
  margin-top: 5px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer-email a {
  color: var(--bg-white) !important;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-email a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
