* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  background: #ffffff;
}

.navbar {
  background: #0f3d20;
  padding: 14px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: #4ade80;
}

.navbar-brand:hover {
  color: #ffffff;
}

.navbar-nav .nav-link {
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #4ade80;
}

.navbar-toggler {
  border-color: #4ade80;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-nav-cta {
  background: #15803D;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-nav-cta:hover {
  background: #166534;
  color: #fff;
}

.btn-primary {
  background: #15803D;
  border-color: #15803D;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #166534;
  border-color: #166534;
  color: #fff;
}

.btn-outline-primary {
  border-color: #15803D;
  color: #15803D;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-outline-primary:hover {
  background: #15803D;
  border-color: #15803D;
  color: #fff;
}

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #15803D;
}

.hero-section {
  background: linear-gradient(135deg, #0f3d20 0%, #15803D 60%, #166534 100%);
  padding: 80px 0 60px;
  color: #ffffff;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  color: #d1fae5;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.stats-section {
  background: #f8fafc;
  padding: 60px 0;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid #15803D;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #15803D;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
}

.features-section {
  padding: 80px 0;
  background: #ffffff;
}

.features-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.features-section p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #15803D;
}

.feature-row {
  padding: 48px 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-row:last-child {
  border-bottom: none;
}

.pricing-section {
  background: #f8fafc;
  padding: 80px 0;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  border-color: #15803D;
}

.pricing-card.featured {
  border-color: #15803D;
  background: #f0fdf4;
}

.pricing-badge {
  display: inline-block;
  background: #15803D;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: #15803D;
  line-height: 1;
  margin-bottom: 24px;
}

.pricing-price sup {
  font-size: 18px;
  vertical-align: top;
  margin-top: 8px;
  font-weight: 700;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 15px;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: #15803D;
  font-size: 14px;
  flex-shrink: 0;
}

.cta-section {
  background: linear-gradient(135deg, #0f3d20 0%, #15803D 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #d1fae5;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.page-header {
  background: linear-gradient(135deg, #0f3d20 0%, #15803D 100%);
  padding: 64px 0 48px;
  color: #ffffff;
}

.page-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: #d1fae5;
  max-width: 540px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: #15803D;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #475569;
  max-width: 560px;
  line-height: 1.7;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid #dcfce7;
}

.team-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 14px;
  color: #15803D;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.contact-info-card {
  background: #f0fdf4;
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid #15803D;
  margin-bottom: 20px;
}

.contact-info-card i {
  color: #15803D;
  font-size: 20px;
  margin-right: 12px;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.blog-card .card-body {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  background: #dcfce7;
  color: #15803D;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.blog-meta {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.values-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  height: 100%;
  transition: transform 0.2s;
}

.values-card:hover {
  transform: translateY(-4px);
}

.values-card .icon {
  width: 52px;
  height: 52px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803D;
  font-size: 22px;
  margin-bottom: 16px;
}

.values-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.values-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.footer {
  background: #0f3d20;
  padding: 60px 0 24px;
  color: #cbd5e1;
}

.footer h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer a:hover {
  color: #4ade80;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 32px 0 20px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo span {
  color: #4ade80;
}

.footer-tagline {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 260px;
}

.footer-bottom {
  font-size: 13px;
  color: #64748b;
}

.copyright {
  color: #94a3b8;
  font-size: 13px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f3d20;
  color: #e2e8f0;
  padding: 16px 24px;
  z-index: 9999;
  border-top: 2px solid #15803D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

#cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 240px;
}

#cookie-banner a {
  color: #4ade80;
  text-decoration: underline;
}

#cookie-accept {
  background: #15803D;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

#cookie-accept:hover {
  background: #166534;
}

.form-control:focus {
  border-color: #15803D;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.form-label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
}

.product-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.product-feature-item:last-child {
  border-bottom: none;
}

.product-feature-icon {
  width: 44px;
  height: 44px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803D;
  font-size: 18px;
  flex-shrink: 0;
}

.product-feature-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.product-feature-text p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.text-accent {
  color: #15803D;
}

.bg-accent {
  background: #15803D;
}

.bg-light-green {
  background: #f0fdf4;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .pricing-card {
    margin-bottom: 24px;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .page-header h1 {
    font-size: 30px;
  }
}

/* === Card Uniformity Fix (auto-generated) === */

.blog-card {
  display: flex;
  flex-direction: column;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body > a:last-child,
.card-body > p:last-child + a {
  margin-top: auto;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pricing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.card-body > p {
  flex: 1;
}

.card-body > a:last-child,
.card-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.read-more,
a[class*="read-more"],
a[class*="readmore"] {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.blog-card > :last-child {
  margin-top: auto;
}

.card-body > :last-child {
  margin-top: auto;
}

.team-card > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* === Blog Article Width Fix === */
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow img {
  max-width: 100%;
  height: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Form placeholder visibility */
input::placeholder, textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #6b7280;
  opacity: 1;
}
input, textarea, select {
  color: #111827;
  border: 1px solid #d1d5db;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
