/* ============================================================
   RASILNI – Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #25D366;
  --green-dark: #128C7E;
  --green-deep: #075E54;
  --green-light:#E8F9F0;
  --purple:     #7C3AED;
  --purple-light:#F3EEFF;
  --dark:       #0F172A;
  --gray-800:   #1E293B;
  --gray-600:   #475569;
  --gray-400:   #94A3B8;
  --gray-100:   #F1F5F9;
  --white:      #FFFFFF;
  --border:     #E2E8F0;
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-disabled {
  background: var(--gray-100);
  color: var(--gray-400);
  border: 2px solid var(--border);
  cursor: not-allowed;
  opacity: .7;
}

/* ---------- Section Helpers ---------- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-light);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-tag--light {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-sub { color: var(--gray-600); font-size: 17px; line-height: 1.7; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
}
.logo--white { color: var(--white); }
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  font-size: 16px;
}
.logo-text { color: inherit; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--green-dark); background: var(--green-light); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 0;
  background: linear-gradient(135deg, #064E3B 0%, #065F46 40%, #047857 70%, #059669 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37,211,102,.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.15);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ECE5DD;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  padding: 14px 16px;
  color: white;
}

.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.chat-name { font-size: 13px; font-weight: 700; }
.chat-status { font-size: 11px; opacity: .8; }

.chat-messages {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  position: relative;
}

.msg p { font-size: 12px; line-height: 1.5; margin: 0; }
.msg-time { font-size: 9px; opacity: .6; display: block; text-align: right; margin-top: 2px; }

.msg-in {
  background: white;
  border-radius: 0 12px 12px 12px;
  align-self: flex-start;
  color: var(--dark);
}

.msg-out {
  background: #DCF8C6;
  border-radius: 12px 0 12px 12px;
  align-self: flex-end;
  color: var(--dark);
}

.msg.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: 0 12px 12px 12px;
  align-self: flex-start;
}
.msg.typing span {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-400);
  animation: blink 1.2s infinite;
}
.msg.typing span:nth-child(2) { animation-delay: .2s; }
.msg.typing span:nth-child(3) { animation-delay: .4s; }

@keyframes blink {
  0%, 60%, 100% { opacity: .3; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.2); }
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 40px;
  background: rgba(37,211,102,.4);
  border-radius: 50%;
  filter: blur(20px);
}

.hero-wave {
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos-strip {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
}
.logo-pill:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(37,211,102,.15);
  transform: translateY(-2px);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 96px 0;
  background: var(--gray-100);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 80px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-card--accent { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.feature-icon--purple { background: var(--purple-light); color: var(--purple); }
.feature-icon--green  { background: var(--green-light);  color: var(--green-dark); }

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.feature-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Solutions */
.solutions-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 1.5px solid var(--border);
}

.solutions-text h2 { font-size: 32px; font-weight: 800; margin: 12px 0 16px; }
.solutions-text p  { color: var(--gray-600); margin-bottom: 28px; line-height: 1.7; }

.solutions-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.solution-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  transition: all var(--transition);
}
.solution-pill:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateX(4px);
}

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  flex-shrink: 0;
}

/* ============================================================
   WHATSAPP CTA
   ============================================================ */
.whatsapp-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}
.whatsapp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.whatsapp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.whatsapp-content { color: var(--white); }
.whatsapp-content h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin: 12px 0 20px; }
.whatsapp-content p  { font-size: 17px; line-height: 1.7; opacity: .85; margin-bottom: 32px; }
.whatsapp-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.whatsapp-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 24px 32px;
  color: var(--white);
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.18); }

.stat-number {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  opacity: .8;
  font-weight: 500;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 96px 0;
  background: var(--gray-100);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(37,211,102,.1);
}

.pricing-card--coming-soon { opacity: .7; }

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--green);
  color: var(--white);
  margin-bottom: 20px;
}
.pricing-badge--soon {
  background: var(--gray-400);
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.price-amount {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--green-dark);
}

.price-period {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 500;
}

.plan-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.5;
}
.plan-features li svg { flex-shrink: 0; margin-top: 1px; color: var(--green); }

.plan-note {
  color: var(--gray-400) !important;
  font-size: 13px !important;
}
.plan-note svg { color: var(--gray-400) !important; }

/* ============================================================
   ARTICLES
   ============================================================ */
