/* ========================================
   PROXY2K - OPTIMIZED STYLESHEET
   Responsive & Performance Optimized
   ======================================== */

/* === CSS VARIABLES === */
:root {
  --primary: #0db7c4;
  --primary-dark: #0a9aa5;
  --secondary: #6366f1;
  --bg-light: #ffffff;
  --bg-dark: #0b0f1a;
  --text-light: #1e293b;
  --text-dark: #e2e8f0;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

body.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* === UTILITY CLASSES === */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* === BACKGROUND PATTERN === */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

body.dark-mode .bg-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* === GLOW EFFECTS === */
.glow-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 183, 196, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: 40%;
  right: -200px;
}

.glow-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 183, 196, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
}

@media (max-width: 768px) {
  .glow {
    filter: blur(60px);
  }
  
  .glow-1,
  .glow-2,
  .glow-3 {
    width: 400px;
    height: 400px;
  }
  
  .glow-1 {
    left: -50px;
  }
  
  .glow-2 {
    right: -100px;
  }
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.4s ease;
}

body.dark-mode header {
  background: rgba(11, 15, 26, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

header.header-scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

body.dark-mode header.header-scrolled {
  background: rgba(11, 15, 26, 0.95);
}

@media (max-width: 768px) {
  header.header-scrolled {
    height: 65px;
  }
}

header .container {
  height: 100%;
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}

.logo img {
  width: 140px;
  height: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === NAVIGATION === */
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* === HEADER ACTIONS === */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}

.icon-btn {
  background: none;
  border: none;
  color: inherit;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: var(--gray-100);
  transform: scale(1.05);
}

body.dark-mode .icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-login {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-login:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 183, 196, 0.3);
}

.mobile-menu-toggle {
  display: none;
}

/* === MOBILE NAVIGATION === */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-light);
  z-index: 1100;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

body.dark-mode .mobile-nav {
  background: var(--bg-dark);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav.active::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-header .logo img {
  width: 120px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.8;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--primary);
  opacity: 1;
  transform: translateX(5px);
}

/* === MAIN CONTENT === */
main {
  width: 100%;
  position: relative;
}

/* === HERO SECTION === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 120px 0 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 183, 196, 0.1);
  color: var(--primary);
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(13, 183, 196, 0.2);
}

.badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  opacity: 0.75;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 183, 196, 0.25);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--text-light);
  border: 1px solid var(--gray-200);
}

body.dark-mode .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: var(--gray-200);
  transform: translateY(-3px);
}

body.dark-mode .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* === FEATURES BAR (HERO) === */
.features-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
  max-width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.feature-icon {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-value {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.feature-label {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 600;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* === SECTION === */
.section {
  padding: clamp(50px, 8vw, 80px) 0;
  position: relative;
  width: 100%;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  opacity: 0.7;
  line-height: 1.6;
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

body.dark-mode .feature-card {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.05);
}

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

.feature-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(13, 183, 196, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

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

/* === PRICING TABLE === */
.pricing-table-container {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

body.dark-mode .pricing-table-container {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

body.dark-mode .pricing-table th,
body.dark-mode .pricing-table td {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.pricing-table th {
  background: var(--gray-100);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gray-700);
}

body.dark-mode .pricing-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-300);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: rgba(13, 183, 196, 0.03);
}

.pricing-table .product-name {
  font-weight: 600;
}

.pricing-table .price-val {
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.pricing-table .btn-buy {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* === FAQ === */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

body.dark-mode .faq-item {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  user-select: none;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-question {
  color: var(--primary);
  background: rgba(13, 183, 196, 0.05);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

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

/* === DISCLAIMER === */
.disclaimer-section {
  padding: 60px 0;
}

.disclaimer-box {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

body.dark-mode .disclaimer-box {
  background: rgba(239, 68, 68, 0.1);
}

.disclaimer-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-content h3 {
  color: #ef4444;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.disclaimer-content p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

body.dark-mode .contact-card {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon.telegram {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
}

.contact-icon.facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.95rem;
  opacity: 0.7;
}

.contact-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* === FOOTER === */
footer {
  padding: 60px 0 30px;
  background: var(--gray-100);
  width: 100%;
}

body.dark-mode footer {
  background: #060912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 60px;
}

.footer-desc {
  opacity: 0.7;
  max-width: 300px;
}

.footer-desc .logo img {
  width: 140px;
  margin-bottom: 1rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  opacity: 0.6;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

body.dark-mode .footer-bottom {
  border-color: rgba(255, 255, 255, 0.1);
}

/* === FLOATING SUPPORT === */
.floating-support {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.support-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.support-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.support-btn.telegram {
  background: #0088cc;
}

.support-btn.facebook {
  background: #1877f2;
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* Hide desktop elements */
  .nav-links,
  .desktop-only {
    display: none;
  }

  /* Show mobile menu */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Header */
  header {
    height: 70px;
  }

  .logo img {
    width: 100px;
  }

  .header-actions {
    gap: 0.5rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero p {
    margin-bottom: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 3rem;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  /* Features Bar */
  .features-bar {
    flex-direction: column;
    gap: 2.5rem;
  }

  .feature-item {
    width: 100%;
    max-width: 250px;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 2rem;
  }

  /* Pricing Table Mobile Transformation */
  .pricing-table thead {
    display: none;
  }

  .pricing-table, 
  .pricing-table tbody, 
  .pricing-table tr, 
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    background: white;
  }

  body.dark-mode .pricing-table tr {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .pricing-table td {
    padding: 0.5rem 0;
    border: none;
    text-align: center;
  }

  .pricing-table td:first-child {
    display: none; /* Hide STT on mobile */
  }

  .pricing-table .product-name {
    font-size: 1.15rem;
    color: var(--primary);
  }

  .pricing-table .price-val {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
  }

  .pricing-table .btn-buy {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-desc {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-desc .logo {
    justify-content: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Floating Support */
  .floating-support {
    right: 20px;
    bottom: 20px;
  }

  .support-btn {
    width: 48px;
    height: 48px;
  }

  /* Disclaimer */
  .disclaimer-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
  /* Header */
  header {
    height: 65px;
  }

  .logo img {
    width: 90px;
  }

  /* Hero */
  .hero {
    padding: 90px 0 50px;
  }

  .hero-btns {
    margin-bottom: 2rem;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Mobile Nav */
  .mobile-nav {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .mobile-nav-links a {
    font-size: 1.15rem;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  /* Feature Cards */
  .feature-card {
    padding: 1.5rem;
  }

  /* FAQ */
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }

  /* Support Buttons */
  .support-btn {
    width: 44px;
    height: 44px;
  }

  /* Extreme Small screens fix */
  @media (max-width: 360px) {
    .container {
      padding: 0 0.75rem;
    }
    
    .hero-btns {
      gap: 0.5rem;
    }
    
    .btn {
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
    }
    
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .section-header h2 {
      font-size: 1.5rem;
    }
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .floating-support,
  .mobile-nav,
  header,
  .glow,
  .bg-pattern {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
