/* ========================================
   PACKING MASTER - Custom Styles
   Color Palette from Logo:
   - Primary Green: #1B6B2A
   - Dark Green: #145220
   - Black: #1A1A1A
   - White: #FFFFFF
   - Light Gray BG: #F7F8F6
   - Medium Gray: #E5E7EB
   - Text Dark: #333333
   - Text Light: #6B7280
   ======================================== */

/* ---- Base & Reset ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 80%;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  font-family: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333333;
  background: #FFFFFF;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { color: #6B7280; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background-color: #1B6B2A;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #145220;
}

.btn-outline {
  background-color: transparent;
  color: #1B6B2A;
  border-color: #1B6B2A;
}

.btn-outline:hover {
  background-color: #1B6B2A;
  color: #FFFFFF;
}

.btn-white {
  background-color: #FFFFFF;
  color: #1B6B2A;
}

.btn-white:hover {
  background-color: #F7F8F6;
}

/* ---- Top Bar ---- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #333333;
  height: 34px;
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.topbar p {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar__cta {
  color: #86C232;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.topbar__cta:hover {
  color: #9ED654;
}

.topbar__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #86C232;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.2s, transform 0.2s;
}

.topbar__arrow:hover {
  background: #9ED654;
  transform: scale(1.1);
}

/* ---- Header / Navigation ---- */
.header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  height: 96px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo img {
  height: 58px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.header__nav a {
  font-weight: 500;
  font-size: 1.0625rem;
  color: #1A1A1A;
  position: relative;
  padding: 0.25rem 0;
}

.header__nav a:hover {
  color: #1B6B2A;
}

.header__nav a.active {
  color: #1B6B2A;
  font-weight: 600;
}

.header__nav a.active::after {
  display: none;
}

.header__nav-shop {
  background: #1B6B2A;
  color: #FFFFFF !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 0.375rem;
  font-weight: 600 !important;
  transition: background-color 0.2s;
}

.header__nav-shop:hover {
  background: #145220;
  color: #FFFFFF !important;
}

.mobile-nav__shop {
  background: #1B6B2A;
  color: #FFFFFF !important;
  text-align: center;
  border-radius: 0.375rem;
  border-bottom: none !important;
  padding: 0.75rem 0 !important;
  font-weight: 600;
}

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

/* Language switcher - pill toggle */
.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-switcher__track {
  position: relative;
  display: flex;
  align-items: center;
  width: 120px;
  height: 36px;
  background: #EAECEE;
  border-radius: 18px;
  border: 1px solid #D1D5DB;
  padding: 3px;
  transition: transform 0.15s ease;
}

.lang-switcher__track:active {
  transform: scale(0.97);
}

.lang-switcher__indicator {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: #1B6B2A;
  border-radius: 15px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.lang-switcher__track[data-active="en"] .lang-switcher__indicator {
  transform: translateX(100%);
}

.lang-switcher__option {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #6B7280;
  border-radius: 15px;
  padding: 0;
  height: 100%;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-switcher__option.active {
  color: #FFFFFF;
}

.lang-switcher__flag {
  width: 16px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-switcher__option:not(.active) .lang-switcher__flag {
  opacity: 0.6;
}

/* Mobile nav pill - slightly larger */
.mobile-nav .lang-switcher__track {
  width: 140px;
  height: 40px;
  border-radius: 20px;
}

.mobile-nav .lang-switcher__indicator {
  border-radius: 17px;
}

.mobile-nav .lang-switcher__option {
  font-size: 0.875rem;
  border-radius: 17px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E5E7EB;
}

.mobile-nav a:hover {
  color: #1B6B2A;
}

/* ---- Hero Section ---- */
.hero {
  margin-top: 130px;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1A1A1A 50%, #1B6B2A 100%);
}

/* Hero video background */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--video {
  background: #0a0a0a;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__container {
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 130px);
  padding-bottom: 4rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #FFFFFF;
}

.hero__content h1 {
  color: #FFFFFF;
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__content h1 span {
  color: #4ADE80;
}

.hero__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__buttons .btn-primary {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__buttons .btn-outline {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border-width: 2px;
}

/* ---- Section Base ---- */
.section {
  padding: 5rem 0;
}

.section--gray {
  background-color: #F7F8F6;
}

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

.section__header h2 {
  margin-bottom: 1rem;
}

.section__header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.section__label {
  display: inline-block;
  color: #1B6B2A;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* ---- Cards Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ---- Benefit Items (legacy) ---- */

/* ---- Product Card ---- */
.product-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 308px;
  overflow: hidden;
  background: #F7F8F6;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__body h4 {
  margin-bottom: 0.5rem;
}

.product-card__body p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 2rem;
}

.testimonial-card__stars {
  color: #F59E0B;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.testimonial-card__text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333333;
  line-height: 1.7;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1B6B2A;
  font-size: 0.875rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: #1A1A1A;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: #6B7280;
}

/* ---- Partners ---- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  height: 120px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}

/* ---- Blog Card ---- */
.blog-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F7F8F6;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.8125rem;
  color: #6B7280;
  margin-bottom: 0.5rem;
}

.blog-card__body h4 {
  margin-bottom: 0.5rem;
}

.blog-card__body p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, #1B6B2A 0%, #145220 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

/* ---- Contact Form ---- */
.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1A1A1A;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  color: #333333;
  background: #FFFFFF;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1B6B2A;
  box-shadow: 0 0 0 3px rgba(27, 107, 42, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ---- Contact Info ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 36px;
  height: 36px;
  background: #E8F5E9;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B6B2A;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__text h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.contact-info__text p {
  font-size: 0.9375rem;
}

/* ---- Map ---- */
.map-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 250px;
  background: #F7F8F6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Footer ---- */
.footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand p {
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__brand img {
  height: 32px;
}

.footer h5 {
  color: #FFFFFF;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer ul li {
  margin-bottom: 0.625rem;
}

.footer ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: #4ADE80;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background-color 0.2s, color 0.2s;
}

.footer__social a:hover {
  background: #1B6B2A;
  color: #FFFFFF;
}

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__bottom a:hover {
  color: #FFFFFF;
}

/* ---- Privacy Policy Page ---- */
.privacy-content {
  padding: 4rem 0 5rem;
}

.privacy-content__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content__section {
  margin-bottom: 2.5rem;
}

.privacy-content__section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.privacy-content__section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.75rem;
}

.privacy-content__section ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.privacy-content__section ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.5rem;
}

.privacy-content__section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: #1B6B2A;
  border-radius: 50%;
}

