/* ============================================
   RINZO LANDING PAGE - PREMIUM STYLES
   ============================================ */

:root {
  /* Brand Colors */
  --color-primary: #2E5C8A;
  --color-primary-hover: #234a6d;
  --color-primary-dark: #1a3851;
  --color-primary-darkest: #141D2D;
  --color-secondary: #4A7BA7;
  --color-accent: #FF6B35;
  --color-success: #10B981;
  
  /* Neutrals */
  --color-white: #FFFFFF;
  --color-gray-50: #F5F5F5;
  --color-gray-100: #F3F4F6;
  --color-gray-400: #9CA3AF;
  --color-gray-600: #6B7280;
  --color-gray-800: #374151;
  
  /* Typography */
  --font-family: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-5: 16px;
  --spacing-7: 24px;
  --spacing-8: 32px;
  --spacing-10: 48px;
  --spacing-12: 64px;
  
  /* Border Radius */
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 4px 16px rgba(46, 92, 138, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* If you have a soap vector image file, uncomment and use this instead: */
/* 
body, body * {
  cursor: url('assets/soap-cursor.png') 12 12, auto;
}

a, button, .btn-download-app, .btn-book-whatsapp, .download-btn, .nav-link, .mobile-menu-toggle, .social-icon {
  cursor: url('assets/soap-cursor.png') 12 12, pointer;
}
*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-7);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--spacing-5) 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: var(--spacing-4) 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.logo-img:not([src]),
.logo-img[src=""],
.logo-img[src*="undefined"] {
  display: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gray-600);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-8);
  align-items: center;
}

.nav-link {
  color: var(--color-gray-800);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-whatsapp-nav {
  background: var(--color-success);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--spacing-7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: var(--spacing-5) 0;
    border-bottom: 1px solid var(--color-gray-100);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #6B46C1 0%, #4A7BA7 50%, #2E5C8A 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(107, 70, 193, 0.9) 0%, rgba(74, 123, 167, 0.8) 50%, rgba(46, 92, 138, 0.7) 100%);
}

.floating-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  animation: float 6s ease-in-out infinite;
}

.bubble-1 { width: 60px; height: 60px; top: 20%; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 40px; height: 40px; top: 40%; left: 20%; animation-delay: 1s; }
.bubble-3 { width: 80px; height: 80px; top: 60%; left: 5%; animation-delay: 2s; }
.bubble-4 { width: 50px; height: 50px; top: 30%; right: 15%; animation-delay: 1.5s; }
.bubble-5 { width: 70px; height: 70px; top: 70%; right: 10%; animation-delay: 0.5s; }
.bubble-6 { width: 35px; height: 35px; top: 50%; right: 25%; animation-delay: 2.5s; }
.bubble-7 { width: 55px; height: 55px; top: 15%; right: 30%; animation-delay: 3s; }
.bubble-8 { width: 45px; height: 45px; top: 80%; left: 30%; animation-delay: 1.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-30px) translateX(20px) scale(1.1); opacity: 1; }
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  font-size: 3rem;
  animation: floatIcon 8s ease-in-out infinite;
}

.icon-shirt { top: 15%; left: 5%; animation-delay: 0s; }
.icon-hanger { top: 25%; right: 10%; animation-delay: 2s; font-size: 2.5rem; }
.icon-washing-machine { bottom: 30%; left: 8%; animation-delay: 4s; font-size: 4rem; }
.icon-laundry-bag { bottom: 20%; right: 15%; animation-delay: 1s; font-size: 3.5rem; }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-12);
  align-items: center;
  width: 100%;
}

.hero-left {
  color: var(--color-white);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-7);
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--spacing-10);
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: var(--spacing-5);
  flex-wrap: wrap;
}

.service-tag {
  font-weight: 600;
}

.service-divider {
  opacity: 0.6;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-7);
  flex-wrap: wrap;
}

.btn-download-app {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-5);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(46, 92, 138, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-download-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-download-app:hover::before {
  left: 100%;
}

.btn-download-app:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(46, 92, 138, 0.5);
}

.btn-download-app:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-download-app i {
  font-size: 1.5rem;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-main-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-sub-text {
  font-size: 0.75rem;
  opacity: 0.9;
}

.btn-ios {
  background: linear-gradient(135deg, #000000, #1a1a1a);
}

.btn-ios:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.btn-android {
  background: linear-gradient(135deg, #000000, #1a1a1a);
}

.btn-android:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.btn-book-whatsapp {
  background: linear-gradient(135deg, var(--color-success), #059669);
  color: var(--color-white);
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-book-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-book-whatsapp:hover::before {
  left: 100%;
}

.btn-book-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.btn-book-whatsapp:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-book-whatsapp i {
  font-size: 1.3rem;
}

/* Character Illustration */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.character-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.man-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: manFloat 4s ease-in-out infinite;
}

@keyframes manFloat {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  50% { 
    transform: translateY(-10px) rotate(1deg); 
  }
}

.phone-phone-1 {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 180px;
  height: 320px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
  animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(-50%) rotate(-15deg) translateY(0); }
  50% { transform: translateY(-50%) rotate(-15deg) translateY(-10px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(180deg, rgba(46, 92, 138, 0.1), transparent);
  z-index: 1;
}

.phone-content {
  width: 100%;
  height: 100%;
}

.app-header {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  max-width: 270px;
}

.app-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-800);
}

