:root {
  --emerald-dark: #041f15;
  --emerald-main: #062c1e;
  --emerald-accent: #2e7d32;
  --mint-glow: #e0f2f1;
  --glass: rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #f8faf9;
  color: var(--emerald-dark);
  overflow-x: hidden;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 110px 0;
}

.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--emerald-main);
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(4, 31, 21, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.navbar-brand,
.footer-brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.8rem;
  color: var(--emerald-main) !important;
  font-weight: 800;
  text-decoration: none;
}

.navbar-brand span,
.footer-brand span {
  color: var(--emerald-accent);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.nav-link {
  color: rgba(4, 31, 21, 0.78) !important;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-main) !important;
}

.hero,
.page-hero {
  background: radial-gradient(circle at 80% 20%, var(--mint-glow), transparent 45%);
}

.hero {
  padding: 160px 0 100px;
}

.page-hero {
  padding: 140px 0 70px;
}

.hero-title,
.page-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--emerald-main);
  margin-bottom: 24px;
}

.page-title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
}

.gradient-text {
  background: linear-gradient(135deg, #062c1e 0%, #2e7d32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text,
.page-intro {
  font-size: 1.12rem;
  line-height: 1.9;
  color: rgba(4, 31, 21, 0.72);
  max-width: 760px;
  margin-bottom: 34px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 100px;
  background: white;
  border: 1px solid rgba(6, 44, 30, 0.08);
  color: var(--emerald-main);
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(6, 44, 30, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.stat-box {
  background: white;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(6, 44, 30, 0.08);
  box-shadow: 0 18px 35px rgba(6, 44, 30, 0.04);
}

.stat-box h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--emerald-main);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.stat-box p {
  margin: 0;
  color: rgba(4, 31, 21, 0.68);
}

.glass-card {
  background: white;
  border-radius: 30px;
  border: 1px solid rgba(6, 44, 30, 0.08);
  padding: 30px;
  transition: 0.4s;
  box-shadow: 0 25px 60px rgba(6, 44, 30, 0.06);
  overflow: hidden;
}

.service-card,
.content-card,
.legal-card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 15px 35px rgba(6, 44, 30, 0.04);
  overflow: hidden;
}

.service-card:hover,
.content-card:hover {
  transform: translateY(-10px);
  border-color: var(--emerald-accent);
  box-shadow: 0 25px 50px rgba(6, 44, 30, 0.08);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--mint-glow);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--emerald-main);
  margin-bottom: 14px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(4, 31, 21, 0.8);
}

.feature-list i {
  color: var(--emerald-accent);
  margin-top: 3px;
}

.main-dashboard {
  background: var(--emerald-main);
  color: white;
  padding: 25px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 30px 70px rgba(6, 44, 30, 0.16);
}

.ui-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.browser-url {
  flex: 1;
  margin-left: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.dashboard-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.dashboard-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 10px;
}

.metric-row strong {
  font-weight: 600;
}

.metric-row span {
  color: #b9f6ca;
  font-weight: 700;
}

.dashboard-mini-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 15px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  height: 120px;
  margin-top: 15px;
}

.chart-bars span {
  display: block;
  background: linear-gradient(180deg, #81c784, #ffffff);
  border-radius: 10px 10px 4px 4px;
}

.floating-note {
  background: white;
  border: 1px solid rgba(6, 44, 30, 0.08);
  border-radius: 22px;
  padding: 20px;
  margin-top: 18px;
  box-shadow: 0 20px 40px rgba(6, 44, 30, 0.06);
}

.floating-note h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--emerald-main);
  margin-bottom: 8px;
}

.floating-note p,
.legal-card p,
.legal-card li {
  margin: 0;
  color: rgba(4, 31, 21, 0.68);
  line-height: 1.8;
}

.brand-strip {
  background: var(--emerald-main);
  padding: 30px 0;
  color: white;
}

