:root {
  --bg-grad-a: #1a0f1f;
  --bg-grad-b: #2d1a2d;
  --card: #251b2b;
  --card-alt: #2a1f30;
  --text: #e4e4e4;
  --text-light: #d6d6d6;
  --muted: #b0b0b0;
  --accent: #c7a2d1;
  --accent-600: #d4b0e6;
  --accent-dark: #6a0dad;
  --accent-darker: #4b0082;
  --border: rgba(160, 97, 173, 0.3);
  --border-light: rgba(160, 97, 173, 0.15);
  --shadow: rgba(106, 13, 173, 0.4);
  --shadow-light: rgba(106, 13, 173, 0.25);
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html, body { 
  height: 100%; 
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg-grad-a) 0%, var(--bg-grad-b) 100%);
  color: var(--text);
  line-height: 1.7;
}

.container { 
  width: min(1000px, 92%); 
  margin: 0 auto; 
  padding: 20px; 
}

.visually-hidden { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  margin: -1px; 
  clip: rect(0 0 0 0); 
  overflow: hidden; 
}

.muted { 
  color: var(--muted); 
}

/* Hero Section */
.support-hero { 
  padding: 42px 0 16px; 
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
  padding: 28px 22px;
  text-align: center;
}

.logo img { 
  width: 64px; 
  height: 64px; 
  border-radius: 16px; 
  object-fit: cover; 
  box-shadow: 0 8px 20px rgba(106, 13, 173, 0.4);
  border: 2px solid rgba(199, 162, 209, 0.3);
}

.card h1 { 
  margin: 16px 0 8px; 
  font-size: clamp(26px, 3.6vw, 36px); 
  color: var(--accent);
  font-weight: 800;
}

.lead { 
  margin: 0 auto 20px; 
  color: var(--text-light); 
  max-width: 720px; 
  font-size: 1.1rem;
}

.actions { 
  display: flex; 
  gap: 12px; 
  justify-content: center; 
  margin-top: 16px; 
  flex-wrap: wrap;
}

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
  padding: 14px 24px; 
  border-radius: 14px; 
  font-weight: 700; 
  text-decoration: none; 
  border: 1px solid transparent; 
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn.primary { 
  background: linear-gradient(135deg, var(--accent-darker) 0%, var(--accent-dark) 100%);
  color: #fff; 
  box-shadow: 0 18px 40px -18px rgba(106, 13, 173, 0.6);
  border: 1px solid rgba(199, 162, 209, 0.3);
}

.btn.primary:hover { 
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-darker) 100%);
  transform: translateY(-2px);
  box-shadow: 0 22px 45px -18px rgba(106, 13, 173, 0.8);
}

.btn.ghost { 
  color: var(--accent); 
  border-color: var(--border); 
  background: transparent; 
}

.btn.ghost:hover { 
  background: rgba(160, 97, 173, 0.15);
  border-color: var(--accent);
  color: var(--accent-600);
}

/* Sections */
.ways { 
  padding: 30px 0 20px; 
}

.ways > .container > h2 { 
  margin: 0 0 24px; 
  font-size: 28px; 
  text-align: center; 
  color: var(--accent);
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.ways > .container > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-darker), var(--accent));
  border-radius: 2px;
}

/* Grid Layout */
.grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
}

.way { 
  background: var(--card-alt); 
  border: 1px solid var(--border); 
  border-radius: 18px; 
  padding: 24px 20px; 
  box-shadow: 0 24px 50px -28px var(--shadow); 
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.way:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 162, 209, 0.5);
  box-shadow: 0 30px 60px -20px rgba(106, 13, 173, 0.6);
  background: #2e2233;
}

.way .icon { 
  font-size: 28px; 
  width: 56px; 
  height: 56px; 
  display: grid; 
  place-items: center; 
  border-radius: 14px; 
  background: rgba(106, 13, 173, 0.25); 
  margin: 0 auto 16px; 
  border: 1px solid rgba(199, 162, 209, 0.3);
}

.way .icon .material-symbols-rounded { 
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; 
  font-size: 28px; 
  line-height: 1; 
  color: var(--accent); 
}

.way h2 { 
  margin: 0 0 10px; 
  font-size: 20px; 
  text-align: center; 
  color: var(--accent-600);
  font-weight: 700;
}

.way p { 
  margin: 0; 
  color: var(--text-light); 
  text-align: center;
  line-height: 1.6;
  flex-grow: 1;
}

.vision-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.2) 0%, rgba(75, 0, 130, 0.2) 100%);
  border: 1px solid rgba(199, 162, 209, 0.4);
}

.vision-card p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section */
.contact { 
  padding: 20px 0 48px; 
}

.contact-card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  border-radius: 20px; 
  padding: 32px 28px; 
  box-shadow: 0 24px 50px -28px var(--shadow); 
  text-align: center; 
}

.contact-card h2 { 
  margin: 0 0 12px; 
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
}

.contact-card p { 
  margin: 0 0 20px; 
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact-form { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 16px; 
  width: min(560px, 100%); 
  margin: 0 auto; 
}

.contact-form input, 
.contact-form textarea { 
  width: 100%; 
  padding: 14px 18px; 
  border-radius: 14px; 
  background: #2a1f30; 
  border: 1px solid var(--border); 
  color: var(--text); 
  outline: none; 
  box-shadow: 0 0 0 0 rgba(106, 13, 173, 0); 
  transition: all 0.2s ease; 
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8a8a;
}

.contact-form input:focus, 
.contact-form textarea:focus { 
  box-shadow: 0 0 0 4px rgba(106, 13, 173, 0.25); 
  border-color: rgba(199, 162, 209, 0.6);
  background: #33253a;
}

.sent { 
  color: var(--accent); 
  margin: 16px 0 0;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Footer */
.site-footer { 
  border-top: 1px solid var(--border); 
  padding: 24px 0; 
  margin-top: 20px;
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 1fr auto; 
  align-items: center; 
  gap: 16px; 
}

.brand-inline { 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
}

.brand-logo-img { 
  width: 32px; 
  height: 32px; 
  border-radius: 8px; 
  object-fit: cover; 
  box-shadow: 0 4px 12px rgba(106, 13, 173, 0.4);
  border: 1px solid rgba(199, 162, 209, 0.3);
}

.brand-name { 
  font-weight: 800; 
  color: var(--accent);
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .container {
    width: 95%;
  }
}

@media (max-width: 640px) {
  .grid { 
    grid-template-columns: 1fr; 
  }
  
  .actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .card {
    padding: 24px 16px;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  
  .brand-inline {
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.way, .card, .contact-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1523;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}