/* ==================== CSS RESET & VARIABLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --slate: #1A2C3E;
  --slate-light: #243447;
  --blue: #0066FF;
  --blue-dark: #0052CC;
  --blue-light: #3385FF;
  --blue-bg-light: #EBF3FF;
  --gray-bg: #F8FAFC;
  --gray-light: #F1F5F9;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--gray-bg);
  color: var(--text-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Full width sections */
.hero, .section-white, .section-blue, .how-it-works-section, .profile-section {
  width: 100%;
  padding: 80px 0;
}

/* ==================== HEADER ==================== */
header {
  background: var(--slate);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo h1 {
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  font-weight: 800;
  color: white;
}

.logo h1 span {
  color: var(--blue);
}

.tagline {
  font-size: 0.7rem;
  opacity: 0.75;
  letter-spacing: 0.5px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 80%;
}

.nav-links a:hover {
  color: var(--blue);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* ==================== HEADER RIGHT ==================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#userStatus {
  display: flex;
  align-items: center;
  gap: 10px;
}

#userLoggedIn {
  display: flex;
  align-items: center;
  gap: 12px;
}

#userNameDisplay {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.9;
  font-family: 'Inter', sans-serif;
}

/* ==================== BUTTONS ==================== */
.btn-blue {
  background: var(--blue);
  color: white;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 8px 26px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-blue-small {
  background: var(--blue);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn-blue-small:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-outline-small {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn-outline-small:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ==================== CART BUTTON ==================== */
.btn-cart {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
  position: relative;
  padding: 8px 12px;
  transition: all 0.25s ease;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cart:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.08);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: 2px;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  min-width: 20px;
  text-align: center;
  border: 2px solid #0F172A;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  font-family: 'Inter', sans-serif;
}

/* ==================== PROFILE DROPDOWN ==================== */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.btn-profile-dropdown {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-profile-dropdown:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blue);
}

.btn-profile-dropdown i:last-child {
  font-size: 0.7rem;
  opacity: 0.7;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: white;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  z-index: 1000;
  animation: dropdownFade 0.2s ease;
}

.dropdown-menu.show {
  display: block;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.dropdown-item:hover {
  background: var(--gray-light);
  color: var(--blue);
}

.dropdown-item i {
  font-size: 1rem;
  width: 20px;
  color: var(--text-muted);
}

.dropdown-item:hover i {
  color: var(--blue);
}

.dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 6px 16px;
}

.logout-item {
  color: #ef4444;
}

.logout-item:hover {
  background: #fef2f2;
  color: #dc2626;
}

.logout-item i {
  color: #ef4444;
}

.logout-item:hover i {
  color: #dc2626;
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(135deg, var(--slate) 0%, #0F1A24 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.15);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ==================== PRICING ==================== */
.section-white {
  background: var(--white);
  padding: 70px 0;
}

.section-blue {
  background: var(--slate);
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--slate);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

.blue-text {
  color: var(--blue);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid var(--border-light);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--blue);
  color: white;
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 102, 255, 0); }
}

.card-header {
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--slate);
  margin: 16px 0 4px;
}

.price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.billing {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
  flex: 1;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed var(--gray-light);
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: bold;
  font-size: 1rem;
}

.btn-buy,
.btn-subscribe {
  background: var(--slate);
  color: white;
  border: none;
  width: 100%;
  padding: 14px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.btn-buy:hover,
.btn-subscribe:hover {
  background: var(--blue);
  transform: scale(1.02);
}

.btn-price {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
}

.btn-enquire {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  width: 100%;
  padding: 14px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.btn-enquire:hover {
  border-color: var(--blue);
  background: var(--blue-bg-light);
  transform: scale(1.02);
}

.billing-info {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--blue-bg-light);
  border-radius: 16px;
  text-align: center;
}

.billing-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.billing-info i {
  color: var(--blue);
  margin-right: 8px;
}

.custom-enquiry {
  margin-top: 60px;
  padding: 32px;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-bg) 100%);
  border-radius: 24px;
}

.enquiry-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.enquiry-banner i {
  font-size: 2.5rem;
  color: var(--blue);
}

.enquiry-text {
  flex: 1;
}

.enquiry-text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--slate);
}

.enquiry-text p {
  color: var(--text-muted);
  margin: 0;
}

.btn-enquiry {
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-enquiry:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works-section {
  background: var(--slate);
  padding: 80px 0;
  color: white;
}

.infographic {
  max-width: 1100px;
  margin: 0 auto;
}

.infographic-title {
  text-align: center;
  margin-bottom: 50px;
}

.infographic-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
}

.infographic-title h2 span {
  color: var(--blue);
}

.infographic-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-top: 8px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--blue);
  opacity: 0.25;
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
}

.step-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 55px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.feature-badge {
  text-align: center;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.feature-badge i {
  font-size: 1.6rem;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}

.feature-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 35px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  text-align: center;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  cursor: default;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.service-item i {
  font-size: 1.3rem;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}

.service-item span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2px;
}

/* ==================== WHY US ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--gray-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature i {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--slate);
}

.feature p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== FAQ ==================== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: white;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--blue);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 200px;
}

/* ==================== CONTACT FORM ==================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.info-card i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--slate);
}

.info-card p {
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  transform: scale(1.01);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
}

/* ==================== CHECKBOX GRID ==================== */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: var(--gray-bg);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid transparent;
}

