/* SECUENCIAS - Modern Luxury Dark UI */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Orbitron:wght@500;700&family=Space+Grotesk:wght@300;400;600&display=swap');

:root {
  /* Matte Black / Deep Dark Palette */
  --bg-deep: #050505;
  --bg-base: #0a0a0a;
  --bg-card: rgba(15, 15, 18, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.05);
  
  /* Luxury Accents */
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #aa8c2c;
  --emerald: #10b981;
  --emerald-light: #34d399;
  
  /* Typography */
  --text-white: #ffffff;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Thin Borders & Shadows */
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.25);
  --shadow-base: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.08);

  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Orbitron', 'Space Grotesk', sans-serif; color: var(--text-white); font-weight: 500; line-height: 1.2; letter-spacing: 1px;}

.font-cinzel { font-family: 'Cinzel', serif; }
.text-gold { color: var(--gold); }
.text-white { color: var(--text-white); }
.text-italic { font-style: italic; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* FX */
.bg-fx { position: fixed; inset: 0; z-index: -10; pointer-events: none; }
.noise-overlay { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opactiy='0.05'/%3E%3C/svg%3E"); opacity: 0.03; mix-blend-mode: overlay; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(circle at center, black 20%, transparent 80%); }

.glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.2; animation: pulse-glow 10s infinite alternate; }
.glow-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: rgba(212, 175, 55, 0.15); }
.glow-2 { bottom: 10%; right: -10%; width: 600px; height: 600px; background: rgba(16, 185, 129, 0.1); animation-delay: -5s;}
.glow-3 { top: 40%; left: 40%; width: 400px; height: 400px; background: rgba(124, 58, 237, 0.05); }

@keyframes pulse-glow { 0% { transform: scale(1); opacity: 0.1; } 100% { transform: scale(1.1); opacity: 0.3; } }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; z-index: 100; padding: 20px 0; transition: var(--transition); border-bottom: 1px solid transparent; }
.navbar.scrolled { padding: 15px 0; background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-glass); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--bg-deep); font-size: 1.5rem; box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
.brand-text h1 { font-family: 'Orbitron', serif; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 2px; color:var(--gold); }
.brand-text p { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 2px; font-weight: 600; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-text { color: var(--text-primary); text-decoration: none; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: var(--transition);}
.btn-text:hover { color: var(--gold); }
.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* BUTTONS */
.btn-primary { display: inline-flex; justify-content: center; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 12px 28px; border-radius: 8px; text-decoration: none; letter-spacing: 1px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3); }

.btn-gold { display: inline-flex; justify-content: center; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 12px 28px; border-radius: 8px; text-decoration: none; letter-spacing: 1px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3); }

.btn-outline { display: inline-flex; justify-content: center; align-items: center; gap: 8px; background: transparent; color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; padding: 12px 28px; border-radius: 8px; text-decoration: none; border: 1px solid var(--border-glass); transition: var(--transition); }
.btn-outline:hover { background: var(--bg-glass); border-color: var(--gold); }
.btn-large { padding: 16px 36px; font-size: 1rem; border-radius: 8px; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 140px 24px 80px; position: relative; max-width: 1280px; margin: 0 auto; }
.hero-content { max-width: 650px; position: relative; z-index: 10; }
.badge-premium { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px; background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.2); border-radius: 100px; color: var(--emerald-light); font-size: 0.75rem; letter-spacing: 2px; font-weight: 600; margin-bottom: 24px; text-transform: uppercase; }
.pulse-dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; box-shadow: 0 0 10px var(--emerald); animation: pulse 2s infinite; }

