/* ==========================================================================
   PAW CHAMPIONS - OFFICIAL PORTAL STYLESHEET
   Design System extracted from official game UI and brand assets
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-primary-gold: #F5A623;
  --color-primary-gold-dark: #D98200;
  --color-primary-gold-light: #FFD470;
  
  --color-coral-pink: #FF6B8B;
  --color-coral-pink-light: #FFE4EC;
  --color-coral-pink-dark: #E64C6E;

  --color-action-blue: #3B82F6;
  --color-action-blue-light: #EBF3FF;
  --color-action-blue-dark: #1D4ED8;

  --color-mint-green: #10B981;
  --color-mint-light: #ECFDF5;
  --color-mint-dark: #047857;

  --color-purple-stat: #8B5CF6;
  --color-purple-light: #F3E8FF;

  --color-amber-stat: #F59E0B;
  --color-amber-light: #FEF3C7;

  /* Neutrals & Surfaces */
  --color-bg-main: #F4F6F9;
  --color-bg-card: #FFFFFF;
  --color-bg-elevated: #FFFFFF;
  --color-bg-dark: #12141A;
  --color-bg-dark-surface: #1E222D;

  --color-text-primary: #121620;
  --color-text-secondary: #5F6B7D;
  --color-text-muted: #8E9BAE;
  --color-border: #E2E8F0;
  --color-border-light: #F0F3F7;

  /* Typography */
  --font-family-base: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-display: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(31, 36, 46, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(31, 36, 46, 0.08);
  --shadow-lg: 0 16px 40px -8px rgba(31, 36, 46, 0.12);
  --shadow-gold: 0 10px 25px rgba(245, 166, 35, 0.35);
  --shadow-pink: 0 10px 25px rgba(255, 107, 139, 0.35);
  --shadow-blue: 0 10px 25px rgba(59, 130, 246, 0.3);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-bg-main);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Selection */
::selection {
  background: rgba(245, 166, 35, 0.25);
  color: #121620;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #EAEFF5;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 999px;
  border: 2px solid #EAEFF5;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

/* Typography Helpers - Modern Solid Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.display-title {
  font-family: var(--font-family-display);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

p {
  color: var(--color-text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   STICKY NAVBAR & GLASSMORPHISM
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(245, 166, 35, 0.25));
  transition: transform var(--transition-bounce);
}

.navbar-brand:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary-gold);
  border-radius: var(--radius-pill);
  transition: width var(--transition-fast);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Store Badges Row - Always side-by-side */
.store-badges-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-badge-link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  line-height: 0;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.store-badge-img.large {
  height: 48px;
}

.store-badge-img.header-size {
  height: 36px;
}

/* Language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: #F1F4F9;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.lang-btn:hover {
  background: #E2E8F0;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  min-width: 140px;
  padding: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition-normal);
  z-index: 100;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
}

.lang-dropdown li a:hover, .lang-dropdown li a.active {
  background: var(--color-action-blue-light);
  color: var(--color-action-blue);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-box {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text-primary);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 20px;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  z-index: 999;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer .nav-link {
  font-size: 1.25rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* --------------------------------------------------------------------------
   BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-family-base);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary-gold {
  background: linear-gradient(135deg, #FFB800 0%, #F5A623 100%);
  color: #121620;
  box-shadow: var(--shadow-gold);
}

.btn-primary-gold:hover {
  background: linear-gradient(135deg, #FFC526 0%, #E69512 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(245, 166, 35, 0.45);
}

.btn-blue {
  background: var(--color-action-blue);
  color: #FFFFFF;
  box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
  background: var(--color-action-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.4);
}

.btn-pink {
  background: linear-gradient(135deg, #FF758F 0%, #FF6B8B 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-pink);
}

.btn-pink:hover {
  background: linear-gradient(135deg, #FF8DA1 0%, #E64C6E 100%);
  transform: translateY(-2px);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.btn-dark {
  background: var(--color-bg-dark);
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #2D3342;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: #FEF3C7;
  color: #B45309;
}

.badge-pink {
  background: var(--color-coral-pink-light);
  color: var(--color-coral-pink-dark);
}

.badge-blue {
  background: var(--color-action-blue-light);
  color: var(--color-action-blue);
}

.badge-green {
  background: var(--color-mint-light);
  color: var(--color-mint-dark);
}

.badge-purple {
  background: var(--color-purple-light);
  color: #6D28D9;
}

/* --------------------------------------------------------------------------
   HERO LOGO BANNER (Large Logo Centerpiece)
   -------------------------------------------------------------------------- */
.hero-logo-section {
  padding-top: 110px;
  padding-bottom: 40px;
  background: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.hero-large-logo {
  max-width: 620px;
  width: 90%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 15px 35px rgba(245, 166, 35, 0.25));
  transition: transform var(--transition-bounce);
}

.hero-large-logo:hover {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   HERO SECTION (Game Intro & Dog Squad)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 60px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.08) 0%, rgba(244, 246, 249, 0) 60%),
              radial-gradient(circle at 10% 60%, rgba(255, 107, 139, 0.05) 0%, rgba(244, 246, 249, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #121620;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: #556277;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-family-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

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

.hero-char-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-char-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.16));
  transition: transform var(--transition-bounce);
}

