/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  /* Seamless gradient background matching Figma design */
  background: 
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8faff 5%,
      #eef3ff 12%,
      #e5ecff 20%,
      #dce6ff 28%,
      #e8efff 36%,
      #f5f9ff 44%,
      #ffffff 52%,
      #fafcff 60%,
      #f5f9ff 68%,
      #eef4ff 76%,
      #e8f0ff 84%,
      #f0f5ff 92%,
      #ffffff 100%
    );
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo .logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header-logo .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login,
.btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.btn-login {
  background: var(--glass-bg);
  color: var(--color-text-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.btn-register {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-button);
}

.btn-register:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42, 75, 217, 0.35);
}

.btn-login svg,
.btn-register svg {
  width: 18px;
  height: 18px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 40px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Soft blur circles for depth */
.hero-blur-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blur-1 {
  top: 10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(100px);
}

.hero-blur-2 {
  top: 30%;
  right: 15%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(80px);
}

.hero-blur-3 {
  bottom: 20%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(90px);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  padding-top: 40px;
  width: 100%;
}

/* Brand Icons - Horizontal Layout */
.brand-icons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 30px 0;
}

.brand-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto; /* prevents shrinking so icons stay large */
  transition: transform var(--transition-normal);
}

.brand-icon:hover {
  transform: scale(1.1);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(42, 75, 217, 0.15));
}

/* PlayStation */
.brand-icon.playstation {
  width: 210px;
  height: 210px;
  animation: floatIcon 5s ease-in-out infinite;
}

/* Blizzard */
.brand-icon.blizzard {
  width: 210px;
  height: 210px;
  animation: floatIcon 5s ease-in-out infinite 0.5s;
}

/* Xbox */
.brand-icon.xbox {
  width: 210px;
  height: 210px;
  animation: floatIcon 5s ease-in-out infinite 1s;
}

/* Riot */
.brand-icon.riot {
  width: 230px;
  height: 230px;
  animation: floatIcon 5s ease-in-out infinite 0.7s;
}

/* Epic */
.brand-icon.epic {
  width: 210px;
  height: 210px;
  animation: floatIcon 5s ease-in-out infinite 1.2s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-dark);
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-cta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.btn-cta-hero:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 227, 255, 0.6);
}

.btn-cta-hero svg {
  width: 20px;
  height: 20px;
}

/* ===== SECTION COMMON STYLES ===== */
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.section-title-left {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

/* ===== SECTION: 3 REASONS ===== */
.section-reasons {
  position: relative;
  padding: var(--section-padding) 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reason-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(220, 227, 255, 0.3);
  transition: all var(--transition-normal);
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 227, 255, 0.5);
}

.reason-icon-wrapper {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.reason-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-gray);
  max-width: 280px;
}

/* ===== SECTION: MULTIPLE TOP-UP ===== */
.section-topup {
  position: relative;
  padding: var(--section-padding) 0;
}

/* Hide mobile header on desktop */
.topup-header-mobile {
  display: none;
}

.topup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.topup-content {
  padding-right: 40px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-method span {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  background: var(--glass-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cta-outline svg {
  width: 18px;
  height: 18px;
}

.topup-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topup-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ===== SECTION: BENEFITS ===== */
.section-benefits {
  position: relative;
  padding: var(--section-padding) 0;
}

.benefits-header {
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 240px);
  gap: 32px 20px;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}

.benefits-grid .benefit-card:nth-child(1) { grid-column: 2; grid-row: 1; }
.benefits-grid .benefit-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.benefits-grid .benefit-card:nth-child(3) { grid-column: 4; grid-row: 1; }
.benefits-grid .benefit-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.benefits-grid .benefit-card:nth-child(5) { grid-column: 2; grid-row: 2; }
.benefits-grid .benefit-card:nth-child(6) { grid-column: 3; grid-row: 2; }
.benefits-grid .benefit-card:nth-child(7) { grid-column: 4; grid-row: 2; }

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 240px;
  justify-self: center;
}

.benefit-icon-wrapper {
  width: 180px;
  height: 180px;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(220, 227, 255, 0.3);
  transition: all var(--transition-normal);
  padding: 32px;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(220, 227, 255, 0.5);
}

.benefit-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-dark);
  max-width: 200px;
}

/* ===== SECTION: BUSINESS SOLUTIONS ===== */
.section-business {
  position: relative;
  padding: var(--section-padding) 0;
}

.business-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.business-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.feature-btn {
  width: fit-content;
  margin-left: 0;
  margin-top: 16px;
  padding: 0 28px;
  height: 44px;
}

.business-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-graphic img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ===== SECTION: CONTACT FORM ===== */
.section-contact {
  position: relative;
  padding: var(--section-padding) 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group-message textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group-message textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group-message textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(42, 75, 217, 0.1);
}

