.elementor-29 .elementor-element.elementor-element-f77a3a8{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-29 .elementor-element.elementor-element-f77a3a8.e-con{--flex-grow:1;--flex-shrink:0;}.elementor-29 .elementor-element.elementor-element-478f895{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-29 .elementor-element.elementor-element-478f895.elementor-element{--align-self:center;--flex-grow:1;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-29 .elementor-element.elementor-element-f77a3a8{--content-width:1600px;}}/* Start custom CSS *//* =============================================
   AVIATOR PREDICTOR SUPPORT PAGE - STATIC CSS
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --background: #0a0a0a;
  --background-card: #141414;
  --foreground: #f2f2f2;
  --primary: #D62828;
  --primary-light: #e63939;
  --secondary: #F5B400;
  --secondary-light: #ffc61a;
  --muted: #262626;
  --muted-foreground: #a6a6a6;
  --border: #2e2e2e;
  --green: #22c55e;
  --blue: #3b82f6;
  
  /* Effects */
  --glow-red: 0 0 30px rgba(214, 40, 40, 0.4);
  --glow-gold: 0 0 30px rgba(245, 180, 0, 0.3);
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-gradient-gold {
  background: linear-gradient(to right, #fbbf24, #eab308, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-red {
  background: linear-gradient(to right, #ef4444, #dc2626, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
}

.glass-card-gold {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 180, 0, 0.3);
  box-shadow: 0 0 40px rgba(245, 180, 0, 0.1);
  border-radius: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--glow-red);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: 0 0 40px rgba(214, 40, 40, 0.6), 0 0 80px rgba(214, 40, 40, 0.3);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: 0 0 20px rgba(245, 180, 0, 0.3);
}

.btn-outline-gold:hover {
  background: rgba(245, 180, 0, 0.1);
  box-shadow: 0 0 40px rgba(245, 180, 0, 0.5);
  transform: translateY(-2px);
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(214, 40, 40, 0.4), 0 0 40px rgba(214, 40, 40, 0.2); }
  to { box-shadow: 0 0 40px rgba(214, 40, 40, 0.6), 0 0 80px rgba(214, 40, 40, 0.3); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite alternate; }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }
.animate-slide-in-right { animation: slide-in-right 0.6s ease-out forwards; }

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

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

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--background) 0%, var(--background) 70%, rgba(214, 40, 40, 0.1) 100%);
}

.hero-glow-1 {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: rgba(214, 40, 40, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse-slow 4s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: rgba(245, 180, 0, 0.2);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse-slow 4s ease-in-out infinite 200ms;
}

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

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(214, 40, 40, 0.1);
  border: 1px solid rgba(214, 40, 40, 0.3);
  width: fit-content;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-slow 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 560px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--secondary);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

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

@media (min-width: 1024px) {
  .hero-visual { display: flex; }
}

.hero-visual-main {
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.3) 0%, rgba(245, 180, 0, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--glow-red);
}

.hero-visual-main svg {
  width: 128px;
  height: 128px;
  color: var(--primary);
}

.hero-bubble {
  position: absolute;
  padding: 1rem;
  border-radius: 1rem;
  animation: float 6s ease-in-out infinite;
}

.hero-bubble-1 {
  top: -16px;
  right: -16px;
  animation-delay: 200ms;
}

.hero-bubble-2 {
  bottom: -16px;
  left: -32px;
  animation-delay: 300ms;
}

.hero-bubble-3 {
  top: 50%;
  right: -64px;
  transform: translateY(-50%);
  animation-delay: 400ms;
}

.hero-bubble-online {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-bubble-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* =============================================
   SUPPORT CATEGORIES
   ============================================= */

.categories {
  padding: 6rem 0;
  position: relative;
}

.categories-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(20,20,20,0.5) 50%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 2.25rem; }
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

.category-card {
  padding: 2rem;
  transition: all 0.5s ease;
}

