/* NodrixVPN - Estilo inspirado en Surfshark */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0d2540;
  --accent: #00d4aa;
  --accent-dark: #00b894;
  --danger: #e74c3c;
  --dark: #16191c;
  --light: #f9f9f9;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --radius: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  z-index: 1000;
  padding: 16px 0;
}
.navbar .container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar .logo {
  font-size: 24px; font-weight: 800; color: var(--primary);
  display: flex; align-items: center; gap: 8px;
}
.navbar .logo svg { width: 32px; height: 32px; }
.navbar nav ul {
  list-style: none; display: flex; gap: 32px; align-items: center;
}
.navbar nav a {
  font-size: 15px; font-weight: 500; color: var(--dark);
  transition: color 0.2s;
}
.navbar nav a:hover { color: var(--accent); }
.btn-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  transition: background 0.2s, transform 0.1s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-cta:active { transform: translateY(0); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
  width: 100%;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(0, 212, 170, 0.08);
  max-width: 100%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(0, 212, 170, 0.05);
  max-width: 100%;
}
.hero .container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 1;
  width: 100%;
}
.hero h1 {
  font-size: 48px; font-weight: 800; line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px; opacity: 0.85; margin-bottom: 32px;
}
.hero .hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 16px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 18px;
  transition: all 0.2s; border: none; cursor: pointer;
}
.hero .hero-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hero .hero-image {
  display: flex; justify-content: center; align-items: center;
}
.hero .hero-image svg { width: 100%; max-width: 480px; }

.hero-badges {
  display: flex; gap: 24px; margin-top: 32px; align-items: center;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; opacity: 0.8;
}
.hero-badge .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); display: flex;
  align-items: center; justify-content: center;
  font-size: 12px; color: var(--white);
}

/* ===== FEATURES ===== */
.features { padding: 80px 0; width: 100%; }
.features .container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%;
}
.section-title {
  text-align: center; font-size: 36px; font-weight: 800;
  margin-bottom: 16px; color: var(--dark);
}
.section-subtitle {
  text-align: center; font-size: 18px; color: var(--gray);
  margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s;
}
.feature-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0, 212, 170, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px; color: var(--gray);
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: var(--light);
}
.pricing .container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
}
.price-card {
  background: var(--white); border-radius: 16px; padding: 40px 32px;
  text-align: center; position: relative;
  border: 2px solid var(--gray-light);
  transition: all 0.3s;
}
.price-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 212, 170, 0.15);
}
.price-card .badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  padding: 6px 20px; border-radius: 20px; font-size: 13px; font-weight: 700;
}
.price-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
}
.price-card .price-desc {
  font-size: 14px; color: var(--gray); margin-bottom: 24px;
}
.price-card .price {
  font-size: 42px; font-weight: 800; color: var(--primary);
}
.price-card .price span { font-size: 16px; font-weight: 500; color: var(--gray); }
.price-card .price-yearly {
  font-size: 14px; color: var(--accent); margin-top: 8px; font-weight: 600;
}
.price-card ul {
  list-style: none; margin: 32px 0; text-align: left;
}
.price-card ul li {
  padding: 10px 0; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gray-light);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: '✓'; color: var(--accent); font-weight: 700; font-size: 18px;
}
.price-card .btn-plan {
  width: 100%; padding: 14px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; border: 2px solid var(--accent);
  background: transparent; color: var(--accent); cursor: pointer;
  transition: all 0.2s;
}
.price-card .btn-plan:hover { background: var(--accent); color: var(--white); }
.price-card.popular .btn-plan {
  background: var(--accent); color: var(--white);
}
.price-card.popular .btn-plan:hover { background: var(--accent-dark); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; }
.how-it-works .container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px;
}
.step-card { text-align: center; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; margin: 0 auto 20px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--gray); }