.hero-heading { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; margin-bottom: 20px; line-height: 1.1; font-weight:700;}
.hero-subheading { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; max-width: 580px; }
.hero-cta-group { display: flex; flex-direction: column; gap: 12px; align-items: flex-start;}
.cta-note { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 1; pointer-events: none;}
.abstract-shape { position: relative; width: 450px; height: 450px; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border-radius: 50%; border: 1px solid var(--border-glass); }
.ring-1 { width: 100%; height: 100%; animation: spin 30s linear infinite; border-left-color: rgba(212, 175, 55, 0.6); }
.ring-2 { width: 75%; height: 75%; animation: spin 20s linear infinite reverse; border-right-color: rgba(16, 185, 129, 0.5); }
.ring-3 { width: 45%; height: 45%; border: 1px dashed rgba(255,255,255,0.05); }
.core-element { width: 70px; height: 70px; background: var(--bg-card); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold); border: 1px solid var(--border-gold); box-shadow: var(--shadow-gold); backdrop-filter: blur(10px); }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* STATS */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); background: rgba(5, 5, 8, 0.5); backdrop-filter: blur(10px); }
.stat-item { padding: 30px 20px; text-align: center; border-right: 1px solid var(--border-glass); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2.2rem; color: var(--text-white); margin-bottom: 4px; font-weight:700;}
.stat-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* GENERAL */
.section { padding: 100px 0; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.badge-outline { display: inline-block; padding: 4px 12px; border: 1px solid var(--border-glass); border-radius: 100px; color: var(--text-secondary); font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 16px; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; font-weight:600;}
.section-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }
.max-w-md { max-width: 600px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 40px; }
.justify-center { justify-content: center; }
.center { text-align: center; }

.section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.section-split.reverse .split-text { order: 2; }
.section-split.reverse .split-visual { order: 1; }

.check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--text-primary); }
.check-list i { font-size: 1.2rem; color:var(--emerald);}

.glass-card { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 12px; padding: 30px; backdrop-filter: blur(15px); }

.floating-card { position: relative; max-width: 350px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.3); border:1px solid rgba(255,255,255,0.05);}
.card-icon { font-size: 2rem; color: #ef4444; margin-bottom: 15px; }
.floating-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.floating-card p { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.9rem; }
.progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: #ef4444; border-radius: 10px; box-shadow: 0 0 5px #ef4444; }

.hologram-effect { position: relative; border-radius: 16px; overflow: hidden; height: 400px; border: 1px solid var(--border-glass); }
.holo-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; filter: grayscale(100%) contrast(110%); mix-blend-mode: luminosity; }
.holo-scanline { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(16,185,129,0.5) 50%, transparent); height: 10px; animation: scan 4s linear infinite; opacity: 0.3; }
@keyframes scan { 0% { top: -10px; } 100% { top: 100%; } }

/* METHODS */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top:30px;}
.method-card { position: relative; padding: 30px 24px; background: rgba(255,255,255,0.01); border: 1px solid var(--border-glass); border-radius: 12px; transition: var(--transition); }
.method-card:hover { background: var(--bg-glass-hover); border-color: var(--border-gold); transform: translateY(-5px); }
.method-number { position: absolute; top: 15px; right: 20px; font-family: 'Space Grotesk'; font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.03); }
.method-icon { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.method-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.method-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* BENEFITS */
.benefit-list { margin-top: 30px; display: flex; flex-direction: column; gap: 24px; }
.benefit-item { display: flex; gap: 16px; }
.benefit-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.2); border-radius: 10px; color: var(--emerald-light); font-size: 1.4rem; }
.benefit-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.benefit-item p { color: var(--text-secondary); font-size:0.95rem; }

/* TESTIMONIALS */
.testimo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top:30px;}
.testimo-card { padding: 30px; background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 16px; display: flex; flex-direction: column; justify-content: space-between; }
.testimo-stars { color: var(--gold); font-size: 1rem; margin-bottom: 15px; display: flex; gap: 4px; }
.testimo-quote { font-size: 0.95rem; color: var(--text-primary); font-style: italic; margin-bottom: 24px; line-height: 1.6; }
.testimo-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; color: var(--gold); font-size:0.9rem;}
.author-info h5 { font-size: 1rem; margin-bottom: 2px; }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.faq-question { padding: 20px; font-family: 'Space Grotesk'; font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--text-white); }
.faq-question i { transition: var(--transition); color: var(--text-muted); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: var(--transition); color: var(--text-secondary); opacity: 0; font-size:0.95rem; line-height:1.6;}
.faq-item.active { border-color: rgba(212, 175, 55, 0.3); background: rgba(255,255,255,0.02); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--gold); }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 300px; opacity: 1; }

