/* ===== RESET & BASE ===== */
:root {
  --primary-green: #008957;
  --primary-dark: #007046;
  --accent-green: #008957;
  --bg-light: #f8fafc;
  --text-dark: #1a1a2e;
  --text-muted: #64748b;
  --input-bg: #f8fafc;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 70px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 440px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  border: 1px solid #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  transition: all 0.2s;
  display: block;
}

.dropdown-item:hover {
  background: #f0fdf4;
  color: #008957 !important;
}

.chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
  color: #008957;
}

/* Mobile Dropdown adjustment */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    margin-top: 5px;
    background: transparent;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }

  .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f8fafc;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-demo {
  padding: 10px 24px;
  border: 2px solid var(--primary-green);
  border-radius: 50px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-demo:hover {
  background: var(--primary-green);
  color: #fff;
}

.btn-login {
  padding: 10px 24px;
  background: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: #f0fdf4;
  color: #008957;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #111;
}

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

.hero-desc {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 32px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

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

.btn-outline {
  padding: 16px 32px;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--primary-green);
  color: #fff;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 16px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #008957;
  padding: 40px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  text-align: center;
  color: #fff;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img,
.trust-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-item p {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Slightly darker for better contrast */
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px 60px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.page-banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-banner-content p {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

.page-banner-content p a {
  color: #fff;
  text-decoration: none;
}

.page-banner-content p a:hover {
  text-decoration: underline;
}

.page-banner-content p span {
  font-weight: 800;
}

/* ===== CAREER & PARTNER COMMON ===== */
.career-section {
  background: #fff;
  padding: 80px 0;
}

.career-form-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  /* Premium shadow */
  border: 1px solid #f0f0f0;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.form-header p {
  color: #888;
  font-size: 15px;
}

.career-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: #1a1a2e;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 137, 87, 0.1);
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.btn-submit {
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  width: fit-content;
  margin: 10px auto 0;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 137, 87, 0.2);
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .career-form-card {
    padding: 30px;
    margin: 0 10px;
  }

  .page-banner-content {
    padding: 30px;
  }

  .page-banner-content h1 {
    font-size: 32px;
  }
}

/* ===== FEATURES PAGE ===== */
.features-container {
  padding: 100px 0;
  background: #fff;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-info {
  flex: 1;
}

.feature-visual {
  flex: 1;
}

.feature-badge {
  display: inline-block;
  color: #008957;
  background: #f0fdf4;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 137, 87, 0.2);
}

.feature-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.feature-info p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.feature-tip {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid #008957;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.feature-image-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #f0f0f0;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-image-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green);
}

.feature-image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
}

.feature-label {
  display: inline-block;
  background: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  font-size: 14px;
  color: #111;
  border: 1px solid #f0f0f0;
}

@media (max-width: 992px) {

  .feature-block,
  .feature-block:nth-child(even) {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .feature-tip {
    text-align: left;
  }

  .feature-info h2 {
    font-size: 28px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
  padding: 80px 0 40px;
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  color: #008957;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.info-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.contact-main-section {
  padding: 40px 0 100px;
  background: #fff;
}

.contact-flex {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contact-form-side {
  flex: 1;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.contact-map-side {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.contact-map-side iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.contact-badge-mini {
  display: inline-block;
  background: #f0fdf4;
  color: #008957;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 137, 87, 0.2);
}

.contact-title-main {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.contact-title-main span {
  color: #008957;
}

.contact-subtitle-main {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

.contact-badges-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.badge-item {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  background: #f8fafc;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-item i {
  color: #008957;
  width: 14px;
  height: 14px;
}

/* ===== PRIVACY POLICY PAGE ===== */
.policy-section-main {
  padding: 80px 0;
  background: #fff;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
  /* Extra premium shadow */
}

.policy-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 24px;
}

.policy-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.policy-header p {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.policy-block {
  margin-bottom: 32px;
}

.policy-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  position: relative;
}

.policy-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-block strong {
  color: #111;
}

.policy-list {
  padding-left: 20px;
  list-style-type: initial;
  margin-bottom: 16px;
}

.policy-list li {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-list li::marker {
  color: #008957;
}

.services-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.service-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  cursor: default;
  transition: all 0.2s;
}

.service-pill:hover {
  background: #fff;
  border-color: #008957;
  color: #008957;
}

.compliance-box {
  background: #f0fdf4;
  border: 1px dashed #008957;
  padding: 24px;
  border-radius: 16px;
  margin-top: 40px;
}

.compliance-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.compliance-box a {
  color: #008957;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-card {
    padding: 30px;
  }

  .policy-header h2 {
    font-size: 24px;
  }

  .policy-block h3 {
    font-size: 18px;
  }
}

/* ===== FOOTER REFINEMENT ===== */
.footer-brand img {
  filter: brightness(1.1);
}


/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section-badge {
  display: inline-block;
  background: #f0fdf4;
  color: #008957;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.section-title span {
  color: #008957;
}

.section-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

/* ===== FEATURES ===== */
.features-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  transition: all 0.2s;
}

.tab-btn:hover,
.tab-btn.active {
  background: #008957;
  color: #fff;
  border-color: #008957;
}

.feature-content {
  display: none;
  align-items: center;
  gap: 60px;
}

.feature-content.active {
  display: flex;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.feature-text blockquote {
  border-left: 4px solid var(--primary-green);
  padding-left: 16px;
  color: #888;
  font-style: italic;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ===== STEPS ===== */
.steps .container {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 24px;
}

.step-number {
  font-size: 72px;
  font-weight: 800;
  color: #dcfce7;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: #fafafa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
  border-color: #008957;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #008957;
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

.price-yearly {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.conversion-table {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.conversion-table h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #008957;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.conversion-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
}

.conversion-row .value {
  font-weight: 700;
}

.pricing-features {
  margin-bottom: 20px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
  font-size: 16px;
}

.pricing-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pricing-badges span {
  background: #f0fdf4;
  color: #008957;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.pricing-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.btn-choose {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-choose:hover {
  background: var(--primary-green);
  color: #fff;
}

.pricing-card.popular .btn-choose {
  background: var(--primary-green);
  color: #fff;
}

.pricing-card.popular .btn-choose:hover {
  background: var(--primary-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-green);
  font-size: 14px;
}

.author-info h4 {
  font-weight: 600;
  font-size: 15px;
}

.author-info p {
  font-size: 13px;
  color: #888;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
}

/* ===== INDUSTRY PAGES ===== */
.industry-intro {
  padding: 100px 0 60px;
  text-align: center;
}

.industry-intro-icon {
  width: 60px;
  height: 60px;
  background: #f0fdf4;
  color: #008957;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.industry-intro h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.industry-intro p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.industry-grid-section {
  padding: 40px 0 100px;
  background: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.industry-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: #008957;
}

.industry-card-icon {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  color: #008957;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.industry-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.industry-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.industry-cta {
  background: var(--primary-green);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.industry-cta h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.industry-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.industry-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-cta-white {
  background: #fff;
  color: var(--primary-green);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s;
}

.btn-cta-white:hover {
  background: #f0fdf4;
  transform: scale(1.05);
}

.btn-cta-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s;
}

.btn-cta-outline:hover {
  background: #fff;
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-intro h2 {
    font-size: 32px;
  }

  .industry-cta h2 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-arrow {
  transition: transform 0.3s;
  font-size: 20px;
  color: #888;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ===== CTA ===== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta p {
  font-size: 17px;
  color: #666;
  margin-bottom: 32px;
}

.cta-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-checks span {
  font-size: 15px;
  color: #555;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 24px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s;
  font-size: 14px;
}

.footer-social a:hover {
  border-color: #008957;
  color: #008957;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #111;
  border-bottom: 2px solid #008957;
  padding-bottom: 8px;
  display: inline-block;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #666;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #008957;
}

.footer-col p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.footer-bottom {
  text-align: left;
  font-size: 13px;
  color: #888;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  font-size: 18px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #1e293b;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.modal-header p {
  color: #666;
  font-size: 15px;
}

.modal-form {
  display: grid;
  gap: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ===== LOGIN PAGE STYLES ===== */
.login-container {
  display: flex;
  min-height: 100vh;
}

.login-sidebar {
  position: relative;
  flex: 1;
  background: var(--primary-green);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  overflow: hidden;
}

.sidebar-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: 50px;
  left: -150px;
}

.circle-3 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -150px;
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.login-logo {
  height: 72px;
  margin-bottom: 60px;
}

.sidebar-signup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.sidebar-signup-badge:hover {
  background: #fff;
  color: var(--primary-green);
  transform: translateY(-2px);
}

.login-container .hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.login-container .hero-text p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 48px;
}

.login-container .stats-grid {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.login-container .stat-item {
  display: flex;
  flex-direction: column;
}

.login-container .stat-value {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.login-container .stat-label {
  font-size: 15px;
  opacity: 0.9;
}

.btn-signup-alt {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #22c55e40;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-signup-alt:hover {
  background: #dfefdf;
  transform: translateY(-2px);
}

.login-form-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #fff;
}

.form-wrapper {
  width: 100%;
  max-width: 420px;
}

.login-container .form-header {
  margin-bottom: 40px;
  text-align: left;
}

.login-container .form-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.login-container .form-header p {
  color: var(--text-muted);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: static;
}

.login-container .form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-link {
  font-size: 12px;
  color: var(--primary-green);
  font-weight: 600;
}

.login-container .form-group input {
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  background: var(--input-bg);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

.login-container .form-group input:focus {
  outline: none;
  border-color: var(--primary-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.password-input-wrapper {
  position: relative;
  display: flex;
}

.password-input-wrapper input {
  width: 100%;
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}

.btn-signin {
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.btn-signin:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.divider {
  text-align: center;
  position: relative;
  margin: 10px 0;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e2e8f0;
}

.divider span {
  position: relative;
  background: #fff;
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== SIGNUP PAGE STYLES ===== */
.signup-container {
  display: flex;
  min-height: 100vh;
}

.signup-sidebar {
  position: relative;
  flex: 1.1;
  background: var(--primary-green);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  overflow: hidden;
}

.signup-logo {
  height: 72px;
  margin-bottom: 60px;
}

.signup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.signup-container .hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.signup-container .stats-grid {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.signup-form-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #fff;
}

.signup-container .form-header {
  margin-bottom: 32px;
  text-align: left;
}

.signup-container .form-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signup-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: static;
}

.signup-container .form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.signup-container .form-group input {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  background: var(--input-bg);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.phone-input-wrapper {
  display: flex;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--input-bg);
  transition: var(--transition);
}

.phone-input-wrapper:focus-within {
  border-color: var(--primary-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.phone-prefix {
  background: #f1f5f9;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-right: 1px solid #e2e8f0;
  cursor: pointer;
  font-size: 12px;
}

.phone-prefix img {
  width: 20px;
  border-radius: 2px;
}

.btn-signup-main {
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.btn-signup-main:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 137, 87, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

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

  .hero-title {
    font-size: 40px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-content.active {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #22c55e;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .features-tabs {
    gap: 4px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .navbar-cta {
    gap: 8px;
  }

  .btn-demo,
  .btn-login {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.field-error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 4px
}

.is-invalid {
  border-color: #dc2626 !important
}

.toast-msg {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 14px 22px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  opacity: 0;
  transform: translateX(100%);
  transition: all .4s ease
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(0)
}

.toast-msg.success {
  background: #16a34a
}

.toast-msg.error {
  background: #dc2626
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}