/*
Theme Name: Cliqenvio Landing
Theme URI: https://cliqenvio.com.br
Author: Cliqenvio
Description: Landing page profissional para o Cliqenvio ??? plataforma de marketing via WhatsApp.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: cliqenvio-landing
*/

/* ?????? RESET & BASE ?????? */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #27C58B;
  --green-dark:  #1fa874;
  --green-light: #e8faf4;
  --green-bg:    #f0fdf8;
  --dark:        #111827;
  --gray-900:    #111827;
  --gray-700:    #374151;
  --gray-600:    #4b5563;
  --gray-500:    #6b7280;
  --gray-400:    #9ca3af;
  --gray-300:    #d1d5db;
  --gray-200:    #e5e7eb;
  --gray-100:    #f3f4f6;
  --gray-50:     #f9fafb;
  --white:       #ffffff;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
  --shadow-green:0 4px 24px rgba(39,197,139,.32);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ?????? NAV ?????? */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-nav.scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; color: #fff; }
.nav-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--gray-900); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .15s;
}
.btn-ghost:hover { color: var(--gray-900); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 9px;
  transition: opacity .15s, transform .1s;
}
.btn-primary:hover { opacity: .9; }
.btn-primary:active { transform: translateY(1px); }
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-green);
  transition: opacity .15s, transform .1s;
}
.btn-primary-lg:hover { opacity: .9; }
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: background .15s;
}
.btn-outline-lg:hover { background: var(--gray-50); }

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

/* ?????? SECTION LABELS ?????? */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-light);
  color: var(--green);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ?????? HERO ?????? */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 35%, rgba(39,197,139,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--green); }
.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray-500);
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

