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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #343A40;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D3E50;
}

a {
  color: #FF7A59;
  text-decoration: none;
  transition: all 0.15s ease;
}

a:hover {
  color: #E8624A;
}

img {
  max-width: 100%;
  height: auto;
}

.g4h-navbar {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

.g4h-navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.g4h-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: #2D3E50;
}

.g4h-navbar .navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
}

.g4h-navbar .navbar-brand span.brand-accent {
  color: #FF7A59;
}

.g4h-navbar .nav-link {
  color: #495057;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
}

.g4h-navbar .nav-link:hover, .g4h-navbar .nav-link.active {
  color: #FF7A59;
  background: #FFF5F2;
}

.g4h-navbar .btn-cart {
  position: relative;
  background: none;
  border: none;
  color: #495057;
  font-size: 1.25rem;
  padding: 0.5rem;
  cursor: pointer;
}

.g4h-navbar .btn-cart .cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background: #FF7A59;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g4h-navbar .btn-login {
  border: 2px solid #FF7A59;
  color: #FF7A59;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.4rem 1.25rem;
  transition: all 0.3s ease;
}

.g4h-navbar .btn-login:hover {
  background: #FF7A59;
  color: #FFFFFF;
}

.g4h-navbar .btn-signup {
  background: #FF7A59;
  color: #FFFFFF;
  font-weight: 600;
  border: 2px solid #FF7A59;
  border-radius: 50rem;
  padding: 0.4rem 1.25rem;
  transition: all 0.3s ease;
}

.g4h-navbar .btn-signup:hover {
  background: #E8624A;
  border-color: #E8624A;
  box-shadow: 0 8px 24px rgba(255, 122, 89, 0.3);
}

