/* ============================================
   RECHO AGENCY - COMPLETE STYLESHEET
   rechoagency.org
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg-start: #D9FFD8;
  --bg-end: #F4FFF0;
  --color-primary: #66F26A;
  --color-primary-dark: #4ED452;
  --color-primary-light: #A8F8AA;
  --color-cta: #CFFF4A;
  --color-cta-dark: #B8E830;
  --color-card: #FFFFFF;
  --color-heading: #111111;
  --color-text: #555555;
  --color-text-light: #888888;
  --color-border: #E8F5E8;
  --gradient-bg: linear-gradient(135deg, #D9FFD8 0%, #F4FFF0 50%, #EFFFED 100%);
  --gradient-primary: linear-gradient(135deg, #66F26A 0%, #4ED452 100%);
  --gradient-cta: linear-gradient(135deg, #CFFF4A 0%, #B8E830 100%);
  --radius-card: 24px;
  --radius-btn: 50px;
  --shadow-card: 0 8px 32px rgba(102,242,106,0.12), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 56px rgba(102,242,106,0.22), 0 4px 16px rgba(0,0,0,0.1);
  --shadow-btn: 0 4px 20px rgba(102,242,106,0.35);
  --shadow-nav: 0 2px 24px rgba(0,0,0,0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--gradient-bg);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
  -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; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header .badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(102,242,106,0.15), rgba(207,255,74,0.15));
  border: 1px solid var(--color-border);
  color: #2D8B2F;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--color-text); font-size: 1.05rem; }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-nav);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 10px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-heading);
}
.nav-logo-text span { color: var(--color-primary-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(102,242,106,0.12);
  color: #2D8B2F;
}
.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-hover);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-heading);
  padding: 12px 16px;
  border-radius: 12px;
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(102,242,106,0.12);
  color: #2D8B2F;
}
.mobile-nav .btn { margin-top: 12px; width: 100%; text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #0a3a0a;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(102,242,106,0.45);
  filter: brightness(1.05);
}
.btn-cta {
  background: var(--gradient-cta);
  color: #1a2e00;
  box-shadow: 0 4px 20px rgba(207,255,74,0.35);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(207,255,74,0.5);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  color: #2D8B2F;
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: rgba(102,242,106,0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.8);
  color: var(--color-heading);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ===== CARDS ===== */
