:root {
  --green: #25d366;
  --green-dark: #0d7a45;
  --green-text: #0d7a45;
  --green-light: #dcfce7;
  --orange: #e05a22;
  --yellow: #d4a100;
  --black: #ffffff;
  --dark: #f9fafb;
  --dark2: #f3f4f6;
  --dark3: #e5e7eb;
  --gray: #6b7280;
  --gray-light: #374151;
  --white: #111827;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  /* --font-display: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif; */
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: #111827;
  overflow-x: hidden;
  cursor: default;
}

/* === CURSOR === */

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.nav-logo img {
  height: 44px;
  display: block;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0d7a45;
}

.nav-cta {
  background: #25d366;
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: #1db954 !important;
  transform: translateY(-1px);
}

/* === PAGES === */
.page {
  padding-top: 72px;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* === HOME PAGE === */

/* Hero */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 80px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%,
      rgba(37, 211, 102, 0.07) 0%,
      transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 20%,
      rgba(224, 90, 34, 0.04) 0%,
      transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(rgba(37, 211, 102, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 211, 102, 1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: #0d7a45;
  font-weight: 500;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 66px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 .green {
  color: #0d7a45;
}

.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
  color: transparent;
}

.hero-sub {
  font-size: 20px;
  color: #4b5563;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 400;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #111827;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

/* Hero visual */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-phone-stack {
  position: relative;
  width: 320px;
  height: 560px;
}

.phone-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.phone-card.main {
  width: 280px;
  left: 20px;
  top: 40px;
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
  animation: float 4s ease-in-out infinite;
}

.phone-card.mini {
  width: 180px;
  right: 0;
  bottom: 80px;
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: float 4s 1s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.chat-bubble {
  background: #f3f4f6;
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  font-size: 12px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.5;
}

.chat-bubble.out {
  background: rgba(37, 211, 102, 0.15);
  border-radius: 12px 12px 4px 12px;
  color: #0d7a45;
  text-align: right;
}

.chat-meta {
  font-size: 10px;
  color: #6b7280;
  margin-top: 3px;
  text-align: right;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.chat-header-text {
  flex: 1;
}

.chat-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.chat-status {
  font-size: 10px;
  color: #0d7a45;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
}

.stat-pill+.stat-pill {
  margin-top: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #0d7a45;
}

.stat-label {
  font-size: 11px;
  color: #6b7280;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stats bar */
.stats-bar {
  background: #f3f4f6;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-number span {
  color: #0d7a45;
}

.stat-desc {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
  font-weight: 400;
}

/* Why WhatsApp section */
.section {
  padding: 100px 80px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0d7a45;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 540px;
  font-weight: 400;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.why-card {
  background: #f9fafb;
  padding: 48px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.4s ease;
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  background: rgba(37, 211, 102, 0.06);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.why-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  font-weight: 400;
}

/* Features overview */
.features-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0d7a45;
  font-size: 13px;
  font-weight: 500;
  margin-top: 20px;
  text-decoration: none;
  transition: gap 0.2s;
  cursor: pointer;
}

.feature-card-link:hover {
  gap: 10px;
}

/* Industry logos */
.meta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 80px;
  background: #f3f4f6;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.meta-badge-text {
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.meta-badge-pill {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: #0d7a45;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg,
      rgba(37, 211, 102, 0.06),
      rgba(18, 140, 126, 0.04));
  border-top: 1px solid rgba(37, 211, 102, 0.15);
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
  padding: 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(37, 211, 102, 0.08),
      transparent 70%);
  pointer-events: none;
}

/* === FEATURES PAGE === */
.features-hero {
  padding: 40px 80px 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.feature-section-block {
  padding: 80px 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-section-block.reverse {
  direction: rtl;
}

.feature-section-block.reverse>* {
  direction: ltr;
}

.feature-mockup {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.feature-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) {
  background: #ff5f57;
}

.mockup-dot:nth-child(2) {
  background: #ffbd2e;
}

.mockup-dot:nth-child(3) {
  background: #28c840;
}

.mockup-title-bar {
  flex: 1;
  height: 28px;
  background: #e5e7eb;
  border-radius: 6px;
}

.data-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.data-row:last-child {
  border: none;
}

.data-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e5e7eb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.data-info {
  flex: 1;
}

.data-name {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 3px;
}

.data-detail {
  font-size: 11px;
  color: #6b7280;
}

.data-badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-green {
  background: rgba(37, 211, 102, 0.15);
  color: #0d7a45;
}

.badge-orange {
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
}

.badge-gray {
  background: rgba(136, 136, 136, 0.15);
  color: #6b7280;
}

.progress-bar-wrap {
  background: #e5e7eb;
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 4px;
  background: var(--green);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.analytics-card {
  background: #f3f4f6;
  border-radius: 10px;
  padding: 16px;
}

.analytics-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

.analytics-val span {
  color: #0d7a45;
}

.analytics-lbl {
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
}

.analytics-trend {
  font-size: 11px;
  color: #0d7a45;
  margin-top: 6px;
  font-weight: 500;
}

.feature-list-items {
  list-style: none;
}

.feature-list-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

.feature-list-items li:last-child {
  border: none;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #0d7a45;
  font-size: 12px;
  font-weight: 700;
}

/* === PRICING PAGE === */
.pricing-hero {
  padding: 40px 80px 60px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
  font-size: 14px;
  color: #6b7280;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(135deg,
      rgba(37, 211, 102, 0.06),
      rgba(18, 140, 126, 0.03));
  border-color: rgba(37, 211, 102, 0.35);
}

.pricing-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price .currency {
  font-size: 24px;
  font-weight: 500;
  color: #6b7280;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.pricing-period {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 32px;
}

.pricing-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 24px 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 14px;
  line-height: 1.5;
}

.pricing-feature .check {
  color: #0d7a45;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature .x {
  color: #6b7280;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  margin-top: 32px;
  transition: all 0.25s;
  text-decoration: none;
}

.pricing-cta.filled {
  background: #25d366;
  color: #000000;
}

.pricing-cta.filled:hover {
  background: #1db954;
  transform: translateY(-1px);
}

.pricing-cta.outline {
  background: transparent;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.pricing-cta.outline:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  padding: 0 80px 40px;
  margin-top: -20px;
}

.pricing-addons {
  padding: 60px 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.addon-item {
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #0d7a45;
  margin-bottom: 6px;
}

.addon-label {
  font-size: 14px;
  color: #374151;
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 40px 80px 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.pillar {
  background: #f9fafb;
  padding: 48px 40px;
  text-align: center;
  transition: background 0.3s;
}

.pillar:hover {
  background: rgba(37, 211, 102, 0.07);
}

.pillar-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

.meta-partner-section {
  padding: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.meta-badge-large {
  background: linear-gradient(135deg,
      rgba(37, 211, 102, 0.08),
      rgba(18, 140, 126, 0.04));
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.meta-logo-text {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #25d366, #0d7a45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.values-list {
  list-style: none;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 15px;
  color: #374151;
}

.values-list li:last-child {
  border: none;
}

.value-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: #0d7a45;
  font-weight: 600;
  width: 24px;
  flex-shrink: 0;
}

/* === CONTACT PAGE === */
.contact-hero {
  padding: 40px 80px 40px;
}

.contact-grid {
  padding: 20px 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 14px;
  color: #374151;
}

.contact-detail:last-child {
  border: none;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(37, 211, 102, 0.4);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === FOOTER === */
footer {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 60px 80px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  margin-left: -16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: #0d7a45;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: #6b7280;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e5e7eb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.1);
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Whatsapp float btn */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.2s;
  text-decoration: none;
  font-size: 26px;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* =============================================
   HAMBURGER BUTTON
   ============================================= */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: none;
  transition: background 0.2s ease;
  z-index: 1100;
  position: relative;
}

.nav-hamburger:hover {
  background: rgba(37, 211, 102, 0.08);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease,
    width 0.25s ease;
  transform-origin: center;
}

/* Animated X when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   SIDEBAR OVERLAY BACKDROP
   ============================================= */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sidebar-backdrop.visible {
  opacity: 1;
}

/* =============================================
   SIDEBAR PANEL
   ============================================= */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hide desktop nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 0 40px;
    z-index: 1080;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
    height: 100vh;
    z-index: 1100;
  }

  /* Each nav item full-width */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding: 20px 28px 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0d7a45;
    background: rgba(37, 211, 102, 0.06);
    padding-left: 36px;
  }

  /* CTA button inside sidebar */
  .nav-links .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #25d366;
    color: #000 !important;
    padding: 14px 28px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 15px;
  }

  .nav-links .nav-cta:hover {
    background: #1db954 !important;
    padding-left: 28px !important;
  }

  /* ── Page / content responsive ── */
  .hero {
    padding: 60px 20px 40px;
    flex-direction: column;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .features-scroll {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }

  .feature-section-block {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .feature-section-block.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 20px 20px 60px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .meta-partner-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .features-hero,
  .pricing-hero,
  .contact-hero {
    padding: 60px 20px;
  }

  .footer {
    padding: 60px 20px 40px;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .pricing-addons {
    padding: 60px 20px;
  }

  .meta-badge {
    padding: 30px 20px;
    flex-wrap: wrap;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ── Custom icons ── */
.cst_icon {
  width: 30px;
}

.about_icon {
  width: 40px;
}

.contact_icon {
  width: 20px;
}

span.required-field {
  color: red;
}