.app-option i {
  color: var(--color-primary);
  font-size: 1rem;
}

.phone-phone-2 {
  position: absolute;
  left: -30px;
  bottom: 20%;
  width: 180px;
  height: 320px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: phoneFloat2 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.phone-phone-2 .phone-screen {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-phone-2 .phone-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  margin: 0;
}

.phone-phone-2 .phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 0;
  padding: 0;
}

@keyframes phoneFloat2 {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-8px) rotate(10deg); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  color: #E0F2FE;
  overflow: hidden;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-path {
  animation: waveMove 8s ease-in-out infinite;
  transform-origin: center;
}

.wave-path-2 {
  animation: waveMove2 10s ease-in-out infinite reverse;
  transform-origin: center;
}

@keyframes waveMove {
  0%, 100% {
    transform: translateY(0) scaleY(1);
  }
  50% {
    transform: translateY(-8px) scaleY(1.05);
  }
}

@keyframes waveMove2 {
  0%, 100% {
    transform: translateY(0) scaleY(1);
  }
  50% {
    transform: translateY(-5px) scaleY(1.03);
  }
}

/* Floating Foam Bubbles */
.wave-foam {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.foam-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  backdrop-filter: blur(2px);
  animation: foamFloat 6s ease-in-out infinite;
}

.foam-1 {
  width: 12px;
  height: 12px;
  bottom: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.foam-2 {
  width: 8px;
  height: 8px;
  bottom: 25%;
  left: 25%;
  animation-delay: 0.5s;
  animation-duration: 6s;
}

.foam-3 {
  width: 15px;
  height: 15px;
  bottom: 15%;
  left: 40%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.foam-4 {
  width: 10px;
  height: 10px;
  bottom: 30%;
  left: 55%;
  animation-delay: 1.5s;
  animation-duration: 5.5s;
}

.foam-5 {
  width: 12px;
  height: 12px;
  bottom: 18%;
  left: 70%;
  animation-delay: 2s;
  animation-duration: 6.5s;
}

.foam-6 {
  width: 9px;
  height: 9px;
  bottom: 28%;
  left: 15%;
  animation-delay: 2.5s;
  animation-duration: 7.5s;
}

.foam-7 {
  width: 14px;
  height: 14px;
  bottom: 22%;
  left: 45%;
  animation-delay: 3s;
  animation-duration: 5.8s;
}

.foam-8 {
  width: 11px;
  height: 11px;
  bottom: 26%;
  left: 60%;
  animation-delay: 3.5s;
  animation-duration: 6.2s;
}

.foam-9 {
  width: 13px;
  height: 13px;
  bottom: 19%;
  left: 80%;
  animation-delay: 4s;
  animation-duration: 7.2s;
}

.foam-10 {
  width: 7px;
  height: 7px;
  bottom: 32%;
  left: 35%;
  animation-delay: 4.5s;
  animation-duration: 5.5s;
}

@keyframes foamFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-15px) translateX(10px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-25px) translateX(-5px) scale(0.9);
    opacity: 1;
  }
  75% {
    transform: translateY(-15px) translateX(8px) scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
}