.form-group--consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-group--consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: #1B6B2A;
  cursor: pointer;
  flex-shrink: 0;
}

.form-group--consent label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555;
  cursor: pointer;
}

.form-group--consent label a {
  color: #1B6B2A;
  text-decoration: underline;
}

/* ---- About Page ---- */
.about-hero {
  margin-top: 130px;
  padding: 5rem 0;
  background: #F7F8F6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 400px;
  background: #E5E7EB;
}

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

/* ---- Pricing Table ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  text-align: center;
}

.pricing-card--featured {
  border-color: #1B6B2A;
  position: relative;
}

.pricing-card--featured::before {
  content: attr(data-label);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1B6B2A;
  color: #FFFFFF;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h4 {
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1B6B2A;
  margin: 1rem 0;
}

.pricing-card__price span {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 400;
}

.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0 2rem;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card ul li::before {
  content: '✓';
  color: #1B6B2A;
  font-weight: 700;
}

/* ---- Page Header ---- */
.page-header {
  margin-top: 130px;
  padding: 4rem 0;
  background: #F7F8F6;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1rem;
  justify-content: center;
}

.breadcrumb a {
  color: #1B6B2A;
}

.breadcrumb span {
  color: #6B7280;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .header__nav { display: none; }
  .hamburger { display: flex; }

  .hero__content h1 { font-size: 2.25rem; }
  .hero__container { padding-bottom: 3rem; min-height: auto; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3rem 0; }
}

/* ============================================
   ADDITIONAL STYLES - Agent class name aliases
   ============================================ */

