:root {
  --primary: #2d6b41;
  --primary-dark: #2d6b41;
  --primary-light: #e6f4ea;
  --secondary: #2d6b41;
  /* alias for compat */
  --accent: #f59e0b;
  --text: #0f172a;
  --text-light: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow: var(--shadow-md);
  /* alias for compat */
  --radius: 1.5rem;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: var(--font-heading);
  --font-main: var(--font-body);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, #2d6b41 0%, #2d6b41 100%);
  --gradient: linear-gradient(135deg, #2d6b41 0%, #2d6b41 100%);
  /* alias for compat */
  --gradient-soft: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  --glass: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.3);
  --dark-bg: #0f172a;
  /* alias for compat */
  --footer-bg: #0f172a;
  /* alias for compat */
}

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

html,
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Hero headings must stay white on dark bg */
.hero h1,
.hero h2,
.hero h3 {
  color: white;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.9rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 5%;
  box-shadow: var(--shadow);
}

.logo img {
  height: 36px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .logo img {
  height: 30px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.nav-links a.login-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  background: rgba(56, 135, 82, 0.08);
  transition: var(--transition);
}

.nav-links a.login-link:hover {
  background: rgba(56, 135, 82, 0.15);
  color: var(--primary-dark);
}

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white !important;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 6rem 5% 2rem;
  transition: left 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .login-link {
  color: var(--primary);
  background: rgba(56, 135, 82, 0.08);
  border-radius: 50px;
  text-align: center;
}

.mobile-menu .nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  width: 100%;
}

/* Hero Section */
/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  color: white;
  margin-top: 70px;
  background: url("../img/landing/hero-bg.445ba13e7a9e.jpg") no-repeat center center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(34, 82, 50), rgba(11, 66, 47, 0.88));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #fff, #d4f4dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 90%;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: var(--primary);
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-cta i {
  font-size: 1.4rem;
}

.trust-badges {
  display: flex;
  gap: 1.8rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  margin-left: 0;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.badge i {
  color: #fbbf24;
}

/* === Global Section Title ==================================== */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* utility */
.text-center {
  text-align: center;
}

/* Dark-section (legacy Growth / hero-dark blocks) */
.dark-section {
  padding: 6rem 5%;
  background: var(--dark-bg);
  color: white;
  text-align: center;
}

.dark-section .section-title {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.8rem;
}

.dark-section .section-title span {
  color: var(--accent);
}

.dark-section>p {
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}

/* Growth Section (legacy .dark-section override) */

/* Featured Section — overrides .dark-section to use light palette */
.featured {
  padding: 2.5rem 5% 8rem;
  background: var(--bg) !important;
  color: var(--text) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.featured>p {
  color: var(--text-light) !important;
}

.featured .section-title {
  color: var(--text) !important;
}

.featured-label {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 4rem auto 0;
}

.featured-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 2.5rem;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

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

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #fef3c7;
  color: #d97706;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-image {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  background: white;
  padding: 1rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.75rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  color: #fbbf24;
  font-size: 0.9rem;
}

.rating span {
  color: var(--text-light);
  margin-left: 0.25rem;
  font-weight: 500;
}

.featured-card h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin: 0;
}

.featured-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.featured-card p i {
  color: var(--primary);
}

.featured-card .view-btn {
  background: var(--primary-light);
  color: var(--primary);
  padding: 1.1rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 1rem;
  display: inline-block;
}

.featured-card .view-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56, 135, 82, 0.2);
}

/* FAQ Section */
.faq {
  padding: 4rem 5% 3.5rem;
  background: var(--bg);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
}

.faq-item.active .faq-question {
  color: var(--primary);
  background: var(--primary-light);
}