.card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232,245,232,0.7);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-pad { padding: 32px; }
.card-pad-sm { padding: 24px; }
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(102,242,106,0.15), rgba(207,255,74,0.1));
  border: 1px solid rgba(102,242,106,0.2);
}
.card-icon-lg {
  width: 72px;
  height: 72px;
  font-size: 2rem;
  border-radius: 20px;
}
.card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.card p { font-size: 0.95rem; color: var(--color-text); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #2D8B2F;
  transition: var(--transition);
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--color-text-light); }
.breadcrumb .current { color: var(--color-text); font-weight: 500; }

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(102,242,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(207,255,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #111111 0%, #2D8B2F 60%, #111111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-image-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(102,242,106,0.18), 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid rgba(232,245,232,0.8);
  background: rgba(255,255,255,0.5);
  padding: 8px;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

/* ===== RATIO TABLE ===== */
.ratio-table-wrap {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.ratio-table {
  width: 100%;
  border-collapse: collapse;
}
.ratio-table th {
  background: var(--gradient-primary);
  color: #0a3a0a;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 16px 24px;
  text-align: left;
  font-size: 0.95rem;
}
.ratio-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.ratio-table tr:last-child td { border-bottom: none; }
.ratio-table tr:nth-child(even) td { background: rgba(102,242,106,0.04); }
.ratio-table tr:hover td { background: rgba(102,242,106,0.08); }
.ratio-badge {
  display: inline-block;
  background: var(--gradient-cta);
  color: #1a2e00;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}
.coin-icon { font-size: 1rem; margin-right: 4px; }

/* ===== SALARY CARDS ===== */
.salary-card {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.salary-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.salary-label { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.salary-amount { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; color: #2D8B2F; }
.salary-bar {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.salary-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-primary);
  transition: width 1s ease;
}
.salary-req { font-size: 0.9rem; color: var(--color-text); }

/* ===== FEATURES LIST ===== */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}
.feature-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #0a3a0a;
  font-weight: 700;
}
.feature-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-info p { font-size: 0.88rem; color: var(--color-text); margin: 0; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #0a3a0a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }

/* ===== COMPARISON TABLE ===== */
.compare-wrap {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border-bottom: 2px solid var(--color-border);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.highlight { background: linear-gradient(135deg, rgba(102,242,106,0.2), rgba(207,255,74,0.1)); color: #2D8B2F; }
.compare-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(102,242,106,0.03); }
.check-yes { color: #22c55e; font-size: 1.1rem; }
.check-no { color: #ef4444; font-size: 1.1rem; }
.check-partial { color: #f59e0b; font-size: 1.1rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.75;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #0a3a0a;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--color-heading); }
.testimonial-role { font-size: 0.8rem; color: var(--color-text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.88);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-heading);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: #2D8B2F; }
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(102,242,106,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #2D8B2F;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gradient-primary); color: #0a3a0a; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--color-text);
  line-height: 1.75;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  background: linear-gradient(135deg, rgba(102,242,106,0.15), rgba(207,255,74,0.1));
  border: 1px solid rgba(102,242,106,0.25);
  color: #2D8B2F;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.blog-date { font-size: 0.8rem; color: var(--color-text-light); }
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2D8B2F;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(102,242,106,0.15) 0%, rgba(207,255,74,0.12) 100%);
  border: 1px solid rgba(102,242,106,0.25);
  border-radius: var(--radius-card);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102,242,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; max-width: 580px; margin: 0 auto 32px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(102,242,106,0.08);
  border: 1px solid rgba(102,242,106,0.2);
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.93rem;
  color: var(--color-text);
  margin: 24px 0;
}
.info-box strong { color: var(--color-heading); }

/* ===== HIGHLIGHT CARD ===== */
.highlight-card {
  background: linear-gradient(135deg, rgba(102,242,106,0.12) 0%, rgba(207,255,74,0.08) 100%);
  border: 1px solid rgba(102,242,106,0.25);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
}
.highlight-card .big-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-card p { font-size: 0.95rem; color: var(--color-text); }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p { margin-bottom: 16px; }
.two-col-img { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-hover); }

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  padding: 48px 0 60px;
  text-align: center;
}
.page-hero .badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(102,242,106,0.15), rgba(207,255,74,0.1));
  border: 1px solid var(--color-border);
  color: #2D8B2F;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.page-hero h1 { margin-bottom: 16px; max-width: 820px; margin-left: auto; margin-right: auto; }
.page-hero p { max-width: 640px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.legal-content h2 { font-size: 1.35rem; margin: 36px 0 16px; color: var(--color-heading); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 12px; }
.legal-content p { font-size: 0.95rem; margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 16px 20px; }
.legal-content ul li { font-size: 0.95rem; margin-bottom: 8px; list-style: disc; }
.legal-meta { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.error-page h2 { font-size: 2rem; margin-bottom: 16px; }
.error-page p { max-width: 480px; margin: 0 auto 32px; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.wa-float-btn:hover {
  background: #128C7E;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-float-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===== WHATSAPP POPUP ===== */
.wa-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.wa-popup-overlay.show { opacity: 1; visibility: visible; }
.wa-popup {
  background: #fff;
  border-radius: 24px 24px 24px 24px;
  max-width: 420px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.wa-popup-overlay.show .wa-popup { transform: translateY(0); }
.wa-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.wa-popup-close:hover { background: rgba(0,0,0,0.12); }
.wa-popup-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.wa-popup-icon svg { width: 28px; height: 28px; fill: #fff; }
.wa-popup-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.wa-popup-desc {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.65;
}
.wa-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.wa-popup-btn:hover { background: #128C7E; }

/* ===== FOOTER ===== */
footer {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 40px; border-radius: 8px; }
.footer-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--color-heading); }
.footer-brand p { font-size: 0.9rem; color: var(--color-text); margin-bottom: 20px; line-height: 1.7; }
.footer-wa-btns { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-heading);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-text);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: #2D8B2F; }
.footer-seo {
  background: rgba(102,242,106,0.05);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
}
.footer-seo-content {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.8;
  columns: 2;
  gap: 32px;
}
.footer-seo-content p { margin-bottom: 12px; break-inside: avoid; }
.footer-seo-content a { color: #2D8B2F; }
.footer-seo-content a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.85rem; color: var(--color-text-light); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.85rem; color: var(--color-text-light); transition: var(--transition); }
.footer-legal a:hover { color: #2D8B2F; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }
.wa-float-btn { animation: pulse-green 2.5s infinite; }

/* ===== CONTACT PAGE ===== */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; }
.contact-card {
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contact-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; margin-bottom: 20px; }

/* ===== ABOUT PAGE ===== */
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.mv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card {
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
}
.value-card:hover { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }

/* ===== BADGE / CHIPS ===== */
.tag {
  display: inline-block;
  background: rgba(102,242,106,0.1);
  border: 1px solid rgba(102,242,106,0.2);
  color: #2D8B2F;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-heading);
}
.tag-cta {
  background: rgba(207,255,74,0.15);
  border-color: rgba(207,255,74,0.3);
  color: #4a6000;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-heading);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--color-primary); color: #0a3a0a; transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .section-lg { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-seo-content { columns: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; max-width: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-content { padding: 28px 20px; }
  .ratio-table th, .ratio-table td { padding: 12px 16px; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.82rem; }
  .wa-float-btn span { display: none; }
  .wa-float-btn { padding: 14px; border-radius: 50%; }
  .wa-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 480px; }
  .ratio-table-wrap { overflow-x: auto; }
  .ratio-table { min-width: 360px; }
  .section-header { margin-bottom: 36px; }
  .card-pad { padding: 20px; }
}

/* ===== PRINT ===== */
@media print {
  .navbar, .wa-float, .wa-popup-overlay, footer, .back-to-top { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ccc; }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