.g4h-hero {
  background: linear-gradient(135deg, #2D3E50 0%, #213343 50%, #192632 100%);
  color: #FFFFFF;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.g4h-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.g4h-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 189, 165, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.g4h-hero .hero-content {
  position: relative;
  z-index: 2;
}

.g4h-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50rem;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.g4h-hero h1 {
  color: #FFFFFF;
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  max-width: 600px;
}

.g4h-hero h1 .text-gradient {
  background: linear-gradient(135deg, #FF7A59, #FF8F73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g4h-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.g4h-hero .hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.g4h-hero .hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.g4h-hero .hero-stats .stat {
  text-align: center;
}

.g4h-hero .hero-stats .stat .stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FF7A59;
}

.g4h-hero .hero-stats .stat .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.g4h-hero .hero-visual {
  position: relative;
  z-index: 2;
}

.g4h-hero .hero-visual .hero-mockup {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.g4h-hero .hero-visual .hero-mockup .mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}

.g4h-hero .hero-visual .hero-mockup .mockup-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.g4h-hero .hero-visual .hero-mockup .mockup-header span:first-child {
  background: #FF5F57;
}

.g4h-hero .hero-visual .hero-mockup .mockup-header span:nth-child(2) {
  background: #FFBD2E;
}

.g4h-hero .hero-visual .hero-mockup .mockup-header span:nth-child(3) {
  background: #28CA41;
}

.g4h-hero .hero-visual .hero-mockup .mockup-body {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  padding: 1.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.g4h-hero .hero-visual .hero-mockup .mockup-body .mockup-widget {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.375rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.g4h-hero .hero-visual .hero-mockup .mockup-body .mockup-widget .widget-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.g4h-hero .hero-visual .hero-mockup .mockup-body .mockup-widget .widget-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.g4h-hero .hero-visual .hero-mockup .mockup-body .mockup-widget .widget-bar .bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.g4h-hero .hero-visual .hero-mockup .mockup-body .mockup-widget .widget-bar .bar-fill.orange {
  background: #FF7A59;
}

.g4h-hero .hero-visual .hero-mockup .mockup-body .mockup-widget .widget-bar .bar-fill.teal {
  background: #00BDA5;
}

.g4h-hero .hero-visual .hero-mockup .mockup-body .mockup-widget .widget-bar .bar-fill.blue {
  background: #527191;
}

.btn-g4h {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-g4h-primary {
  background: #FF7A59;
  color: #FFFFFF;
  border-color: #FF7A59;
}

.btn-g4h-primary:hover {
  background: #E8624A;
  border-color: #E8624A;
  box-shadow: 0 8px 24px rgba(255, 122, 89, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-g4h-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-g4h-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-g4h-outline-dark {
  background: transparent;
  color: #2D3E50;
  border-color: #DEE2E6;
}

.btn-g4h-outline-dark:hover {
  border-color: #FF7A59;
  color: #FF7A59;
}

.btn-g4h-white {
  background: #FFFFFF;
  color: #FF7A59;
  border-color: #FFFFFF;
}

.btn-g4h-white:hover {
  background: #F8F9FA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-g4h-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-g4h-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1.125rem;
}

.btn-g4h-success {
  background: #00BDA5;
  color: #FFFFFF;
  border-color: #00BDA5;
}

.btn-g4h-success:hover {
  background: #009481;
  border-color: #009481;
  color: #FFFFFF;
}

.btn-g4h-danger {
  background: #F2545B;
  color: #FFFFFF;
  border-color: #F2545B;
}

.btn-g4h-danger:hover {
  background: #ef2e37;
  border-color: #ef2e37;
  color: #FFFFFF;
}

.g4h-section {
  padding: 5rem 0;
}

.g4h-section-gray {
  background: #F8F9FA;
}

.g4h-section-dark {
  background: #2D3E50;
  color: #FFFFFF;
}

.g4h-section-dark h2, .g4h-section-dark h3, .g4h-section-dark h4 {
  color: #FFFFFF;
}

.g4h-section-orange-bg {
  background: #FFF5F2;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFF5F2;
  color: #FF7A59;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: #6C757D;
  font-size: 1.125rem;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #FF7A59;
  transform: translateY(-4px);
}

.product-card:hover .product-card-img .card-overlay {
  opacity: 1;
}

.product-card .product-card-img {
  position: relative;
  background: linear-gradient(135deg, #bccad9, #dde4ec);
  padding: 2rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card .product-card-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-card .product-card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 62, 80, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card .product-card-img .product-icon {
  width: 80px;
  height: 80px;
}

.product-card .product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-card-body .product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF7A59;
  margin-bottom: 0.5rem;
}

.product-card .product-card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.product-card .product-card-body h3 a {
  color: #2D3E50;
}

.product-card .product-card-body h3 a:hover {
  color: #FF7A59;
}

.product-card .product-card-body p {
  color: #6C757D;
  font-size: 0.875rem;
  flex: 1;
}

.product-card .product-card-body .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E9ECEF;
}

.product-card .product-card-body .product-meta .product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2D3E50;
}

.product-card .product-card-body .product-meta .product-price .price-free {
  color: #00BDA5;
}

.product-card .product-card-body .product-meta .product-price .price-period {
  font-size: 0.875rem;
  font-weight: 400;
  color: #99A1A8;
}

.product-card .product-card-body .product-meta .product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #FFAB00;
  font-size: 0.875rem;
}

.product-card .product-card-body .product-meta .product-rating span {
  color: #6C757D;
  font-weight: 500;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-item .feature-icon {
  width: 64px;
  height: 64px;
  background: #FFF5F2;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.feature-item .feature-icon svg {
  width: 28px;
  height: 28px;
  color: #FF7A59;
}

.feature-item:hover .feature-icon {
  background: #FF7A59;
  transform: scale(1.1);
}

.feature-item:hover .feature-icon svg {
  color: #FFFFFF;
}

.feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: #6C757D;
  font-size: 0.875rem;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #FF7A59;
}

.testimonial-card .testimonial-stars {
  color: #FFAB00;
  margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
  color: #495057;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A59, #FF8F73);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-card .testimonial-author .author-info .author-name {
  font-weight: 600;
  color: #2D3E50;
}

.testimonial-card .testimonial-author .author-info .author-role {
  font-size: 0.875rem;
  color: #99A1A8;
}

.g4h-cta {
  background: linear-gradient(135deg, #FF7A59 0%, #E8624A 100%);
  color: #FFFFFF;
  padding: 4rem 0;
  text-align: center;
}

.g4h-cta h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.g4h-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle .toggle-label {
  font-weight: 500;
  color: #6C757D;
}

.pricing-toggle .toggle-label.active {
  color: #2D3E50;
  font-weight: 600;
}

.pricing-toggle .toggle-switch {
  width: 56px;
  height: 30px;
  background: #DEE2E6;
  border-radius: 50rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle .toggle-switch.active {
  background: #FF7A59;
}

.pricing-toggle .toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.pricing-toggle .toggle-switch.active::after {
  transform: translateX(26px);
}

.pricing-toggle .save-badge {
  background: #00BDA5;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50rem;
  text-transform: uppercase;
}

.pricing-card {
  background: #FFFFFF;
  border: 2px solid #E9ECEF;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: #FF7A59;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF7A59;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 50rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card .pricing-icon {
  width: 56px;
  height: 56px;
  background: #FFF5F2;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.pricing-card .pricing-icon svg {
  width: 24px;
  height: 24px;
  color: #FF7A59;
}

.pricing-card .pricing-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2D3E50;
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-desc {
  color: #99A1A8;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-card .pricing-amount {
  margin-bottom: 1.5rem;
}

.pricing-card .pricing-amount .amount {
  font-size: 3rem;
  font-weight: 800;
  color: #2D3E50;
}

.pricing-card .pricing-amount .currency {
  font-size: 1.125rem;
  font-weight: 600;
  vertical-align: super;
  color: #6C757D;
}

.pricing-card .pricing-amount .period {
  font-size: 0.875rem;
  color: #99A1A8;
}

.pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-card .pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #495057;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-card .pricing-features li svg {
  width: 18px;
  height: 18px;
  color: #00BDA5;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .pricing-features li.disabled {
  color: #CED4DA;
}

.pricing-card .pricing-features li.disabled svg {
  color: #DEE2E6;
}

.g4h-account {
  background: #F8F9FA;
  min-height: 100vh;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.account-sidebar {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  overflow: hidden;
}

.account-sidebar .account-user {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #E9ECEF;
}

.account-sidebar .account-user .user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A59, #FF8F73);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}

.account-sidebar .account-user .user-name {
  font-weight: 600;
  color: #2D3E50;
}

.account-sidebar .account-user .user-email {
  font-size: 0.875rem;
  color: #99A1A8;
}

.account-sidebar .account-nav {
  padding: 0.75rem 0;
}

.account-sidebar .account-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #495057;
  font-weight: 500;
  transition: all 0.15s ease;
  cursor: pointer;
  border-left: 3px solid transparent;
}

.account-sidebar .account-nav .nav-item svg {
  width: 18px;
  height: 18px;
  color: #99A1A8;
}

.account-sidebar .account-nav .nav-item:hover, .account-sidebar .account-nav .nav-item.active {
  color: #FF7A59;
  background: #FFF5F2;
  border-left-color: #FF7A59;
  text-decoration: none;
}

.account-sidebar .account-nav .nav-item:hover svg, .account-sidebar .account-nav .nav-item.active svg {
  color: #FF7A59;
}

.account-card {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.account-card .card-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E9ECEF;
}

.account-card .card-header-custom h3 {
  font-size: 1.375rem;
  margin: 0;
}

.subscription-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid #E9ECEF;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  transition: all 0.15s ease;
}

.subscription-item:hover {
  border-color: #FF7A59;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.subscription-item .sub-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subscription-item .sub-info .sub-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  background: #FFF5F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscription-item .sub-info .sub-icon svg {
  width: 22px;
  height: 22px;
  color: #FF7A59;
}

.subscription-item .sub-info .sub-details .sub-name {
  font-weight: 600;
  color: #2D3E50;
}

.subscription-item .sub-info .sub-details .sub-plan {
  font-size: 0.875rem;
  color: #99A1A8;
}

.subscription-item .sub-status {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subscription-item .sub-status .status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50rem;
}

.subscription-item .sub-status .status-badge.active {
  background: rgba(0, 189, 165, 0.1);
  color: #00BDA5;
}

.subscription-item .sub-status .status-badge.free {
  background: #F1F3F5;
  color: #6C757D;
}

.subscription-item .sub-status .status-badge.expired {
  background: rgba(242, 84, 91, 0.1);
  color: #F2545B;
}

.invoice-table {
  width: 100%;
}

.invoice-table th {
  font-size: 0.875rem;
  font-weight: 600;
  color: #99A1A8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #E9ECEF;
}

.invoice-table td {
  padding: 1rem;
  border-bottom: 1px solid #F1F3F5;
  font-size: 0.875rem;
  vertical-align: middle;
}

.invoice-table .invoice-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50rem;
}

.invoice-table .invoice-status.paid {
  background: rgba(0, 189, 165, 0.1);
  color: #00BDA5;
}

.invoice-table .invoice-status.pending {
  background: rgba(255, 171, 0, 0.1);
  color: #cc8900;
}

.g4h-cart {
  background: #F8F9FA;
  min-height: 100vh;
  padding: 2rem 0 4rem;
}

.cart-item {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.15s ease;
}

.cart-item:hover {
  border-color: #DEE2E6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cart-item .cart-item-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  background: #FFF5F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item .cart-item-icon svg {
  width: 28px;
  height: 28px;
  color: #FF7A59;
}

.cart-item .cart-item-info {
  flex: 1;
}

.cart-item .cart-item-info .cart-item-name {
  font-weight: 600;
  color: #2D3E50;
}

.cart-item .cart-item-info .cart-item-plan {
  font-size: 0.875rem;
  color: #99A1A8;
}

.cart-item .cart-item-price {
  font-weight: 700;
  color: #2D3E50;
  font-size: 1.125rem;
  text-align: right;
}

.cart-item .cart-item-price .original-price {
  text-decoration: line-through;
  color: #CED4DA;
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
}

.cart-item .cart-item-remove {
  background: none;
  border: none;
  color: #CED4DA;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.15s ease;
}

.cart-item .cart-item-remove:hover {
  color: #F2545B;
}

.cart-summary {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E9ECEF;
}

.cart-summary .summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6C757D;
}

.cart-summary .summary-line.total {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2D3E50;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #E9ECEF;
}

.cart-summary .promo-input {
  display: flex;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.cart-summary .promo-input input {
  flex: 1;
  border: 1px solid #DEE2E6;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.cart-summary .promo-input input:focus {
  outline: none;
  border-color: #FF7A59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.1);
}

.cart-summary .stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #F1F3F5;
  font-size: 0.75rem;
  color: #99A1A8;
}

.stripe-form {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  padding: 2rem;
}

.stripe-form .form-group {
  margin-bottom: 1.25rem;
}

.stripe-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

.stripe-form .form-group .form-control {
  border: 1px solid #DEE2E6;
  border-radius: 0.375rem;
  padding: 0.65rem 0.9rem;
  font-size: 1rem;
  transition: all 0.15s ease;
}

.stripe-form .form-group .form-control:focus {
  border-color: #FF7A59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.1);
}

.stripe-form .card-element {
  border: 1px solid #DEE2E6;
  border-radius: 0.375rem;
  padding: 0.75rem 0.9rem;
  background: #FFFFFF;
  transition: all 0.15s ease;
}

.stripe-form .card-element.focused {
  border-color: #FF7A59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.1);
}

.product-hero {
  background: linear-gradient(135deg, #2D3E50, #213343);
  color: #FFFFFF;
  padding: 4rem 0;
}

.product-hero .breadcrumb {
  margin-bottom: 1.5rem;
}

.product-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.product-hero .breadcrumb a:hover {
  color: #FFFFFF;
}

.product-hero .breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

.product-hero .breadcrumb .current {
  color: #FFFFFF;
}

.product-hero h1 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.product-hero .product-tagline {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.product-hero .product-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-hero .product-badges .badge-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50rem;
  padding: 0.3rem 0.9rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-tabs .nav-tabs {
  border-bottom: 2px solid #E9ECEF;
  gap: 0;
}

.product-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: #6C757D;
  font-weight: 500;
  padding: 1rem 1.5rem;
  transition: all 0.15s ease;
}

.product-tabs .nav-tabs .nav-link:hover {
  color: #FF7A59;
  border-bottom-color: rgba(255, 122, 89, 0.3);
}

.product-tabs .nav-tabs .nav-link.active {
  color: #FF7A59;
  border-bottom-color: #FF7A59;
  background: transparent;
}

.product-screenshots .screenshot-main {
  background: #F8F9FA;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #E9ECEF;
  position: relative;
}

.product-screenshots .screenshot-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  transition: opacity 0.3s ease;
}

.product-screenshots .screenshot-main .screenshot-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(45,62,80,0.85));
  color: #fff;
  padding: 2rem 1rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}

