/* ===== EFB Limited — Design System & Shared Styles ===== */

:root {
  /* Colors */
  --primary: #2d6a4f;
  --primary-dark: #1b4332;
  --primary-light: #40916c;
  --accent: #52b788;
  --accent-light: #e3efdd;
  --secondary: ##9b7828;
  --secondary-light: #c9a227;

  --bg: #fafdf7;
  --bg-alt: #f0f5eb;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #555;
  --text-light: #777;
  --border: #e0e8d8;
  --brown: #38370a;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-sans:
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Segoe UI", system-ui,
    sans-serif;
  --max-width: 1200px;
  --nav-height: 70px;
}

/* ===== Language toggle (CSS-driven) ===== */
[data-lang="zh"] .en {
  display: none !important;
}
[data-lang="en"] .zh {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== Layout Utilities ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}
.section-new {
  background-color: #e3efdd;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ===== Badge / Section Tag ===== */
.badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.interview-table {
  border-radius: 1rem;
  background-color: #fff;
}

/* Primary tone variants */
.badge--primary,
.section-tag--primary {
  background: #e3efdd;
  color: var(--primary-dark);
}

.badge--primary-pale,
.section-tag--primary-pale {
  background: #ffffeb;
  color: var(--primary-dark);
}

/* Earth tone variants */
.badge--earth,
.section-tag--earth {
  background: #f0f5eb;
  color: var(--primary-dark);
}

.badge--earth-sage,
.section-tag--earth-sage {
  background: #dce0b8;
  color: var(--primary-dark);
}

.badge--earth-cream,
.section-tag--earth-cream {
  background: #f8eccc;
  color: #9b7828;
}

.badge--earth-gold,
.section-tag--earth-gold {
  background: #dce0b8;
  color: #8b6914;
}

/* Layout variant: centered */
.badge--center,
.section-tag--center {
  display: flex; /* Change from inline-flex to flex */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

/* Icon inside badge */
.badge .tag-icon,
.section-tag .tag-icon {
  font-size: 1rem;
  line-height: 1;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== Navigation ===== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 16;
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.5);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition:
    background 0.2s,
    color 0.2s;
}

.footer-cta-green {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  color: #fff;
  padding: 2.8rem 0;
  text-align: center;
  margin: 6rem 6rem;
  border-radius: 1.2rem;
}

.footer-cta-lightgreen {
  /* background: linear-gradient(135deg, #bed9c1 0%, #d1f0d3 100%); */
  background-color: #e4f0dd;
  color: var(--primary);
  /* color: #fff; */
  padding: 2.8rem;
  text-align: center;
  margin: 6rem 6rem;
  border-radius: 1.2rem;
}

.nav-links a:hover,
.nav-links a.active {
  /* background: var(--bg-alt); */
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-toggle:hover {
  background: var(--primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 1rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.2rem;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    var(--accent) 100%
  );
  /* color: #fff; */
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
  /* pointer-events: none; */
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    background 0.2s;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 12rem;
}
.btn-primary:hover {
  background: var(--primary-light);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline-light {
  background: #fff;
  color: var(--primary);
  border: 1px solid #ccc;
}
.btn-outline-light:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--border);
  color: var(--primary-dark);
}

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Cards ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Stats / Metric ===== */
.metric-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.metric-label {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Image Placeholder ===== */
.img-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  color: var(--text-light);
  font-size: 1rem;
  text-align: center;
  /* padding: 24px; */
}

.img-placeholder.hero-img {
  min-height: 350px;
}

/* ===== Pricing Table ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
}
.hero-layout {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 3.6rem;
  align-items: center;
}

.pricing-badge {
  /* position: absolute; */
  top: -12px;
  left: 50%;
  /* transform: translateX(-50%); */
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0;
}

.pricing-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  text-align: left;
  margin: 20px 0;
  padding: 0;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-light);
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-year {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 1;
}

.timeline-content {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.timeline-content h4 {
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Photo Carousel ===== */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img,
.carousel-slide .img-placeholder {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 16px;
  font-size: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: #fff;
}
.carousel-btn.prev {
  left: 12px;
}
.carousel-btn.next {
  right: 12px;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  background: var(--bg-card);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ===== Contact Info ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item p {
  font-weight: 600;
}

/* ===== Flow Steps ===== */
.flow-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 40px 0;
}

.flow-step {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 20px 16px;
  position: relative;
}

.flow-step::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.flow-step:last-child::after {
  display: none;
}

.flow-step-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}

.flow-step h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.flow-step p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===== Testimonial ===== */
.testimonial {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

.testimonial p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
}

/* ===== Badges / Tags ===== */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
}

.badge-primary {
  background: var(--bg-alt);
  color: var(--primary);
}
.badge-accent {
  background: rgba(82, 183, 136, 0.15);
  color: var(--primary-dark);
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.tab-btn:hover {
  color: var(--primary);
}
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* ===== Counter animation ===== */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ===== Pie Chart (CSS-only) ===== */
.pie-chart-container {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.pie-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pie-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.pie-legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ===== Accordion ===== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  color: var(--text);
}

.accordion-header::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.accordion-item.open .accordion-header::after {
  content: "−";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-inner {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.1rem 1.2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12rem;
  margin-bottom: 40px;
  padding: 0 24px;
}

.footer-brand-link {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-brand-link:hover {
  color: var(--accent-light);
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer p {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  align-content: start;
}

.footer-links-two a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links-two a:hover {
  color: var(--accent-light);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social a.footer-fb,
.footer-social a.footer-ig {
  width: auto;
  padding: 0.3rem 14px;
  border-radius: 18px;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Page Hero (100vh for non-landing pages) ===== */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    var(--accent) 100%
  );
  color: #fff;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero .hero-lead {
  font-size: 1.5rem;
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.page-hero .hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: "↓";
  font-size: 1.2rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    var(--accent) 100%
  );
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.hero-subtitle,
.hero-subtitle {
  color: #9b7828;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
}
.hero-title {
  font-size: 3.12rem;
  color: var(--primary-dark);
  letter-spacing: 0.05rem;
  display: block;
  line-height: 1.2;
  font-weight: 700;
}

.hero-title {
  color: var(--primary-dark);
  font-size: 3.12rem;
  letter-spacing: 0.05em;
  display: block;
 
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--text);
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 24px;
  }
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 48px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .grid-2,
  .grid-3,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 24px;
  }
  .footer-links-two {
    grid-template-columns: 1fr 1fr;
  }
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }
  .flow-step::after {
    display: none;
  }
@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}
  .footer-cta-lightgreen {
    background-color: #e3efdd;
    color: var(--primary);
    /* color: #fff; */
    padding: 2.8rem 1.2rem;

    text-align: center;
    margin: 2.4rem 1.2rem;
    border-radius: 1.2rem;
  }
  .btn-whatsapp {
  background: #16a34a;
  color: #fff;
  display: flex;
  justify-content: center;
  width: 100%;
}
}

@media (max-width: 1024px) {
  .page-hero {
    min-height: 100svh;
    padding: 100px 20px 80px;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
  .page-hero .hero-lead {
    font-size: 1.05rem;
  }
  .carousel-slide img,
  .carousel-slide .img-placeholder {
    height: 24rem;
  }
  .hero-title {
    font-size: 2.4rem;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .hero-subtitle {
    font-size: 1.38rem;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .metric-value {
    font-size: 1.8rem;
  }
  
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
