/* ==========================================
   HOMEPAGE STYLES
   Hero, Bestseller, Reviews, FAQ, Join, Contact
========================================== */

/* === HEADLINE === */
.headline {
  text-align: center;
  margin-top: 130px;
  line-height: 1.2;
  padding: 0 20px;
}

.headline .top {
  display: block;
  font-size: 60px;
  color: black;
  font-family: 'Montserrat', sans-serif;
}

.headline .middle {
  display: block;
  font-size: 80px;
  font-weight: bold;
  color: #D22B2B;
  font-family: 'Bebas Neue', sans-serif;
}

.headline .bottom {
  display: block;
  font-size: 60px;
  color: black;
  font-family: 'Montserrat', sans-serif;
}

/* === SPREADSHEET CONTAINER === */
.spreadsheet-container {
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

/* === HERO SECTIONS === */

/* Hero Clean */
.hero-clean {
  padding: 20px 20px 50px;
  background: white;
  text-align: center;
}

.hero-clean-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(210, 43, 43, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.hero-clean-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #212529;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-clean-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: #D22B2B;
  margin: 20px auto 0;
  border-radius: 3px;
}

.hero-clean-subtitle {
  font-size: 20px;
  color: #6c757d;
  margin: 0 0 40px 0;
  line-height: 1.6;
  font-weight: 500;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title-top,
.hero-title-bottom {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title-main {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #D22B2B;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 20px;
  color: #6c757d;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  font-size: 32px;
}

.hero-feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}

/* === BESTSELLER SECTION === */
.bestseller-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.bestseller-section h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  font-family: 'Anton', sans-serif;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bestseller-single {
  display: flex;
  justify-content: center;
}

.bestseller-card {
  display: block;
  max-width: 450px;
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  border: 3px solid transparent;
}

.bestseller-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-color: #D22B2B;
}

.bestseller-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bestseller-card:hover .bestseller-img {
  transform: scale(1.05);
}

.bestseller-info {
  padding: 30px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.bestseller-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.bestseller-price {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 15px 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bestseller-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(210, 43, 43, 0.3);
}

/* Bestsellers Clean */
.bestsellers-clean {
  padding: 80px 20px;
  background: #f8f9fa;
}

.bestsellers-clean-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-clean-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #212529;
  margin: 0 0 40px 0;
  text-align: center;
}

/* Carousel */
.carousel-clean {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-clean-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-clean-track {
  display: flex;
  position: relative;
}

.carousel-item {
  min-width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-item.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.bestseller-card-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.bestseller-image {
  position: relative;
}

.bestseller-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border-radius: 16px;
}

.bestseller-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bestseller-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #212529;
  margin: 0;
  line-height: 1.2;
  font-size: 32px;
  font-weight: 800;
}

.bestseller-price {
  font-size: 32px;
  font-weight: 800;
  color: #D22B2B;
  margin: 0;
  font-size: 36px;
  font-weight: 900;
}

.bestseller-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #212529;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
  border-radius: 12px;
}

.bestseller-view-btn:hover {
  background: #D22B2B;
  transform: translateX(4px);
}

.carousel-clean-nav {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 2px solid #e9ecef;
}

.carousel-clean-nav:hover {
  background: #D22B2B;
  border-color: #D22B2B;
}

.carousel-clean-nav:hover svg {
  stroke: white;
}

.carousel-clean-nav.prev {
  /* Previous button specific styles */
}

.carousel-clean-nav.next {
  /* Next button specific styles */
}

.carousel-clean-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background: #dee2e6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: #e9ecef;
}

.carousel-dot.active {
  background: #D22B2B;
  transform: scale(1.3);
}

.bestsellers-section {
  padding: 80px 20px;
  background: white;
}

.bestsellers-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #212529;
  margin: 0 0 12px 0;
}

.section-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}

.bestseller-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  position: relative;
}

.carousel-nav {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-nav:hover {
  background: #D22B2B;
  border-color: #D22B2B;
  color: white;
}

.carousel-nav svg {
  color: inherit;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

/* === FEEDBACK / REVIEWS === */
.feedback-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
  margin-top: 30px;
}

.feedback-section h2 {
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: bold;
}

.feedback-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feedback-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 300px;
  flex: 1;
  min-width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feedback-card p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 15px;
}

.feedback-card h4 {
  font-size: 16px;
  font-weight: bold;
  color: #FF2400;
}

.stars {
  font-size: 20px;
  color: gold;
  margin-bottom: 10px;
}