/* ===== DOWNLOAD APP ===== */
.download-app {
  padding: 80px 0; background: var(--primary);
  color: var(--white); text-align: center;
}
.download-app .container {
  max-width: 800px; margin: 0 auto; padding: 0 24px;
}
.download-app h2 {
  font-size: 36px; font-weight: 800; margin-bottom: 16px;
}
.download-app p {
  font-size: 18px; opacity: 0.85; margin-bottom: 32px;
}
.download-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.download-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--dark);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 16px; transition: all 0.2s;
}
.download-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq .container {
  max-width: 800px; margin: 0 auto; padding: 0 24px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-light); padding: 20px 0;
}
.faq-item summary {
  font-size: 18px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+'; font-size: 24px; color: var(--accent); transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px; font-size: 15px; color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); color: var(--white);
  padding: 60px 0 30px;
}
.footer .container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  font-size: 24px; font-weight: 800; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand p { font-size: 14px; opacity: 0.6; max-width: 300px; }
.footer-col h4 {
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px; opacity: 0.6;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; opacity: 0.7; transition: opacity 0.2s; }
.footer-col ul a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center;
  font-size: 13px; opacity: 0.5;
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 20px;
}
.auth-card {
  background: var(--white); border-radius: 20px;
  padding: 48px; max-width: 440px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.auth-card .logo {
  font-size: 24px; font-weight: 800; color: var(--primary);
  text-align: center; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.auth-card h2 {
  text-align: center; font-size: 24px; margin-bottom: 8px;
}
.auth-card .subtitle {
  text-align: center; color: var(--gray); margin-bottom: 32px; font-size: 15px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%; padding: 14px 16px; border: 2px solid var(--gray-light);
  border-radius: var(--radius); font-size: 15px; font-family: var(--font);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus { border-color: var(--accent); }
.form-group input.error { border-color: var(--danger); }
.form-error {
  color: var(--danger); font-size: 13px; margin-top: 4px;
}
.form-success {
  color: var(--accent-dark); font-size: 14px; text-align: center;
  margin-top: 16px; padding: 12px; background: rgba(0,212,170,0.1);
  border-radius: var(--radius);
}
.btn-full {
  width: 100%; padding: 16px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; border: none; cursor: pointer;
  background: var(--accent); color: var(--white);
  transition: all 0.2s;
}
.btn-full:hover { background: var(--accent-dark); }
.btn-full:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-link {
  text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray);
}
.auth-link a { color: var(--accent); font-weight: 600; }

/* ===== DASHBOARD ===== */
.dashboard-layout {
  display: flex; min-height: 100vh; width: 100%; overflow-x: hidden;
}
.dashboard-sidebar {
  width: 260px; min-width: 260px; background: var(--primary-dark); color: var(--white);
  padding: 24px 0; position: fixed; top: 0; bottom: 0; left: 0;
  overflow-y: auto; z-index: 100;
}
.dashboard-sidebar .logo {
  padding: 0 24px; font-size: 22px; font-weight: 800; margin-bottom: 32px;
  display: flex; align-items: center; gap: 8px;
}
.dashboard-sidebar nav ul { list-style: none; }
.dashboard-sidebar nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; font-size: 15px; opacity: 0.7;
  transition: all 0.2s; border-left: 3px solid transparent;
}
.dashboard-sidebar nav a:hover, .dashboard-sidebar nav a.active {
  opacity: 1; background: rgba(255,255,255,0.05);
  border-left-color: var(--accent);
}
.dashboard-sidebar .user-info {
  padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px; font-size: 14px; opacity: 0.6;
}
.dashboard-main {
  flex: 1; margin-left: 260px; padding: 32px;
  background: var(--light); min-height: 100vh;
  width: calc(100% - 260px); max-width: 100%; overflow-x: hidden;
}
.dashboard-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.dashboard-header h1 { font-size: 28px; font-weight: 800; }
.dashboard-header .balance-card {
  background: var(--white); padding: 16px 24px; border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.dashboard-header .balance-card .label { font-size: 12px; color: var(--gray); }
.dashboard-header .balance-card .amount {
  font-size: 24px; font-weight: 800; color: var(--primary);
}
.dashboard-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.dashboard-card h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
}

/* Plans grid en dashboard */
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.plan-card {
  border: 2px solid var(--gray-light); border-radius: 14px;
  padding: 20px; text-align: center;
}
.plan-card.plan-featured { border-color: var(--accent); }
.plan-card.plan-current { border-color: var(--accent); background: rgba(0,212,170,0.05); }
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--gray-light);
}
.info-row:last-child { border-bottom: none; }
.info-row .label { font-size: 14px; color: var(--gray); }
.info-row .value { font-size: 15px; font-weight: 600; }
.status-active { color: var(--accent-dark); }
.status-inactive { color: var(--danger); }
.status-pending { color: #f39c12; }

.btn-action {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; border: none; cursor: pointer;
  background: var(--accent); color: var(--white); transition: all 0.2s;
}
.btn-action:hover { background: var(--accent-dark); }
.btn-action.danger { background: var(--danger); }
.btn-action.danger:hover { background: #c0392b; }
.btn-action.secondary { background: var(--gray-light); color: var(--dark); }
.btn-action.secondary:hover { background: #d1d5db; }

/* Table styles */
.data-table {
  width: 100%; border-collapse: collapse;
}
.data-table th, .data-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--gray-light); font-size: 14px;
}
.data-table th {
  font-weight: 700; color: var(--gray); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Alerts */
.alert {
  padding: 14px 20px; border-radius: var(--radius); margin-bottom: 16px;
  font-size: 14px;
}
.alert-success { background: rgba(0,212,170,0.1); color: var(--accent-dark); }
.alert-error { background: rgba(231,76,60,0.1); color: var(--danger); }
.alert-info { background: rgba(26,58,92,0.1); color: var(--primary); }

/* Modal */
.modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 2000;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: 20px; padding: 32px;
  max-width: 480px; width: 90%;
}
.modal h2 { margin-bottom: 16px; }
.modal .modal-body { margin-bottom: 24px; }
.modal .modal-actions { display: flex; gap: 12px; justify-content: flex-end; }

/* OTP input */
.otp-input {
  display: flex; gap: 12px; justify-content: center; margin: 20px 0;
}
.otp-input input {
  width: 56px; height: 56px; text-align: center;
  font-size: 24px; font-weight: 700; border: 2px solid var(--gray-light);
  border-radius: var(--radius); outline: none;
}
.otp-input input:focus { border-color: var(--accent); }

/* ===== MOBILE NAVBAR (hamburguer) ===== */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 3px; background: var(--dark);
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-light);
  padding: 16px 24px; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-mobile-menu.active { display: block; }