.faq-answer {
  padding: 0 2.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.faq-item.active .faq-answer {
  padding: 1.5rem 2.5rem 2rem;
  max-height: 500px;
}

.faq-question .icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* Trust Partners Section */
.trust-partners {
  padding: 3rem 5%;
  background: white;
  text-align: center;
}

.trust-partners .section-title {
  font-size: 1.8rem;
}

.trust-partners .section-title {
  margin-bottom: 1.5rem;
}

.trust-partners>p {
  color: var(--text-light);
  margin-bottom: 4rem;
  font-size: 1.25rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-item {
  background: var(--bg);
  padding: 0.8rem 1.5rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.partner-item:hover {
  transform: translateY(-5px);
  background: white;
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.partner-item .emoji {
  font-size: 1.4rem;
}

.partner-item span {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

/* Features Section */
.features {
  padding: 8rem 5% 4rem;
  background: white;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(56, 135, 82, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.features .section-title {
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: var(--transition);
  margin-bottom: 0;
  box-shadow: none;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 0;
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0 1.5rem;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.testimonial-marquee-wrapper {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  width: 100%;
}

.testimonial-marquee-content {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 1rem;
  width: max-content;
  animation: testimonial-scroll 60s linear infinite;
}

.testimonial-marquee-content:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  width: 380px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  white-space: normal;
}

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

.testimonial-card .author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-card .author span {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
  padding: 4rem 5% 8rem;
  background: white;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.pricing-header .section-title {
  margin-bottom: 1.5rem;
}

.pricing-header p {
  font-size: 1.25rem;
  color: var(--text-light);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  background: var(--bg);
  padding: 0.5rem;
  border-radius: 99px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}

.toggle-btn {
  padding: 0.75rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}

.toggle-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: 2.5rem;
  padding: 4rem 2.5rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

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

.price-card.popular {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  box-shadow: 0 30px 60px rgba(56, 135, 82, 0.15);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #92400e;
  padding: 0.5rem 1.5rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.price-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.price-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.price-saving {
  color: var(--primary) !important;
  font-size: 0.9rem;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: -0.05em;
  display: flex;
  align-items: baseline;
}

.price small {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-left: 0.5rem;
  font-weight: 500;
}

.price-features {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  flex-grow: 1;
}

.price-features li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 1rem;
  color: var(--text);
}

.price-features li:last-child {
  border: none;
}

.price-features li i {
  font-size: 1.15rem;
  color: var(--primary);
}

.price-features li i.cross {
  color: #cbd5e1;
}

.price-cta {
  background: var(--bg);
  color: var(--text);
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.price-card.popular .price-cta {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

.price-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-card.popular .price-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(56, 135, 82, 0.3);
}

/* Full Feature Comparison Table */
.comparison-table-container {
  background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
  padding: clamp(2rem, 6vw, 3.5rem) 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(56, 135, 82, 0.08);
  max-width: 1400px;
  margin: 5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(56, 135, 82, 0.1);
}

.comparison-table-container .section-title {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
  margin-bottom: clamp(1.5rem, 4vw, 2rem) !important;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table th,
.comparison-table td {
  padding: clamp(1rem, 2vw, 1.5rem);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  letter-spacing: 0.5px;
  color: white;
}

.comparison-table th.plan-header {
  text-align: center;
  padding-top: clamp(2rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.2rem, 2vw, 1.8rem);
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.comparison-table th.plan-header.popular {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: scaleY(1.08);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
  padding-top: clamp(2.8rem, 4vw, 3.2rem);
}

.comparison-table th.plan-header.popular::before {
  content: "⭐ MOST POPULAR";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.comparison-table td {
  color: var(--text);
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--primary-dark);
  width: 38%;
  word-wrap: break-word;
  hyphens: auto;
}

.comparison-table tbody tr:nth-child(odd):not(.category) {
  background-color: #fafbfc;
}

.comparison-table tbody tr:nth-child(even):not(.category) {
  background-color: white;
}

.comparison-table tbody tr:hover:not(.category) {
  background-color: rgba(56, 135, 82, 0.05);
  transition: background-color 0.25s ease;
}

.comparison-table tr.highlight-row {
  background: linear-gradient(90deg, rgba(56, 135, 82, 0.08) 0%, rgba(168, 213, 185, 0.08) 100%);
  font-weight: 600;
}

.comparison-table tr.highlight-row:hover {
  background: linear-gradient(90deg, rgba(56, 135, 82, 0.12) 0%, rgba(168, 213, 185, 0.12) 100%);
}

.comparison-table td.category {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(56, 135, 82, 0.8) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: clamp(0.8rem, 2vw, 1.2rem) !important;
  border-left: 5px solid var(--accent);
}

.plan-header {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.plan-header.popular {
  position: relative;
}

.check {
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
}

.cross {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  opacity: 0.6;
}

.fa-check {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {
  .comparison-table-container {
    padding: clamp(3rem, 8vw, 5rem) 1rem;
    margin: 2.5rem 5% 0;
    border-radius: 1.5rem;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table th,
  .comparison-table td,
  .comparison-table tr {
    display: block;
  }

  .comparison-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .comparison-table tr {
    margin-bottom: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 1.2rem;
    padding: 0;
    background: white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .comparison-table tr.highlight-row {
    background: linear-gradient(135deg, rgba(56, 135, 82, 0.05), rgba(168, 213, 185, 0.05)) !important;
    border-color: var(--primary-light);
  }

  .comparison-table td.category {
    background: linear-gradient(90deg, var(--primary) 0%, rgba(56, 135, 82, 0.9) 100%) !important;
    color: white !important;
    padding: 1rem 1.2rem !important;
    margin-bottom: 0;
    border: none;
    border-radius: 1.2rem;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 16px rgba(56, 135, 82, 0.15) !important;
  }

  .comparison-table td {
    border: none;
    position: relative;
    padding: 1rem 1.2rem !important;
    text-align: right;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: static;
    width: 50%;
    font-weight: 600;
    color: var(--text);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    white-space: normal;
    word-wrap: break-word;
    text-align: left;
    padding-right: 1rem;
  }

  .comparison-table td:first-child {
    padding: 1.5rem 1.2rem !important;
    text-align: left;
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1rem);
    color: var(--primary);
    margin-bottom: 0;
    display: block;
  }

  .comparison-table td:first-child::before {
    display: none;
  }

  .comparison-table tr:hover {
    box-shadow: 0 8px 20px rgba(56, 135, 82, 0.12);
  }

  .comparison-table td strong {
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: block;
    word-wrap: break-word;
    hyphens: auto;
    margin-bottom: 0.5rem;
  }

  .check,
  .fa-check {
    font-size: 1.4rem;
  }

  .cross {
    font-size: 1.2rem;
  }

  .plan-header::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .comparison-table-container {
    padding: 1.5rem 1rem;
    margin: 2rem 5% 0;
  }

  .comparison-table td {
    padding: 0.8rem 1rem !important;
    font-size: 0.85rem;
  }

  .comparison-table td::before {
    width: 55%;
    font-size: 0.8rem;
    padding-right: 0.8rem;
  }

  .comparison-table tr {
    margin-bottom: 1.2rem;
  }
}

/* ===== END of main styles – old duplicates removed ===== */


/* Footer Section */
.footer {
  background: #0f172a;
  color: white;
  padding: 8rem 5% 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.footer-col h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.footer-col p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Growth Section */
.growth {
  padding: 3rem 5%;
  background: #0f172a;
  color: white;
  text-align: center;
  position: relative;
}

.growth .section-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.growth-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.state {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  color: #94a3b8;
  transition: var(--transition);
  font-size: 0.95rem;
}

.state:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(56, 135, 82, 0.3);
}

.more-coming {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748b;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet / Landscape */
@media (max-width: 1024px) {

  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .logo img {
    height: 32px;
  }

  .navbar {
    padding: 0.8rem 5%;
  }

  /* Hero */
  .hero {
    padding: 0 5%;
    /* side padding only — top/bottom handled by content */
    min-height: auto;
    margin-top: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    min-height: auto;
  }

  .hero-text {
    padding: 4.5rem 0 2rem;
    /* breathing room below fixed nav */
  }

  .hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }

  .hero-text p {
    max-width: 100%;
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .trust-badges {
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
  }

  .hero-image {
    margin-right: 0;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
  }

  .trust-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .badge {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  /* Featured */
  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card.popular {
    transform: none;
  }

  .pricing-toggle {
    flex-flow: row wrap;
    justify-content: center;
    width: fit-content;
    margin: 2.5rem auto 0;
  }

  /* Partners */
  .partners-grid {
    gap: 1.5rem;
  }

  /* Footer */
  .footer {
    padding: 5rem 5% 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 640px) {

  /* Global sections */
  .hero,
  .features,
  .testimonials,
  .featured,
  .pricing,
  .faq,
  .trust-partners,
  .growth {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  /* Hero mobile */
  .hero {
    padding: 0 5%;
  }

  .hero-text {
    padding: 3.5rem 0 1rem;
    /* clear the fixed navbar */
  }

  .hero-text h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .hero-image {
    margin-right: 0;
    justify-content: center;
    margin-bottom: 2.5rem;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .trust-badges {
    gap: 0.6rem;
  }

  .badge {
    font-size: 0.78rem;
    padding: 0.5rem 0.8rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Featured */
  .featured-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .price-card {
    padding: 2.5rem 1.5rem;
  }

  .price {
    font-size: 2.8rem;
  }

  .pricing-toggle {
    width: 100%;
  }

  .toggle-btn {
    flex: 1;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
  }

  /* Partners */
  .partners-grid {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .partner-item {
    width: 100%;
    justify-content: center;
  }

  /* Growth */
  .growth-grid {
    gap: 0.75rem;
  }

  .state {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer {
    padding: 4rem 5% 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .footer-bottom p {
    margin-bottom: 0.5rem;
  }
}





.floating-notice {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 380px;
  max-width: 90vw;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 9999;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: var(--transition);
  color: var(--text);
  backdrop-filter: blur(8px);
  /* subtle glass effect if browser supports */
}

.floating-notice.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.notice-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
}

.notice-content {
  padding: 20px 24px 20px 36px;
  /* extra left padding for accent bar */
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.notice-icon {
  font-size: 1.4em;
  line-height: 1;
}

.notice-header strong {
  color: var(--primary);
  font-size: 1.18em;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.notice-content p {
  margin: 0;
  font-size: 0.95em;
  color: var(--text-light);
  line-height: 1.5;
}

.notice-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border: none;
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(56, 135, 82, 0.15);
}

.notice-close:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* Smoother pop-in with slight overshoot */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.92);
  }

  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04);
  }

  80% {
    transform: translateY(4px) scale(0.98);
  }

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

.floating-notice.show {
  animation: popIn 0.7s forwards;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .floating-notice {
    bottom: 20px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
}

/* ========== PARTNERS PAGE RESPONSIVE STYLES ========== */
/* Hero section responsive for partners page */
@media (max-width: 768px) {

  /* Hero section adjustments */
  section[style*="min-height: 35vh"] {
    min-height: 50vh !important;
  }

  section[style*="min-height: 35vh"] .hero-content,
  section[style*="min-height: 35vh"] .hero-text {
    padding: 3rem 1rem !important;
    min-height: auto !important;
  }

  section[style*="min-height: 35vh"] h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  section[style*="min-height: 35vh"] p {
    font-size: 1rem !important;
    max-width: 100% !important;
    margin: 1rem auto !important;
    line-height: 1.5 !important;
  }

  /* CTA sections responsive */
  section[style*="background:linear-gradient"] h2 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
  }

  section[style*="background:linear-gradient"] p {
    font-size: 1rem !important;
    max-width: 100% !important;
    margin: 1.5rem auto !important;
  }

  section[style*="background:#f8fafc"] h2,
  section[style*="padding:6rem"] h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  section[style*="background:#f8fafc"] p,
  section[style*="padding:6rem"] p {
    font-size: 0.95rem !important;
  }

  /* Tier cards responsive */
  div[style*="grid-template-columns:repeat(auto-fit, minmax(340px"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  div[style*="grid-template-columns:repeat(auto-fit, minmax(340px"] div[style*="padding:2.8rem"] {
    padding: 1.5rem 1.2rem !important;
  }

  div[style*="grid-template-columns:repeat(auto-fit, minmax(340px"] h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }

  div[style*="grid-template-columns:repeat(auto-fit, minmax(340px"] div[style*="font-size:3rem"] {
    font-size: 2.2rem !important;
  }

  /* Hero CTA buttons responsive */
  .hero-cta {
    font-size: 1rem !important;
    padding: 1rem 1.8rem !important;
    gap: 0.6rem !important;
  }

  .hero-cta i {
    font-size: 1.1rem !important;
  }

  /* Trust badges responsive */
  .trust-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.8rem !important;
    margin: 2rem auto 0 !important;
    /* Auto centering safeguards it */
    width: 100%;
    max-width: 100%;
  }

  .badge {
    flex: 0 1 auto;
    /* Allows it to size cleanly based on text */
    justify-content: center;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  section[style*="padding:7rem"] {
    padding: 3rem 1rem !important;
  }

  section[style*="padding:6rem"] {
    padding: 2.5rem 1rem !important;
  }

  section[style*="min-height: 35vh"] h1 {
    font-size: 1.7rem !important;
  }

  section[style*="min-height: 35vh"] p {
    font-size: 0.95rem !important;
  }

  div[style*="max-width:900px"] {
    padding: 0 1rem !important;
  }

  .section-title {
    font-size: 1.6rem !important;
  }
}