/* ============================================================
   Baseera Tech - Main Stylesheet (style.css)
   منصة بصيرة تيك - ملف الأنماط الرئيسي
   Light Theme | RTL | Bootstrap 5
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #4F86E8;
  --primary-dark: #3B6FC4;
  --primary-light: #EBF2FF;
  --secondary: #7C3AED;
  --secondary-light: #F3EEFF;
  --accent: #22D3A8;
  --accent-light: #E6FBF6;
  --warm: #FF6B35;
  --warm-light: #FFF1EC;
  --yellow: #FBBF24;
  --yellow-light: #FFFBEB;

  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;

  --bg: #F4F7FE;
  --bg-white: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;

  --text-dark: #1E293B;
  --text-medium: #475569;
  --text-light: #94A3B8;
  --text-muted: #CBD5E1;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(79, 134, 232, 0.10);
  --shadow-lg: 0 8px 32px rgba(79, 134, 232, 0.15);
  --shadow-xl: 0 16px 48px rgba(79, 134, 232, 0.20);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font: 'Tajawal', sans-serif;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

img {
  max-width: 100%;
}

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

/* ============================================================
   LANDING PAGE STYLES
   ============================================================ */

/* --- Navbar --- */
.main-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(79, 134, 232, 0.08);
  transition: all var(--transition);
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(79, 134, 232, 0.35);
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}

.brand-text span {
  color: var(--primary);
}

.nav-link-custom {
  font-weight: 500;
  color: var(--text-medium) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all var(--transition);
  font-size: 0.95rem;
}

.nav-link-custom:hover {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.btn-login-nav {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  padding: 9px 24px !important;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(79, 134, 232, 0.35);
  transition: all var(--transition);
}

.btn-login-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 134, 232, 0.45);
  color: rgb(20, 58, 122) !important;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667EEA22 0%, #764BA211 30%, #FFECD211 70%, #FCB69F11 100%);
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float infinite ease-in-out;
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  left: -150px;
  animation-duration: 8s;
}

.hero-circle-2 {
  width: 350px;
  height: 350px;
  background: var(--secondary);
  bottom: -100px;
  right: -80px;
  animation-duration: 10s;
  animation-delay: -3s;
}

.hero-circle-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 40%;
  left: 30%;
  animation-duration: 6s;
  animation-delay: -1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #EBF2FF, #F3EEFF);
  border: 1px solid #C7D9FF;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 6px 18px;
  border-radius: 25px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeInDown 0.8s ease;
  line-height: 1.8;
}

.hero-btns {
  animation: fadeInDown 0.9s ease;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 25px rgba(79, 134, 232, 0.40);
  transition: all var(--transition);
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(79, 134, 232, 0.50);
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid var(--primary);
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  color: var(--primary);
}

/* Hero Illustration */
.hero-illustration {
  animation: fadeInRight 0.8s ease;
  position: relative;
}

.hero-illustration .main-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  animation: float 5s ease-in-out infinite;
  z-index: 3;
}

.floating-card-1 {
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, #EBF2FF, #F3EEFF);
  color: var(--primary);
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 30px;
  left: -30px;
  background: linear-gradient(135deg, #E6FBF6, #EBF2FF);
  color: var(--accent);
  animation-delay: -2.5s;
}

.floating-card-3 {
  top: 50%;
  right: -35px;
  background: linear-gradient(135deg, #FFF1EC, #FFFBEB);
  color: var(--warm);
  animation-delay: -1.5s;
}

/* --- Stats Section --- */
.stats-section {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-medium);
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Section Styling --- */
.section {
  padding: 90px 0;
}

.section-1 {
  padding: 20px 0 90px 0;
}

.section-alt {
  background: white;
}

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

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Feature Card --- */
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.feature-icon-blue {
  background: var(--primary-light);
}

.feature-icon-purple {
  background: var(--secondary-light);
}

.feature-icon-green {
  background: var(--accent-light);
}

.feature-icon-orange {
  background: var(--warm-light);
}

.feature-icon-yellow {
  background: var(--yellow-light);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Tracking Form (Parent) --- */
.tracking-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.tracking-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.tracking-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  max-width: 560px;
  margin: 0 auto;
}

.tracking-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.tracking-input {
  font-family: var(--font) !important;
  border: 2px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 14px 18px !important;
  font-size: 1.2rem !important;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 700;
  transition: border-color var(--transition) !important;
  text-transform: uppercase;
}

.tracking-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(79, 134, 232, 0.12) !important;
}

.btn-track {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  width: 100%;
  margin-top: 12px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(79, 134, 232, 0.35);
}

.btn-track:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 134, 232, 0.45);
  color: white;
}

/* --- Pricing --- */
.price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #EBF2FF 0%, #F3EEFF 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.price-card.featured .featured-badge {
  display: block;
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: -40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 60px;
  transform: rotate(45deg);
  display: none;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.price-plan {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 16px 0 4px;
}

.price-period {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.price-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: right;
}

.price-feature-list li {
  padding: 8px 0;
  color: var(--text-medium);
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-feature-list li:last-child {
  border-bottom: none;
}

.price-feature-list li::before {
  content: '-';
  color: var(--accent);
  font-weight: 700;
}

.btn-price {
  width: 100%;
  padding: 13px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-price:hover,
.price-card.featured .btn-price {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(79, 134, 232, 0.35);
  transform: translateY(-2px);
}

/* --- Contact --- */
.contact-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.form-control-custom {
  font-family: var(--font) !important;
  border: 2px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  transition: border-color var(--transition) !important;
  background: var(--bg) !important;
  color: var(--text-dark) !important;
}

.form-control-custom:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(79, 134, 232, 0.10) !important;
  background: white !important;
}

.form-label-custom {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 13px 36px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(79, 134, 232, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 134, 232, 0.4);
  color: white;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Footer --- */
.main-footer {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #94A3B8;
  padding: 60px 0 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.footer-brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: #64748B;
}

/* --- Animations --- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* --- Login Page --- */
.login-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #F0F4FF 0%, #F8F0FF 50%, #F0FFF8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.login-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo .logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 12px;
  box-shadow: 0 8px 20px rgba(79, 134, 232, 0.35);
}

.login-logo h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.login-logo p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 4px 0 0;
}

.form-floating-arab .form-control {
  font-family: var(--font);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--bg);
}

.form-floating-arab .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 134, 232, 0.10);
  background: white;
}

.form-floating-arab label {
  font-family: var(--font);
  color: var(--text-medium);
}

.login-input-group {
  margin-bottom: 16px;
}

.login-input-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.login-input-group .input-wrap {
  position: relative;
}

.login-input-group .input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
}

.login-input-group input {
  width: 100%;
  font-family: var(--font);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 44px 12px 16px;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--bg);
  color: var(--text-dark);
  outline: none;
}

.login-input-group input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 134, 232, 0.10);
}

.btn-login {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(79, 134, 232, 0.35);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 134, 232, 0.45);
}

/* --- Flash Alerts --- */
.alert-flash {
  border-radius: var(--radius);
  border: none;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* --- Utilities --- */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* --- How it works steps --- */
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  margin-bottom: 20px;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateX(-6px);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(79, 134, 232, 0.35);
}

.step-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
    min-height: auto;
  }

  .hero-illustration {
    margin-top: 40px;
  }

  .floating-card {
    display: none;
  }

  .tracking-card {
    padding: 30px 20px;
  }

  .price-card.featured {
    transform: scale(1);
  }
}