.reviews-summary {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

.reviews-section {
  padding: 80px 20px;
  background: white;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.reviews-rating .stars {
  font-size: 24px;
  color: #ffc107;
}

.rating-text {
  font-size: 16px;
  color: #6c757d;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-stars {
  font-size: 20px;
  color: #ffc107;
}

.review-text {
  font-size: 15px;
  color: #495057;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: #D22B2B;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 4px 0;
}

.author-info span {
  font-size: 13px;
  color: #6c757d;
}

/* === JOIN SECTION === */
.join-section {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.join-clean {
  padding: 80px 20px;
  background: white;
}

.join-clean-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.join-clean-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin: 0 0 50px 0;
}

.join-clean-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.benefit-clean {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-clean-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-clean h3 {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 8px 0;
}

.benefit-clean p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.join-section-modern {
  padding: 80px 20px;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  position: relative;
  overflow: hidden;
}

.join-section-modern::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.join-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.join-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.join-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin: 0 0 16px 0;
}

.join-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.benefit-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 0 8px 0;
}

.benefit-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* === FAQ SECTION === */
.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 40px;
  color: #D22B2B;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  transition: all 0.3s ease;
}

.faq-question span {
  flex: 1;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: #6c757d;
  color: #D22B2B;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: #D22B2B;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

@keyframes faqGradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.faq-clean {
  padding: 80px 20px;
  background: #f8f9fa;
}

.faq-clean-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-clean-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-section-modern {
  padding: 80px 20px;
  background: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === NEWS === */
.hipobuy-news {
  background: linear-gradient(-45deg, #D22B2B, #C41E3A, #DC143C, #FF2400);
  background-size: 400% 400%;
  animation: gradientBG 8s ease infinite;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 50px 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.hipobuy-news h2 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 30px;
}

.hipobuy-news .news-items p {
  font-size: 25px;
  margin: 15px 0;
}

.hipobuy-news .signup-button {
  display: inline-block;
  padding: 25px 60px;
  font-size: 28px;
  font-weight: bold;
  color: #D22B2B;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
  margin-top: 30px;
}

.hipobuy-news .signup-button:hover {
  transform: scale(1.05);
}

/* === CONTACT SECTION === */
.contact-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 50px;
  color: #D22B2B;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.contact-social-black {
  background: linear-gradient(-45deg, #111111, #222222, #111111, #222222);
  background-size: 400% 400%;
  animation: blackGradientBG 8s ease infinite;
  text-align: center;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.contact-social-black h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(255,36,0,0.6);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 45px;
  height: 45px;
  transition: all 0.3s;
  filter: brightness(1.2);
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(2);
}

@keyframes blackGradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-section-modern {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
}

.contact-method svg {
  flex-shrink: 0;
  color: #D22B2B;
  margin-top: 2px;
}

.contact-method h4 {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 4px 0;
}

.contact-method p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.social-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 16px 0;
}

.social-icons-modern {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-icon img {
  width: 24px;
  height: 24px;
}

/* === FOOTER === */
.footer-modern {
  padding: 40px 20px;
  background: #212529;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-content p {
  margin: 0;
  font-size: 14px;
  color: #adb5bd;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* ===================================================================
   HOME PAGE SIGNUP BANNER
   =================================================================== */

.home-signup-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  margin: 60px auto;
  max-width: 1400px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(210, 43, 43, 0.4);
}

.home-signup-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.home-signup-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
}

.home-signup-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-signup-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  animation: pulse 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.home-signup-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: white;
  margin: 0 0 16px 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home-signup-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 50px 0;
  font-weight: 500;
  line-height: 1.5;
}

.home-benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.home-benefit-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px 20px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-benefit-card:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.home-benefit-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.home-benefit-card:hover .home-benefit-icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-benefit-icon {
  font-size: 42px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.home-benefit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-benefit-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.home-signup-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 24px 56px;
  background: white;
  color: #D22B2B;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

.home-signup-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
  background: #f8f9fa;
}

.home-signup-btn:active {
  transform: translateY(-3px) scale(1.02);
}

.home-signup-btn svg {
  transition: transform 0.4s ease;
}

.home-signup-btn:hover svg {
  transform: translateX(6px);
}

.home-signup-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .home-signup-banner {
    padding: 60px 20px;
    margin: 40px 20px;
    border-radius: 20px;
  }

  .home-signup-title {
    font-size: 40px;
  }

  .home-signup-description {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .home-benefits-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .home-benefit-card {
    padding: 28px 16px;
  }

  .home-benefit-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .home-benefit-icon {
    font-size: 36px;
  }

  .home-benefit-card h3 {
    font-size: 18px;
  }

  .home-signup-btn {
    padding: 20px 48px;
    font-size: 20px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .home-signup-banner {
    padding: 20px 16px;
    margin: 16px 16px;
    border-radius: 12px;
  }

  .home-signup-badge {
    font-size: 9px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .home-signup-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .home-signup-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .home-benefits-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .home-benefit-card {
    padding: 12px 8px;
  }

  .home-benefit-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .home-benefit-icon {
    font-size: 22px;
  }

  .home-benefit-card h3 {
    font-size: 13px;
  }

  .home-benefit-card p {
    font-size: 10px;
  }

  .home-signup-btn {
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .home-signup-note {
    font-size: 10px;
    text-align: center;
  }
}
