/* Hero V2 - Split Layout */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--dark);
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 20s infinite ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: 20%;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 40%;
  left: -100px;
  opacity: 0.2;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.05); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
}

.hero-v2-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 24px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-v2-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-desc {
  font-size: 18px;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-v2-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-glow {
  background: var(--gradient);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(102, 126, 234, 0.6);
}

.btn-text {
  color: var(--light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-text:hover {
  color: var(--primary);
}

.hero-v2-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--dark);
  margin-left: -10px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  margin-left: -10px;
  border: 3px solid var(--dark);
}

.trust-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-rating .stars {
  color: #fbbf24;
  font-size: 12px;
}

.trust-rating span {
  font-size: 13px;
  color: var(--gray);
}

/* Hero Visual - Product Card */
.hero-v2-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.product-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: 26px;
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

.hero-product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-info-float {
  text-align: center;
}

.product-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-info-float h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-price-float {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-specs-float {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
}

.spec-item i {
  color: var(--primary);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  animation: badgeFloat 4s ease-in-out infinite;
}

.badge-shipping {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.badge-warranty {
  bottom: 30%;
  right: -30px;
  animation-delay: -2s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-badge i {
  color: var(--primary);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 13px;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--gray);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gray);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* Category Mosaic */
.category-mosaic {
  padding: 120px 0;
  background: var(--darker);
}

.mosaic-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label-v2 {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
}

.section-label-v2::before,
.section-label-v2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary);
  opacity: 0.3;
}

.section-label-v2::before { right: calc(100% + 15px); }
.section-label-v2::after { left: calc(100% + 15px); }

.mosaic-title {
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  line-height: 1.2;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 20px;
}

.mosaic-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
}

.mosaic-card:hover {
  transform: translateY(-8px);
}

.mosaic-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-wide {
  grid-column: span 2;
}

.mosaic-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.mosaic-card:hover .mosaic-bg {
  opacity: 1;
}

.mosaic-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.mosaic-content {
  position: relative;
  color: white;
}

.mosaic-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.mosaic-large .mosaic-content h3 {
  font-size: 32px;
}

.mosaic-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1.5;
}

.mosaic-count {
  font-size: 13px;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
}

.mosaic-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mosaic-card:hover .mosaic-arrow {
  transform: translateX(0);
  opacity: 1;
}

/* Product Spotlight */
.product-spotlight {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.product-spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-wrapper {
  position: relative;
}

.spotlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-image {
  position: relative;
}

.image-frame {
  position: relative;
  padding: 20px;
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  z-index: 1;
}

.corner-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.spotlight-brand {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.spotlight-title {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.spotlight-desc {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.spotlight-specs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--gray);
  font-size: 14px;
}

.spec-value {
  color: var(--light);
  font-size: 14px;
  font-weight: 500;
}

.spotlight-price {
  margin-bottom: 30px;
}

.price-current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.price-note {
  font-size: 14px;
  color: var(--gray);
}

.spotlight-actions {
  display: flex;
  gap: 16px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(102, 126, 234, 0.1);
}

/* Steps Section */
.steps-section {
  padding: 120px 0;
  background: var(--darker);
}

.steps-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}

.steps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 280px;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.step-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-time {
  font-size: 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Testimonials Marquee */
.testimonials-section {
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: clamp(32px, 4vw, 48px);
}

.testimonials-marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
}

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

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
  transform: translateY(-4px);
}

.testimonial-quote {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-text {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 13px;
  color: var(--gray);
}

/* Blog Featured - Asymmetric */
.blog-featured {
  padding: 120px 0;
  background: var(--darker);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.blog-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}

.blog-asymmetric {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.blog-card-featured {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  min-height: 500px;
}

.blog-featured-image {
  position: relative;
  height: 100%;
}

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

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 35, 0.95) 0%, rgba(15, 15, 35, 0.5) 50%, transparent 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-category {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-overlay h3 {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-overlay p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-meta-v2 {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--gray);
}

.blog-meta-v2 span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-side-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card-side {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-card-side:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
  transform: translateX(8px);
}

.blog-side-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.blog-side-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-category-small {
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-side-content h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-date {
  font-size: 13px;
  color: var(--gray);
}

/* Newsletter Section */
.newsletter-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
}

.newsletter-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
}

.newsletter-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.newsletter-desc {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.form-input-group {
  flex: 1;
  position: relative;
}

.form-input-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}

.form-input-group input {
  width: 100%;
  padding: 18px 20px 18px 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: white;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input-group input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.form-input-group input::placeholder {
  color: var(--gray);
}

.newsletter-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  color: var(--gray);
}

.newsletter-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter-trust i {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-v2-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-v2-text {
    order: 2;
  }
  
  .hero-v2-visual {
    order: 1;
  }
  
  .hero-v2-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-v2-actions {
    justify-content: center;
  }
  
  .hero-v2-trust {
    justify-content: center;
  }
  
  .hero-product-card {
    max-width: 320px;
  }
  
  .floating-badge {
    display: none;
  }
  
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  
  .mosaic-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .mosaic-wide {
    grid-column: span 2;
  }
  
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .spotlight-image {
    order: 2;
  }
  
  .spotlight-details {
    order: 1;
    text-align: center;
  }
  
  .spotlight-actions {
    justify-content: center;
  }
  
  .steps-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .timeline-line {
    display: none;
  }
  
  .blog-asymmetric {
    grid-template-columns: 1fr;
  }
  
  .blog-card-featured {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-v2 {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .hero-v2-actions {
    flex-direction: column;
  }
  
  .btn-glow,
  .btn-text {
    width: 100%;
    justify-content: center;
  }
  
  .hero-v2-trust {
    flex-direction: column;
    gap: 16px;
  }
  
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  
  .mosaic-large,
  .mosaic-wide {
    grid-column: span 1;
  }
  
  .mosaic-card {
    padding: 20px;
  }
  
  .mosaic-content h3 {
    font-size: 20px;
  }
  
  .mosaic-large .mosaic-content h3 {
    font-size: 24px;
  }
  
  .spotlight-actions {
    flex-direction: column;
  }
  
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .testimonial-card {
    width: 320px;
    padding: 24px;
  }
  
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .blog-card-side {
    flex-direction: column;
  }
  
  .blog-side-image {
    width: 100%;
    height: 150px;
  }
  
  .blog-overlay {
    padding: 24px;
  }
  
  .blog-overlay h3 {
    font-size: 22px;
  }
  
  .blog-meta-v2 {
    flex-direction: column;
    gap: 8px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-product-card {
    padding: 24px;
  }
  
  .product-specs-float {
    flex-direction: column;
    gap: 10px;
  }
  
  .spec-row {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  
  .step-card {
    width: 100%;
  }
}
