/* =====================================================
   WAZAPBRO - Main Stylesheet
   Colors: Green #25d366, Dark #1e293b, Light #f8fafc
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --green: #25d366;
  --green-dark: #1ea352;
  --green-light: #d1fae5;
  --dark: #1e293b;
  --dark-mid: #334155;
  --mid: #64748b;
  --light: #94a3b8;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --transition: .25s ease;
  --container: 1200px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--font); color:var(--dark); background:#fff; line-height:1.6; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; }

/* ===== CONTAINER ===== */
.container { max-width:var(--container); margin:0 auto; padding:0 20px; }
@media(max-width:768px) { .container { padding:0 16px; } }

/* ===== TYPOGRAPHY ===== */
.section-title { font-size:clamp(24px,3.5vw,40px); font-weight:800; color:var(--dark); line-height:1.2; }
.section-subtitle { font-size:clamp(16px,2vw,20px); font-weight:700; color:var(--dark); }
.section-desc { font-size:16px; color:var(--mid); max-width:640px; margin:12px auto 0; }
.section-header { margin-bottom:48px; }
.section-header.text-center { text-align:center; }
.text-center { text-align:center; }
.text-green { color:var(--green); }
.text-muted { color:var(--mid); }
.mt-4 { margin-top:16px; }
.mt-6 { margin-top:24px; }
.w-full { width:100%; }

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 24px; border-radius:var(--radius-sm); font-size:14px;
  font-weight:700; letter-spacing:.03em; border:2px solid transparent;
  transition:all var(--transition); white-space:nowrap; cursor:pointer;
  text-decoration:none; font-family:var(--font);
}
.btn-lg { padding:16px 32px; font-size:16px; border-radius:var(--radius); }
.btn-green { background:var(--green); color:#fff; border-color:var(--green); }
.btn-green:hover { background:var(--green-dark); border-color:var(--green-dark); transform:translateY(-1px); box-shadow:0 8px 20px rgba(37,211,102,.3); }
.btn-outline-green { background:transparent; color:var(--green); border-color:var(--green); }
.btn-outline-green:hover { background:var(--green); color:#fff; transform:translateY(-1px); }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.btn-outline-white:hover { background:rgba(255,255,255,.15); border-color:#fff; }
.btn-white { background:#fff; color:var(--green); border-color:#fff; }
.btn-white:hover { background:var(--green-light); transform:translateY(-1px); }

/* ===== NAVBAR ===== */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(255,255,255,.95); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:all var(--transition);
}
.navbar.scrolled { box-shadow:var(--shadow); }
.navbar-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:14px 0;
}
.navbar-logo { display:flex; align-items:center; }
.logo-text { display:flex; align-items:center; gap:8px; }
.logo-icon { font-size:24px; }
.logo-name { font-size:20px; font-weight:800; color:var(--green); }
.logo-name-white { color:#fff; }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links a {
  padding:8px 14px; border-radius:6px; font-size:14px; font-weight:500;
  color:var(--dark-mid); transition:all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color:var(--green); background:var(--green-light); }
.navbar-cta { display:flex; align-items:center; gap:10px; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; border-radius:6px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--dark); border-radius:2px; transition:all var(--transition); }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display:none; flex-direction:column; gap:4px; padding:16px;
  border-top:1px solid var(--border); background:#fff;
}
.mobile-menu a {
  padding:12px 16px; border-radius:8px; font-size:15px; font-weight:500;
  color:var(--dark-mid); transition:all var(--transition);
}
.mobile-menu a:hover { background:var(--green-light); color:var(--green); }
.mobile-cta { display:flex; flex-direction:column; gap:10px; padding:12px 0 0; border-top:1px solid var(--border); margin-top:8px; }
@media(max-width:1024px) {
  .nav-links, .navbar-cta { display:none; }
  .hamburger { display:flex; }
}
@media(max-width:1024px) {
  .mobile-menu.open { display:flex; }
}

/* ===== HERO ===== */
.hero {
  padding-top:100px;
  background:linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 40%, #eff6ff 100%);
  overflow:hidden;
}
.hero-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
  padding:80px 0 60px;
}
.hero-title {
  font-size:clamp(28px,4vw,52px); font-weight:800; color:var(--dark);
  line-height:1.15; margin-bottom:20px;
}
.hero-title strong, .hero-title b { color:var(--green); }
.hero-subtitle { font-size:18px; color:var(--mid); margin-bottom:36px; line-height:1.7; }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; }