/* ---- Section label & subtitle aliases ---- */
.section-label { display: inline-block; color: #1B6B2A; font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.section-subtitle { max-width: 600px; margin: 0 auto; font-size: 1.0625rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.0625rem; }

/* ---- Hero direct content (no wrapper) ---- */
.hero > .container { position: relative; z-index: 2; }
.hero .btn-outline { border-color: rgba(255,255,255,0.4); color: #FFFFFF; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #FFFFFF; }

/* ---- Benefits section ---- */
.benefits { padding: 3.5rem 0; background: #F7F8F6; text-align: center; }
.benefits h2 { margin-bottom: 2rem; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B6B2A;
  margin: 0 auto 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.benefit-card:hover .benefit-card__icon {
  background: #1B6B2A;
  color: #FFFFFF;
}

.benefit-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.benefit-card p {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}

/* ---- Products section ---- */
.products { padding: 5rem 0; text-align: center; }
.products h2 { margin-bottom: 1rem; }
.products > .container > p { max-width: 600px; margin: 0 auto 3rem; }
.products__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.products-grid .grid { display: grid; gap: 2rem; }
.grid--2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Product card placeholder */
.product-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8F5E9 0%, #F7F8F6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B6B2A;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

/* Product card content alias and direct img */
.product-card > img { width: 100%; height: 308px; object-fit: cover; background: #F7F8F6; }
.product-card__img-wrap { position: relative; overflow: hidden; }
.product-card__img-wrap img { width: 100%; height: 308px; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card__img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, #FFFFFF 0%, rgba(255,255,255,0) 100%); pointer-events: none; z-index: 2; }
.product-card__overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(20, 82, 32, 0.88); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 1.75rem; font-size: 0.8rem; line-height: 1.65; letter-spacing: 0.01em; text-align: left; opacity: 0; transform: translateY(8px); transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 3; overflow-y: auto; }
.product-card__overlay p { margin: 0 0 0.75rem; color: #fff; }
.product-card__overlay p:last-child { margin-bottom: 0; }
.product-card:hover .product-card__overlay { opacity: 1; transform: translateY(0); }
.product-card__content { padding: 1.5rem; text-align: left; position: relative; margin-top: -2px; background: #FFFFFF; }
.product-card__content h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.product-card__content p { font-size: 0.9375rem; margin-bottom: 1rem; display: none; }
.product-card__link { display: inline-block; color: #1B6B2A; font-weight: 600; font-size: 0.9375rem; }
.product-card__link:hover { text-decoration: underline; }

/* ---- Testimonials section ---- */
.testimonials { padding: 5rem 0; background: #F7F8F6; text-align: center; }
.testimonials h2 { margin-bottom: 1rem; }
.testimonials > .container > p { max-width: 600px; margin: 0 auto 3rem; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; }
.testimonial-card__author strong { display: block; font-weight: 600; color: #1A1A1A; }
.testimonial-card__author span { font-size: 0.8125rem; color: #6B7280; }

/* ---- Partners section ---- */
.partners { padding: 5rem 0; text-align: center; }
.partners h2 { margin-bottom: 2rem; }
.partners__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; align-items: center; justify-items: center; }
.partner-logo { font-weight: 600; color: #9CA3AF; font-size: 0.9375rem; }

/* ---- Blog preview section ---- */
.blog-preview { padding: 5rem 0; text-align: center; }
.blog-preview h2 { margin-bottom: 1rem; }
.blog-preview > .container > p { max-width: 600px; margin: 0 auto 3rem; }
.blog-preview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; }

/* Blog card content alias and direct img */
.blog-card > img { width: 100%; height: 200px; object-fit: cover; background: #F7F8F6; }
.blog-card__content { padding: 1.5rem; }
.blog-card__content h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.blog-card__content h3 a { color: #1A1A1A; }
.blog-card__content h3 a:hover { color: #1B6B2A; }
.blog-card__content p { font-size: 0.9375rem; margin-bottom: 1rem; }
.blog-card__date { display: block; font-size: 0.8125rem; color: #6B7280; margin-bottom: 0.5rem; }
.blog-card__link { display: inline-block; color: #1B6B2A; font-weight: 600; font-size: 0.9375rem; }
.blog-card__link:hover { text-decoration: underline; }

/* ---- CTA section alias ---- */
.cta { background: linear-gradient(135deg, #1B6B2A 0%, #145220 100%); color: #FFFFFF; text-align: center; padding: 5rem 0; }
.cta h2 { color: #FFFFFF; margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; font-size: 1.125rem; }

/* ---- Page Header Breadcrumb ---- */
.page-header__breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #6B7280; margin-bottom: 1rem; justify-content: center; }
.page-header__breadcrumb a { color: #1B6B2A; }

/* ---- About Story section ---- */
.about-story { padding: 5rem 0; }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-story__text h2 { margin-bottom: 1.5rem; }
.about-story__text p { margin-bottom: 1rem; line-height: 1.7; }
.about-story__image { border-radius: 0.75rem; overflow: hidden; }
.about-story__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- About Mission section ---- */
.about-mission { padding: 5rem 0; background: #F7F8F6; text-align: center; }
.about-mission h2 { margin-bottom: 1.5rem; }
.about-mission p { max-width: 700px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.7; }

/* ---- About Values section ---- */
.about-values { padding: 5rem 0; text-align: center; }
.about-values h2 { margin-bottom: 3rem; }
.about-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.about-values__item { text-align: center; }
.about-values__icon { width: 58px; height: 58px; background: #E8F5E9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #1B6B2A; }
.about-values__item h3 { font-size: 1.125rem; }

/* ---- About Gallery section ---- */
.about-gallery { padding: 5rem 0; background: #F7F8F6; text-align: center; }
.about-gallery h2 { margin-bottom: 0.75rem; }
.about-gallery > .container > p { margin-bottom: 2.5rem; }
.about-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-gallery__grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 0.75rem; display: block; }

/* ---- Pricing section (products page) ---- */
.pricing { background: #F7F8F6; }
.pricing .grid--3,
.pricing .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card__features { text-align: left; margin: 1.5rem 0 2rem; }
.pricing-card__features li { padding: 0.5rem 0; font-size: 0.9375rem; color: #333333; display: flex; align-items: center; gap: 0.5rem; }
.pricing-card__features li::before { content: '✓'; color: #1B6B2A; font-weight: 700; }

/* ---- Contact page ---- */
.contact { padding: 5rem 0; }
.contact__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
.contact__form-wrapper { }
.contact__form { display: grid; gap: 1.25rem; }
.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__info-card { background: #F7F8F6; border-radius: 0.75rem; padding: 1.5rem; }
.contact__info-icon { width: 36px; height: 36px; background: #E8F5E9; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: #1B6B2A; margin-bottom: 0.75rem; }
.contact__info-card h4 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.contact__info-card p { font-size: 0.9375rem; }

/* ---- Contact map ---- */
.contact__map { width: 100%; }
.contact__map iframe { width: 100%; display: block; }

/* ---- Blog listing page ---- */
.blog-listing { padding: 5rem 0; }
.blog-listing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ---- Blog card image as anchor ---- */
a.blog-card__image { display: block; width: 100%; height: 200px; overflow: hidden; background: #F7F8F6; }
a.blog-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Additional Responsive ---- */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing .grid--3,
  .pricing .grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .about-story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
  .about-gallery__grid { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .blog-listing__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 6rem 0 0; }
}

@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-gallery__grid { grid-template-columns: 1fr; }
}

/* ============================================
   ADVANCED ANIMATIONS SYSTEM
   ============================================ */

/* ---- Page Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
}

.page-loader__logo {
  height: 60px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.page-loader__bar {
  width: 120px;
  height: 3px;
  background: #E5E7EB;
  border-radius: 3px;
  margin: 1.5rem auto 0;
  overflow: hidden;
}

.page-loader__bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: #1B6B2A;
  border-radius: 3px;
  animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---- Scroll Reveal Animations ---- */
[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] { transform: translateY(60px); }
[data-animate="fade-down"] { transform: translateY(-60px); }
[data-animate="fade-left"] { transform: translateX(60px); }
[data-animate="fade-right"] { transform: translateX(-60px); }
[data-animate="zoom-in"] { transform: scale(0.85); }
[data-animate="zoom-out"] { transform: scale(1.15); }
[data-animate="flip-up"] { transform: perspective(800px) rotateX(15deg) translateY(40px); }
[data-animate="rotate-in"] { transform: rotate(-5deg) scale(0.9); }
[data-animate="blur-in"] { filter: blur(12px); transform: translateY(20px); }
[data-animate="slide-up"] { transform: translateY(100%); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Stagger delays for children */
[data-stagger] > *:nth-child(1) { transition-delay: 0s; }
[data-stagger] > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger] > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger] > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger] > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger] > *:nth-child(6) { transition-delay: 0.5s; }

/* Custom delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* ---- Hero Animations ---- */
.hero {
  overflow: hidden;
}


/* Hero text entrance */
.hero__content h1 {
  animation: heroTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero__content p {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero__buttons {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(40px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0% 0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---- Top Bar & Header Animation ---- */
.topbar {
  animation: headerSlideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.header {
  animation: headerSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Topbar responsive */
@media (max-width: 768px) {
  .topbar { height: 29px; }
  .topbar p { font-size: 0.75rem; gap: 0.375rem; }
  .topbar__arrow { width: 20px; height: 20px; font-size: 0.75rem; }
  .header { top: 29px; height: 72px; }
  .mobile-nav { top: 101px; }
  .hero { margin-top: 101px; min-height: calc(100vh - 101px); }
  .page-header { margin-top: 101px; }
  .about-hero { margin-top: 101px; }
}

@media (max-width: 480px) {
  .topbar p span.topbar__text { display: none; }
}

/* Nav link hover animation */
.header__nav a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #1B6B2A;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1), right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__nav a:hover::before {
  left: 0;
  right: 0;
}

.header__nav a.active::before {
  left: 0;
  right: 0;
}

/* ---- Card Hover Effects ---- */

/* Product card hover */
.product-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card__image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card:hover .product-card__img-wrap img {
  transform: none;
}

.product-card__link {
  position: relative;
  padding-right: 1.5rem;
  transition: padding-right 0.3s ease;
}

.product-card__link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-5px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-card:hover .product-card__link::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

/* Blog card hover */
.blog-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.blog-card img,
.blog-card__image img,
a.blog-card__image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover img,
.blog-card:hover .blog-card__image img,
.blog-card:hover a.blog-card__image img {
  transform: scale(1.06);
}

.blog-card__link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__link::after {
  transform: translateX(4px);
}

/* Testimonial card hover */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Pricing card hover */
.pricing-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 107, 42, 0.12);
}

/* Contact info card hover */
.contact__info-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact__info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background-color: #FFFFFF;
}

/* About values hover */
.about-values__icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.about-values__item:hover .about-values__icon {
  transform: scale(1.15);
  background-color: #1B6B2A;
  color: #FFFFFF;
}

/* Gallery image hover */
.about-gallery__grid img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.about-gallery__grid img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Partner logo hover */
.partner-logo {
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
  opacity: 1;
  color: #1B6B2A;
}

/* ---- Button Effects ---- */

/* Button hover - simple opacity */
.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline:hover {
  opacity: 0.85;
}

/* ---- Blog Article (single post) ---- */
.blog-article { padding: 0 0 4rem; }
.blog-article .container { max-width: 800px; }
.blog-article__hero { margin: -2rem 0 2.5rem; border-radius: 12px; overflow: hidden; }
.blog-article__hero img { width: 100%; height: auto; max-height: 450px; object-fit: cover; display: block; }
.blog-article__body { line-height: 1.8; color: #374151; }
.blog-article__lead { font-size: 1.2rem; font-weight: 500; color: #1A1A1A; line-height: 1.7; margin-bottom: 2rem; border-left: 4px solid #1B6B2A; padding-left: 1.25rem; }
.blog-article__body h2 { font-size: 1.5rem; color: #1A1A1A; margin: 2.5rem 0 1rem; }
.blog-article__body p { margin-bottom: 1rem; }
.blog-article__body ul, .blog-article__body ol { margin: 0 0 1.5rem 1.5rem; }
.blog-article__body li { margin-bottom: 0.5rem; }
.blog-article__body a { color: #1B6B2A; text-decoration: underline; }
.blog-article__body a:hover { color: #145220; }
.blog-article__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #E5E7EB; }
.blog-article__tags span { background: #F3F4F6; color: #4B5563; padding: 0.35rem 0.85rem; border-radius: 20px; font-size: 0.8125rem; font-weight: 500; }
.blog-article__inline-img { margin: 2rem 0; border-radius: 10px; overflow: hidden; }
.blog-article__inline-img img { width: 100%; height: auto; display: block; }
.blog-article__inline-img figcaption { font-size: 0.8125rem; color: #6B7280; text-align: center; padding: 0.75rem 0 0; font-style: italic; }
.blog-article__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #E5E7EB; }

@media (max-width: 768px) {
  .blog-article__hero { margin: -1rem -1rem 2rem; border-radius: 0; }
  .blog-article__body h2 { font-size: 1.3rem; }
  .blog-article__nav { flex-direction: column; }
  .blog-article__nav .btn { text-align: center; }
}

.btn-white:hover {
  opacity: 0.85;
}

/* ---- Section label animation ---- */
.section-label {
  position: relative;
  overflow: hidden;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1B6B2A;
  transform: translateX(-101%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-label.is-visible::after {
  transform: translateX(0);
}

/* ---- CTA section glow ---- */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
  border-radius: 50%;
  animation: ctaGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes ctaGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.2); }
}

/* ---- Parallax container ---- */
[data-parallax] {
  will-change: transform;
}

/* ---- Text gradient shimmer (for hero span) ---- */
.hero__content h1 span {
  background: linear-gradient(90deg, #4ADE80 0%, #86EFAC 50%, #4ADE80 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ---- Smooth image reveal ---- */
.img-reveal {
  overflow: hidden;
  position: relative;
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #1B6B2A;
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: scaleX(1);
}

.img-reveal.is-visible::after {
  transform: scaleX(0);
}

/* ---- Page header parallax text ---- */
.page-header {
  overflow: hidden;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27, 107, 42, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

/* ---- Floating decoration ---- */
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

/* ---- Custom scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F7F8F6;
}

::-webkit-scrollbar-thumb {
  background: #1B6B2A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #145220;
}

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B6B2A, #4ADE80);
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ---- Contact form success modal ---- */
.form-success {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
}

.form-success.is-open {
  pointer-events: auto;
  visibility: visible;
}

.form-success__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 19, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.form-success.is-open .form-success__backdrop {
  opacity: 1;
}

.form-success__card {
  position: relative;
  background: #FFFFFF;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(17, 24, 19, 0.35), 0 10px 25px -10px rgba(17, 24, 19, 0.2);
  transform: scale(0.85) translateY(16px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.form-success.is-open .form-success__card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.form-success__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.form-success.is-open .form-success__icon {
  transform: scale(1);
}

.form-success__icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #1B6B2A;
  opacity: 0;
}

.form-success.is-open .form-success__icon::before {
  animation: successPulse 1.4s ease-out 0.5s;
}

.form-success__checkmark {
  width: 56px;
  height: 56px;
  stroke: #1B6B2A;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success__circle {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.35s;
}

.form-success.is-open .form-success__circle {
  stroke-dashoffset: 0;
}

.form-success__check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.65, 0, 0.35, 1) 0.8s;
}

.form-success.is-open .form-success__check {
  stroke-dashoffset: 0;
}

.form-success__title,
.form-success__text,
.form-success__close {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-success.is-open .form-success__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.85s;
}

.form-success.is-open .form-success__text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}

.form-success.is-open .form-success__close {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}

.form-success__title {
  font-family: 'Google Sans', 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111813;
  margin: 0 0 0.5rem;
}

.form-success__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4B5650;
  margin: 0 0 1.75rem;
}

.form-success__close {
  min-width: 140px;
}

@keyframes successPulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.25); }
}

/* ---- Reduce motion preference ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; filter: none; }
  .page-loader { display: none; }
  .form-success__circle,
  .form-success__check { stroke-dashoffset: 0 !important; }
}