.brand-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0.8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-brand {
  background: var(--emerald-main);
  color: white;
  padding: 14px 35px;
  border-radius: 100px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-brand:hover {
  background: var(--emerald-accent);
  color: white;
  transform: scale(1.05);
}

.btn-soft {
  background: white;
  color: var(--emerald-main);
  padding: 14px 35px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid rgba(6, 44, 30, 0.08);
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-soft:hover {
  border-color: var(--emerald-accent);
  color: var(--emerald-main);
  transform: translateY(-2px);
}

.int-card {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 20px;
  transition: 0.3s;
  background: #fff;
  height: 100%;
}

.int-card:hover {
  border-color: var(--emerald-accent);
  background: var(--mint-glow);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  background: white;
  border: 1px solid rgba(6, 44, 30, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(6, 44, 30, 0.04);
  min-height: 72px;
}

.logo-pill img,
.integration-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.logo-pill span {
  color: var(--emerald-main);
  font-weight: 700;
  font-size: 0.96rem;
}

.highlight-panel {
  background: white;
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(6, 44, 30, 0.08);
  box-shadow: 0 18px 35px rgba(6, 44, 30, 0.04);
  height: 100%;
  overflow: hidden;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.check-tile {
  background: var(--mint-glow);
  border-radius: 20px;
  padding: 18px;
  color: var(--emerald-main);
  font-weight: 600;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(6, 44, 30, 0.08);
  box-shadow: 0 16px 35px rgba(6, 44, 30, 0.04);
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mint-glow);
  color: var(--emerald-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  flex-shrink: 0;
}

.integration-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.integration-head .integration-logo {
  width: 38px;
  height: 38px;
}

.integration-head .card-title {
  margin-bottom: 0;
}

.integration-category {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 100px;
  background: var(--mint-glow);
  color: var(--emerald-main);
  font-weight: 700;
  font-size: 0.86rem;
  margin-top: 16px;
}

.pricing-card {
  background: white;
  border-radius: 30px;
  padding: 38px;
  height: 100%;
  border: 1px solid rgba(6, 44, 30, 0.08);
  box-shadow: 0 16px 35px rgba(6, 44, 30, 0.04);
  transition: 0.3s;
}

.pricing-card.featured {
  background: var(--emerald-main);
  color: white;
  transform: translateY(-8px);
}

.pricing-card.featured .section-text,
.pricing-card.featured .feature-list li,
.pricing-card.featured .price-small,
.pricing-card.featured h3,
.pricing-card.featured .price-amount {
  color: white;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(6, 44, 30, 0.08);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

.price-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--mint-glow);
  color: var(--emerald-main);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.price-amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  color: var(--emerald-main);
  margin-bottom: 8px;
}

.price-small {
  color: rgba(4, 31, 21, 0.65);
}

.cta-panel {
  background: linear-gradient(135deg, #062c1e 0%, #0b4b31 100%);
  color: white;
  padding: 60px 50px;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(6, 44, 30, 0.14);
  overflow: hidden;
}

.cta-panel .section-title,
.cta-panel .section-text {
  color: white;
}

.contact-card,
.form-panel {
  background: white;
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(6, 44, 30, 0.08);
  box-shadow: 0 16px 35px rgba(6, 44, 30, 0.04);
  height: 100%;
}

.contact-line {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6, 44, 30, 0.08);
}

.contact-line:last-child {
  border-bottom: none;
}

.form-control,
.form-select {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(6, 44, 30, 0.12);
  padding: 14px 18px;
  color: var(--emerald-main);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.12);
  border-color: var(--emerald-accent);
}

textarea.form-control {
  min-height: 150px;
  resize: none;
}

.footer {
  padding: 30px 0 45px;
  color: rgba(4, 31, 21, 0.65);
  font-size: 0.96rem;
}

.footer-links a {
  color: rgba(4, 31, 21, 0.72);
  margin-left: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--emerald-main);
}

.legal-card h2,
.legal-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--emerald-main);
}

.legal-card ul {
  padding-left: 1.2rem;
  margin-top: 0.8rem;
}

.bg-light-subtle {
  background: #f8fafc;
}

.hero-image,
.section-image,
.product-image {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.hero-image {
  min-height: 420px;
  max-height: 520px;
}

.section-image,
.product-image {
  min-height: 320px;
  max-height: 460px;
}

.shadow-soft {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.site-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .section-padding {
    padding: 85px 0;
  }

  .hero,
  .page-hero {
    padding: 140px 0 90px;
  }

  .stats-grid,
  .dashboard-mini-grid,
  .logo-strip,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 300px;
    max-height: 380px;
  }

  .section-image,
  .product-image {
    min-height: 260px;
    max-height: 320px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    background: white;
    border-radius: 22px;
    border: 1px solid rgba(6, 44, 30, 0.08);
  }

  .site-logo {
    height: 36px;
  }
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .brand-box {
    justify-content: center;
  }

  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .glass-card,
  .service-card,
  .pricing-card,
  .contact-card,
  .cta-panel,
  .content-card,
  .legal-card,
  .form-panel,
  .highlight-panel {
    padding: 26px;
  }

  .hero-title,
  .page-title {
    font-size: 3rem;
  }

  .footer-links a {
    display: inline-block;
    margin: 8px 10px 0 0;
  }
}

@media (max-width: 576px) {
  .site-logo {
    height: 32px;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .btn-brand,
  .btn-soft {
    width: 100%;
  }
}