:root {
    --background: #0a0a0c;
    --foreground: #ffffff;
    --card: rgba(20, 20, 25, 0.5);
    --primary: #ff3333;
    --primary-dark: #cc0000;
    --primary-glow: rgba(255, 51, 51, 0.15);
    --secondary: rgba(255, 255, 255, 0.03);
    --accent: #ff6666;
    --muted: #94a3b8;
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --up: rgba(34, 197, 94, 0.9);
    --down: rgba(239, 68, 68, 0.9);
    --trans: 0.25s;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow: 0 8px 32px rgba(255, 51, 51, 0.15);
    --shadow-sm: 0 2px 8px rgba(255, 51, 51, 0.1);
    --glass-border: 1px solid rgba(255, 51, 51, 0.1);
    --glass-bg: linear-gradient(135deg, rgba(255, 51, 51, 0.05), rgba(255, 51, 51, 0.02));
    --nav-height: 64px;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .spin {
    animation: spin 1s linear infinite;
    transform-origin: center;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  .animate-fade {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .animate-scale {
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .animate-left {
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .animate-right {
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .delay-100 { animation-delay: 100ms; }
  .delay-200 { animation-delay: 200ms; }
  .delay-300 { animation-delay: 300ms; }
  .delay-400 { animation-delay: 400ms; }
  .delay-500 { animation-delay: 500ms; }
  .delay-600 { animation-delay: 600ms; }
  .delay-700 { animation-delay: 700ms; }
  .delay-800 { animation-delay: 800ms; }
  .delay-900 { animation-delay: 900ms; }
  .delay-1000 { animation-delay: 1000ms; }
  
  html, body { 
    height: 100%; 
    width: 100%; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
  }

  body {
    margin: 0;
    padding: 0;
    background: var(--background);
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
      radial-gradient(circle at 0% 0%, rgba(255, 51, 51, 0.15), transparent 70%),
      radial-gradient(circle at 100% 100%, rgba(255, 51, 51, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .navbar {
    position: fixed;
    top: 0.75rem;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 100;
  }
  
  .navbar-inner {
    width: calc(100% - 4rem);
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: rgba(10, 10, 12, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    height: 100%;
  }

  .logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }

  .logo-image {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(36%) sepia(95%) saturate(3217%) hue-rotate(339deg) brightness(101%) contrast(100%);
    transition: filter var(--trans);
  }

  .logo:hover .logo-image {
    filter: brightness(0) saturate(100%) invert(45%) sepia(82%) saturate(2869%) hue-rotate(334deg) brightness(101%) contrast(101%);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--trans);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--trans);
  }

  .nav-link:hover {
    color: var(--foreground);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link.active {
    color: var(--primary);
  }

  .nav-link.active::after {
    width: 100%;
  }

  .mobile-nav {
    display: none;
    align-items: center;
    gap: 0.75rem;
  }

  .mobile-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
  }

  .mobile-nav-icon svg {
    width: 20px;
    height: 20px;
    transition: transform var(--trans);
  }

  .mobile-nav-icon:hover {
    color: var(--foreground);
    background: rgba(255, 51, 51, 0.1);
    transform: translateY(-2px);
  }

  .mobile-nav-icon:hover svg {
    transform: scale(1.1);
  }

  .mobile-nav-icon.active {
    color: var(--primary);
    background: rgba(255, 51, 51, 0.15);
    box-shadow: 0 4px 12px rgba(255, 50, 50, 0.25);
  }

  .mobile-nav-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--trans);
    border-radius: var(--radius-full);
  }

  .mobile-nav-icon.active::after {
    width: 50%;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 110;
  }

  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    transition: all var(--trans);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: calc(var(--nav-height) + 2rem) 0 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: 
      radial-gradient(circle at 10% 0%, rgba(255, 51, 51, 0.05), transparent 50%),
      radial-gradient(circle at 90% 10%, rgba(255, 51, 51, 0.05), transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(20, 20, 25, 0.8), transparent 100%);
  }
  
  .landing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--background));
    pointer-events: none;
    z-index: 2;
  }
  
  .landing-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-bottom: 6rem;
  }

  .hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
  }

  .hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--foreground) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero p {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    color: var(--muted);
    font-size: 0.9375rem;
    font-weight: 500;
  }

  .banner-section {
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    margin: 0 auto 6rem;
  }

  .banner-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--trans);
  }

  .banner-container:hover .banner-image {
    transform: scale(1.02);
  }

  .stores-section {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
    width: 100%;
    background: var(--background);
    position: relative;
    overflow: hidden;
  }
  
  .stores-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 80% 20%, rgba(255, 51, 51, 0.05), transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(255, 51, 51, 0.05), transparent 50%);
    opacity: 0.6;
    z-index: 0;
  }
  
  .side-decoration {
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  
  .side-decoration.left {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 51, 51, 0.05), transparent);
  }
  
  .side-decoration.right {
    right: 0;
    background: linear-gradient(-90deg, rgba(255, 51, 51, 0.05), transparent);
  }
  
  .deco-item {
    display: none;
  }
  
  .vertical-line {
    display: none;
  }
  
  .deco-dot {
    display: none;
  }
  
  .stores-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--foreground), rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: block;
    width: 100%;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: var(--radius-full);
  }

  .section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 4rem;
  }

  .stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
  }

  .store-card {
    background: rgba(20, 20, 25, 0.7);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
  }

  .store-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .store-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .store-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
  }

  .store-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 51, 51, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .store-card:hover::before {
    opacity: 1;
  }

  .store-card:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  .store-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .store-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 51, 51, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .store-card:hover .store-icon {
    transform: scale(1.05);
    background: rgba(255, 51, 51, 0.15);
  }

  .store-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: transform 0.3s ease;
  }

  .store-card:hover .store-icon svg {
    transform: scale(1.15);
  }

  .store-info {
    flex: 1;
  }

  .store-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
  }

  .store-card:hover .store-name {
    color: var(--primary);
  }

  .store-description {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .store-features {
    margin-bottom: 2rem;
    flex-grow: 1;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
  }

  .store-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
  }

  .store-actions .btn-primary,
  .store-actions .btn-secondary {
    flex: 1;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .become-reseller-card {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 51, 51, 0.05));
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(255, 51, 51, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
  }

  .become-reseller-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .become-reseller-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .become-reseller-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 51, 51, 0.3);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.2);
  }

  .become-reseller-card:hover::before {
    opacity: 1;
  }

  .reseller-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .reseller-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 51, 51, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }

  .become-reseller-card:hover .reseller-icon {
    transform: scale(1.05);
    background: rgba(255, 51, 51, 0.25);
  }

  .reseller-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: transform 0.3s ease;
  }

  .become-reseller-card:hover .reseller-icon svg {
    transform: scale(1.15);
  }

  .reseller-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
    letter-spacing: -0.01em;
  }

  .reseller-description {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .reseller-requirements {
    margin-bottom: 2rem;
    flex-grow: 1;
  }

  .requirement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .requirement-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
  }

  .reseller-actions {
    margin-top: auto;
  }

  .btn-primary {
    background: var(--primary);
    color: var(--foreground);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
  }

  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
  }

  .btn-primary:hover::before {
    transform: translateX(100%);
  }

  .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--foreground);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: var(--glass-border);
    cursor: pointer;
    transition: all var(--trans);
  }

  .btn-secondary:hover {
    background: rgba(255, 51, 51, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary);
  }

  .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .btn-secondary:disabled:hover {
    transform: none;
    background: var(--glass-bg);
    border-color: var(--glass-border);
  }

  .footer {
    position: relative;
    width: 100%;
    padding: 4rem 0 2rem;
    background: var(--background);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
  }

  .footer-tagline {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-group h4 {
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .footer-group a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--trans);
  }

  .footer-group a:hover {
    color: var(--primary);
  }

  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .footer-copyright {
    color: var(--muted);
    font-size: 0.875rem;
  }

  .section-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 180px;
    z-index: 5;
    pointer-events: none;
  }

  .section-divider.top {
    top: 0;
    background: linear-gradient(to bottom, 
      var(--background) 0%, 
      rgba(10, 10, 12, 0.9) 20%, 
      rgba(10, 10, 12, 0.7) 40%,
      rgba(10, 10, 12, 0.3) 70%,
      transparent 100%);
  }

  .section-divider.bottom {
    bottom: 0;
    background: linear-gradient(to top, 
      var(--background) 0%, 
      rgba(10, 10, 12, 0.9) 20%, 
      rgba(10, 10, 12, 0.7) 40%,
      rgba(10, 10, 12, 0.3) 70%,
      transparent 100%);
  }

  @media (max-width: 768px) {
    .navbar {
      padding: 0 1rem;
    }

    .navbar-inner {
      padding: 0 1rem;
    }

    .nav-links {
      display: none;
    }

    .mobile-nav {
      display: flex;
    }

    .hamburger {
      display: none;
    }

    .nav-links.active {
      display: none;
    }

    .logo {
      font-size: 1.25rem;
    }

    .logo-image {
      width: 32px;
      height: 32px;
    }

    .landing {
      padding-top: 10rem;
    }

    .hero h1 { 
      font-size: 2.5rem; 
    }

    .hero p { 
      font-size: 1.1rem; 
    }

    .hero-btns {
      flex-direction: column;
    }

    .hero-stats {
      flex-direction: column;
      gap: 2rem;
    }

    .stat-value {
      font-size: 2rem;
    }

    .banner-section {
      max-width: 100%;
      padding: 0 1rem;
    }

    .stores-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .stores-content {
      padding: 0 1.5rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .store-actions {
      flex-direction: column;
    }

    .footer {
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .footer-links {
      grid-template-columns: repeat(2, 1fr);
    }

    .side-decoration {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .footer-links {
      grid-template-columns: 1fr;
    }

    .stores-grid {
      grid-template-columns: 1fr;
    }

    .store-card,
    .become-reseller-card {
      padding: 1.5rem;
    }
  }
