/**
 * Home Page Styles
 * 
 * Complete styles for the home page template
 * Exact replica of original landing page design
 * 
 * @package Siahus
 */

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.siahus-home .animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.siahus-home .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.siahus-home .animate-delay-1 { transition-delay: 0.1s; }
.siahus-home .animate-delay-2 { transition-delay: 0.2s; }
.siahus-home .animate-delay-3 { transition-delay: 0.3s; }

/* ========================================
   HOME PAGE - Remove extra padding since hero handles it
   ======================================== */
.siahus-home .site-main {
  padding-top: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  padding-top: calc(var(--header-height) + var(--utility-bar-height));
  overflow: hidden;
}


.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  padding: var(--space-xl);
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + var(--utility-bar-height));
    padding-bottom: var(--space-md);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
  }
  /* Flatten .hero__content so its children can interleave with .hero__product */
  .hero__content { display: contents; }
  .hero__eyebrow    { order: 1; }
  .hero__title      { order: 2; }
  .hero__product    { order: 3; }
  .hero__description{ order: 4; }
  .hero__cta        { order: 5; }
}

.hero__product {
  animation: slideInLeft 1s ease-out;
}

.hero__product-link {
  display: block;
  text-decoration: none;
}

.hero__product-image {
  max-height: 715px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(44, 41, 37, 0.2));
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__product:hover .hero__product-image {
  transform: translateY(-4px) scale(1.008);
}


@media (max-width: 900px) {
  .hero__product-image {
    max-height: 280px;
    margin: 0 auto;
  }
}

.hero__content {
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: backwards;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
  display: block;
}

.hero__title {
  font-size: clamp(2.25rem, 3.5vw, 4.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.hero__title em {
  color: var(--color-coral);
  font-style: italic;
}

.hero__description {
  font-size: 1.225rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

@media (max-width: 900px) {
  .hero__eyebrow {
    margin-bottom: var(--space-xs);
    font-size: 0.75rem;
  }
  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: var(--space-sm);
    line-height: 1.15;
  }
  .hero__description {
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 auto var(--space-md);
  }
  .hero__cta {
    gap: var(--space-sm);
  }
}

.hero__cta {
  display: inline-flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero__cta {
    justify-content: center;
  }
}

/* ========================================
   VALUE PROPOSITIONS
   ======================================== */
.values {
  background: var(--color-warm-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
}

.value-card {
  text-align: center;
  padding: var(--space-lg);
}

@media (max-width: 768px) {
  .value-card {
    padding: var(--space-sm) 2px;
  }
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  opacity: 0.8;
  color: var(--color-sage);
}

@media (max-width: 768px) {
  .value-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-xs);
  }
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.value-card__description {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .value-card__title {
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .value-card__description {
    font-size: 0.7rem;
    line-height: 1.35;
    word-break: break-word;
    hyphens: auto;
  }
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.products {
  background: var(--color-cream);
}

.products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  /* Compress product-card interior for narrow 2-col mobile layout */
  .siahus-home .product-card__content {
    padding: var(--space-sm);
  }
  .siahus-home .product-card__title {
    font-size: 1rem;
    line-height: 1.2;
  }
  .siahus-home .product-card__category {
    font-size: 0.65rem;
  }
  .siahus-home .product-card__description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }
  .siahus-home .product-card__price {
    font-size: 0.9rem;
  }
  .siahus-home .product-card .shop-btn {
    font-size: 0.75rem;
    padding: 0.55rem 0.8rem;
    width: 100%;
  }
  .products__header {
    margin-bottom: var(--space-md);
  }
}

/* ========================================
   STORY SECTION
   ======================================== */
.story {
  background: var(--color-cream-dark);
  position: relative;
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 900px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.story__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 2px solid var(--color-sage);
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(44, 41, 37, 0.15);
}

.story__video::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--color-coral);
  border-radius: 8px;
  opacity: 0.3;
  z-index: -1;
}

.siahus-home .story__video .video-facade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  padding-bottom: 0;
  border-radius: 0;
}

.story__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.story__video-caption {
  text-align: center;
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-style: italic;
  position: relative;
  z-index: 101;
}

.story__content {
  padding: var(--space-lg) 0;
}

.story__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
  display: block;
}

.story__title {
  margin-bottom: var(--space-lg);
}

.story__text {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.story__quote {
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-coral);
  margin: var(--space-lg) 0;
  padding-left: var(--space-lg);
  border-left: 2px solid var(--color-coral);
}