.product-screenshots .screenshot-thumbs {
  display: flex;
  gap: 0.5rem;
}

.product-screenshots .screenshot-thumbs .thumb {
  width: 80px;
  height: 56px;
  background: #E9ECEF;
  border-radius: 0.375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.product-screenshots .screenshot-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-screenshots .screenshot-thumbs .thumb.active,
.product-screenshots .screenshot-thumbs .thumb:hover {
  border-color: #FF7A59;
  box-shadow: 0 0 0 2px rgba(255,122,89,0.2);
}

.faq-item {
  border: 1px solid #E9ECEF;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.15s ease;
}

.faq-item.active {
  border-color: #FF7A59;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  cursor: pointer;
  font-weight: 600;
  color: #2D3E50;
  transition: all 0.15s ease;
}

.faq-item .faq-question:hover {
  background: #F8F9FA;
}

.faq-item .faq-question .faq-toggle {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  color: #CED4DA;
}

.active .faq-item .faq-question .faq-toggle {
  transform: rotate(180deg);
  color: #FF7A59;
}

.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #6C757D;
  line-height: 1.7;
  display: none;
}

.active .faq-item .faq-answer {
  display: block;
}

.contact-form {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 0.75rem;
  padding: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

.contact-form .form-group .form-control, .contact-form .form-group textarea.form-control {
  border: 1px solid #DEE2E6;
  border-radius: 0.375rem;
  padding: 0.65rem 0.9rem;
}

.contact-form .form-group .form-control:focus, .contact-form .form-group textarea.form-control:focus {
  border-color: #FF7A59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.1);
}

.contact-form .form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.g4h-footer {
  background: #1C2A3A;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.g4h-footer h5 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

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

.g4h-footer ul li {
  margin-bottom: 0.5rem;
}

.g4h-footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: all 0.15s ease;
}

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

.g4h-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.g4h-footer .footer-brand .brand-accent {
  color: #FF7A59;
}

.g4h-footer .footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.g4h-footer .footer-socials {
  display: flex;
  gap: 0.75rem;
}

.g4h-footer .footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.g4h-footer .footer-socials a:hover {
  background: #FF7A59;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.g4h-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.g4h-footer .footer-bottom .footer-links {
  display: flex;
  gap: 1.5rem;
}

.g4h-footer .footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.5);
}

