﻿/* =============================================
   OPTIDESK – site.css  (v2 – White/Light Theme)
   ============================================= */

/* ---- BASE ---- */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html { font-size: 16px; }
}

body {
  background: #ffffff;
  color: #1e293b;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---- UTILITIES ---- */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.od-text-accent { color: #2563eb; }
.od-hint { font-size: 0.78rem; }

/* ---- CSS VARIABLES ---- */
:root {
  --od-blue-900: #1e3a8a;
  --od-blue-800: #1e40af;
  --od-blue-700: #1d4ed8;
  --od-blue-600: #2563eb;
  --od-blue-100: #dbeafe;
  --od-blue-50:  #eff6ff;
  --od-accent:   #2563eb;
  --od-dark:     #0f172a;
  --sidebar-w:   240px;
  --header-h:    60px;
}

/* =============================================
   NAVBAR – White/Light
   ============================================= */
.od-navbar {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.od-navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1e3a8a !important;
  letter-spacing: -0.5px;
}

.od-navbar .navbar-brand i {
  color: #2563eb;
}

.od-navbar .nav-link {
  color: #334155 !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.od-navbar .nav-link:hover {
  color: #2563eb !important;
}

.od-navbar .btn-outline-primary {
  border-color: #2563eb;
  color: #2563eb;
  font-weight: 500;
}

.od-navbar .btn-outline-primary:hover {
  background: #2563eb;
  color: #fff;
}

/* =============================================
   HERO
   ============================================= */
.od-hero {
  background: #ffffff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.od-hero-title {
  color: #0f172a;
  font-weight: 800;
  line-height: 1.15;
  font-size: 2.75rem;
}

.od-hero-title span {
  color: #2563eb;
}

.od-hero-sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.od-hero-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.od-hero-checks li {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.od-hero-checks li i {
  color: #2563eb;
  font-size: 0.85rem;
}

.od-hero-illustration {
  background: #f0f4ff;
  border-radius: 24px;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* =============================================
   STATS BAR
   ============================================= */
.od-stats-bar {
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 2.5rem 0;
}

.od-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.od-stat-card:hover {
  box-shadow: 0 6px 20px rgba(37,99,235,0.10);
  transform: translateY(-3px);
}

.od-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.od-stat-icon.blue   { background: #eff6ff; color: #2563eb; }
.od-stat-icon.green  { background: #f0fdf4; color: #16a34a; }
.od-stat-icon.amber  { background: #fffbeb; color: #d97706; }
.od-stat-icon.purple { background: #f5f3ff; color: #7c3aed; }

.od-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.od-stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.od-features {
  background: #f0f4ff;
  padding: 5rem 0;
}

.od-section-badge {
  display: inline-block;
  background: #e0e7ff;
  color: #3730a3;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.od-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.od-section-sub {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

.od-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.od-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.10) !important;
}

.od-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: #eff6ff;
  color: #2563eb;
}

.od-feature-icon.green  { background: #f0fdf4; color: #16a34a; }
.od-feature-icon.amber  { background: #fffbeb; color: #d97706; }
.od-feature-icon.purple { background: #f5f3ff; color: #7c3aed; }
.od-feature-icon.red    { background: #fff1f2; color: #e11d48; }
.od-feature-icon.teal   { background: #f0fdfa; color: #0d9488; }

.od-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.od-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.od-feature-list li {
  font-size: 0.83rem;
  color: #475569;
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.od-feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-size: 1rem;
  line-height: 1.4;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.od-how-it-works {
  background: #ffffff;
  padding: 5rem 0;
}

.od-step-card {
  background: #ffffff;
  border: 1px solid var(--od-blue-100);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.od-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(37,99,235,0.10) !important;
}

.od-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--od-blue-600);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.od-testimonials {
  background: #f8faff;
  padding: 5rem 0;
}

.od-testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.od-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30,58,138,0.08) !important;
}

.od-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--od-blue-600), var(--od-blue-800));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.od-cta {
  background: linear-gradient(135deg, var(--od-blue-900) 0%, var(--od-blue-700) 100%);
  padding: 5rem 0;
}

/* =============================================
   TRUSTED BAR
   ============================================= */
.od-trusted-bar {
  background: #fafbff;
}

.od-trust-logo {
  opacity: 0.65;
  transition: opacity 0.2s;
  font-size: 0.95rem;
  letter-spacing: -0.3px;
}

.od-trust-logo:hover { opacity: 1; }

/* =============================================
   FOOTER
   ============================================= */
.od-footer {
  background: var(--od-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.od-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.od-footer a:hover { color: #ffffff; }

/* =============================================
   AUTH PAGES – Light/Clean
   ============================================= */
.od-auth-section {
  background: #f0f4ff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.od-auth-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
}

.od-auth-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.od-auth-sub {
  color: #64748b;
  font-size: 0.9rem;
}

.od-input {
  background: #f8faff !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
  border-radius: 10px !important;
}

.od-input::placeholder {
  color: #94a3b8 !important;
}

.od-input:focus {
  background: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
  color: #1e293b !important;
}

.od-input-icon {
  background: #f8faff !important;
  border: 1px solid #e2e8f0 !important;
  border-right: none !important;
  color: #64748b !important;
}

.od-input-icon + .od-input {
  border-left: none !important;
}

.od-input-toggle {
  background: #f8faff !important;
  border: 1px solid #e2e8f0 !important;
  border-left: none !important;
  color: #64748b !important;
  cursor: pointer;
}

.od-input-toggle:hover {
  background: #eff6ff !important;
  color: #2563eb !important;
}

/* Password strength meter */
.od-strength-bar {
  height: 4px;
  border-radius: 4px;
  background: #e2e8f0;
  overflow: hidden;
}

.od-strength-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease, background 0.3s ease;
  width: 0%;
}

/* =============================================
   DASHBOARD LAYOUT (SIDEBAR)
   ============================================= */
.od-dash-body {
  background: #f1f5f9;
  min-height: 100vh;
  margin: 0;
}

.od-dash-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ---- Sidebar ---- */
.od-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: linear-gradient(180deg, #2d5fa6 0%, #1e4d96 100%);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 1040;
  transition: transform 0.25s ease;
}

.od-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.od-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.od-sidebar-brand i {
  font-size: 1.4rem;
  color: #ffffff;
}

/* ---- Nav ---- */
.od-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.75rem;
}

.od-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.od-nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.od-nav-link i {
  font-size: 1rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.od-nav-link:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.od-nav-link.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
}

.od-nav-link.active i { color: #ffffff; }

.od-nav-coming {
  opacity: 0.5;
  pointer-events: none;
}

.od-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.75rem 0.5rem;
}

/* ---- Sidebar footer ---- */
.od-sidebar-footer {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.od-sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}

.od-sidebar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.od-sidebar-user-info { min-width: 0; }

.od-sidebar-username {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-sidebar-tenant {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-sidebar-logout {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  padding: 0;
}

.od-sidebar-logout:hover {
  background: rgba(239,68,68,0.25);
  color: #fca5a5;
  border-color: rgba(239,68,68,0.3);
}

/* ---- Main area ---- */
.od-dash-main {
  flex: 1;
  margin-left: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.od-dash-header {
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.od-dash-header-title { flex: 1; }

.od-dash-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.od-dash-content {
  padding: 1.5rem;
  flex: 1;
}

/* ---- Dashboard KPI cards ---- */
.od-kpi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: transform .2s, box-shadow .2s;
}

.od-kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30,58,138,0.10) !important;
}

.od-kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.od-kpi-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.od-kpi-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.od-dash-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.od-task-row {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: background .15s;
}

.od-task-row:hover { background: var(--od-blue-50); }

.od-task-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .7;
}

.od-deadline-item:last-child { border-bottom: none !important; }

/* Dashboard layout: ne legyen footer padding */
.od-dashboard ~ footer { display: none; }

/* ---- Welcome banner ---- */
.od-welcome-banner {
  background: linear-gradient(135deg, var(--od-blue-900) 0%, var(--od-blue-700) 100%);
}

/* ---- Mobile sidebar ---- */
.od-sidebar-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: rgba(255,255,255,0.8);
}

.od-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1039;
}

.od-sidebar-overlay.show { display: block; }

@media (max-width: 991px) {
  .od-sidebar { transform: translateX(-100%); }
  .od-sidebar.open { transform: translateX(0); }
  .od-dash-main { margin-left: 0; }
}

/* ---- Table stílus ---- */
.od-table thead th {
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  padding: 0.75rem 1rem;
}

.od-table tbody td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
}

.od-table tbody tr:hover td { background: #f8fafc; }

.od-company-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--od-blue-50);
  color: var(--od-blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.od-company-icon--corp {
  background: #eff6ff;
  color: #1d4ed8;
}
.od-company-icon--ev {
  background: #f5f3ff;
  color: #7c3aed;
}

/* ---- Auth page - dash header avatar ---- */
.od-dash-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.3);
}

/* =============================================
   NAVBAR – logo icon & active link
   ============================================= */
.od-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #2563eb;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.od-logo-icon-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #2563eb;
  border-radius: 7px;
  color: #fff;
  font-size: 0.9rem;
}

.od-nav-active {
  font-weight: 700 !important;
  color: #1e3a8a !important;
  border-bottom: 2px solid #2563eb;
  padding-bottom: 2px;
}

/* =============================================
   SOCIAL BUTTONS (footer)
   ============================================= */
.od-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.od-social-btn:hover {
  background: #2563eb;
  color: #fff;
}

/* =============================================
   HERO – new design
   ============================================= */
.od-hero-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

.od-hero-title span {
  color: #2563eb;
}

.od-hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.od-hero-trust {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

/* Dashboard mockup */
.od-dashboard-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(37,99,235,0.15);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  border: 1px solid #e2e8f0;
}

.od-mock-header {
  background: #f1f5f9;
  padding: 0.6rem 1rem;
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.od-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.od-mock-dot.red    { background: #ef4444; }
.od-mock-dot.yellow { background: #f59e0b; }
.od-mock-dot.green  { background: #22c55e; }

.od-mock-body {
  display: flex;
}

.od-mock-sidebar {
  width: 130px;
  background: #1e3a8a;
  padding: 0.75rem 0.5rem;
  flex-shrink: 0;
}

.od-mock-logo {
  color: #fff;
  font-size: 1.1rem;
  padding: 0.25rem 0.5rem 0.75rem;
  opacity: 0.9;
}

.od-mock-nav-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
}

.od-mock-nav-item i {
  font-size: 0.75rem;
  flex-shrink: 0;
}

.od-mock-nav-item.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.od-mock-content {
  flex: 1;
  padding: 0.75rem;
  overflow: hidden;
}

.od-mock-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.od-mock-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.od-mock-stat {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.4rem 0.35rem;
}

.od-mock-stat-label {
  font-size: 0.55rem;
  color: #94a3b8;
  margin-bottom: 2px;
}

.od-mock-stat-val {
  font-size: 0.62rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.od-mock-stat-change {
  font-size: 0.55rem;
  font-weight: 600;
  margin-top: 2px;
}
.od-mock-stat-change.up   { color: #16a34a; }
.od-mock-stat-change.down { color: #dc2626; }
.od-mock-stat-sub { font-size: 0.5rem; color: #64748b; margin-top: 2px; }

.od-mock-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.od-mock-chart-box {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.4rem;
}

.od-mock-chart-title {
  font-size: 0.58rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 4px;
}

.od-mock-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.od-mock-chart-labels span { font-size: 0.45rem; color: #94a3b8; }

.od-mock-legend { font-size: 0.5rem; color: #475569; line-height: 1.8; }
.od-mock-legend div { display: flex; align-items: center; gap: 4px; }
.od-mock-legend span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.od-mock-deadline-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  font-size: 0.58rem;
}

.od-mock-deadline-title { font-weight: 600; color: #0f172a; }
.od-mock-deadline-sub   { color: #334155; }
.od-mock-deadline-date  { color: #64748b; }
.od-mock-detail-btn {
  margin-left: auto;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.58rem;
  white-space: nowrap;
}

/* =============================================
   TWO-COL AUDIENCE SECTION
   ============================================= */
.od-two-col-section {
  background: #fff;
  padding: 5rem 0;
}

.od-audience-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.od-audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.od-audience-icon.blue  { background: #dbeafe; color: #1d4ed8; }
.od-audience-icon.green { background: #dcfce7; color: #16a34a; }

.od-audience-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.od-audience-sub {
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.od-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.od-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: #334155;
  padding: 0.3rem 0;
}

.od-check-list li i { color: #16a34a; margin-top: 1px; flex-shrink: 0; }

/* =============================================
   FEATURES GRID (6 icons)
   ============================================= */
.od-features-grid {
  background: #f8faff;
  padding: 5rem 0;
}

.od-feat-item {
  padding: 1.5rem 1rem;
}

.od-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}

.od-feat-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.od-feat-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

/* =============================================
   TESTIMONIAL + STATS DARK BAND
   ============================================= */
.od-testimonial-stats {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  padding: 4rem 0;
}

.od-quote-block {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
}

.od-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.15);
  font-family: Georgia, serif;
  position: absolute;
  top: -0.5rem;
  left: 0;
}

.od-quote-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.7;
  position: relative;
}

.od-stat-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.od-stat-big-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* =============================================
   NEW CTA SECTION
   ============================================= */
.od-cta-new {
  background: #f0f4ff;
  padding: 4rem 0;
}

.od-cta-inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
}

@media (max-width: 768px) {
  .od-cta-inner {
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .od-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.od-cta-rocket {
  font-size: 4rem;
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
}

.od-cta-text { flex: 1; }

.od-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.od-cta-sub {
  color: #475569;
  font-size: 0.9rem;
  margin: 0;
}

.od-cta-action { flex-shrink: 0; }

.od-cta-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.od-cta-checks li {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.od-pricing-section {
  background: #f8fafc;
}

.od-pricing-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.od-pricing-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  transform: translateY(-3px);
}

.od-pricing-card--highlight {
  border-color: #2563eb;
  box-shadow: 0 4px 24px rgba(37,99,235,0.13);
}

.od-pricing-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.od-pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.od-pricing-price {
  margin-bottom: 0.75rem;
}

.od-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
}

.od-price-period {
  font-size: 1rem;
  color: #64748b;
  margin-left: 0.2rem;
}

.od-pricing-desc {
  color: #64748b;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.od-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.od-pricing-features li {
  font-size: 0.88rem;
  color: #334155;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
}