.checkbox-label:hover {
  border-color: var(--blue);
  background: var(--blue-bg-light);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.checkbox-label input[type="checkbox"]:checked + span {
  color: var(--blue);
  font-weight: 600;
}

.checkbox-label span {
  transition: color 0.2s ease;
}

/* Password Toggle */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  flex: 1;
  padding-right: 44px;
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 8px;
  font-size: 16px;
  transition: color 0.2s ease;
}

.password-wrapper .toggle-password:hover {
  color: #1A2C3E;
}

/* Password Strength */
.password-strength {
  margin-top: 6px;
}

.strength-bar {
  height: 4px;
  background: #E2E8F0;
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.strength-bar .fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
  width: 0%;
}

.strength-bar .fill.weak { width: 25%; background: #EF4444; }
.strength-bar .fill.fair { width: 50%; background: #F59E0B; }
.strength-bar .fill.good { width: 75%; background: #3B82F6; }
.strength-bar .fill.strong { width: 100%; background: #10B981; }

.strength-text {
  font-size: 11px;
  margin-top: 4px;
  color: #94A3B8;
}

.strength-text.weak { color: #EF4444; }
.strength-text.fair { color: #F59E0B; }
.strength-text.good { color: #3B82F6; }
.strength-text.strong { color: #10B981; }

.password-requirements {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.password-requirements .req {
  font-size: 11px;
  color: #94A3B8;
  transition: color 0.3s ease;
}

.password-requirements .req.met {
  color: #10B981;
}

.password-requirements .req.unmet {
  color: #EF4444;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--slate);
  color: white;
  padding: 48px 0 24px;
  margin-top: 60px;
}

footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-logo h2 span {
  color: var(--blue);
}

.footer-logo p {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 968px) {
  .container {
    padding: 0 24px;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .info-card {
    flex: 1;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .infographic-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--slate);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    width: 100%;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    gap: 12px;
  }
  
  .hero-buttons .btn-blue,
  .hero-buttons .btn-outline {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .service-item {
    padding: 10px 6px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-item h3 {
    font-size: 1.2rem;
  }
  
  .infographic-title h2 {
    font-size: 1.6rem;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
  
  .checkbox-label {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .dropdown-menu {
    right: -10px;
    min-width: 200px;
  }
  
  .btn-profile-dropdown {
    font-size: 1rem;
  }
  
  .dropdown-item {
    font-size: 0.85rem;
    padding: 10px 16px;
  }
  
  .header-right {
    gap: 8px;
  }
  
  .btn-outline-small {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  .btn-blue-small {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  #userNameDisplay {
    font-size: 0.7rem;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .hero-buttons .btn-blue,
  .hero-buttons .btn-outline {
    padding: 8px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .pricing-card {
    padding: 20px;
  }
  
  .price {
    font-size: 1.8rem;
  }
  
  .tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .features-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature-badge {
    padding: 10px 8px;
  }
  
  .feature-badge i {
    font-size: 1.2rem;
  }
  
  .feature-badge span {
    font-size: 0.7rem;
  }
  
  .enquiry-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-enquiry {
    width: 100%;
    text-align: center;
  }
}

/* ==================== FSM UNIFIED CARD ==================== */

.fsm-unified-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid #0066FF20;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.fsm-unified-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0066FF08 0%, transparent 70%);
  border-radius: 50%;
}

.fsm-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.fsm-card-header .fsm-badge {
  display: inline-block;
  background: #0066FF;
  color: white;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.fsm-card-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1A2C3E;
  margin: 0 0 8px 0;
}

.fsm-card-header .fsm-tagline {
  color: #64748B;
  font-size: 1.1rem;
  margin: 0;
}

.fsm-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.fsm-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.fsm-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #0066FF40;
}

.fsm-feature-item i {
  font-size: 1.5rem;
  color: #0066FF;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBF3FF;
  border-radius: 50%;
  flex-shrink: 0;
}

.fsm-feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A2C3E;
  margin: 0 0 2px 0;
}

.fsm-feature-item p {
  font-size: 0.8rem;
  color: #64748B;
  margin: 0;
}

.fsm-pricing-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid #E2E8F0;
  flex-wrap: wrap;
  gap: 16px;
}

.fsm-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.fsm-price .fsm-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1A2C3E;
}

.fsm-price .fsm-period {
  font-size: 1rem;
  color: #64748B;
  font-weight: 500;
}

.fsm-price-note {
  font-size: 0.85rem;
  color: #64748B;
  margin: 0;
}

.fsm-addon {
  text-align: right;
}

.fsm-addon-label {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
}

.fsm-addon-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0066FF;
  margin-left: 4px;
}

.fsm-cta-section {
  text-align: center;
}

.btn-fsm-trial {
  display: inline-block;
  background: #0066FF;
  color: white;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-fsm-trial:hover {
  background: #0052CC;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.btn-fsm-trial small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

.fsm-login-link {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #64748B;
}

.fsm-login-link a {
  color: #0066FF;
  font-weight: 600;
  text-decoration: none;
}

.fsm-login-link a:hover {
  text-decoration: underline;
}

.fsm-trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
}

.fsm-trust-badges span {
  font-size: 0.8rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fsm-trust-badges i {
  color: #0066FF;
}

@media (max-width: 768px) {
  .fsm-unified-card {
    padding: 24px;
  }
  
  .fsm-features-grid {
    grid-template-columns: 1fr;
  }
  
  .fsm-pricing-details {
    flex-direction: column;
    text-align: center;
  }
  
  .fsm-addon {
    text-align: center;
  }
  
  .btn-fsm-trial {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  .fsm-trust-badges {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .fsm-card-header h3 {
    font-size: 1.5rem;
  }
  
  .fsm-price .fsm-amount {
    font-size: 1.8rem;
  }
}