.g4h-footer .footer-bottom .footer-links a:hover {
  color: #FFFFFF;
}

.text-orange {
  color: #FF7A59;
}

.text-teal {
  color: #00BDA5;
}

.bg-orange-light {
  background: #FFF5F2;
}

.badge-g4h {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50rem;
}

.badge-g4h-orange {
  background: #FFF5F2;
  color: #FF7A59;
}

.badge-g4h-teal {
  background: rgba(0, 189, 165, 0.1);
  color: #00BDA5;
}

.badge-g4h-blue {
  background: rgba(45, 62, 80, 0.1);
  color: #2D3E50;
}

@media (max-width: 991px) {
  .g4h-hero {
    padding: 4rem 0 3rem;
  }
  .g4h-hero h1 {
    font-size: 2.5rem;
  }
  .g4h-hero .hero-visual {
    margin-top: 3rem;
  }
  .g4h-hero .hero-stats {
    gap: 1.5rem;
  }
  .section-header h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .g4h-hero {
    padding: 3rem 0 2.5rem;
  }
  .g4h-hero h1 {
    font-size: 2rem;
  }
  .g4h-hero .hero-subtitle {
    font-size: 1rem;
  }
  .g4h-hero .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .g4h-section {
    padding: 3rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-header h2 {
    font-size: 1.625rem;
  }
  .pricing-card {
    padding: 1.75rem 1.25rem;
  }
  .g4h-footer .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============================================
   AUTH PAGES (Login, Signup, Forgot Password)
   ============================================ */
.g4h-auth {
  min-height: calc(100vh - 200px);
  padding: 4rem 0;
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
}

.auth-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  border: 1px solid #E9ECEF;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 1.75rem;
  color: #2D3E50;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: #6C757D;
  font-size: 1rem;
  margin: 0;
}

.auth-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFF5F2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.auth-icon-success {
  background: rgba(0, 189, 165, 0.1);
}

.auth-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E9ECEF;
  border-radius: 0.5rem;
  background: #FFFFFF;
  color: #343A40;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.btn-social:hover {
  border-color: #CED4DA;
  background: #F8F9FA;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #99A1A8;
  font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E9ECEF;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.auth-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #495057;
}

