/* lovexpress.com - International Luxury SaaS Matchmaking CSS System */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #E11D48;
  --primary-hover: #BE123C;
  --secondary: #F59E0B;
  --accent: #8B5CF6;
  --dark: #0F172A;
  --dark-surface: #1E293B;
  --dark-border: rgba(255, 255, 255, 0.12);
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --gray-700: #334155;
  --success: #10B981;
  --warning: #F59E0B;
  
  --font-poppins: 'Poppins', sans-serif;
  --font-manrope: 'Manrope', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(225, 29, 72, 0.15);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(225, 29, 72, 0.4);

  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.7);
}

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

body {
  font-family: var(--font-manrope);
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Glassmorphism Utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.glass-card-dark {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 46, 122, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 46, 122, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-surface);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(255, 241, 243, 0.95) 0%, rgba(254, 226, 226, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.4);
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.1);
}

.header.scrolled {
  background: rgba(255, 241, 243, 0.98);
  padding: 10px 0;
  box-shadow: 0 8px 28px rgba(225, 29, 72, 0.15);
}

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

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: #E11D48;
}

.nav-links a.active {
  color: #E11D48;
  font-weight: 700;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, #E11D48, #F472B6);
  border-radius: 99px;
  box-shadow: 0 0 8px rgba(225, 29, 72, 0.5);
}

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

.header .btn-outline {
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.3);
  color: #E11D48;
}

.header .btn-outline:hover {
  background: #E11D48;
  color: #FFF;
}

/* Hero Wrapper */
.hero-wrapper {
  position: relative;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 100px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.carousel-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.5);
}

.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  width: 32px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.6);
}

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

.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 20px auto;
  max-width: 450px;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Floating Statistics Bar */
.floating-stats {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1140px;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  z-index: 10;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.92) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(225, 29, 72, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 35px rgba(225, 29, 72, 0.2);
}

/* Push the next section down to account for overlapping stats bar on desktop */
.hero-wrapper + section,
.hero-wrapper + * {
  padding-top: 100px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: var(--font-poppins);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(1) .stat-number {
  background-image: linear-gradient(135deg, #FF2E7A 0%, #F59E0B 100%);
  filter: drop-shadow(0 2px 8px rgba(255, 46, 122, 0.4));
}

.stat-item:nth-child(2) .stat-number {
  background-image: linear-gradient(135deg, #38BDF8 0%, #8B5CF6 100%);
  filter: drop-shadow(0 2px 8px rgba(56, 189, 248, 0.4));
}

.stat-item:nth-child(3) .stat-number {
  background-image: linear-gradient(135deg, #F59E0B 0%, #FF4D4D 100%);
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.4));
}

.stat-item:nth-child(4) .stat-number {
  background-image: linear-gradient(135deg, #10B981 0%, #38BDF8 100%);
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

.stat-label {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections Base */
.section {
  padding: 120px 0 80px;
}

.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-title p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* Why Choose Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 46, 122, 0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255, 46, 122, 0.08);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* Featured Profiles Grid */
.profiles-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-chip:hover, .filter-chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
  position: relative;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.profile-img-wrap {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-card:hover .profile-img-wrap img {
  transform: scale(1.06);
}

.fav-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fav-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.status-badge-wrap {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.badge-online {
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-verified {
  background: rgba(17, 24, 39, 0.85);
  color: #38BDF8;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.profile-info {
  padding: 20px;
}

.profile-name {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.profile-meta {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.profile-actions {
  display: flex;
  gap: 8px;
}

.btn-icon-sm {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--gray-700);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-icon-sm:hover {
  background: var(--primary);
  color: var(--white);
}

/* Membership Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.plan-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}

.plan-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-poppins);
  color: var(--dark);
  margin-bottom: 24px;
}

.plan-price span {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.plan-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gray-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  font-family: var(--font-manrope);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 50%, #FFF1F2 100%);
  color: #1E293B;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(244, 114, 182, 0.4);
  box-shadow: 0 -10px 40px rgba(225, 29, 72, 0.05);
  position: relative;
}

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

.footer-brand p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 16px 0 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E11D48;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #E11D48, #F472B6);
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
  border-color: #E11D48;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #E11D48;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #475569;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #E11D48;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 114, 182, 0.25);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748B;
  font-size: 0.85rem;
}

/* Responsiveness & Mobile Navigation System */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 46, 122, 0.25);
  border-color: var(--primary);
  color: var(--white);
}

@media (min-width: 992px) {
  .mobile-menu-drawer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 40px;
  }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; bottom: -80px; }
  .stat-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .mobile-nav-toggle { display: flex; }
  .nav-wrapper { position: relative; }
  
  .mobile-menu-drawer {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 46, 122, 0.15);
    z-index: 1000;
    gap: 16px;
    animation: mobileMenuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .header.mobile-open .mobile-menu-drawer {
    display: flex;
  }

  .mobile-menu-drawer .nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .mobile-menu-drawer .nav-links li {
    width: 100%;
  }

  .mobile-menu-drawer .nav-links a {
    display: block;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .mobile-menu-drawer .nav-links a:hover,
  .mobile-menu-drawer .nav-links a.active {
    background: rgba(255, 46, 122, 0.18);
    color: var(--secondary);
    border-left: 3px solid var(--primary);
  }

  .mobile-menu-drawer .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-drawer .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@keyframes mobileMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  .hero {
    min-height: 82vh;
    padding-top: 260px;
    padding-bottom: 30px;
    justify-content: flex-end;
  }

  .hero-title {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 0.78rem;
    margin-bottom: 14px;
  }

  .hero-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: 0;
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .floating-stats {
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: calc(100% - 40px) !important;
    margin: 0 auto !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 24px 20px !important;
    border-radius: var(--radius-lg) !important;
  }

  /* Remove extra top padding from next section on mobile since stats is no longer absolute */
  .hero-wrapper + section,
  .hero-wrapper + * {
    padding-top: 40px;
  }
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-200);
}

.testimonial-img-wrap {
  height: 380px;
}

.testimonial-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero .container { padding-left: 20px; padding-right: 20px; margin: 0 auto; text-align: center; }
  .hero-content { margin: 0 auto; text-align: center; max-width: 100%; }
  .hero-title { font-size: 2.2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .profiles-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .logo img { height: 44px !important; width: auto !important; }

  /* Compact feature cards on mobile */
  .feature-card {
    padding: 22px 14px !important;
  }
  .feature-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.3rem !important;
    margin-bottom: 14px !important;
  }
  .feature-card h3 {
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
  }
  .feature-card p {
    font-size: 0.78rem !important;
  }

  .testimonial-card {
    grid-template-columns: 1fr !important;
  }
  .testimonial-img-wrap {
    height: 240px !important;
  }
  .testimonial-content {
    padding: 24px 20px !important;
  }
}

@media (max-width: 576px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .profile-card {
    border-radius: var(--radius-md) !important;
  }
  .profile-img-wrap {
    height: 180px !important;
  }
  .profile-info {
    padding: 12px 10px !important;
  }
  .profile-name {
    font-size: 0.95rem !important;
  }
  .profile-meta {
    font-size: 0.78rem !important;
    margin-bottom: 8px !important;
  }
  .profile-info .btn {
    padding: 8px 6px !important;
    font-size: 0.78rem !important;
  }
}
