/* ============================================================
   PLAY CONCEPT — HOMEPAGE STYLES
   ============================================================ */

html {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

/* Redefine variables here so this file is self-contained and
   works even if style.css loads after or is missing. */
:root {
  --color-primary:       #3AAA35;
  --color-secondary:     #2255A4;
  --color-accent-red:    #E03030;
  --color-accent-yellow: #F5C400;
  --color-dark:          #1a1a1a;
  --color-text:          #555555;
  --color-bg-light:      #f7fdf4;
  --color-border:        #e8e8e8;
  --font-main:           'Heebo', sans-serif;
  --font-title:          'Heebo', sans-serif;
}

/* ============================================================
   PARALLAX BACKGROUND
   ============================================================ */
.pc-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden !important;
  max-height: 100% !important;
  /* height set via JS to document.scrollHeight — CSS 100% resolves to 0
     when parent has height:auto, so we can't rely on it here */
  pointer-events: none;
  z-index: 0;
}

.pc-parallax-bg .shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  opacity: 0.12;
}

.shape-circle  { border-radius: 50%; }
.shape-square  { border-radius: 4px; }

/* Triangle: sized via JS border values; background/size overrides not needed */
.shape-triangle {
  background: transparent !important;
  width: 0 !important;
  height: 0 !important;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

/* Prevent parallax shapes that extend near edges from creating a horizontal scrollbar */
body {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

/* Positioning context for the absolute parallax container.
   Background set here so light sections can be transparent and show shapes. */
.home-main {
  position: relative;
  background: #f7fdf4;
  background: var(--color-bg-light);
  overflow-x: hidden !important;
  padding-top: 0 !important; /* body padding-top already offsets the fixed header; layout.css adds another 80px which creates the gap */
}

/* All sections sit above the absolute parallax layer (z-index: 0) */
.hero-section,
.stats-bar,
.categories-section,
.products-section,
.featured-banner,
.how-it-works,
.contact-section {
  position: relative;
  z-index: 1;
}

/* Custom logo — homepage context */
.custom-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 14px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(to left, #3AAA35 0%, #1a8fd1 100%);
  border: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Sweep shimmer on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
}

.btn-primary:hover::after {
  opacity: 1;
  animation: pc-shimmer 0.55s ease forwards;
}

.btn-primary:hover {
  background: linear-gradient(to left, #2d9a29 0%, #1680bc 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 170, 53, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-secondary);
  border-color: #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO — KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes pc-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(6deg); }
}
@keyframes pc-float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(-4deg); }
}
@keyframes pc-float-img-1 {
  0%, 100% { transform: translateY(0px)   rotate(-6deg); }
  50%       { transform: translateY(-18px) rotate(-4deg); }
}
@keyframes pc-float-img-2 {
  0%, 100% { transform: translateY(0px)   rotate(3deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}
@keyframes pc-float-img-3 {
  0%, 100% { transform: translateY(0px)   rotate(-3deg); }
  50%       { transform: translateY(-18px) rotate(-1deg); }
}
@keyframes pc-badge-dot {
  0%, 100% { box-shadow: 0 0 0 0   rgba(58, 170, 53, 0.55); }
  60%       { box-shadow: 0 0 0 8px rgba(58, 170, 53, 0);   }
}
@keyframes pc-shimmer {
  from { left: -80%; }
  to   { left: 130%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: radial-gradient(ellipse at 50% 0%, #d4f0d4 0%, #eaf7ea 30%, #f7fdf4 65%, #ffffff 100%);
  padding: 39px 0 2px;
  overflow: hidden;
  position: relative;
}


.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

.hero-content {
  text-align: right;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(58, 170, 53, 0.10);
  color: var(--color-primary);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(58, 170, 53, 0.22);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: pc-badge-dot 2.2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.12;
  margin: 0 0 22px;
}

.hero-title span {
  color: var(--color-primary);
  display: inline-block;
  position: relative;
}

.hero-title .line-black {
  color: var(--color-dark);
}

.hero-title .line-black::after {
  display: none;
}

/* Colorful gradient underline beneath the highlighted headline word */
.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0; left: 0;
  height: 5px;
  background: linear-gradient(to left,
    var(--color-primary)       0%,
    var(--color-accent-yellow) 100%
  );
  border-radius: 3px;
  opacity: 0.55;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(58, 170, 53, 0.18);
  margin-top: 4px;
  justify-content: flex-start;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
}

.trust-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-images {
  position: relative;
  width: 546px;
  height: 546px;
  flex-shrink: 0;
}

.hero-img-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.hero-img-wrap.hero-img-1 {
  width: 260px;
  height: 260px;
}

.hero-img-wrap.hero-img-2 {
  width: 221px;
  height: 221px;
}

.hero-img-wrap.hero-img-3 {
  width: 195px;
  height: 195px;
}

.hero-img-1 {
  top: 0;
  right: 40px;
  border: 4px solid #2255A4;
  transform: rotate(-6deg);
  z-index: 3;
  animation: pc-float-img-1 9s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-img-2 {
  top: 160px;
  right: 280px;
  border: 4px solid #F5C400;
  transform: rotate(4deg);
  z-index: 2;
  animation: pc-float-img-2 9s ease-in-out infinite;
  animation-delay: 0.8s;
}

.hero-img-3 {
  top: 280px;
  right: 0px;
  border: 4px solid #3AAA35;
  transform: rotate(-3deg);
  z-index: 1;
  animation: pc-float-img-3 9s ease-in-out infinite;
  animation-delay: 1.6s;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-shape-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(58, 170, 53, 0.16) 0%, rgba(58, 170, 53, 0.06) 55%, transparent 100%);
  top: -80px;
  left: -80px;
  animation: pc-float 10s ease-in-out infinite;
}

.hero-shape-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.15) 0%, rgba(245, 196, 0, 0.05) 55%, transparent 100%);
  bottom: 40px;
  right: -60px;
  animation: pc-float-slow 8s ease-in-out infinite;
}

.hero-shape-3 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.28) 0%, rgba(245, 196, 0, 0.08) 60%, transparent 100%);
  top: 55%;
  left: 5%;
  animation: pc-float-slow 7s ease-in-out infinite 1.5s;
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, #3AAA35 0%, #2d8a29 100%) !important;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 0;
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: -70px; right: -30px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
  border-left: none;
}

