/* ==========================================================================
   NALAN.LTD - Nalan Info Enterprises
   Light, Clean, Organic Modern Design System
   Inspired by premium B2B agro-export aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

:root {
  /* Primary Brand Green */
  --green-primary: #14a800;
  --green-dark: #0a2e20;
  --green-darker: #003d27;
  --green-light: #e8f5e3;
  --green-50: #f0fdf0;

  /* Warm Accents */
  --gold: #FFD700;
  --amber: #f59e0b;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;

  /* Neutral Palette */
  --bg-warm: #FDFBF7;
  --bg-white: #ffffff;
  --bg-gray-50: #f9fafb;
  --bg-gray-100: #fcfcfc;
  --border-light: #f3f4f6;
  --border-100: #e5e7eb;

  --text-dark: #111827;
  --text-heading: #0a2e20;
  --text-body: #4b5563;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Typography */
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.18);

  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-warm);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

p { color: var(--text-body); font-weight: 500; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP PRODUCT PRICE MARQUEE (CardamomHub Style)
   ========================================================================== */
.header-marquee-bar {
  background: #14a800;
  color: #ffffff;
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 101;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.header-marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.marquee-badge-highlight {
  background: #0a2e20;
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 900;
}

.marquee-item .arrow-up {
  color: #bbf7d0;
  font-size: 0.75rem;
}

/* ==========================================================================
   SECTION UTILITIES
   ========================================================================== */
.section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.badge-green {
  background: var(--green-50);
  color: var(--green-primary);
  border: 1px solid #dcfce7;
}

.badge-gold {
  background: var(--amber-50);
  color: #ca8a04;
  border: 1px solid var(--amber-100);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.7;
}

.text-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--green-primary);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 168, 0, 0.2);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: rgba(10, 46, 32, 0.1);
}

.btn-outline:hover {
  border-color: var(--green-dark);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 1rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  text-decoration: none;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-bounce);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.footer-logo .brand-logo-img {
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--green-primary);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-link:hover { color: var(--green-primary); }

.nav-link.active {
  color: var(--green-primary);
  border-bottom: 2px solid var(--green-primary);
  font-weight: 700;
  background: var(--green-50);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--border-light);
  padding: 2rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-gray-50);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-links a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-links a:hover, .mobile-links a.active {
  background: var(--green-50);
  color: var(--green-primary);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg-warm);
  overflow: hidden;
  padding: 3rem 0 4rem;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background: #f4f7f5;
  border-radius: 0 0 0 100px;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-bg-shape { display: none; }
}

.hero-blur-1 {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 256px;
  height: 256px;
  background: rgba(20, 168, 0, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.hero-blur-2 {
  position: absolute;
  bottom: -48px;
  left: -48px;
  width: 350px;
  height: 350px;
  background: rgba(20, 168, 0, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hero-check svg {
  width: 20px;
  height: 20px;
  color: var(--green-primary);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 10px solid white;
  position: relative;
}

@media (min-width: 992px) {
  .hero-image-frame {
    aspect-ratio: 1 / 1;
    max-width: none;
  }
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

/* Hero Floating Info Card */
.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 220px;
  border: 1px solid var(--border-light);
  z-index: 5;
}

@media (max-width: 767px) {
  .hero-float-card { bottom: -1rem; left: 0.5rem; }
}

.hero-float-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-float-card .label {
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.hero-float-card .value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
}

.hero-float-card .desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(5, 1fr); gap: 2rem; }
}

.product-card {
  background: var(--bg-gray-100);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-light);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.product-card-img {
  position: relative;
  width: 100%;
  height: 130px;
  margin-bottom: 1rem;
  background: var(--bg-gray-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.1);
}

.product-card-name {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-heading);
}

.product-card-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 0.5rem;
  color: #facc15;
  font-size: 0.6rem;
}

/* ==========================================================================
   DETAILED PRODUCT CARDS (Products Page)
   ========================================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .product-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .product-detail-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-detail-card {
  background: var(--bg-gray-100);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-detail-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-detail-card:hover .product-detail-img img {
  transform: scale(1.06);
}

.product-detail-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-primary);
  margin-bottom: 0.35rem;
}

.product-detail-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.product-detail-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.spec-tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--green-50);
  color: var(--green-dark);
  border: 1px solid #dcfce7;
}

.product-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-100);
  background: white;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
  box-shadow: 0 4px 12px rgba(20, 168, 0, 0.25);
}

/* ==========================================================================
   ABOUT / FEATURES GRID
   ========================================================================== */
.split-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split-layout { flex-direction: row; }
  .split-half { width: 50%; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.1rem;
}

.feature-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: none;
}

.feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* About Image */
.about-image-frame {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 10px solid white;
  aspect-ratio: 1;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--green-darker);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  color: white;
  max-width: 240px;
  display: none;
}

@media (min-width: 768px) {
  .about-float-card { display: block; }
}

.about-float-card .award-icon {
  color: var(--green-primary);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.about-float-card h4 {
  color: white;
  font-size: 1rem;
  text-transform: none;
  margin-bottom: 0.25rem;
}

.about-float-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Link Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  transition: gap 0.3s ease;
}

.link-arrow:hover { gap: 1rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--bg-gray-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #facc15;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}

.testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
}

.testimonial-role {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--green-dark);
  border-radius: var(--radius-2xl);
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--green-dark);
  box-shadow: none;
}

.cta-banner .btn-primary:hover { opacity: 0.95; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: white;
  border: 1px solid var(--border-100);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(20, 168, 0, 0.1);
}

textarea.form-control { resize: vertical; }

.form-success {
  display: none;
  background: var(--green-50);
  border: 1px solid #bbf7d0;
  padding: 1rem;
  border-radius: var(--radius-md);
  color: #166534;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ==========================================================================
   CALCULATOR
   ========================================================================== */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .calc-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.calc-panel {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.summary-card {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.summary-row .label { color: rgba(255, 255, 255, 0.6); font-weight: 500; }
.summary-row .value { font-weight: 700; color: white; }

.summary-total { padding: 1.5rem 0 1rem; }

.summary-total .total-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.total-val {
  font-size: 2rem;
  font-weight: 900;
  color: #34d399;
}

.fill-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 1rem;
}

.fill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-primary), #34d399);
  transition: width 0.4s ease;
  border-radius: 3px;
}

/* ==========================================================================
   TIMELINE (About Page)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-50);
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--green-primary);
  margin: 0 auto 1rem;
}

.process-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
  text-transform: none;
}

.process-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-2xl);
}

.modal-overlay.active .modal-box { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-gray-50);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.modal-close:hover { color: var(--text-heading); background: var(--border-light); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-card {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: white;
}

.contact-info-card h3 {
  color: #34d399;
  text-transform: none;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon { font-size: 1.4rem; }

.contact-info-item strong {
  color: white;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.15rem;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* FAQ */
.faq-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.faq-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child { border-bottom: none; margin-bottom: 0; }

.faq-q {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 0.25rem;
}

.faq-a {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: white;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '›';
  color: var(--border-100);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-primary);
}

.footer-links a:hover::before { color: var(--green-primary); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.footer-bottom-links a:hover { color: var(--green-primary); }

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Canvas for particles */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Smooth animation init */
.anim-init {
  opacity: 0;
  transform: translateY(30px);
}

/* Page Header for inner pages */
.page-header {
  padding: 8rem 0 3rem;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 168, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Utility grid helpers for two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