.articles {
  padding: 96px 0;
  background: var(--white);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.article-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.article-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.article-img--1 {
  background: linear-gradient(135deg, #0F172A, #1E3A5F);
  position: relative;
}
.article-img--1::after {
  content: '📊';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 56px;
}
.article-img--2 {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  position: relative;
}
.article-img--2::after {
  content: '💬';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 56px;
}

.article-body { padding: 28px; }

.article-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--green-light);
  color: var(--green-dark);
  margin-bottom: 12px;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.article-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  transition: gap var(--transition);
}
.article-link:hover { gap: 10px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-text h2 { font-size: 32px; font-weight: 800; margin: 12px 0 16px; }
.contact-text p  { color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--green); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%2394A3B8' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { color: var(--green); }

.footer-newsletter h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--green); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--green); }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-sub          { max-width: 100%; }
  .hero-ctas         { justify-content: center; }
  .hero-visual       { display: none; }
  .features-grid     { grid-template-columns: 1fr; }
  .solutions-section { grid-template-columns: 1fr; gap: 40px; }
  .whatsapp-inner    { grid-template-columns: 1fr; }
  .whatsapp-stats    { flex-direction: row; flex-wrap: wrap; }
  .stat-card         { flex: 1; min-width: 160px; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 440px; }
  .articles-grid     { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .footer-links      { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav-links.open a { padding: 12px 16px; }
  .hamburger { display: flex; }

  .solutions-pills { grid-template-columns: 1fr; }
  .solutions-section { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */
.logo-img { height: 36px; width: auto; display: block; }
.logo-img--white { filter: brightness(0) invert(1); }
.logo { gap: 0; }
.nav-links a.active { color: var(--green-dark); background: var(--green-light); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #064E3B 0%, #065F46 40%, #047857 70%, #059669 100%);
  padding: 130px 0 64px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37,211,102,.12) 0%, transparent 60%),
              radial-gradient(circle at 80% 30%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero-tag {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  background: rgba(255,255,255,.15); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
.page-hero-wave { line-height: 0; }
.page-hero-wave svg { display: block; width: 100%; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--green-deep), var(--green-dark)); padding: 72px 0; text-align: center; color: var(--white); }
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: 12px; }
.cta-banner p  { font-size: 17px; opacity: .85; margin-bottom: 32px; }
.cta-banner .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 88px 0; background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; margin: 12px 0 16px; }
.about-story-text p  { color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.about-visual { background: linear-gradient(135deg, var(--green-light), #D1FAE5); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.about-stat { background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.about-stat-num   { font-size: 34px; font-weight: 800; color: var(--green-dark); line-height: 1; }
.about-stat-label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

.mission-vision { padding: 72px 0; background: var(--gray-100); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1.5px solid var(--border); }
.mv-card .mv-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 26px; }
.mv-card.mission .mv-icon { background: var(--green-light); }
.mv-card.vision  .mv-icon { background: var(--purple-light); }
.mv-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.mv-card p  { color: var(--gray-600); line-height: 1.8; }

.values-section { padding: 72px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--gray-100); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; border: 1.5px solid var(--border); transition: all var(--transition); }
.value-card:hover { border-color: var(--green); background: var(--green-light); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

.why-whatsapp { padding: 72px 0; background: var(--gray-100); }
.why-accordion { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   FAQ / ACCORDION  (shared)
   ============================================================ */
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; background: none; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer; transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-item.open .faq-question { background: var(--green-light); color: var(--green-dark); }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 24px; }
.faq-answer p { padding: 0 0 20px; color: var(--gray-600); line-height: 1.75; font-size: 14px; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-section-label { font-size: 19px; font-weight: 700; margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--green); }
.faq-section-label:first-child { margin-top: 0; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-feature { padding: 80px 0; }
.product-feature:nth-child(even) { background: var(--gray-100); }
.pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pf-grid.reverse { direction: rtl; }
.pf-grid.reverse > * { direction: ltr; }
.pf-text .section-tag { margin-bottom: 12px; }
.pf-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; margin-bottom: 14px; }
.pf-text p  { color: var(--gray-600); line-height: 1.8; margin-bottom: 18px; }
.badge-new { display: inline-block; padding: 2px 10px; border-radius: 100px; background: var(--green); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-left: 8px; vertical-align: middle; }
.pf-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pf-bullet { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gray-800); }
.pf-bullet-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 700; }

.product-mockup { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.mockup-bar { display: flex; gap: 6px; margin-bottom: 20px; }
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar span:nth-child(1) { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FFBD2E; }
.mockup-bar span:nth-child(3) { background: #28CA41; }
.mockup-chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; background: var(--gray-100); border-radius: 8px; padding: 14px; margin-bottom: 16px; }
.mockup-bar-item { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top, var(--green-dark), var(--green)); min-height: 16px; }
.mockup-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mockup-stat { background: var(--gray-100); border-radius: 8px; padding: 12px 16px; }
.mockup-stat-num  { font-size: 20px; font-weight: 800; color: var(--green-dark); }
.mockup-stat-label{ font-size: 11px; color: var(--gray-400); }