.stat-icon {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  font-family: 'Heebo', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number bdi {
  font-size: inherit;
  font-weight: inherit;
}

.stat-label {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.95) !important;
  margin-bottom: 8px;
}

.stat-badge {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 4px 12px !important;
  border-radius: 20px;
}

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.categories-section {
  background: linear-gradient(135deg, #f0faf0 0%, #e4f4e4 50%, #f0faf0 100%);
  border-bottom: 3px solid #3AAA35;
  padding: 20px 0 80px;
  position: relative;
}

.categories-section .section-tag {
  display: inline-block;
  background: #f0faea;
  color: #3AAA35;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 8px 22px !important;
  border-radius: 20px;
  border: 1px solid #c8ecc0;
  margin-bottom: 1rem;
}

.categories-section .section-title {
  font-family: 'Heebo', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.categories-section .section-title span {
  color: #3AAA35;
}

.categories-section .section-desc {
  font-size: 16px;
  color: #888;
  margin-bottom: 2rem;
}

.categories-section .cat-item,
.categories-section .category-card,
.categories-section > * {
  position: relative;
  z-index: 2;
}

.cat-triangle-deco {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(224, 48, 48, 0.1);
  top: 25%;
  left: 10%;
  right: auto;
  z-index: 1;
  pointer-events: none;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  border-radius: 16px;
  padding: 28px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.category-icon img {
  width: 48px;
  height: 48px;
  filter: invert(1) brightness(2);
  object-fit: contain;
}

.category-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.category-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
}

/* Gradient per card position */
.categories-grid .category-card:nth-child(1) { background: linear-gradient(135deg, #3AAA35, #2d8a29); }
.categories-grid .category-card:nth-child(2) { background: linear-gradient(135deg, #2255A4, #1a3d7a); }
.categories-grid .category-card:nth-child(3) { background: linear-gradient(135deg, #E03030, #b02020); }
.categories-grid .category-card:nth-child(4) { background: linear-gradient(135deg, #F5C400, #c99a00); }
.categories-grid .category-card:nth-child(5) { background: linear-gradient(135deg, #1a2a1a, #2d4a2d); }
.categories-grid .category-card:nth-child(6) { background: #E87722; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section {
  background: #fff;
  padding: 48px 0;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.products-header .section-header {
  text-align: start;
  margin-bottom: 0;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s;
}

.see-all-link:hover {
  gap: 12px;
  color: var(--color-primary);
}

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

.product-card {
  background: #fff;
  border-radius: 18px;
  border: none;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-products .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: none;
  border-color: transparent;
}

.product-card-image {
  height: 200px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.4s ease;
}

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

/* Shade section — fixed image height with cover crop */
.products-shade-section .product-card-image,
.products-shade-section .product-card .card-image {
  height: 220px;
  overflow: hidden;
}

.products-shade-section .product-card-image img,
.products-shade-section .product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.product-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image-placeholder svg {
  width: 56px;
  height: 56px;
  color: rgba(58, 170, 53, 0.45);
}

.product-category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
}

.product-card-body {
  padding: 20px 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.product-card-description {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0 0 12px;
  flex: 1;
}

.product-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 0;
}

.product-card-meta svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-card-footer {
  padding: 16px 20px 20px;
  margin-top: auto;
}

.btn-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  background: var(--color-bg-light);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--color-primary);
  transition: background 0.25s, color 0.25s;
  width: 100%;
}

.btn-product:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ============================================================
   FEATURED BANNER
   ============================================================ */
.featured-banner {
  background: #2255A4;
  background: var(--color-secondary);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.featured-banner-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.featured-banner-bg-shape-1 {
  width: 500px;
  height: 500px;
  top: -250px;
  left: -100px;
}

.featured-banner-bg-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: 300px;
}

.featured-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.featured-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.featured-banner-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.15;
}

.featured-banner-text {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.78;
  margin: 0 0 28px;
  max-width: 540px;
}

.featured-banner-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.banner-bullet {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 500;
}

.banner-bullet svg {
  color: #7fd47a;
  flex-shrink: 0;
}

.featured-banner .banner-cta,
.featured-banner .featured-btn,
.featured-banner a.btn,
.featured-banner button {
  display: block !important;
  margin: 1.5rem auto 0 !important;
  width: fit-content !important;
}

.featured-banner-visual {
  flex-shrink: 0;
}

.featured-banner-icon {
  width: 210px;
  height: 210px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.18);
}

.featured-banner-icon svg {
  width: 100px;
  height: 100px;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: #ffffff;
  border-top: 4px solid #3AAA35;
  padding: 80px 0;
  overflow: hidden;
}

.how-it-works .section-label {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #3AAA35 !important;
  background: none !important;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.how-it-works .section-title {
  font-size: 38px;
  font-weight: 700;
}

.steps-wrapper {
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px 1fr 120px 1fr;
  gap: 0;
  align-items: start;
}

.steps-grid::before {
  display: none;
}

.steps-connector {
  position: absolute;
  top: 35px;
  right: calc(12.5% + 36px);
  left: calc(12.5% + 36px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 21px;
  pointer-events: none;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.step-item:hover .step-number,
.process-step:hover .step-number {
  background-color: #3AAA35;
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(58, 170, 53, 0.35);
  transition: all 0.3s ease;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-item:nth-child(1) { animation: fadeInRight 0.5s ease 0.1s both; }
.step-item:nth-child(2) { animation: fadeInRight 0.5s ease 0.3s both; }
.step-item:nth-child(3) { animation: fadeInRight 0.5s ease 0.5s both; }
.step-item:nth-child(4) { animation: fadeInRight 0.5s ease 0.7s both; }

.step-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #edfaed, #d4f0d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.step-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 8px;
}

.step-description {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: #1a1a1a;
  background: var(--color-dark);
  padding: 80px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.18;
}

.contact-description {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin: 0 0 32px;
}

.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 500;
}

.contact-benefits li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
}

.form-group .required {
  color: var(--color-accent-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #fff;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  direction: rtl;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='rgba(255%2C255%2C255%2C0.45)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 42px;
}

.form-group select option {
  background: #222;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: rgba(58, 170, 53, 0.08);
}

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

.btn-submit {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  width: 100%;
}

.btn-submit:hover {
  background: #2d8a29;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 170, 53, 0.4);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-message {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-message.success {
  background: rgba(58, 170, 53, 0.14);
  border: 1px solid rgba(58, 170, 53, 0.3);
  color: #7dda77;
  display: block;
}

.form-message.error {
  background: rgba(224, 48, 48, 0.14);
  border: 1px solid rgba(224, 48, 48, 0.3);
  color: #f07070;
  display: block;
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-banner-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-banner .feature-list,
  .featured-banner .check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET  (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    border-left: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps-connector,
  .step-connector {
    display: none;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  .featured-banner-visual {
    display: none;
  }

  .hero-section,
  .site-main,
  .page-content {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-ctas,
  .hero-trust {
    justify-content: center;
  }

  .hero-ctas {
    position: relative;
    z-index: 10;
  }

  .hero-ctas a,
  .hero-ctas button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }

  .hero-images {
    order: 2;
    width: 100%;
    height: 360px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
  }

  .hero-img-wrap.hero-img-1 {
    width: 160px;
    height: 160px;
    top: 20px;
    right: 50%;
    transform: translateX(50%) rotate(-6deg);
  }

  .hero-img-wrap.hero-img-2 {
    width: 140px;
    height: 140px;
    top: 100px;
    right: 10px;
    transform: rotate(4deg);
  }

  .hero-img-wrap.hero-img-3 {
    width: 140px;
    height: 140px;
    top: 190px;
    right: 50%;
    transform: translateX(20%) rotate(-3deg);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .hero-section,
  .stats-bar,
  .categories-section,
  .products-section,
  .featured-banner,
  .how-it-works,
  .contact-section {
    padding: 52px 0;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: 16px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stats-bar {
    padding: 2rem 1rem;
  }
}