/* FOOTER */
.bottom-cta { padding: 100px 0; border-top: 1px solid var(--border-glass); background: radial-gradient(circle at top, rgba(212, 175, 55, 0.05), transparent 50%); }
.main-footer { border-top: 1px solid var(--border-glass); padding: 60px 0 30px; background: var(--bg-deep); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-bio { color: var(--text-secondary); margin-top: 12px; max-width: 350px; font-size:0.9rem; line-height:1.6;}
.footer-links h4 { font-size: 1rem; margin-bottom: 20px; color: var(--text-white); letter-spacing:1px;}
.footer-links a { display: block; color: var(--text-secondary); text-decoration: none; margin-bottom: 10px; transition: var(--transition); font-size:0.9rem;}
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-glass); color: var(--text-muted); font-size: 0.85rem; }
.legal-links { display: flex; gap: 20px; }
.legal-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.legal-links a:hover { color: var(--text-primary); }

/* FORMS & TABLES CLASSES RESTORED FOR ADMIN */
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
input, select, textarea { width: 100%; padding: 14px 16px; background: rgba(0, 0, 0, 0.5); border: 1px solid var(--border-glass); border-radius: 8px; color: var(--text-white); font-size: 0.95rem; font-family: 'Inter', sans-serif; outline: none; transition: var(--transition); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: rgba(0, 0, 0, 0.8); box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2); }
.cyber-table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 10px; }
.cyber-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.9rem; }
.cyber-table th { text-align: left; padding: 16px; color: var(--text-secondary); font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; border-bottom: 1px solid var(--border-glass); background: rgba(255,255,255,0.01); }
.cyber-table td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.02); color: var(--text-primary); vertical-align: middle; }
.cyber-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ═══ RESPONSIVE: LARGE TABLETS & SMALL LAPTOPS ═══ */
@media (max-width: 1024px) {
  .hero { align-items: flex-start; padding-top: 120px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border-glass); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .section-split { grid-template-columns: 1fr; gap: 40px; }
  .section-split.reverse .split-text { order: 1; }
  .section-split.reverse .split-visual { order: 2; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .testimo-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ═══ RESPONSIVE: TABLETS ═══ */
@media (max-width: 768px) {
  /* Mobile navigation */
  .nav-container { flex-wrap: wrap; position: relative; }
  .nav-links, .nav-actions { display: none; }
  .nav-links.active, .nav-actions.active {
    display: flex; flex-direction: column; gap: 12px;
    width: 100%; background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 20px; margin-top: 12px; border-radius: 16px;
    border: 1px solid var(--border-gold);
    animation: fadeSlideDown 0.3s ease-out;
  }
  @keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.active a {
    display: block; width: 100%; padding: 14px 16px;
    border-radius: 10px; transition: 0.3s;
    font-size: 1rem;
  }
  .nav-links.active a:hover { background: rgba(212,175,55,0.1); }
  .nav-actions.active { border-top: 1px solid var(--border-glass); padding-top: 16px; }
  .nav-actions.active a { display: block; width: 100%; text-align: center; padding: 14px; }
  .nav-actions.active a.btn-primary { width: 100%; margin-top: 4px; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass); }

  /* Hero */
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .hero-heading { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subheading { font-size: 0.95rem; }
  .hero-cta-group { width: 100%; }
  .hero-cta-group .btn-primary { width: 100%; justify-content: center; padding: 18px 24px; font-size: 1rem; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; padding: 20px 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-glass); }
  .stat-item:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--border-glass); }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .section-desc { font-size: 0.95rem; }

  /* Methods */
  .method-grid { grid-template-columns: 1fr; gap: 16px; }
  .method-card { padding: 24px 20px; }
  .method-card h3 { font-size: 1rem; }

  /* Testimonials */
  .testimo-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimo-card { padding: 24px; }

  /* Benefits */
  .hologram-effect { height: 280px; }

  /* FAQ */
  .faq-question { padding: 16px; font-size: 0.9rem; }
  .faq-item.active .faq-answer { padding: 0 16px 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bio { max-width: 100%; }

  /* Cards */
  .glass-card { padding: 20px; }
  .floating-card { max-width: 100%; }

  /* Bottom CTA */
  .bottom-cta { padding: 60px 0; }
  .bottom-cta .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
}