@media (max-width: 900px) {
  .story__grid {
    gap: var(--space-md);
  }
  .story__content {
    padding: 0;
  }
  .story__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
  }
  .story__text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }
  .story__quote {
    font-size: 1.1rem;
    margin: var(--space-md) 0;
    padding-left: var(--space-md);
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.home-testimonials {
  background: var(--color-warm-white);
  position: relative;
}

.home-testimonials__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ── Testimony Video ── */
.home-testimony-video {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.home-testimony-video__viewport {
  border: 2px solid var(--color-sage);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(44, 41, 37, 0.1);
}

.home-testimony-video__viewport .video-facade {
  border-radius: 0;
}

.home-testimony-video__title {
  position: relative;
  z-index: 101;
  text-align: center;
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-style: italic;
  min-height: 1.4em;
}

.home-testimony-video__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (max-width: 900px) {
  .home-testimony-video__title {
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .home-testimony-video__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}

/* ── Testimonial Carousel ── */
.home-testimonials__carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin: 0 calc(-1 * var(--space-lg));
  padding: 0 var(--space-lg);
}

.home-testimonials__track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  animation: testimonial-scroll 60s linear infinite;
}

.home-testimonials__carousel:hover .home-testimonials__track {
  animation-play-state: paused;
}

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

.home-testimonial-card {
  background: var(--color-cream);
  padding: var(--space-xl);
  border-radius: 8px;
  position: relative;
  flex: 0 0 380px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-coral);
  opacity: 0.2;
  line-height: 1;
}

.home-testimonial-card__text {
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  flex: 1;
}

.home-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.home-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-warm-white);
  flex-shrink: 0;
}

.home-testimonial-card__name {
  font-weight: 500;
  font-size: 0.9rem;
}

.home-testimonial-card__location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .home-testimonials__header {
    margin-bottom: var(--space-md);
  }
  .home-testimonials__header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.2;
  }
  .home-video-carousel {
    margin-bottom: var(--space-md);
  }
  .home-testimonials__carousel {
    margin: 0 calc(-1 * var(--space-sm));
    padding: 0 var(--space-sm);
  }
  .home-testimonial-card {
    flex: 0 0 300px;
    padding: var(--space-md);
    min-height: 200px;
  }
  .home-testimonial-card::before {
    font-size: 2.5rem;
    top: var(--space-xs);
    left: var(--space-sm);
  }
  .home-testimonial-card__text {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: var(--space-sm);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
  .home-testimonials__carousel {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }
  .home-testimonial-card[aria-hidden="true"] {
    display: none;
  }
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  background: #3D3A35;
  color: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__title {
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.newsletter__description {
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: var(--space-xl);
}

.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  max-width: 450px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .newsletter__form {
    flex-direction: column;
  }
}

.newsletter__input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(250, 248, 245, 0.2);
  border-radius: 50px;
  background: transparent;
  color: var(--color-cream);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.newsletter__input::placeholder {
  color: rgba(250, 248, 245, 0.5);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-coral);
}

.newsletter__btn {
  padding: 1rem 2rem;
  background: var(--color-coral);
  color: var(--color-warm-white);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.newsletter__btn:hover {
  background: var(--color-coral-light);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .newsletter__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.2;
  }
  .newsletter__description {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }
}

/* ========================================
   OUR GUARANTEE + CHIEF SUNSTAR
   ======================================== */
.guarantee {
  background: var(--color-cream);
  text-align: center;
}

.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.guarantee__quote {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee__blockquote {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-warm-white);
  border-radius: 12px;
  border-left: 4px solid var(--color-sage);
  box-shadow: 0 4px 20px rgba(44, 41, 37, 0.06);
}

.guarantee__blockquote p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.guarantee__cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-sage);
  font-size: 1rem;
}

.guarantee__title {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.guarantee__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.guarantee__text:last-child {
  margin-bottom: 0;
}

.guarantee__text strong {
  color: var(--color-text);
  font-weight: 600;
}

.guarantee__disclaimer {
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(44, 41, 37, 0.1);
}

.guarantee__disclaimer p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .guarantee__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .guarantee__blockquote {
    border-left: none;
    border-top: 4px solid var(--color-sage);
  }

  .guarantee__content {
    text-align: left;
  }
}

/* ========================================
   MOBILE SECTION COMPRESSION (home page)
   Tighter vertical rhythm + smaller containers
   Applied late so it overrides earlier rules.
   ======================================== */
