/* ═══ HERO ═══ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 48px;
}
.hero-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--terra);
}
.hero-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--charcoal);
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 2px solid var(--charcoal);
  transition: all 0.3s ease;
  align-self: flex-start;
}
.hero-cta:hover {
  background: transparent;
  color: var(--charcoal);
}
.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.hero-cta:hover svg { transform: translateX(4px); }

.hero-visual {
  background: var(--terra-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-visual svg {
  width: 85%;
  max-width: 520px;
  height: auto;
  opacity: 0;
  animation: heroIn 0.8s ease 0.3s forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  text-align: left;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(0,0,0,0.06);
}
.trust-item svg { flex-shrink: 0; }
.trust-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.trust-text small {
  display: block;
  font-weight: 400;
  color: var(--stone-light);
  font-size: 11px;
  margin-top: 2px;
}

/* ═══ PRODUCTS GRID ═══ */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.product {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.product:hover .product-img { transform: scale(1.02); }
.product-img svg {
  width: 65%;
  max-width: 360px;
  height: auto;
  position: relative;
  z-index: 1;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}
.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.product-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}
.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.product-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--charcoal);
  color: #fff;
  padding: 6px 14px;
  z-index: 3;
}

/* ═══ FEATURE ═══ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.feature-visual svg { width: 80%; max-width: 480px; }
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.feature-content .tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.feature-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.1;
}
.feature-content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
}
.feature-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.feature-spec {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.feature-spec svg { flex-shrink: 0; }
.feature-price {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.feature-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--stone-light);
}

/* ═══ PHILOSOPHY ═══ */
.philosophy {
  background: var(--charcoal);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy .tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 24px;
}
.philosophy h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}
.philosophy > p {
  font-size: 17px;
  font-weight: 300;
  color: var(--stone-light);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.philo-item svg { margin-bottom: 20px; }
.philo-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.philo-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone-light);
  line-height: 1.6;
}

/* ═══ CTA BANNER ═══ */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  background: var(--terra-wash);
}
.cta-banner-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.cta-banner-content p {
  font-size: 16px;
  color: var(--stone);
  font-weight: 300;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 24px; }
  .hero-visual { min-height: 50vh; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.06); }
  .products { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature-content { padding: 60px 24px; }
  .feature-visual { padding: 40px 24px; }
  .philo-grid { grid-template-columns: 1fr; gap: 36px; }
  .philosophy { padding: 80px 24px; }
  .cta-banner { flex-direction: column; text-align: center; gap: 32px; padding: 60px 24px; }
}