/* Hero mockup */
.hero-mockup-wrap {
  position: relative;
  padding: 28px 16px 40px;
}
.mockup-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  white-space: nowrap;
}
.mockup-badge.top-right { top: 0; right: 0; }
.mockup-badge.bottom-left { bottom: 0; left: 0; }
.mockup-badge-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.mockup-badge-icon.green { background: var(--green-light); }
.mockup-badge-icon.blue  { background: #eff6ff; }
.mockup-badge-label { font-size: 11px; color: var(--gray-400); line-height: 1; margin-bottom: 3px; }
.mockup-badge-value { font-size: 14px; font-weight: 700; color: var(--gray-900); line-height: 1; }

.browser-frame {
  background: var(--gray-200);
  border-radius: 18px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-300);
}
.browser-chrome {
  background: var(--white);
  border-radius: 12px 12px 0 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.browser-dot.red    { background: #fc6158; }
.browser-dot.yellow { background: #fac130; }
.browser-dot.green  { background: #27c840; }
.browser-url {
  flex: 1;
  background: var(--gray-100);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--gray-400);
  font-family: monospace;
}
.app-layout {
  background: var(--gray-50);
  border-radius: 0 0 12px 12px;
  display: flex;
  height: 340px;
  overflow: hidden;
}
.app-sidebar {
  width: 46px;
  background: var(--white);
  border-right: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 8px;
  flex-shrink: 0;
}
.sidebar-logo {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.sidebar-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.sidebar-icon.active { background: var(--green-light); }
.app-main {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-title-label { font-size: 10px; color: var(--gray-400); font-weight: 500; margin-bottom: 2px; }
.app-title { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.app-status {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 9px;
  padding: 8px 10px;
}
.stat-value { font-size: 16px; font-weight: 700; line-height: 1; margin-bottom: 3px; }
.stat-label { font-size: 10px; color: var(--gray-400); }
.stat-card.s-green .stat-value { color: var(--green); }
.stat-card.s-blue  .stat-value { color: #3b82f6; }
.stat-card.s-amber .stat-value { color: #f59e0b; }
.app-progress { }
.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--gray-400);
  margin-bottom: 5px;
}
.progress-header span:last-child { font-weight: 600; }
.progress-bar {
  height: 7px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 100px;
  width: 50%;
}
.app-chart { }
.chart-label { font-size: 10px; color: var(--gray-400); font-weight: 500; margin-bottom: 6px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(39,197,139,.25);
  transition: background .2s;
}
.chart-bar.active { background: var(--green); }
.app-contacts { display: flex; flex-direction: column; gap: 5px; overflow: hidden; }
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 9px;
  padding: 6px 10px;
}
.contact-info { display: flex; align-items: center; gap: 8px; }
.contact-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: var(--gray-500);
  flex-shrink: 0;
}
.contact-name { font-size: 11px; font-weight: 600; color: var(--gray-900); margin-bottom: 1px; }
.contact-phone { font-size: 10px; color: var(--gray-400); }
.contact-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.contact-badge.ok      { background: var(--green-light); color: #15803d; }
.contact-badge.pending { background: #fefce8; color: #a16207; }

@media (max-width: 1024px) {
  .hero-mockup-wrap { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 0 80px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary-lg, .btn-outline-lg { justify-content: center; }
}

/* ?????? STATS BAR ?????? */
.stats-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.stat-desc { font-size: 14px; color: var(--gray-500); }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ?????? SECTIONS BASE ?????? */
.section { padding: 96px 0; }
.section.bg-gray { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ?????? PAIN ?????? */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pain-emoji { font-size: 36px; margin-bottom: 16px; }
.pain-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.pain-desc  { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }

/* ?????? HOW IT WORKS ?????? */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 8px;
}
.step-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* ?????? FEATURES ?????? */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.feature-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.feature-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feature-desc  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .features-grid { grid-template-columns: 1fr; } }

/* ?????? INTEGRATIONS ?????? */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.integration-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.int-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.int-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.int-icon.green { background: #dcfce7; }
.int-icon.blue  { background: #eff6ff; }
.int-name { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.int-sub  { font-size: 13px; color: var(--gray-500); }
.int-list { display: flex; flex-direction: column; gap: 10px; }
.int-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.int-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327C58B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.integrations-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 24px;
}
@media (max-width: 760px) { .integrations-grid { grid-template-columns: 1fr; } }

/* ?????? PRICING ?????? */
#precos { background: var(--gray-50); }
.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 52px; }
.pricing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-toggle button.active {
  background: var(--green);
  color: var(--white);
}
.discount-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.discount-tag.inactive { background: var(--green-light); color: var(--green); }
.discount-tag.active   { background: rgba(255,255,255,.25); color: var(--white); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-card.featured {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(39,197,139,.35);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #713f12;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.plan-card.featured .plan-name { color: var(--white); }
.plan-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-card.featured .plan-desc { color: rgba(255,255,255,.8); }
.plan-price-block { margin-bottom: 20px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-500);
  line-height: 1;
}
.plan-card.featured .price-currency { color: rgba(255,255,255,.7); }
.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.03em;
  line-height: 1;
}
.plan-card.featured .price-amount { color: var(--white); }
.price-period {
  font-size: 14px;
  color: var(--gray-400);
}
.plan-card.featured .price-period { color: rgba(255,255,255,.7); }
.price-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.plan-card.featured .price-note { color: rgba(255,255,255,.65); }
.plan-envios {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.plan-card:not(.featured) .plan-envios {
  background: var(--green-light);
  color: var(--green);
}
.plan-card.featured .plan-envios {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

/* price toggle visibility */
.ciclo-mensal .price-anual-val,
.ciclo-mensal .price-anual-note { display: none; }
.ciclo-anual  .price-mensal-val,
.ciclo-anual  .price-mensal-note { display: none; }

.plan-features { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,.9); }
.plan-feature-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.plan-card.featured .plan-feature-check { color: rgba(255,255,255,.85); }
.plan-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .15s, background .15s;
}
.plan-card:not(.featured) .plan-cta {
  background: var(--green);
  color: var(--white);
}
.plan-card:not(.featured) .plan-cta:hover { opacity: .9; }
.plan-card.featured .plan-cta {
  background: var(--white);
  color: #15803d;
}
.plan-card.featured .plan-cta:hover { background: #f0fdf4; }

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

/* Credits */
.credits-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.credits-header { text-align: center; margin-bottom: 28px; }
.credits-header h3 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.credits-header p  { font-size: 15px; color: var(--gray-600); }
.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.credit-card {
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  transition: border-color .15s;
}
.credit-card.featured {
  border-color: var(--green);
  background: var(--green-bg);
}
.credit-best {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.credit-price { font-size: 30px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.credit-label { font-size: 15px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.credit-per   { font-size: 12px; color: var(--gray-400); margin-bottom: 16px; }
.credit-cta {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: opacity .15s, background .15s;
}
.credit-card.featured .credit-cta {
  background: var(--green);
  color: var(--white);
}
.credit-card:not(.featured) .credit-cta {
  background: var(--gray-100);
  color: var(--gray-700);
}
.credit-card:not(.featured) .credit-cta:hover { background: var(--gray-200); }
.credits-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
}
@media (max-width: 640px) { .credits-grid { grid-template-columns: 1fr; } }

/* ?????? FAQ ?????? */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  background: var(--white);
  transition: background .15s;
  gap: 12px;
}
.faq-question:hover { background: var(--gray-50); }
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }
.faq-contact {
  text-align: center;
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 16px;
}
.faq-contact a { color: var(--green); font-weight: 600; text-decoration: underline; }

/* ?????? FINAL CTA ?????? */
.cta-final {
  background: var(--green);
  padding: 96px 0;
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: #15803d;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.16);
  transition: background .15s;
}
.btn-cta-white:hover { background: #f0fdf4; }
.cta-note {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-top: 20px;
}

/* ?????? FOOTER ?????? */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.footer-logo-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline { font-size: 14px; line-height: 1.6; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span {
  font-size: 14px;
  transition: color .15s;
  cursor: pointer;
}
.footer-links a:hover, .footer-links span:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ?????? INLINE SVG ICONS ?????? */
.icon { display: inline-block; vertical-align: middle; }