.hero-char-wrapper:hover img {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   SECTION HEADERS & DIVIDERS
   -------------------------------------------------------------------------- */
.section {
  padding: 85px 0;
  position: relative;
}

.section.bg-white {
  background-color: #FFFFFF;
}

.section.bg-alt {
  background-color: #F8FAFC;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-header .section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-gold-dark);
  margin-bottom: 12px;
}

.section-header .section-title {
  font-size: 2.35rem;
  margin-bottom: 16px;
  color: #121620;
}

.section-header .section-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   GAME FEATURES & PILLARS (3 Cards Grid)
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.feature-card.gold:hover::before { background: var(--color-primary-gold); }
.feature-card.pink:hover::before { background: var(--color-coral-pink); }
.feature-card.blue:hover::before { background: var(--color-action-blue); }

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-icon-box.gold { background: var(--color-amber-light); color: var(--color-primary-gold-dark); }
.feature-icon-box.pink { background: var(--color-coral-pink-light); color: var(--color-coral-pink-dark); }
.feature-icon-box.blue { background: var(--color-action-blue-light); color: var(--color-action-blue); }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #121620;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-card-list {
  margin-top: 18px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card-list li {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card-list li svg {
  color: var(--color-mint-green);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SCREEN PREVIEW - 3 SCREENS SIDE-BY-SIDE (Phone Mockups Grid)
   -------------------------------------------------------------------------- */
.screens-trio-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

.trio-phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.trio-phone-frame {
  position: relative;
  background: #1C1F26;
  border-radius: 38px;
  padding: 8px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 310px;
}

.trio-screen-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #000000;
  line-height: 0;
}

.trio-screen-box img {
  width: 100%;
  height: auto;
  display: block;
}

.trio-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background: #1C1F26;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trio-speaker {
  width: 26px;
  height: 3px;
  background: #333842;
  border-radius: 99px;
}

/* --------------------------------------------------------------------------
   NEWS, UPDATES & VERSION ANNOUNCEMENTS
   -------------------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.news-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.news-card-header {
  padding: 24px 28px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card-body {
  padding: 0 28px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.news-card-title {
  font-size: 1.35rem;
  margin: 12px 0 10px;
  color: var(--color-text-primary);
}

.news-card-summary {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-card-footer {
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more-btn {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-action-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.read-more-btn:hover {
  color: var(--color-action-blue-dark);
  gap: 10px;
}

/* --------------------------------------------------------------------------
   SUPPORT DESK & FAQ (Equal 1:1 Side-by-Side Layout)
   -------------------------------------------------------------------------- */
.support-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.support-faq-card, .support-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 38px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.support-faq-card h3, .support-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.support-faq-card p, .support-form-card p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.support-faq-content {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.support-faq-search {
  position: relative;
  width: 100%;
}

.support-faq-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: #F8FAFC;
  outline: none;
  transition: var(--transition-fast);
}

.support-faq-search-input:focus {
  background: #FFFFFF;
  border-color: var(--color-action-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.support-faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.support-faq-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.support-faq-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  background: #F1F4F9;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.support-faq-pill:hover, .support-faq-pill.active {
  background: var(--color-text-primary);
  color: #FFFFFF;
  border-color: var(--color-text-primary);
}

.support-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.support-faq-accordion .faq-item {
  background: #F8FAFC;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.support-faq-accordion .faq-item:hover {
  border-color: #CBD5E1;
}

.support-faq-accordion .faq-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-family: var(--font-family-base);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
  cursor: pointer;
}

.support-faq-accordion .faq-question span {
  word-break: break-word;
}

.support-faq-accordion .faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.support-faq-accordion .faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-action-blue);
}

