:root {
  --bg-main: #0f172a; /* Lighter slate dark */
  --bg-alt: #1e293b;  /* Distinct contrast section background */
  --bg-card: rgba(255, 255, 255, 0.05);
  --border-card: rgba(255, 255, 255, 0.12);
  
  /* Light Theme Variables */
  --bg-light: #f8fafc;
  --bg-light-alt: #f1f5f9;
  --text-dark: #0f172a;
  --text-dark-secondary: #475569;
  --border-light: #e2e8f0;
  
  --text-primary: #ffffff;
  --text-secondary: #9ba1ad;
  --btn-pill-bg: #48dfdf;
  --btn-pill-text: #0f172a;
  --btn-pill-hover: #5ce9e9;

  --accent-purple: #9d4edd;
  --accent-cyan: #00b4d8;
  --accent-orange: #f97316;
  --accent-green: #10b981;
  --accent-red: #ef4444;
}

/* Light Theme Override Classes */
.light-section {
  background: var(--bg-light) !important;
  color: var(--text-dark) !important;
}
.light-section-alt {
  background: var(--bg-light-alt) !important;
  color: var(--text-dark) !important;
}
.light-section .feature-text, 
.light-section .section-subtitle,
.light-section .faq-answer p,
.light-section .testimonial-quote,
.light-section .testimonial-author span,
.light-section .logos-title,
.light-section .hero-subtitle,
.light-section-alt .feature-text, 
.light-section-alt .section-subtitle,
.light-section-alt .faq-answer p,
.light-section-alt .testimonial-quote,
.light-section-alt .testimonial-author span,
.light-section-alt .logos-title {
  color: var(--text-dark-secondary);
}
.light-section .feature-card,
.light-section .testimonial-card,
.light-section .faq-item,
.light-section-alt .feature-card,
.light-section-alt .testimonial-card,
.light-section-alt .faq-item {
  background: white !important;
  border-color: var(--border-light) !important;
}
.light-section .feature-title,
.light-section .section-title,
.light-section .faq-question,
.light-section .testimonial-author h4,
.light-section .hero-title,
.light-section-alt .feature-title,
.light-section-alt .section-title,
.light-section-alt .faq-question,
.light-section-alt .testimonial-author h4 {
  color: var(--text-dark) !important;
}
.light-section .brand-logo,
.light-section-alt .brand-logo { 
  filter: brightness(0); opacity: 0.6;
}
.light-section .tag-dark,
.light-section-alt .tag-dark {
  background: rgba(0,0,0,0.05); color: var(--text-dark-secondary);
}
.light-section .arrow-btn,
.light-section-alt .arrow-btn {
  background: white; border-color: var(--border-light); color: var(--text-dark);
}
.light-section .arrow-btn:hover,
.light-section-alt .arrow-btn:hover {
  background: var(--bg-light); border-color: var(--text-dark-secondary);
}
.light-section .badge {
  background: rgba(0, 0, 0, 0.05); border-color: rgba(0, 0, 0, 0.1); color: var(--text-dark-secondary);
}
.light-section .store-btn {
  background: #0f172a; color: white; box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
}
.light-section .store-btn:hover {
  background: #1e293b;
}
.light-section .phone-mockup {
  background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.01));
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}
a, button { cursor: pointer; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
  border-radius: 4px; /* Default backstop, pill classes override */
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Typography & Utils */
.gradient-text {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.1em; /* Prevent descenders like 'g' from being cut off */
  margin-bottom: -0.1em;
}

.pill {
  border-radius: 9999px;
  background: var(--btn-pill-bg);
  color: var(--btn-pill-text);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.pill:hover { background: var(--btn-pill-hover); transform: translateY(-2px); }
.dark-pill {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}
.dark-pill:hover { background: rgba(255, 255, 255, 0.1); }

/* NavBar */
.navbar {
  display: flex; justify-content: center;
  padding: 1.5rem 2rem; position: fixed; top: 0; width: 100%; z-index: 50;
  background: linear-gradient(90deg, rgba(14, 105, 181, 0.95) 0%, rgba(19, 37, 81, 0.95) 100%); 
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 32px; height: 32px; border-radius: 8px; }
.nav-container {
  display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px;
}
.logo-text { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.5px; color: white !important; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-auth { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { color: var(--text-primary); text-decoration: none; font-size: 0.95rem; font-weight: 500; }

/* Hero Section */
.hero {
  padding: 14rem 2rem 8rem;
  display: flex; justify-content: center; position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; left: -10%;
  width: 80%; height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
  filter: blur(80px);
  z-index: -1;
  animation: pulse-glow 10s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
  from { transform: scale(1); opacity: 0.6; }
  to { transform: scale(1.1); opacity: 0.9; }
}
.hero-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; width: 100%; gap: 4rem;
}
.hero-content { flex: 1.2; max-width: 650px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.5rem 1rem; font-size: 0.7rem; font-weight: 700;
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  margin-bottom: 2rem; color: #fff; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-size: 5.5rem; font-weight: 800; line-height: 0.95; letter-spacing: -3px; margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.1));
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.6; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; }
.store-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: white; color: black; text-decoration: none; font-weight: 600;
  padding: 0.85rem 1.75rem; border-radius: 9999px; transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.2);
}
.store-btn:hover { transform: translateY(-3px); background: #f0f0f0; }
.icon-apple { width: 22px; height: 22px; }

.hero-image { flex: 0.8; display: flex; justify-content: flex-end; position: relative; perspective: 1000px; }
.phone-mockup {
  position: relative; border-radius: 44px;
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01));
  padding: 12px; border: 1px solid rgba(255,255,255,0.15);
  transform: rotateY(-15deg) rotateX(5deg) scale(1.05);
  transition: transform 0.5s ease;
  animation: float-phone 6s ease-in-out infinite alternate;
}
@keyframes float-phone {
  from { transform: rotateY(-15deg) rotateX(5deg) scale(1.05) translateY(0); }
  to { transform: rotateY(-10deg) rotateX(2deg) scale(1.05) translateY(-20px); }
}
.phone-mockup:hover { transform: rotateY(0) rotateX(0) scale(1.08) !important; transition: transform 0.3s ease; animation-play-state: paused; }
.phone-mockup img { width: 100%; max-width: 320px; border-radius: 32px; display: block; object-fit: cover; }