.api-visual-box { background: linear-gradient(135deg, var(--green-deep), var(--green-dark)); border-radius: var(--radius-lg); padding: 48px 40px; color: var(--white); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; min-height: 280px; }
.api-visual-icon  { font-size: 64px; }
.api-visual-label { font-size: 18px; font-weight: 700; }
.api-visual-sub   { font-size: 14px; opacity: .75; max-width: 240px; line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 80px 0; background: var(--white); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-info-card { background: var(--gray-100); border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--border); }
.contact-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p  { font-size: 14px; color: var(--gray-600); margin-bottom: 8px; }
.contact-info-card a  { color: var(--green-dark); font-weight: 600; font-size: 14px; }
.contact-info-card a:hover { color: var(--green); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-layout { padding: 64px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.blog-posts { display: flex; flex-direction: column; gap: 28px; }
.blog-card { display: grid; grid-template-columns: 260px 1fr; border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { min-height: 200px; position: relative; }
.blog-card-img-1 { background: linear-gradient(135deg, #0F172A, #1E3A5F); }
.blog-card-img-2 { background: linear-gradient(135deg, var(--green-deep), var(--green)); }
.blog-card-img::after { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 52px; }
.blog-card-img-1::after { content: '📊'; }
.blog-card-img-2::after { content: '💬'; }
.blog-card-body { padding: 28px; }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.blog-date { font-size: 12px; color: var(--gray-400); }
.blog-cats { display: flex; gap: 6px; }
.blog-cat { padding: 2px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; background: var(--green-light); color: var(--green-dark); text-transform: uppercase; letter-spacing: .05em; }
.blog-card-body h2 { font-size: 19px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body h2 a { color: var(--dark); transition: color var(--transition); }
.blog-card-body h2 a:hover { color: var(--green-dark); }
.blog-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--green-dark); transition: gap var(--transition); }
.read-more:hover { gap: 10px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }
.sidebar-widget { background: var(--gray-100); border-radius: var(--radius); padding: 22px; border: 1.5px solid var(--border); }
.sidebar-widget h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--green); text-transform: uppercase; letter-spacing: .06em; }
.cat-link { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gray-600); padding: 7px 0; border-bottom: 1px solid var(--border); transition: color var(--transition); }
.cat-link:last-child { border-bottom: none; }
.cat-link:hover { color: var(--green-dark); }
.cat-count { background: var(--green-light); color: var(--green-dark); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-layout { padding: 64px 0; background: var(--white); }
.article-grid { display: grid; grid-template-columns: 1fr 280px; gap: 52px; align-items: start; }
.article-meta-row { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.article-meta-row time { font-size: 13px; color: var(--gray-400); }
.article-meta-row .author { font-size: 13px; font-weight: 600; color: var(--gray-600); }
.article-content h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.article-body { color: var(--gray-800); line-height: 1.85; font-size: 16px; }
.article-body p  { margin-bottom: 18px; }
.article-body h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--dark); }
.article-body ul { padding-left: 22px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; }
.stat-box { background: var(--green-light); border-left: 4px solid var(--green); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0; }
.stat-box p { font-weight: 600; color: var(--green-dark); margin: 0; font-size: 15px; }
.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }

/* ============================================================
   WHATSAPP PRICING
   ============================================================ */
.resource-layout { padding: 64px 0; background: var(--white); }
.resource-grid { display: grid; grid-template-columns: 1fr 260px; gap: 52px; align-items: start; }
.resource-body h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--dark); }
.resource-body h2:first-child { margin-top: 0; }
.resource-body p  { color: var(--gray-600); line-height: 1.85; margin-bottom: 14px; }
.resource-body ul { padding-left: 22px; margin-bottom: 18px; }
.resource-body li { color: var(--gray-600); line-height: 1.7; margin-bottom: 8px; }
.info-box { background: var(--green-light); border: 1.5px solid #A7F3D0; border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.info-box h4 { font-size: 14px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.info-box p  { font-size: 14px; color: var(--green-dark); margin: 0; opacity: .9; line-height: 1.65; }
.resource-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }

/* ============================================================
   RESPONSIVE – INNER PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-grid.reverse { direction: ltr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { min-height: 200px; }
  .blog-sidebar { position: static; }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-sidebar { position: static; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 52px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 100px; }
  .container { padding: 0 16px; }
  .logos-row { gap: 10px; }
  .logo-pill { padding: 8px 14px; font-size: 13px; }
  .contact-form { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr; }
}
