/* ============================================
   HOSTING MAS FACIL - Premium Dark Theme
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --deep-navy: #0A1628;
  --dark-navy: #0D1E36;
  --rich-navy: #111D2E;
  --cream: #F5F5F0;
  --mint: #34D399;
  --mint-dark: #27AE60;
  --gray: #8B9EB7;
  --gray-dark: #4A5568;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(52,211,153,0.3);
  --glow: 0 0 30px rgba(52,211,153,0.15);
  --error: #ef4444;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--deep-navy);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--deep-navy); }
::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 4px; }
::selection { background: rgba(52,211,153,0.3); color: var(--cream); }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.gradient-mesh {
  background: radial-gradient(ellipse 80% 50% at 50% 120%,rgba(52,211,153,0.12),transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%,rgba(52,211,153,0.06),transparent),
    linear-gradient(180deg,#0A1628,#0D1E36);
}
.text-gradient {
  background: linear-gradient(135deg,var(--mint),#6EE7B7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-dark { background: var(--dark-navy); }
.bg-rich { background: var(--rich-navy); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9375rem;
  cursor: pointer; border: none; transition: all 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg,var(--mint),var(--mint-dark));
  color: var(--deep-navy);
}
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(52,211,153,0.35); }
.btn-secondary {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
}
.btn-secondary:hover { border-color: var(--mint); color: var(--mint); }

/* ===== CARDS ===== */
.card {
  background: var(--dark-navy); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; transition: all 0.3s;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 4px 24px rgba(52,211,153,0.08); }