/* ═══ RESPONSIVE: SMALL PHONES ═══ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .navbar { padding: 12px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .brand-text h1 { font-size: 1rem; letter-spacing: 1px; }
  .brand-text p { font-size: 0.55rem; }
  .brand-icon { width: 36px; height: 36px; font-size: 1.2rem; border-radius: 8px; }

  .hero { padding: 90px 16px 40px; }
  .hero-heading { font-size: clamp(1.6rem, 8vw, 2.2rem); margin-bottom: 14px; }
  .hero-subheading { font-size: 0.85rem; margin-bottom: 28px; }
  .badge-premium { font-size: 0.65rem; padding: 5px 10px; letter-spacing: 1px; }
  .cta-note { font-size: 0.7rem; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.4rem; }
  .stat-item { padding: 16px 12px; }

  .section { padding: 40px 0; }
  .section-title { font-size: clamp(1.3rem, 5vw, 1.8rem); margin-bottom: 14px; }

  .method-card { padding: 20px 16px; }
  .method-icon { font-size: 1.5rem; }
  .method-number { font-size: 1.5rem; }

  .testimo-card { padding: 18px; }
  .testimo-quote { font-size: 0.85rem; margin-bottom: 16px; }
  .author-avatar { width: 34px; height: 34px; font-size: 0.8rem; }

  .benefit-item h4 { font-size: 0.95rem; }
  .benefit-item p { font-size: 0.85rem; }
  .benefit-icon { width: 38px; height: 38px; font-size: 1.1rem; }

  .hologram-effect { height: 220px; border-radius: 12px; }

  .faq-question { padding: 14px; font-size: 0.85rem; }

  .bottom-cta .hero-btns { width: 100%; }
  .bottom-cta .hero-btns .btn-primary { width: 100%; }

  .footer-links h4 { font-size: 0.9rem; margin-bottom: 12px; }
  .footer-links a { font-size: 0.85rem; margin-bottom: 8px; }
}

/* ═══ RESPONSIVE: VERY SMALL PHONES (iPhone SE, etc.) ═══ */
@media (max-width: 360px) {
  .hero-heading { font-size: 1.5rem; }
  .hero-subheading { font-size: 0.8rem; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.6rem; }
  .section-title { font-size: 1.2rem; }
  .method-card h3 { font-size: 0.9rem; }
  .brand-text h1 { font-size: 0.9rem; }
}

/* ═══ RESPONSIVE: LARGE SCREENS / TVs ═══ */
@media (min-width: 1600px) {
  .container { max-width: 1440px; }
  .hero { padding: 180px 40px 120px; }
  .hero-heading { font-size: 4.5rem; }
  .hero-subheading { font-size: 1.25rem; max-width: 680px; }
  .section { padding: 140px 0; }
  .section-title { font-size: 3.2rem; }
  .stat-number { font-size: 2.8rem; }
  .method-card { padding: 40px 30px; }
  .testimo-card { padding: 36px; }
  .testimo-quote { font-size: 1.1rem; }
}

@media (min-width: 2000px) {
  .container { max-width: 1680px; }
  body { font-size: 18px; }
  .hero-heading { font-size: 5rem; }
  .section-title { font-size: 3.5rem; }
  .stat-number { font-size: 3.2rem; }
}

/* ═══ TOUCH DEVICE IMPROVEMENTS ═══ */
@media (hover: none) and (pointer: coarse) {
  .btn-primary, .btn-outline, .btn-text, .btn-gold {
    min-height: 48px;
    min-width: 48px;
  }
  .nav-links a { padding: 12px 0; }
  .faq-question { min-height: 56px; }
}

/* ═══ LANDSCAPE PHONES ═══ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 40px; }
  .hero-heading { font-size: 2rem; }
  .hero-subheading { font-size: 0.85rem; margin-bottom: 20px; }
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
  .stat-item { padding: 16px; }
}

/* ═══ PRINT STYLES ═══ */
@media print {
  .bg-fx, .navbar, .mobile-menu-btn { display: none !important; }
  body { background: white; color: black; }
  .hero { padding: 20px; min-height: auto; }
  .section { padding: 20px 0; }
}