.form-group-message textarea {
  resize: vertical;
  min-height: 140px;
  height: 100%;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 32px;
  background: var(--glass-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 auto;
  transition: all var(--transition-normal);
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

.contact-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.email-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.email-illustration {
  width: 160px;
  height: 120px;
  margin-bottom: 20px;
}

.email-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.email-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.email-link:hover {
  box-shadow: var(--shadow-md);
}

.email-link svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.email-link span {
  flex: 1;
  font-size: 14px;
  color: var(--color-text-dark);
  text-decoration: underline;
}

.copy-btn {
  width: 28px;
  height: 28px;
  background: rgba(42, 75, 217, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-footer);
  padding: 40px 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-logo .logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-info {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(224, 224, 237, 0.5);
  border-radius: var(--radius-md);
}

.footer-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-bottom a,
.footer-bottom span {
  font-size: 12px;
  color: var(--color-text-light);
}

.footer-bottom a {
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

.separator {
  width: 4px;
  height: 4px;
  background: var(--color-text-light);
  border-radius: 50%;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid .reason-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 180px);
    gap: 28px 20px;
  }

  .benefits-grid .benefit-card:nth-child(1),
  .benefits-grid .benefit-card:nth-child(2),
  .benefits-grid .benefit-card:nth-child(3),
  .benefits-grid .benefit-card:nth-child(4),
  .benefits-grid .benefit-card:nth-child(5),
  .benefits-grid .benefit-card:nth-child(6),
  .benefits-grid .benefit-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .benefit-icon-wrapper {
    width: 140px;
    height: 140px;
  }

  .topup-wrapper,
  .business-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .topup-content {
    padding-right: 0;
    text-align: center;
  }

  .topup-content .section-title-left,
  .topup-content .section-subtitle {
    text-align: center;
  }

  .payment-methods {
    align-items: center;
  }

  .topup-content .btn-cta-outline {
    margin: 0 auto;
  }

  .business-features {
    order: 2;
  }

  .business-graphic {
    order: 1;
  }

  .feature-btn {
    margin-left: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-email {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }

  .header-container {
    padding: 0 16px;
  }

  /* Show button text on mobile like Figma */
  .btn-login,
  .btn-register {
    padding: 0 16px;
    height: 40px;
    font-size: 14px;
  }

  .btn-login svg,
  .btn-register svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    padding: 100px 16px 60px;
    min-height: auto;
  }

  /* Hide blur circles on mobile */
  .hero-blur-circle {
    display: none;
  }

  /* Mobile brand icons - horizontal at top, centered */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    text-align: center;
  }

  .brand-icons-wrapper {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0 0 24px 0;
    transform: none;
    right: auto;
    top: auto;
  }

  .brand-icon.playstation,
  .brand-icon.blizzard,
  .brand-icon.xbox,
  .brand-icon.riot,
  .brand-icon.epic {
    width: 50px;
    height: 50px;
    animation: none;
  }

  .hero-title {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
  }

  .btn-cta-hero {
    margin: 0 auto;
  }

  /* Reasons section mobile */
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reasons-grid .reason-card:last-child {
    max-width: none !important;
    grid-column: auto;
    margin: 0;
  }

  .reason-card {
    padding: 28px 24px;
    width: 100%;
  }

  .reason-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  /* Mobile only topup header - hidden on desktop, shown on mobile */
  .topup-header-mobile {
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }

  .topup-title-desktop,
  .topup-subtitle-desktop {
    display: none;
  }

  /* Topup section mobile - image first, then content */
  .topup-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .topup-image {
    order: 1;
  }

  .topup-content {
    order: 2;
    text-align: center;
  }

  .topup-content .section-title-left,
  .topup-content .section-subtitle {
    text-align: center;
  }

  .payment-methods {
    align-items: flex-start;
  }

  .payment-method {
    justify-content: flex-start;
  }

  .topup-content .btn-cta-outline {
    margin: 0 auto;
  }

  /* Benefits grid mobile - 2 columns, smaller icons */
  .section-benefits .container {
    padding: 0 16px;
  }

  .benefits-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }

  .benefits-grid .benefit-card:nth-child(1),
  .benefits-grid .benefit-card:nth-child(2),
  .benefits-grid .benefit-card:nth-child(3),
  .benefits-grid .benefit-card:nth-child(4),
  .benefits-grid .benefit-card:nth-child(5),
  .benefits-grid .benefit-card:nth-child(6),
  .benefits-grid .benefit-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .benefit-card {
    max-width: none;
  }

  .benefit-icon-wrapper {
    width: 90px;
    height: 90px;
    padding: 14px;
  }

  .benefit-text {
    font-size: 11px;
    max-width: none;
  }

  /* Contact section - form first, then email */
  .contact-container {
    padding: 24px 16px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form {
    order: 1;
  }

  .contact-email {
    order: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-group {
    gap: 12px;
  }

  .form-group-message textarea {
    min-height: 120px;
  }

  /* Footer mobile */
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .footer-info {
    padding: 0 16px;
  }

  .footer-text {
    font-size: 11px;
  }

  /* Business section mobile */
  .business-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .business-features {
    order: 2;
  }

  .business-graphic {
    order: 1;
  }

  .business-feature {
    gap: 12px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .feature-content h3 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;
  }

  .feature-btn {
    margin: 12px 0;
    height: 40px;
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-right: 0;
  }

  .brand-icon.playstation,
  .brand-icon.blizzard,
  .brand-icon.xbox,
  .brand-icon.riot,
  .brand-icon.epic {
    width: 50px;
    height: 50px;
  }

  .brand-icons-wrapper {
    gap: 6px;
  }

  .hero-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .btn-cta-hero {
    padding: 0 16px;
    height: 42px;
    font-size: 13px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    padding: 12px;
  }

  .benefit-text {
    font-size: 10px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .section-title {
    font-size: 20px;
  }

  .reason-card {
    padding: 20px;
  }

  .reason-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .reason-title {
    font-size: 18px;
  }

  .reason-description {
    font-size: 13px;
  }

  .btn-login,
  .btn-register {
    padding: 0 12px;
    height: 36px;
    font-size: 12px;
  }

  .header-buttons {
    gap: 8px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reason-card,
.benefit-card,
.business-feature {
  animation: fadeInUp 0.6s ease-out both;
}

.reason-card:nth-child(2) {
  animation-delay: 0.1s;
}

.reason-card:nth-child(3) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.05s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.15s;
}

.benefit-card:nth-child(5) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(6) {
  animation-delay: 0.25s;
}

.benefit-card:nth-child(7) {
  animation-delay: 0.3s;
}