.card-popular { border: 2px solid var(--mint); box-shadow: var(--glow); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
}
.b-mint { background: rgba(52,211,153,0.15); color: var(--mint); border: 1px solid rgba(52,211,153,0.2); }
.b-green { background: rgba(34,197,94,0.1); color: #22c55e; }
.b-blue { background: rgba(59,130,246,0.1); color: #60A5FA; }
.b-purple { background: rgba(168,85,247,0.1); color: #A78BFA; }
.b-orange { background: rgba(249,115,22,0.1); color: #FBBF24; }
.b-red { background: rgba(239,68,68,0.1); color: #F87171; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.3s; background: transparent;
}
.nav.scrolled { background: rgba(10,22,40,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo-icon { width: 2.25rem; height: 2.25rem; border-radius: 8px; background: rgba(52,211,153,0.2); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 1.25rem; height: 1.25rem; color: var(--mint); }
.logo-text { font-size: 1.125rem; font-weight: 700; line-height: 1.2; }
.logo-sub { font-size: 0.625rem; color: var(--gray); line-height: 1; margin-top: -2px; }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a { padding: 0.5rem 0.75rem; border-radius: 8px; font-size: 0.875rem; font-weight: 500; color: var(--gray); transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--mint); background: rgba(52,211,153,0.1); }

.mobile-toggle { display: block; background: none; border: none; color: var(--gray); cursor: pointer; padding: 0.5rem; }
.mobile-menu { display: none; background: rgba(10,22,40,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.75rem 1rem; border-radius: 8px; color: var(--gray); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--mint); background: rgba(52,211,153,0.1); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.hero-content { flex: 1; display: flex; align-items: center; position: relative; z-index: 2; padding: calc(72px + 2rem) 0 2rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 999px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.2); font-size: 0.875rem; font-weight: 500; color: var(--mint); margin-bottom: 1.5rem; }
.hero-badge .pulse { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--mint); animation: pulse 2s infinite; }
.hero-title { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.125rem; color: var(--gray); max-width: 36rem; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.hero-stat { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.hero-stat-icon { width: 2.5rem; height: 2.5rem; border-radius: 8px; background: rgba(52,211,153,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-stat-icon svg { width: 1.25rem; height: 1.25rem; color: var(--mint); }
.hero-stat-val { font-size: 0.875rem; font-weight: 700; }
.hero-stat-label { font-size: 0.75rem; color: var(--gray); }
.hero-image { display: none; position: relative; }
.hero-image img { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); width: 100%; }
.hero-float { position: absolute; padding: 0.75rem 1.25rem; border-radius: 12px; background: var(--dark-navy); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.hero-float.bottom { bottom: -1rem; left: -1rem; }
.hero-float.top { top: -1rem; right: -1rem; }

/* ===== CAROUSEL ===== */
.carousel { background: var(--dark-navy); border-bottom: 1px solid var(--border); padding: 1rem 0; position: relative; z-index: 3; }
.carousel-inner { display: flex; align-items: center; gap: 1rem; }
.carousel-label { display: none; flex-direction: column; align-items: center; flex-shrink: 0; }
.carousel-label span { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); font-weight: 600; }
.carousel-nav { display: flex; gap: 0.25rem; margin-top: 0.25rem; }
.carousel-nav button { width: 1.5rem; height: 1.5rem; border-radius: 8px; background: rgba(255,255,255,0.05); border: none; color: var(--cream); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.carousel-nav button:hover { background: rgba(255,255,255,0.1); }
.carousel-card { flex: 1; position: relative; border-radius: 12px; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; transition: all 0.5s; }
.carousel-overlay { position: absolute; inset: 0; border-radius: 12px; opacity: 0.5; z-index: 0; }
.carousel-card > * { position: relative; z-index: 1; }
.carousel-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.carousel-title { font-weight: 700; font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.carousel-desc { font-size: 0.75rem; color: var(--gray); }
.carousel-price { font-size: 1.25rem; font-weight: 800; color: var(--mint); }
.carousel-period { font-size: 0.75rem; color: var(--gray); margin-left: 0.25rem; }
.carousel-dots { display: flex; justify-content: center; gap: 0.375rem; margin-top: 0.75rem; }
.carousel-dot { height: 6px; border-radius: 999px; border: none; cursor: pointer; transition: all 0.3s; }
.carousel-dot.inactive { width: 6px; background: rgba(255,255,255,0.2); }
.carousel-dot.active { width: 24px; background: var(--mint); }

/* ===== STATS ===== */
.stats-bar { padding: 3rem 0; background: var(--rich-navy); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.stat-item { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.stat-icon { width: 3rem; height: 3rem; border-radius: 12px; background: rgba(52,211,153,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 1.5rem; height: 1.5rem; color: var(--mint); }
.stat-value { font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.stat-label { font-size: 0.875rem; color: var(--gray); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--gray); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card .f-icon { width: 3.5rem; height: 3.5rem; border-radius: 8px; background: rgba(52,211,153,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background 0.3s; }
.feature-card:hover .f-icon { background: rgba(52,211,153,0.2); }
.feature-card .f-icon svg { width: 1.75rem; height: 1.75rem; color: var(--mint); }
.feature-card .badge { margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

/* ===== PLANS ===== */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.plan-popular-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); padding: 0.25rem 1rem; border-radius: 999px; background: var(--mint); color: var(--deep-navy); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 0.375rem; box-shadow: 0 4px 12px rgba(52,211,153,0.3); z-index: 2; }
.plan-popular-badge svg { width: 0.875rem; height: 0.875rem; }
.plan-header { margin-bottom: 1.5rem; }
.plan-header h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.plan-header p { font-size: 0.875rem; color: var(--gray); }
.plan-price { margin-bottom: 1.5rem; }
.plan-price .amount { font-size: 1.875rem; font-weight: 800; }
.plan-price .period { font-size: 0.875rem; color: var(--gray); }
.plan-specs { margin-bottom: 1.5rem; }
.plan-spec { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.875rem; }
.plan-spec span:first-child { color: var(--gray); }
.plan-spec span:last-child { font-weight: 600; }
.plan-feature { display: flex; align-items: center; gap: 0.625rem; padding: 0.375rem 0; font-size: 0.875rem; }
.pf-icon { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: rgba(52,211,153,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pf-icon svg { width: 0.75rem; height: 0.75rem; color: var(--mint); }

/* ===== PARTNERS ===== */
.partners-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.partner-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); transition: all 0.3s; }
.partner-card:hover { border-color: var(--border-hover); }
.partner-abbr { width: 3.5rem; height: 3.5rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; transition: transform 0.3s; }
.partner-card:hover .partner-abbr { transform: scale(1.1); }
.partner-name { font-size: 0.875rem; font-weight: 500; color: var(--gray); transition: color 0.3s; }
.partner-card:hover .partner-name { color: var(--cream); }

/* ===== TRUST BADGES ===== */
.badges-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.badge-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); transition: all 0.3s; }
.badge-card:hover { border-color: var(--border-hover); }
.badge-card .b-icon { width: 3.5rem; height: 3.5rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform 0.3s; }
.badge-card:hover .b-icon { transform: scale(1.1); }
.badge-card .b-icon svg { width: 1.75rem; height: 1.75rem; }
.badge-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.badge-card p { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.blog-card { border-radius: 12px; overflow: hidden; background: var(--dark-navy); border: 1px solid var(--border); transition: all 0.3s; }
.blog-card:hover { border-color: var(--border-hover); }
.blog-image { height: 12rem; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray); margin-bottom: 0.75rem; }
.blog-meta svg { width: 1rem; height: 1rem; }
.blog-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--mint); }
.blog-card p { font-size: 0.875rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.6; }
.blog-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--mint); transition: gap 0.3s; }
.blog-link:hover { gap: 0.75rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item { border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); overflow: hidden; margin-bottom: 0.75rem; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; color: var(--cream); font-size: 1rem; font-weight: 500; text-align: left; cursor: pointer; font-family: inherit; }
.faq-q .q-icon { width: 1.25rem; height: 1.25rem; color: var(--mint); flex-shrink: 0; }
.faq-q .q-arrow { width: 1.25rem; height: 1.25rem; color: var(--gray); flex-shrink: 0; transition: transform 0.3s; margin-left: auto; }
.faq-item.open .q-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 20rem; }
.faq-a-inner { padding: 0 1.5rem 1.25rem 3.75rem; font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

/* ===== CTA ===== */
.cta-banner { position: relative; padding: 5rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(to right,rgba(52,211,153,0.15),rgba(52,211,153,0.05),rgba(52,211,153,0.15)); }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.6); }
.cta-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 1px 1px,rgba(52,211,153,0.5) 1px,transparent 0); background-size: 40px 40px; }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 48rem; margin: 0 auto; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); transition: all 0.3s; }
.contact-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.contact-card.wa { border-color: rgba(37,211,102,0.3); }
.contact-card.wa:hover { border-color: rgba(37,211,102,0.5); background: rgba(37,211,102,0.05); }
.contact-icon { width: 3rem; height: 3rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-label { font-size: 0.875rem; color: var(--gray); margin-bottom: 0.25rem; }
.contact-value { font-size: 1.125rem; font-weight: 600; transition: color 0.3s; }
.contact-card:hover .contact-value { color: var(--mint); }
.contact-card.wa:hover .contact-value { color: #25D366; }
.contact-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.5rem; border-radius: 12px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); transition: all 0.3s; }
.contact-cta:hover { background: rgba(37,211,102,0.2); }
.contact-cta svg { width: 2.5rem; height: 2.5rem; color: #25D366; margin-bottom: 0.75rem; }
.contact-cta .c-title { font-weight: 600; color: #25D366; }
.contact-cta .c-sub { font-size: 0.875rem; color: var(--gray); margin-top: 0.25rem; }

/* ===== CLIENTS ===== */
.clients-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.client-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); transition: all 0.3s; }
.client-card:hover { border-color: var(--border-hover); }
.client-icon { width: 3rem; height: 3rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.client-icon svg { width: 1.5rem; height: 1.5rem; }
.client-name { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.client-sector { font-size: 0.75rem; color: var(--gray); }

/* ===== ADMIN PAGE ===== */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.login-card { width: 100%; max-width: 28rem; border-radius: 16px; background: var(--dark-navy); border: 1px solid var(--border); padding: 2.5rem; }
.login-header { text-align: center; margin-bottom: 2rem; }
.login-lock { width: 4rem; height: 4rem; border-radius: 12px; background: rgba(52,211,153,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.login-lock svg { width: 2rem; height: 2rem; color: var(--mint); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--cream); font-size: 1rem; font-family: inherit; transition: all 0.3s; }
.form-input:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(52,211,153,0.1); }
.input-wrap { position: relative; }
.toggle-pw { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gray); cursor: pointer; padding: 0.25rem; }
.error-msg { color: var(--error); font-size: 0.875rem; margin-top: 0.5rem; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 16rem; background: var(--dark-navy); border-right: 1px solid var(--border); display: flex; flex-direction: column; position: fixed; height: 100vh; z-index: 100; transition: transform 0.3s; }
.admin-nav { flex: 1; padding: 1rem; overflow-y: auto; }
.admin-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.875rem; font-weight: 500; color: var(--gray); transition: all 0.2s; margin-bottom: 0.25rem; }
.admin-nav a:hover, .admin-nav a.active { color: var(--mint); background: rgba(52,211,153,0.1); }
.admin-nav svg { width: 1.25rem; height: 1.25rem; }
.admin-user { padding: 1rem; border-top: 1px solid var(--border); }
.admin-main { flex: 1; margin-left: 16rem; min-width: 0; }
.admin-header { display: none; position: sticky; top: 0; z-index: 50; background: rgba(13,30,54,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0.75rem 1rem; align-items: center; justify-content: space-between; }
.admin-content { padding: 2rem; }
.admin-stats { display: grid; grid-template-columns: repeat(1,1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-box { padding: 1.5rem; border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); }
.stat-box-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.stat-box-icon { width: 2.5rem; height: 2.5rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.stat-box-icon svg { width: 1.25rem; height: 1.25rem; }
.stat-box-val { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.stat-box-label { font-size: 0.875rem; color: var(--gray); }

.table-wrap { border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); overflow: hidden; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 1rem 1.5rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--gray); background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.875rem; vertical-align: middle; }
.data-table tr { transition: background 0.2s; }
.data-table tr:hover { background: rgba(255,255,255,0.02); }
.t-actions { display: flex; gap: 0.5rem; justify-content: flex-end; }
.btn-icon { padding: 0.5rem; border-radius: 8px; background: none; border: none; color: var(--gray); cursor: pointer; transition: all 0.2s; display: inline-flex; }
.btn-icon:hover { color: var(--mint); background: rgba(255,255,255,0.05); }
.btn-icon.del:hover { color: var(--error); background: rgba(239,68,68,0.1); }

.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; border-radius: 16px; background: var(--dark-navy); border: 1px solid var(--border); box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.modal-body { padding: 1.5rem; }
.modal-footer { display: flex; justify-content: flex-end; gap: 0.75rem; padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.btn-ghost { padding: 0.625rem 1rem; border-radius: 8px; background: none; border: none; color: var(--gray); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.btn-ghost:hover { color: var(--cream); background: rgba(255,255,255,0.05); }
.search-wrap { position: relative; margin-bottom: 1.5rem; }
.search-wrap svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--gray); }
.search-wrap input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; border-radius: 12px; background: var(--dark-navy); border: 1px solid var(--border); color: var(--cream); font-family: inherit; transition: all 0.3s; }
.search-wrap input:focus { outline: none; border-color: var(--mint); }
.chk { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.875rem; }
.chk input { width: 1rem; height: 1rem; accent-color: var(--mint); }

/* ===== FOOTER ===== */
.footer { background: #060F1D; border-top: 1px solid var(--border); }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-brand p { font-size: 0.875rem; color: var(--gray); margin: 1rem 0; max-width: 20rem; }
.fc-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray); margin-bottom: 0.75rem; transition: color 0.3s; }
.fc-item svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-links h4 { font-weight: 600; margin-bottom: 1rem; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: var(--gray); transition: color 0.3s; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.fb-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.fb-inner p { font-size: 0.875rem; color: var(--gray); }

/* ===== WHATSAPP ===== */
.wa-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; animation: wa-pulse 2s infinite; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 1.75rem; height: 1.75rem; color: white; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(2rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(2rem); } to { opacity: 1; transform: translateX(0); } }
.fade-up { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.slide-right { animation: slideRight 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.reveal { opacity: 1; transform: translateY(0); animation: revealIn 0.5s ease both; }
@keyframes revealIn { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero-title { font-size: 3.5rem; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .partners-grid { grid-template-columns: repeat(3,1fr); }
  .badges-grid { grid-template-columns: repeat(4,1fr); }
  .contact-grid { grid-template-columns: repeat(2,1fr); }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .admin-stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .fb-inner { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { display: block; }
  .hero-title { font-size: 4rem; }
  .section-header h2 { font-size: 2.25rem; }
  .features-grid { grid-template-columns: repeat(3,1fr); }
  .plans-grid { grid-template-columns: repeat(3,1fr); }
  .blog-grid { grid-template-columns: repeat(3,1fr); }
  .partners-grid { grid-template-columns: repeat(5,1fr); }
  .clients-grid { grid-template-columns: repeat(4,1fr); }
  .carousel-label { display: flex; }
  .footer-grid { grid-template-columns: 2fr repeat(4,1fr); }
  .admin-stats { grid-template-columns: repeat(4,1fr); }
  .admin-header { display: flex; }
}

/* ===== PAGE HEADER ===== */
.page-header { padding: 7rem 0 4rem; background: var(--rich-navy); text-align: center; }
.page-header h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.page-header p { font-size: 1.125rem; color: var(--gray); max-width: 40rem; margin: 0 auto; }

/* ===== HIDE/SHOW ===== */
.hidden { display: none !important; }