/* ============================================
   APP PROMOTION SECTION
   ============================================ */

.app-promotion {
  padding: var(--spacing-12) 0;
  background: linear-gradient(180deg, #E0F2FE 0%, #F0F9FF 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-5);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-600);
}

.app-promotion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-12);
  align-items: center;
}

.app-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}

.step-card {
  background: var(--color-white);
  padding: var(--spacing-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.step-card:hover::before {
  transform: scaleY(1);
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: var(--spacing-7);
  right: var(--spacing-7);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(46, 92, 138, 0.3);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-5);
  color: var(--color-white);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(46, 92, 138, 0.3);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
}

.step-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

.app-mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 1;
}

.phone-screen-content {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border-radius: 32px;
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
}

.mockup-app-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.mockup-app-header .app-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  max-width: 338px;
}

.mockup-services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-service {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--color-gray-800);
  transition: all 0.3s ease;
}

.mockup-service.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  transform: scale(1.05);
}

.mockup-service i {
  font-size: 1.5rem;
}

.app-download-buttons {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: var(--spacing-7);
  margin-top: var(--spacing-10);
  flex-wrap: wrap;
}

.download-btn {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-5);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  min-width: 180px;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.download-btn i {
  font-size: 2rem;
  color: var(--color-white);
}

.download-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

.download-store {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

/* ============================================
   WHY RINZO SECTION
   ============================================ */

.why-rinzo {
  padding: var(--spacing-12) 0;
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-8);
}

.feature-card {
  background: var(--color-white);
  padding: var(--spacing-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.feature-card:active {
  transform: translateY(-8px) scale(1);
}

.feature-icon-wrapper {
  display: inline-flex;
  margin-bottom: var(--spacing-7);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(46, 92, 138, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(46, 92, 138, 0.4);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-5);
}

.feature-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ============================================
   BRAND TRUST SECTION
   ============================================ */

.brand-trust {
  padding: var(--spacing-12) 0;
  background: linear-gradient(135deg, var(--color-primary-darkest), var(--color-primary-dark));
  color: var(--color-white);
}

.trust-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
}

.trust-header .section-title {
  color: var(--color-white);
}

.trust-header .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-12);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-5);
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-7);
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-5);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-white);
}

.author-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.author-location {
  font-size: 0.9rem;
  opacity: 0.7;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-8);
  margin-top: var(--spacing-12);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-4);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-primary-darkest);
  color: var(--color-white);
  padding: var(--spacing-12) 0 var(--spacing-7);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-10);
}

.footer-brand {
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-7);
}

.footer-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-8);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-7);
  color: var(--color-white);
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-list a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-7);
  margin-bottom: var(--spacing-10);
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon:hover {
  background: var(--color-primary);
  transform: translateY(-3px) scale(1.1);
  border-color: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(46, 92, 138, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .app-promotion-content {
    grid-template-columns: 1fr;
  }
  
  .app-mockup-container {
    order: -1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-download-app {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .character-container {
    max-width: 300px;
    height: 400px;
  }
  
  .phone-phone-1,
  .phone-phone-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .step-card,
  .feature-card,
  .testimonial-card {
    padding: var(--spacing-7);
  }
}