/* Hero Mockup */
.hero-mockup { position:relative; display:flex; align-items:center; justify-content:center; }
.mockup-phone {
  background:#1e293b; border-radius:28px; padding:16px;
  width:260px; box-shadow:0 30px 60px rgba(0,0,0,.2);
}
.mockup-screen { background:#fff; border-radius:16px; overflow:hidden; }
.wa-chat { font-family:var(--font); }
.wa-header {
  background:#25d366; color:#fff; padding:12px 16px;
  font-weight:700; font-size:14px; display:flex; align-items:center; gap:8px;
}
.wa-messages { padding:14px; display:flex; flex-direction:column; gap:8px; background:#ece5dd; min-height:160px; }
.msg-in, .msg-out { max-width:80%; }
.msg-in { align-self:flex-start; }
.msg-out { align-self:flex-end; }
.msg-in p { background:#fff; padding:8px 12px; border-radius:12px 12px 12px 4px; font-size:13px; color:#333; box-shadow:0 1px 2px rgba(0,0,0,.1); }
.msg-out p { background:#dcf8c6; padding:8px 12px; border-radius:12px 12px 4px 12px; font-size:13px; color:#333; box-shadow:0 1px 2px rgba(0,0,0,.1); }
.mockup-stats { position:absolute; right:-20px; top:20%; display:flex; flex-direction:column; gap:10px; }
.stat-bubble {
  background:#fff; border-radius:12px; padding:10px 14px; box-shadow:var(--shadow);
  display:flex; flex-direction:column; align-items:center; min-width:70px;
}
.stat-num { font-size:16px; font-weight:800; color:var(--green); }
.stat-lbl { font-size:10px; color:var(--mid); }

/* Stats Bar */
.stats-bar { background:var(--dark); padding:40px 0; margin-top:40px; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stat-value { font-size:clamp(20px,3vw,36px); font-weight:800; color:var(--green); margin-bottom:6px; }
.stat-label { font-size:13px; color:#94a3b8; }

@media(max-width:768px) {
  .hero-inner { grid-template-columns:1fr; padding:60px 0 40px; gap:40px; }
  .hero-image { order:-1; display:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .hero-cta { flex-direction:column; }
  .btn-lg { width:100%; }
}

/* ===== CLIENTS ===== */
.section-clients { padding:60px 0; background:#fff; }
.section-clients .section-subtitle { margin-bottom:32px; font-size:16px; color:var(--mid); font-weight:500; }
.clients-marquee { overflow:hidden; position:relative; }
.clients-marquee::before, .clients-marquee::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2;
}
.clients-marquee::before { left:0; background:linear-gradient(to right,#fff,transparent); }
.clients-marquee::after { right:0; background:linear-gradient(to left,#fff,transparent); }
.clients-track {
  display:flex; gap:32px; align-items:center;
  animation:marquee 30s linear infinite;
}
.clients-track:hover { animation-play-state:paused; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.client-logo { flex-shrink:0; height:56px; display:flex; align-items:center; justify-content:center; padding:0 12px; }
.client-logo img { max-height:48px; max-width:120px; object-fit:contain; filter:grayscale(1) opacity(.6); transition:all var(--transition); }
.client-logo:hover img { filter:none; opacity:1; }
.client-name-text { font-size:14px; font-weight:600; color:var(--mid); white-space:nowrap; }

/* ===== PLATFORM ===== */
.section-platform { padding:80px 0; background:linear-gradient(180deg,var(--bg-light) 0%,#fff 100%); }
.section-platform .section-cta { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:28px; }

/* ===== SOLUTIONS (TABS) ===== */
.section-solutions { padding:80px 0; background:#fff; }
.solutions-tabs { display:flex; gap:40px; align-items:flex-start; }
.tab-list {
  display:flex; flex-direction:column; gap:6px;
  min-width:220px; position:sticky; top:100px;
}
.tab-btn {
  padding:14px 20px; background:#fff; border:2px solid var(--border);
  border-radius:var(--radius-sm); font-size:15px; font-weight:600;
  color:var(--mid); text-align:left; transition:all var(--transition);
}
.tab-btn:hover { border-color:var(--green); color:var(--green); background:var(--green-light); }
.tab-btn.active { background:var(--green); color:#fff; border-color:var(--green); }
.tab-content { flex:1; }
.tab-pane { display:none; }
.tab-pane.active { display:block; }
.solution-card {
  display:flex; gap:28px; align-items:flex-start;
  background:var(--bg-light); border-radius:20px; padding:40px;
  border:1px solid var(--border);
}
.solution-icon {
  width:72px; height:72px; background:var(--green); color:#fff;
  border-radius:16px; display:flex; align-items:center; justify-content:center;
  font-size:32px; flex-shrink:0;
}
.solution-body h3 { font-size:24px; font-weight:800; margin-bottom:12px; color:var(--dark); }
.solution-body p { font-size:16px; color:var(--mid); margin-bottom:20px; line-height:1.7; }
.solution-features { display:flex; flex-direction:column; gap:10px; }
.solution-features li { display:flex; align-items:center; gap:10px; font-size:15px; color:var(--dark-mid); }
.solution-features li i { color:var(--green); flex-shrink:0; }
@media(max-width:768px) {
  .solutions-tabs { flex-direction:column; }
  .tab-list { flex-direction:row; flex-wrap:wrap; position:static; min-width:unset; }
  .solution-card { flex-direction:column; padding:24px; }
}

/* ===== PRICING ===== */
.section-pricing { padding:80px 0; background:var(--bg-light); }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; margin-bottom:60px; }
.pricing-card {
  background:#fff; border:2px solid var(--border); border-radius:20px;
  padding:32px; display:flex; flex-direction:column; position:relative;
  transition:all var(--transition);
}
.pricing-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.pricing-featured {
  border-color:var(--green); box-shadow:0 0 0 4px rgba(37,211,102,.15);
  transform:scale(1.02);
}
.pricing-featured:hover { transform:scale(1.02) translateY(-4px); }
.pricing-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--green); color:#fff; padding:6px 20px; border-radius:20px;
  font-size:12px; font-weight:700; white-space:nowrap; letter-spacing:.05em;
}
.pricing-header { margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.plan-name { font-size:22px; font-weight:800; color:var(--dark); margin-bottom:12px; }
.plan-price { display:flex; align-items:baseline; gap:4px; }
.price-amount { font-size:28px; font-weight:800; color:var(--green); }
.price-period { font-size:14px; color:var(--mid); }
.plan-features { flex:1; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.plan-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--dark-mid); line-height:1.5; }
.plan-features li i { color:var(--green); flex-shrink:0; margin-top:2px; }
.pricing-cta { margin-top:auto; }

/* Conversation Pricing */
.conv-pricing { background:#fff; border-radius:20px; padding:40px; border:1px solid var(--border); }
.conv-pricing h3 { font-size:24px; font-weight:800; color:var(--dark); margin-bottom:8px; }
.conv-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; margin:28px 0; }
.conv-card {
  background:var(--bg-light); border-radius:var(--radius); padding:24px;
  border:1px solid var(--border); text-align:center;
}
.conv-free { border-color:var(--green); background:var(--green-light); }
.conv-icon { width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 14px; }
.conv-marketing { background:#fef3c7; color:#d97706; }
.conv-utility { background:#dbeafe; color:#2563eb; }
.conv-auth { background:#ede9fe; color:#7c3aed; }
.conv-service { background:var(--green-light); color:var(--green); }
.conv-card h4 { font-size:15px; font-weight:700; color:var(--dark); margin-bottom:8px; }
.conv-price { font-size:24px; font-weight:800; color:var(--dark); margin-bottom:8px; }
.conv-price small { font-size:13px; font-weight:400; color:var(--mid); }
.conv-card p { font-size:13px; color:var(--mid); line-height:1.6; }
.conv-note { font-size:12px; color:var(--light); text-align:center; }

/* ===== BENEFITS ===== */
.section-benefits { padding:80px 0; background:#fff; }
.benefits-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:24px; }
.benefit-card {
  background:var(--bg-light); border-radius:var(--radius); padding:28px;
  text-align:center; border:1px solid var(--border); transition:all var(--transition);
}
.benefit-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--green); }
.benefit-icon {
  width:60px; height:60px; background:var(--green-light); color:var(--green);
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  font-size:24px; margin:0 auto 16px;
}
.benefit-card h3 { font-size:17px; font-weight:700; color:var(--dark); margin-bottom:8px; }
.benefit-card p { font-size:14px; color:var(--mid); line-height:1.6; }

/* ===== FAQ ===== */
.section-faq { padding:80px 0; background:var(--bg-light); }
.faq-list { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item {
  background:#fff; border-radius:var(--radius); border:1px solid var(--border);
  overflow:hidden; transition:all var(--transition);
}
.faq-item.open { border-color:var(--green); box-shadow:0 0 0 3px rgba(37,211,102,.1); }
.faq-question {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:20px 24px; background:none; border:none; text-align:left;
  font-size:16px; font-weight:600; color:var(--dark); gap:16px; cursor:pointer;
}
.faq-item.open .faq-question { color:var(--green); }
.faq-icon { flex-shrink:0; transition:transform var(--transition); color:var(--mid); }
.faq-item.open .faq-icon { transform:rotate(180deg); color:var(--green); }
.faq-answer {
  padding:0 24px 20px; font-size:15px; color:var(--mid); line-height:1.7;
  border-top:1px solid var(--border);
}

/* ===== BLOG ===== */
.section-blog, .section-blog-list { padding:80px 0; background:#fff; }
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:24px; }
.blog-card {
  background:#fff; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--border); transition:all var(--transition);
  display:flex; flex-direction:column;
}
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--green); }
.blog-thumb { display:block; overflow:hidden; aspect-ratio:16/9; background:var(--bg-light); }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform var(--transition); }
.blog-card:hover .blog-thumb img { transform:scale(1.05); }
.blog-thumb-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  font-size:40px; color:var(--light); background:var(--bg-light);
}
.blog-body { padding:20px; flex:1; display:flex; flex-direction:column; }
.blog-title { font-size:17px; font-weight:700; color:var(--dark); margin-bottom:10px; line-height:1.4; }
.blog-title a:hover { color:var(--green); }
.blog-excerpt { font-size:14px; color:var(--mid); line-height:1.6; flex:1; margin-bottom:12px; }
.blog-meta { font-size:12px; color:var(--light); display:flex; gap:12px; }
.blog-meta i { margin-right:4px; }

/* ===== CTA BANNER ===== */
.section-cta-banner { padding:60px 0; }
.cta-banner {
  background:linear-gradient(135deg,var(--green) 0%,#059669 100%);
  border-radius:24px; padding:56px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
.cta-banner-content h2 { font-size:32px; font-weight:800; color:#fff; margin-bottom:10px; }
.cta-banner-content p { font-size:16px; color:rgba(255,255,255,.85); max-width:480px; }
.cta-banner-actions { display:flex; gap:14px; flex-shrink:0; flex-wrap:wrap; }
@media(max-width:768px) {
  .cta-banner { flex-direction:column; padding:36px 24px; text-align:center; }
  .cta-banner-actions { justify-content:center; }
}

/* ===== CONTACT ===== */
.section-contact { padding:80px 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:60px; }
.contact-info h2 { font-size:28px; font-weight:800; margin-bottom:28px; color:var(--dark); }
.contact-detail {
  display:flex; gap:14px; align-items:flex-start;
  margin-bottom:20px; font-size:15px; color:var(--mid);
}
.contact-detail i { color:var(--green); font-size:18px; flex-shrink:0; margin-top:2px; }
.contact-detail a:hover { color:var(--green); }
.contact-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.contact-form .form-group { margin-bottom:16px; }
.contact-form label { display:block; font-size:14px; font-weight:600; color:var(--dark); margin-bottom:6px; }
.contact-form .form-control {
  width:100%; padding:10px 14px; border:2px solid var(--border); border-radius:8px;
  font-size:15px; font-family:var(--font); color:var(--dark);
  transition:border-color var(--transition); background:#fff;
}
.contact-form .form-control:focus { outline:none; border-color:var(--green); box-shadow:0 0 0 4px rgba(37,211,102,.12); }
.contact-form .form-control.is-invalid { border-color:#ef4444; }
.error-msg { font-size:12px; color:#ef4444; margin-top:4px; display:block; }
.alert { padding:14px 18px; border-radius:var(--radius-sm); margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.alert-success { background:#d1fae5; color:#065f46; border:1px solid #6ee7b7; }
@media(max-width:768px) {
  .contact-grid { grid-template-columns:1fr; }
  .contact-form .form-row { grid-template-columns:1fr; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background:linear-gradient(135deg,var(--dark) 0%,#334155 100%);
  color:#fff; padding:100px 0 60px; margin-top:64px;
}
.page-hero h1 { font-size:clamp(28px,4vw,48px); font-weight:800; margin-bottom:10px; }
.page-hero p { font-size:18px; color:rgba(255,255,255,.75); }
.breadcrumb { font-size:14px; color:rgba(255,255,255,.6); margin-bottom:12px; }
.breadcrumb a { color:var(--green); }

/* ===== BLOG POST ===== */
.section-post { padding:60px 0; }
.post-single { max-width:800px; margin:0 auto; }
.post-featured-image { border-radius:var(--radius); overflow:hidden; margin-bottom:32px; }
.post-featured-image img { width:100%; }
.post-title { font-size:clamp(24px,3.5vw,40px); font-weight:800; margin-bottom:12px; }
.post-meta { font-size:14px; color:var(--light); margin-bottom:32px; display:flex; gap:16px; }
.post-content { font-size:16px; line-height:1.8; color:var(--dark-mid); }
.post-content h2 { font-size:24px; font-weight:700; margin:32px 0 14px; }
.post-content p { margin-bottom:16px; }
.post-content ul, .post-content ol { padding-left:24px; margin-bottom:16px; }
.post-content li { margin-bottom:8px; }
.post-cta { max-width:800px; margin:48px auto 0; background:var(--bg-light); border-radius:var(--radius); padding:36px; text-align:center; }
.post-cta h3 { font-size:22px; font-weight:700; margin-bottom:16px; }
.post-cta a { margin:0 8px; }

/* ===== GENERIC PAGE ===== */
.section-generic { padding:60px 0; }
.prose { max-width:760px; margin:0 auto; font-size:16px; line-height:1.8; color:var(--dark-mid); }
.prose h2 { font-size:24px; font-weight:700; margin:28px 0 12px; color:var(--dark); }
.prose p { margin-bottom:16px; }

/* ===== FOOTER ===== */
.footer { background:var(--dark); color:#94a3b8; padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr; gap:60px; padding-bottom:48px; }
.footer-brand .footer-logo { display:inline-block; margin-bottom:20px; }
.footer-company { color:#e2e8f0; font-size:14px; margin-bottom:8px; }
.footer-address { font-size:13px; line-height:1.7; margin-bottom:16px; }
.footer-contact { font-size:13px; line-height:1.8; }
.footer-contact a:hover { color:var(--green); }
.footer-social { margin-top:20px; }
.social-label { font-size:13px; font-weight:600; color:#e2e8f0; margin-bottom:10px; }
.footer-social a {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; background:rgba(255,255,255,.1); border-radius:8px;
  color:#94a3b8; margin-right:8px; font-size:16px; transition:all var(--transition);
}
.footer-social a:hover { background:var(--green); color:#fff; }
.footer-links h4 { font-size:14px; font-weight:700; color:#e2e8f0; margin-bottom:16px; text-transform:uppercase; letter-spacing:.06em; }
.footer-links a { display:block; font-size:14px; color:#94a3b8; margin-bottom:10px; transition:color var(--transition); }
.footer-links a:hover { color:var(--green); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08); padding:20px 0; text-align:center;
  font-size:13px; color:#64748b;
}
@media(max-width:768px) {
  .footer-grid { grid-template-columns:1fr; gap:32px; }
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position:fixed; bottom:24px; right:24px; z-index:999;
  width:56px; height:56px; background:#25d366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:28px; box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition:all var(--transition); text-decoration:none;
  animation:pulse 2s infinite;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.5); animation:none; }
@keyframes pulse {
  0%,100% { box-shadow:0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow:0 4px 28px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ===== PAGINATION ===== */
.pagination-wrap { display:flex; justify-content:center; margin-top:40px; }
.pagination-wrap .pagination { display:flex; gap:6px; list-style:none; flex-wrap:wrap; }
.pagination-wrap .page-item a, .pagination-wrap .page-item span {
  display:flex; align-items:center; justify-content:center; width:38px; height:38px;
  border-radius:8px; font-size:14px; font-weight:500;
  border:1px solid var(--border); color:var(--dark-mid); background:#fff;
  transition:all var(--transition);
}
.pagination-wrap .page-item.active span { background:var(--green); color:#fff; border-color:var(--green); }
.pagination-wrap .page-item a:hover { background:var(--green-light); color:var(--green); border-color:var(--green); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align:center; padding:80px 20px; color:var(--light); }
.empty-state i { font-size:48px; margin-bottom:16px; opacity:.4; }
.empty-state p { font-size:18px; }

/* ===== UTILITIES ===== */
[x-cloak] { display:none !important; }

/* ===== ADDITIONAL FIX: Missing styles ===== */

/* Hero mockup phone */
.hero-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mockup-phone {
    width: 280px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    overflow: hidden;
    border: 3px solid #e0e0e0;
}
.mockup-screen { padding: 0; }
.wa-chat { font-family: Arial, sans-serif; }
.wa-header {
    background: #25d366;
    color: #fff;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wa-messages { padding: 12px; background: #e5ddd5; min-height: 180px; display: flex; flex-direction: column; gap: 8px; }
.msg-in, .msg-out { padding: 8px 12px; border-radius: 10px; font-size: 13px; max-width: 90%; }
.msg-in { background: #fff; align-self: flex-start; border-radius: 0 10px 10px 10px; }
.msg-out { background: #dcf8c6; align-self: flex-end; border-radius: 10px 0 10px 10px; }
.msg-in p, .msg-out p { margin: 0; }
.mockup-stats { display: flex; gap: 10px; margin-top: 16px; justify-content: center; }
.stat-bubble {
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
    text-align: center;
    font-size: 13px;
}
.stat-num { display: block; font-weight: 700; color: #25d366; font-size: 15px; }
.stat-lbl { display: block; color: #666; font-size: 11px; }

/* Client name text (when no logo) */
.client-name-text {
    font-weight: 700;
    font-size: 14px;
    color: #555;
    padding: 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Conv pricing section */
.conv-pricing { margin-top: 60px; padding: 40px; background: #f8fffe; border-radius: 20px; border: 1px solid #e0f5eb; }
.conv-pricing h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.conv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 32px 0 20px; }
.conv-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #eee;
    transition: transform .2s, box-shadow .2s;
}
.conv-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.conv-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}
.conv-marketing { background: #fff3e0; color: #f57c00; }
.conv-utility   { background: #e3f2fd; color: #1565c0; }
.conv-auth      { background: #f3e5f5; color: #6a1b9a; }
.conv-service   { background: #e8f5e9; color: #2e7d32; }
.conv-card h4 { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.conv-price { font-size: 1.6rem; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.conv-price small { font-size: 0.9rem; font-weight: 400; color: #666; }
.conv-free .conv-price { color: #25d366; }
.conv-card p { font-size: 0.85rem; color: #666; line-height: 1.5; }
.conv-note { font-size: 0.8rem; color: #999; margin-top: 16px; text-align: center; }

/* Section CTA banner */
.section-cta-banner { padding: 60px 0; }
.cta-banner {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner-content h2 { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.cta-banner-content p { color: rgba(255,255,255,.85); max-width: 480px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white { background: #fff; color: #25d366; border: 2px solid transparent; }
.btn-white:hover { background: #f0fdf4; }

/* Blog section */
.section-blog { padding: 80px 0; background: #f9fafb; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 32px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.blog-thumb { display: block; height: 200px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder { height: 100%; background: linear-gradient(135deg, #25d366, #128c7e); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 40px; }
.blog-body { padding: 20px; }
.blog-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-title a { color: #1a1a2e; text-decoration: none; }
.blog-title a:hover { color: #25d366; }
.blog-excerpt { font-size: 0.875rem; color: #666; line-height: 1.6; margin-bottom: 12px; }
.blog-meta { font-size: 0.8rem; color: #999; display: flex; gap: 12px; }

/* Text muted */
.text-muted { color: #666; }

/* mt-4, mt-6 */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

/* ===== CONTACT PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0 60px;
    text-align: center;
}
.page-hero-title { color: #fff; font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.page-hero-subtitle { color: rgba(255,255,255,.7); font-size: 1.1rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info h2, .contact-form-box h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: #f0fdf4; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #25d366; font-size: 18px;
}
.contact-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.contact-item p { color: #666; margin: 0; font-size: 0.9rem; }

.social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; transition: transform .2s, background .2s;
}
.social-btn:hover { background: #1ea352; transform: translateY(-2px); }

.contact-form-box { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.alert-success {
    background: #f0fdf4; border: 1px solid #86efac; border-radius: 10px;
    padding: 14px 18px; color: #166534; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px; font-weight: 500;
}

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

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: #374151; }
.req { color: #ef4444; }
.form-control {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid #e5e7eb; border-radius: 8px;
    font-size: 0.9rem; font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none; border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37,211,102,.15);
}
.form-control.is-invalid { border-color: #ef4444; }
.form-error { display: block; color: #ef4444; font-size: 0.8rem; margin-top: 4px; }

/* Blog pages */
.section-blog-list { padding: 80px 0; }
.blog-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; margin-top: 40px; }
.blog-post-content { max-width: 800px; margin: 0 auto; padding: 60px 0 80px; }
.blog-post-content h1 { font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 16px; line-height: 1.3; }
.blog-post-content .post-meta { color: #888; font-size: 0.875rem; margin-bottom: 32px; border-bottom: 1px solid #eee; padding-bottom: 16px; }
.blog-post-content img { max-width: 100%; border-radius: 12px; margin: 24px 0; }
.blog-post-content .post-body { line-height: 1.8; color: #374151; font-size: 1rem; }
.blog-post-content .post-body p { margin-bottom: 16px; }
.blog-post-content .post-body h2 { font-size: 1.4rem; font-weight: 700; margin: 32px 0 12px; }
.blog-post-content .post-body ul { padding-left: 24px; margin-bottom: 16px; }
.blog-post-content .post-body li { margin-bottom: 8px; }

/* Generic / GrapesJS page */
.gjs-content { min-height: 60vh; }

/* ===== FOOTER ===== */
.footer { background: #0d1117; color: #ccc; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-tagline { color: rgba(255,255,255,.5); font-size: 0.875rem; margin: 12px 0 8px; }
.footer-brand .footer-company { color: rgba(255,255,255,.7); font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.footer-brand .footer-address { color: rgba(255,255,255,.4); font-size: 0.8rem; line-height: 1.5; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 14px;
    transition: background .2s;
}
.footer-social a:hover { background: #25d366; }

.footer-links h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 0.875rem; transition: color .2s; }
.footer-links a:hover { color: #25d366; }
.footer-links a i { width: 16px; }

.footer-bottom {
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; color: rgba(255,255,255,.35);
}
.footer-cert { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-badge {
    padding: 4px 12px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
    font-size: 0.75rem; color: rgba(255,255,255,.5);
    display: flex; align-items: center; gap: 6px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center; padding: 80px 20px;
    color: #999;
}
.empty-state h3 { font-size: 1.3rem; margin-bottom: 8px; color: #666; }

/* ===== SOLUTIONS GRID (new) ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.solution-grid-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.solution-grid-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-color: #c7d2fe;
}
.solution-grid-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solution-grid-icon i {
    font-size: 32px;
    color: #3b5bdb;
}
.solution-grid-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.solution-grid-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .solutions-grid { grid-template-columns: 1fr; }
}

/* ===== SOLUTIONS GRID ===== */
.solutions-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px;
    margin-top: 48px;
}
.solution-grid-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.solution-grid-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-color: #c7d2fe;
}
.solution-grid-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solution-grid-icon i {
    font-size: 36px;
    color: #3b5bdb;
}
.solution-grid-card:nth-child(3) .solution-grid-icon i { color: #e91e8c; }
.solution-grid-card:nth-child(4) .solution-grid-icon i { color: #9c27b0; }
.solution-grid-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.solution-grid-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 900px) {
    .solutions-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
    .solutions-grid { grid-template-columns: 1fr !important; }
}