/* Logos Section */
.logos-section { 
  text-align: center; padding: 3rem 2rem 5rem; 
  border-top: 1px solid var(--border-card); 
  border-bottom: 1px solid var(--border-card);
  background: var(--bg-alt);
  overflow: hidden;
}
.logos-title { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 3.5rem; font-weight: 300; letter-spacing: 0.02em; }
.marquee-container {
  overflow: hidden; white-space: nowrap; position: relative; width: 100%; 
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: inline-flex; gap: 4rem; opacity: 0.8;
  animation: scroll-left 25s linear infinite;
  align-items: center;
}
.marquee-content:hover { animation-play-state: paused; opacity: 1; }
.marquee-content span { font-weight: 700; font-size: 1.25rem; letter-spacing: 1.5px; cursor: default; color: rgba(255,255,255,0.4); }
.brand-logo { height: 32px; width: auto; font-weight: 700; filter: brightness(0) invert(1); opacity: 0.9; }
.brand-logo[alt="Google Maps"], .brand-logo[alt="Reddit"], .brand-logo[alt="Spotify"], .brand-logo[alt="Chrome"], .brand-logo[alt="Safari"], .brand-logo[alt="YouTube"], .brand-logo[alt="Snapchat"] { filter: none; opacity: 1; } /* Keep colored logos as is */

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 2rem)); }
}