.auth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E9ECEF;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #343A40;
  background: #FFFFFF;
  transition: all 0.15s ease;
}

.auth-input::placeholder {
  color: #CED4DA;
}

.auth-input:focus {
  outline: none;
  border-color: #FF7A59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.15);
}

.auth-input.is-invalid {
  border-color: #F2545B;
  box-shadow: 0 0 0 3px rgba(242, 84, 91, 0.1);
}

.auth-password-wrap {
  position: relative;
}

.auth-password-wrap .auth-input {
  padding-right: 3rem;
}

.auth-toggle-pwd {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #99A1A8;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  transition: all 0.15s ease;
}

.auth-toggle-pwd:hover {
  color: #495057;
}

.auth-forgot {
  text-align: right;
  margin-top: 0.25rem;
}

.auth-forgot a {
  font-size: 0.875rem;
  color: #FF7A59;
  font-weight: 500;
}

.auth-forgot a:hover {
  color: #E8624A;
  text-decoration: underline;
}

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.auth-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #FF7A59;
  cursor: pointer;
}

.auth-check label {
  font-size: 0.875rem;
  color: #495057;
  cursor: pointer;
  line-height: 1.5;
}

.auth-check label a {
  color: #FF7A59;
  font-weight: 500;
}

.auth-check label a:hover {
  text-decoration: underline;
}