.nav-mobile-menu ul { list-style: none; }
.nav-mobile-menu li { margin-bottom: 12px; }
.nav-mobile-menu a { display: block; padding: 12px 0; font-size: 16px; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container { max-width: 100% !important; padding: 0 16px !important; }
  .hero .container { grid-template-columns: 1fr !important; gap: 24px; }
  .hero .hero-image { display: none; }
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar .container { flex-wrap: wrap; }
  .navbar nav { display: none; }
  .nav-toggle { display: flex; }
  .dashboard-sidebar {
    display: none; position: fixed; top: 0; left: -280px; width: 260px;
    min-width: 260px; height: 100vh; z-index: 1100; transition: left 0.3s;
  }
  .dashboard-sidebar.active { left: 0; display: block; }
  .dashboard-main { margin-left: 0 !important; padding: 70px 16px 16px !important; width: 100% !important; }
  .dashboard-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dashboard-header h1 { font-size: 22px; }
  .balance-card { width: 100%; }
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 10px 8px; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 16px; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 28px; line-height: 1.2; }
  .hero p { font-size: 16px; }
  .hero .hero-cta { width: 100%; text-align: center; justify-content: center; font-size: 16px; padding: 14px 24px; }
  .hero-badges { flex-wrap: wrap; gap: 12px; }
  .hero-badge { font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .auth-card { padding: 28px 20px; max-width: 100%; border-radius: 16px; }
  .auth-card h2 { font-size: 20px; }
  .auth-card .subtitle { font-size: 14px; }
  .pricing-grid { gap: 16px; }
  .price-card { padding: 28px 20px; }
  .price-card .price { font-size: 34px; }
  .features { padding: 48px 0; }
  .features-grid { gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .how-it-works { padding: 48px 0; }
  .steps-grid { gap: 24px; }
  .download-app { padding: 48px 0; }
  .download-app h2 { font-size: 26px; }
  .download-app p { font-size: 16px; }
  .download-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .download-btn { justify-content: center; }
  .faq { padding: 48px 0; }
  .faq-item summary { font-size: 16px; }
  .otp-input { gap: 8px; flex-wrap: wrap; }
  .otp-input input { width: 44px; height: 44px; font-size: 20px; }
  .form-group input, .form-group select { font-size: 16px; padding: 12px 14px; }
  .btn-full { font-size: 16px; padding: 14px; }
  .dashboard-main { padding: 70px 12px 12px !important; }
  .dashboard-card { padding: 16px; }
  .dashboard-card h2 { font-size: 17px; }
  .data-table { display: block; overflow-x: auto; white-space: nowrap; }
  .info-row { flex-wrap: wrap; gap: 4px; }
  .info-row .label { font-size: 13px; }
  .info-row .value { font-size: 14px; }
  .btn-action { padding: 8px 12px; font-size: 12px; }
  .modal { padding: 20px; max-width: 95%; }
  .modal h2 { font-size: 18px; }
  .modal-actions { flex-direction: column; }
  .modal-actions button { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .stats-grid > div { padding: 14px !important; }
  .stats-grid > div div:first-child { font-size: 22px !important; }
  .navbar .logo { font-size: 20px; }
  .navbar .logo svg { width: 26px; height: 26px; }
  .plans-grid { grid-template-columns: 1fr !important; }
  .plan-card { padding: 16px; }
  .dashboard-header h1 { font-size: 20px; }
  .dashboard-header .balance-card { width: 100%; padding: 12px 16px; }
  .dashboard-header .balance-card .amount { font-size: 20px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 24px; }
  .otp-input input { width: 38px; height: 38px; font-size: 18px; gap: 6px; }
  .auth-card { padding: 24px 16px; }
  .price-card .price { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr !important; }
}

/* intl-tel-input mobile fixes */
@media (max-width: 600px) {
  .iti { width: 100%; }
  .iti--container { max-width: 320px; }
  #phoneInput { padding-left: 52px; font-size: 16px; }
  .iti__selected-flag { padding: 0 8px; }
}

/* Dashboard mobile sidebar toggle */
.sidebar-toggle {
  display: none; position: fixed; top: 16px; left: 16px; z-index: 1200;
  background: var(--primary); color: #fff; border: none; border-radius: 10px;
  width: 44px; height: 44px; font-size: 20px; cursor: pointer;
}
@media (max-width: 900px) {
  .sidebar-toggle { display: block; }
  .dashboard-main { padding-top: 70px; }
}

/* Overlay for mobile sidebar */
.sidebar-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); z-index: 1050;
}
.sidebar-overlay.active { display: block; }