.support-faq-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 20px;
}

.support-faq-accordion .faq-item.active .faq-answer {
  max-height: 800px;
  padding-bottom: 18px;
}

.support-faq-accordion .faq-answer p {
  font-size: 0.88rem;
  line-height: 1.6;
  word-break: break-word;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .required {
  color: var(--color-coral-pink-dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family-base);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: #F8FAFC;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--color-action-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.file-dropzone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  background: #F8FAFC;
  cursor: pointer;
  transition: var(--transition-fast);
}

.file-dropzone:hover {
  border-color: var(--color-action-blue);
  background: var(--color-action-blue-light);
}

.file-dropzone svg {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.file-dropzone p {
  font-size: 0.85rem;
  margin: 0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-action-blue);
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--color-action-blue);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   FAQ SECTION & KNOWLEDGE BASE
   -------------------------------------------------------------------------- */
.faq-search-wrapper {
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: var(--transition-fast);
}

.faq-search-input:focus {
  border-color: var(--color-action-blue);
  box-shadow: var(--shadow-md);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.faq-category-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.faq-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-pill:hover, .faq-pill.active {
  background: var(--color-bg-dark);
  color: #FFFFFF;
  border-color: var(--color-bg-dark);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-family-base);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  cursor: pointer;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-action-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-actions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   FOOTER (PowerPlay Studio Inspired)
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-bg-dark);
  color: #FFFFFF;
  padding: 80px 0 36px;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--color-primary-gold);
  color: #121620;
  transform: translateY(-3px);
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-menu a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: #64748B;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal-links a {
  color: #94A3B8;
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

.scroll-top-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.scroll-top-btn:hover {
  color: var(--color-primary-gold);
}

/* --------------------------------------------------------------------------
   MODAL WINDOWS (Articles, Legal Documents, Ticket Confirmation)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: var(--transition-normal);
  overflow: hidden;
}

.modal-overlay.open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.4rem;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--color-text-primary);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-body h4 {
  font-size: 1.15rem;
  margin: 24px 0 8px;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body ul, .modal-body ol {
  padding-left: 24px;
  margin: 12px 0 20px;
}

.modal-body li {
  margin-bottom: 6px;
}

.modal-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
  background: #F8FAFC;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: #1E222D;
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 4px solid var(--color-mint-green);
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge-row, .hero-cta-group, .hero-stats-row {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .screens-trio-showcase {
    gap: 18px;
  }
  .trio-phone-frame {
    border-radius: 30px;
    padding: 6px;
  }
  .trio-screen-box {
    border-radius: 24px;
  }
  .trio-notch {
    width: 65px;
    height: 13px;
  }
  .support-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links, .navbar .nav-actions .store-badges-row {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .section {
    padding: 60px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .screens-trio-showcase {
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 32px;
  }
  .support-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .support-faq-card, .support-form-card, .support-info-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }
  .support-faq-card h3, .support-form-card h3 {
    font-size: 1.35rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .support-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .support-faq-card, .support-form-card, .support-info-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }
  .support-faq-card h3, .support-form-card h3 {
    font-size: 1.25rem;
  }
  .support-faq-search-input {
    padding: 10px 14px 10px 38px;
    font-size: 0.88rem;
  }
  .support-faq-search-icon {
    left: 12px;
  }
  .support-faq-pills {
    gap: 6px;
  }
  .support-faq-pill {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .support-faq-accordion .faq-question {
    padding: 14px 14px;
    font-size: 0.88rem;
    gap: 8px;
  }
  .support-faq-accordion .faq-answer {
    padding: 0 14px;
  }
  .support-faq-accordion .faq-item.active .faq-answer {
    padding-bottom: 14px;
  }
  .file-dropzone {
    padding: 16px 12px;
  }
  .file-dropzone p {
    font-size: 0.8rem;
  }
  .form-input, .form-select, .form-textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