.btn-auth-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: #FF7A59;
  color: #FFFFFF;
  border: 2px solid #FF7A59;
  border-radius: 50rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-auth-primary:hover {
  background: #E8624A;
  border-color: #E8624A;
  box-shadow: 0 8px 24px rgba(255, 122, 89, 0.3);
  transform: translateY(-1px);
}

.btn-auth-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-footer {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F3F5;
  font-size: 0.875rem;
  color: #6C757D;
}

.auth-footer a {
  color: #FF7A59;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.auth-footer a:hover {
  color: #E8624A;
  text-decoration: underline;
}

.password-strength {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.strength-bars {
  display: flex;
  gap: 4px;
  flex: 1;
}

.strength-bar {
  height: 4px;
  border-radius: 2px;
  background: #E9ECEF;
  flex: 1;
  transition: all 0.15s ease;
}

.strength-bar.weak { background: #F2545B; }
.strength-bar.fair { background: #FFAB00; }
.strength-bar.good { background: #FF7A59; }
.strength-bar.strong { background: #00BDA5; }

.strength-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #99A1A8;
  white-space: nowrap;
}

.auth-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #495057;
  line-height: 1.6;
}

.auth-info-box svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #99A1A8;
}

.auth-info-box a {
  color: #FF7A59;
  font-weight: 500;
}

.auth-error {
  background: rgba(242, 84, 91, 0.08);
  border: 1px solid rgba(242, 84, 91, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #F2545B;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* Auth alerts (success/error) */
.auth-alert {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-alert svg {
  flex-shrink: 0;
}

.auth-alert-success {
  background: rgba(0, 189, 165, 0.08);
  border: 1px solid rgba(0, 189, 165, 0.25);
  color: #00856F;
}

.auth-alert-error {
  background: rgba(242, 84, 91, 0.08);
  border: 1px solid rgba(242, 84, 91, 0.25);
  color: #D63B42;
}

@media (max-width: 767px) {
  .auth-card {
    padding: 1.75rem 1.25rem;
  }
  .auth-header h1 {
    font-size: 1.5rem;
  }
}

/* ========== LANGUAGE SWITCHER ========== */
.btn-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F3F5;
  color: #2D3E50;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-lang:hover {
  background: #FF7A59;
  color: #FFFFFF;
}

/* ========== PRODUCT STATUS BADGES ========== */
.product-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.product-status-badge.status-active {
  background: rgba(0, 189, 165, 0.12);
  color: #00A893;
  border: 1px solid rgba(0, 189, 165, 0.25);
}

.product-status-badge.status-beta {
  background: rgba(255, 171, 0, 0.12);
  color: #D49200;
  border: 1px solid rgba(255, 171, 0, 0.25);
}

.product-status-badge.status-coming-soon {
  background: rgba(124, 92, 252, 0.12);
  color: #6B4FD8;
  border: 1px solid rgba(124, 92, 252, 0.25);
}

/* ========== COMING SOON PRODUCT CARDS ========== */
.product-card.product-card-coming-soon .product-card-img {
  position: relative;
}

.product-card.product-card-coming-soon .product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: inherit;
}

.coming-soon-overlay-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  color: #6B4FD8;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 25px;
  letter-spacing: 0.02em;
  z-index: 2;
  position: relative;
}

.btn-g4h-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid #6B4FD8;
  color: #6B4FD8;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-g4h-outline-sm:hover {
  background: #6B4FD8;
  color: #FFFFFF;
}

/* ========== WAITLIST FORM ========== */
.waitlist-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 3rem 0;
}

.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 2.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.waitlist-form .form-control {
  border: 1.5px solid #DEE2E6;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.waitlist-form .form-control:focus {
  border-color: #FF7A59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.1);
}

/* ========== COMING SOON PRODUCT PAGE ========== */
.coming-soon-hero {
  text-align: center;
  padding: 5rem 0 3rem;
}

.coming-soon-hero .cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(124, 92, 252, 0.1);
  color: #6B4FD8;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.coming-soon-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.coming-soon-hero .cs-description {
  font-size: 1.1rem;
  color: #6C757D;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ========== PRICING PER-USER (App4Spot) ========== */
.pricing-per-user-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 189, 165, 0.08);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #00A893;
  margin-top: 0.5rem;
}

.pricing-packs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pricing-packs .pack-option {
  padding: 0.3rem 0.75rem;
  border: 1.5px solid #DEE2E6;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2D3E50;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-packs .pack-option:hover,
.pricing-packs .pack-option.active {
  border-color: #FF7A59;
  background: rgba(255, 122, 89, 0.06);
  color: #FF7A59;
}