.category-card:hover {
  transform: scale(1.05);
  border-color: rgba(214, 40, 40, 0.5);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.category-icon.red {
  background: rgba(214, 40, 40, 0.2);
}

.category-icon.gold {
  background: rgba(245, 180, 0, 0.2);
}

.category-icon.blue {
  background: rgba(59, 130, 246, 0.2);
}

.category-card:hover .category-icon.red {
  background: rgba(214, 40, 40, 0.3);
  box-shadow: var(--glow-red);
}

.category-card:hover .category-icon.gold {
  background: rgba(245, 180, 0, 0.3);
  box-shadow: var(--glow-gold);
}

.category-card:hover .category-icon.blue {
  background: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.category-icon svg {
  width: 32px;
  height: 32px;
}

.category-icon.red svg { color: var(--primary); }
.category-icon.gold svg { color: var(--secondary); }
.category-icon.blue svg { color: var(--blue); }

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.category-card:hover h3 {
  color: var(--secondary);
}

.category-card > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.category-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.category-list-dot.red { background: var(--primary); }
.category-list-dot.gold { background: var(--secondary); }
.category-list-dot.blue { background: var(--blue); }

/* =============================================
   TICKET FORM
   ============================================= */

.ticket-form-section {
  padding: 6rem 0;
  position: relative;
}

.ticket-form-glow-1 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 384px;
  height: 384px;
  background: rgba(214, 40, 40, 0.1);
  border-radius: 50%;
  filter: blur(150px);
  transform: translateY(-50%);
}

.ticket-form-glow-2 {
  position: absolute;
  top: 50%;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(245, 180, 0, 0.1);
  border-radius: 50%;
  filter: blur(150px);
  transform: translateY(-50%);
}

.ticket-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.ticket-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ticket-form { padding: 3rem; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background: rgba(38, 38, 38, 0.5);
  border: 1px solid rgba(46, 46, 46, 0.5);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a6a6a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-select option {
  background: var(--background-card);
  color: var(--foreground);
}

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

.file-upload {
  position: relative;
  border: 2px dashed rgba(46, 46, 46, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload:hover {
  border-color: rgba(245, 180, 0, 0.5);
}

.file-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload svg {
  width: 40px;
  height: 40px;
  color: var(--muted-foreground);
  margin: 0 auto 0.75rem;
}

.file-upload p {
  color: var(--muted-foreground);
}

.file-upload .file-hint {
  font-size: 0.875rem;
  color: rgba(166, 166, 166, 0.7);
  margin-top: 0.25rem;
}

.file-upload .file-name {
  color: var(--secondary);
  font-weight: 500;
}

.btn-submit {
  width: 100%;
  height: 56px;
}

/* Success State */
.ticket-success {
  padding: 3rem;
  text-align: center;
}

.ticket-success-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.ticket-success-icon svg {
  width: 48px;
  height: 48px;
  color: var(--green);
}

.ticket-success h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ticket-success p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.ticket-success .response-time {
  color: var(--secondary);
  font-weight: 600;
}

.btn-reset {
  margin-top: 2rem;
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-reset:hover {
  background: rgba(245, 180, 0, 0.1);
}

.hidden {
  display: none !important;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.how-it-works {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.5) 0%, transparent 50%, rgba(20,20,20,0.5) 100%);
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.steps-line {
  display: none;
  position: absolute;
  top: 64px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

@media (min-width: 768px) {
  .steps-line { display: block; }
}

.step {
  text-align: center;
  position: relative;
}

.step-icon-wrapper {
  position: relative;
  display: inline-flex;
  margin-bottom: 2rem;
}

.step-icon {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--muted) 0%, var(--background-card) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 48px;
  height: 48px;
  color: var(--secondary);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--glow-red);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--muted-foreground);
  max-width: 280px;
  margin: 0 auto;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq {
  padding: 6rem 0;
}

.faq-container {
  max-width: 768px;
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  padding: 0 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  box-shadow: var(--glow-gold);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.accordion-trigger:hover {
  color: var(--secondary);
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.accordion-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(214, 40, 40, 0.2) 0%, var(--background) 50%, rgba(214, 40, 40, 0.2) 100%);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(214, 40, 40, 0.05) 50%, transparent 100%);
}

.cta-container {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-card {
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 40, 40, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta h2 { font-size: 2.25rem; }
}

.cta > .cta-container > .cta-card > p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

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

.footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(46, 46, 46, 0.5);
  background: rgba(20, 20, 20, 0.5);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo .gold {
  color: var(--secondary);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 46, 46, 0.5);
}

.footer-disclaimer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 768px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(166, 166, 166, 0.7);
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */

@media (max-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .hero-stat-divider {
    height: 32px;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}/* End custom CSS */