@media (max-width: 768px) {
  .siahus-home .section {
    padding: var(--space-lg) 0;
  }
  .siahus-home .section--large {
    padding: var(--space-lg) 0;
  }
  .siahus-home .container {
    padding: 0 var(--space-sm);
  }
  .siahus-home .products__header {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  .siahus-home .products__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0;
  }
  .siahus-home .guarantee {
    padding: var(--space-lg) 0;
  }
  .siahus-home .guarantee__inner {
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .siahus-home .guarantee__blockquote {
    padding: var(--space-md);
  }
  .siahus-home .guarantee__blockquote p {
    font-size: 1rem;
    line-height: 1.55;
  }
  .siahus-home .guarantee__title {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
  }
  .siahus-home .guarantee__text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }
  .siahus-home .guarantee__disclaimer {
    padding-top: var(--space-md);
  }
  .siahus-home .guarantee__disclaimer p {
    font-size: 0.7rem;
    line-height: 1.5;
  }
}

/* ========================================
   HOME PAGE Z-INDEX OVERRIDES
   Allow foliage to show over most content
   ======================================== */

/* Reset site-main z-index on home page so foliage shows through */
.siahus-home .site-main {
  z-index: auto;
}

.siahus-home .site-main > * {
  position: relative;
  z-index: auto;
}

/* Sections stay at z-index: auto so children can escape stacking context
   Foliage (z-index: 100) will show over these sections
   But children with z-index: 101 will appear above foliage */
.siahus-home .hero,
.siahus-home .values,
.siahus-home .products,
.siahus-home .story,
.siahus-home .home-testimonials,
.siahus-home .guarantee,
.siahus-home .newsletter {
  position: relative;
  z-index: auto;
}

/* Product cards and their container ABOVE foliage */
.siahus-home .product-card {
  position: relative;
  z-index: 101;
}

.siahus-home .products__header {
  position: relative;
  z-index: 101;
}

.siahus-home .products__grid {
  position: relative;
  z-index: 101;
}

/* Video containers ABOVE foliage */
.siahus-home .story__video,
.siahus-home .story__video-wrap,
.siahus-home .story__media,
.siahus-home .story__grid,
.siahus-home .video-container,
.siahus-home .home-testimony-video,
.siahus-home .video-wrapper,
.siahus-home .video-facade {
  position: relative;
  z-index: 101;
}

.siahus-home iframe,
.siahus-home video {
  position: relative;
  z-index: 101;
}

.siahus-home .video-facade iframe,
.siahus-home .video-facade video {
  position: absolute;
  z-index: 1;
}

/* Interactive buttons above foliage for clickability */
.siahus-home .btn,
.siahus-home .button,
.siahus-home a.btn,
.siahus-home .hero__cta {
  position: relative;
  z-index: 101;
}

/* Newsletter form above foliage */
.siahus-home .newsletter__form,
.siahus-home .newsletter__inner {
  position: relative;
  z-index: 101;
}


/* ========================================
   VIDEO FACADE — Home-specific overrides
   Base styles now in components.css
   ======================================== */
.story__video .video-facade,
.home-testimony-video .video-facade {
  box-shadow: 0 20px 40px rgba(44, 41, 37, 0.15);
}

.story__video {
  position: relative;
}

.story__video::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-coral);
  border-radius: 8px;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.siahus-home .video-facade,
.siahus-home .home-video-carousel {
  position: relative;
  z-index: 101;
}

/* ========================================
   GUARANTEE SECTION — Chief Sunstar Quote + 120-Day Guarantee
   ======================================== */
.guarantee {
  background: var(--color-cream);
  text-align: center;
  padding: var(--space-2xl, 6rem) 0;
}

.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl, 6rem);
  align-items: center;
  text-align: left;
  margin-bottom: var(--space-2xl, 6rem);
}

.guarantee__quote {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee__blockquote {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-warm-white);
  border-radius: 12px;
  border-left: 4px solid var(--color-sage);
  box-shadow: 0 4px 20px rgba(44, 41, 37, 0.06);
}

.guarantee__blockquote p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.guarantee__cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-sage);
  font-size: 1rem;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.guarantee__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.guarantee__text:last-child {
  margin-bottom: 0;
}

.guarantee__text strong {
  color: var(--color-text);
  font-weight: 600;
}

.guarantee__disclaimer {
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(44, 41, 37, 0.1);
}

.guarantee__disclaimer p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .guarantee__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .guarantee__blockquote {
    border-left: none;
    border-top: 4px solid var(--color-sage);
  }

  .guarantee__content {
    text-align: left;
  }
}