/* Features Section */
.features-section { padding: 8rem 2rem; width: 100%; }
.features-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; }
.section-subtitle { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.feature-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-card); border-radius: 24px; padding: 3rem;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 4rem;
}
.icon-green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.icon-purple { background: rgba(157, 78, 221, 0.15); color: #9d4edd; }
.icon-orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.icon-blue { background: rgba(0, 180, 216, 0.15); color: #00b4d8; }

.feature-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.5px; }
.feature-text { color: var(--text-secondary); line-height: 1.6; font-size: 1.05rem; }

/* Floating App Displays */
.features-floating-displays { display: flex; justify-content: center; gap: 1.5rem; margin-top: 3rem; margin-bottom: 6rem; perspective: 1000px; }
.float-img { width: 100%; max-width: 250px; height: auto; filter: drop-shadow(0 25px 35px rgba(0,0,0,0.4)); }
.left-img { transform: rotateY(5deg) rotateZ(-2deg) translateY(0px); animation: float 6s ease-in-out infinite alternate; }
.right-img { transform: rotateY(-5deg) rotateZ(2deg) translateY(0px); animation: float 7s ease-in-out infinite alternate-reverse; margin-top: 2rem; }

.features-grid-wrapper { display: flex; align-items: flex-start; gap: 4rem; }
.features-side-image { flex: 0.8; position: sticky; top: 15rem; }
.floating-img { 
  width: 100%; border-radius: 30px; 
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5); 
  animation: floating 8s ease-in-out infinite;
}
@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Testimonials */
.testimonials-section { padding: 6rem 2rem; background: var(--bg-alt); border-top: 1px solid var(--border-card); border-bottom: 1px solid var(--border-card); }
.testimonial-header { text-align: left; max-width: 1200px; margin: 0 auto 3rem; display: flex; justify-content: space-between; align-items: flex-end; }
.testimonial-header-text { margin: 0; }
.testimonial-arrows { display: flex; gap: 1rem; }
.arrow-btn { background: var(--bg-card); color: white; border: 1px solid var(--border-card); border-radius: 50%; width: 40px; height: 40px; cursor: pointer; transition: background 0.2s; }
.arrow-btn:hover { background: rgba(255,255,255,0.1); }
.testimonials-grid { 
  display: flex; 
  gap: 1.5rem; 
  max-width: 100%; 
  margin: 0;
  overflow-x: auto;
  padding: 1rem 2rem 3rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonials-grid.multi-row { align-items: stretch; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 20px; padding: 2.5rem;
  transition: transform 0.3s, border-color 0.3s;
  width: calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  flex: 0 0 auto;
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .testimonial-card {
    width: calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {
  .testimonials-grid { padding: 1rem 1rem 3rem; gap: 1rem; }
  .testimonial-card {
    width: 85%;
    min-width: 85%;
    padding: 2rem;
  }
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.2rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-secondary); }
.testimonial-quote { font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; font-style: italic; color: #e2e8f0; }
.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag { font-size: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 9999px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.tag-purple { background: rgba(157,78,221,0.1); color: #9d4edd; }
.tag-blue { background: rgba(0,180,216,0.1); color: #00b4d8; }
.tag-cyan { background: rgba(6,182,212,0.1); color: #06b6d4; }
.tag-dark { background: rgba(255,255,255,0.1); color: #cbd5e1; }
.tag-green { background: rgba(16,185,129,0.1); color: #10b981; }
.tag-orange { background: rgba(249,115,22,0.1); color: #f97316; }

/* Audience */
.audience-section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.audience-layout { display: flex; align-items: center; gap: 60px; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; flex: 1; }
.audience-visual { flex: 0.7; position: relative; perspective: 1500px; }
.perspective-img {
  width: 100%; border-radius: 40px;
  transform: rotateY(-20deg) rotateX(10deg);
  box-shadow: -50px 80px 100px -40px rgba(0,0,0,0.6);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.perspective-img:hover { transform: rotateY(0deg) rotateX(0deg) scale(1.05); }
.audience-card {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 20px; padding: 2.5rem 2rem;
  text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.audience-card:hover { transform: translateY(-3px); }
.audience-icon { margin-bottom: 2rem; font-size: 1.5rem; display: inline-flex; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; }
.card-green { border-bottom: 3px solid var(--accent-green); }
.icon-circle-green { background: rgba(16,185,129,0.15); color: var(--accent-green); }
.card-purple { border-bottom: 3px solid var(--accent-purple); }
.icon-circle-purple { background: rgba(157,78,221,0.15); color: var(--accent-purple); }
.card-cyan { border-bottom: 3px solid var(--accent-cyan); }
.icon-circle-cyan { background: rgba(0,180,216,0.15); color: var(--accent-cyan); }
.card-red { border-bottom: 3px solid var(--accent-red); }
.icon-circle-red { background: rgba(239,68,68,0.15); color: var(--accent-red); }
.audience-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.audience-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

/* FAQ */
.faq-section { padding: 6rem 2rem; max-width: 100%; margin: 0 auto; background: var(--bg-alt); border-top: 1px solid var(--border-card); border-bottom: 1px solid var(--border-card); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 1.5rem 2rem; background: none; border: none; color: var(--text-primary);
  font-size: 1.15rem; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: transparent;
}
.faq-answer p { padding: 0 2rem 1.5rem; color: var(--text-secondary); line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 200px; }

/* Bottom CTA */
.cta-section { padding: 8rem 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.cta-title { font-size: 4rem; font-weight: 800; letter-spacing: -2px; margin-bottom: 3rem; line-height: 1.1; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; }

/* Footer */
.footer { 
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  padding: 5rem 2rem 2rem; 
  background: linear-gradient(90deg, rgba(14, 105, 181, 0.95) 0%, rgba(19, 37, 81, 0.95) 100%); 
}
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 4rem; margin-bottom: 4rem; }
.footer-logo-block { max-width: 300px; }
.footer-logo-block .logo-text { font-size: 1.5rem; display: block; margin-bottom: 1rem; }
.footer-desc { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; font-size: 0.95rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: var(--text-primary); text-decoration: none; font-size: 0.9rem; font-weight: 600; opacity: 0.7; transition: opacity 0.2s; }
.footer-socials a:hover { opacity: 1; }
.footer-links { display: flex; gap: 4rem; }
.link-col { display: flex; flex-direction: column; gap: 0.75rem; }
.link-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: white; }
.link-col a { color: var(--text-secondary); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.link-col a:hover { color: var(--accent-cyan); }
.footer-bottom { border-top: 1px solid var(--border-card); padding-top: 2rem; text-align: center; color: var(--text-secondary); font-size: 0.85rem; }

/* Media Queries */
@media (max-width: 992px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-title { font-size: 3.5rem; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  
  .features-floating-displays { flex-direction: column; align-items: center; gap: 3rem; margin-bottom: 3rem; }
  .float-img { max-width: 80%; }
  .left-img, .right-img { transform: none; margin-top: 0; }
  
  .features-grid-wrapper { flex-direction: column; }
  .features-side-image { display: none; } /* Hide side image on small tablets to save space */
  
  .audience-layout { flex-direction: column; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-visual { width: 100%; max-width: 400px; margin: 0 auto; order: -1; }
  .perspective-img { transform: none; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-auth .nav-link { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Ensure the Download App CTA remains visible */
  .nav-container { padding: 0.5rem 0; }
  
  .testimonials-grid { padding: 1rem 1rem 3rem; gap: 1rem; }
  .testimonial-card {
    width: 85%;
    min-width: 85%;
    padding: 2rem;
  }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-container { flex-direction: column; gap: 3rem; }
}
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; }
  .footer-container { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 2rem; }
}

/* Support Page Styles */
.support-main {
  min-height: 80vh;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.support-main::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 140%; height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(157, 78, 221, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(0, 180, 216, 0.1) 0%, transparent 40%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow 10s ease-in-out infinite alternate;
}
.support-container {
  max-width: 800px;
  width: 100%;
  z-index: 10;
}
.support-header {
  text-align: center;
  margin-bottom: 4rem;
}
.support-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}
.support-header p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}
.support-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}
.info-group {
  margin-bottom: 2.5rem;
}
.info-group:last-child { margin-bottom: 0; }
.info-group label {
  display: block;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.contact-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-block;
}
.contact-link:hover {
  color: var(--btn-pill-bg);
  text-decoration: underline;
}
address {
  font-style: normal;
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .support-header h1 { font-size: 2.5rem; }
  .contact-card { padding: 2rem; }
}
