
/* =====================================================
   NOSZONA Smart — style.css
   ===================================================== */

:root {
  --navy: #061827;
  --navy-mid: #0b2e4a;
  --blue: #0a6fa8;
  --cyan: #00c3e3;
  --gold: #f4b942;
  --gold-light: #ffd580;
  --white: #ffffff;
  --off: #f0f5fa;
  --muted: #7b8fa3;
  --border: rgba(255,255,255,0.10);
  --border-dark: #d4dee9;
  --text: #0f1f2e;
  --success: #0ea472;
  --danger: #d64545;
  --card-bg: #ffffff;
  --section-bg: #f5f8fc;
  --rad: 20px;
  --rad-lg: 28px;
  --shadow: 0 24px 64px rgba(6,24,39,0.13);
  --shadow-sm: 0 8px 24px rgba(6,24,39,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ============ NOSCRIPT ============ */
.noscript-banner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 16px;
  background: var(--danger);
  color: white;
  text-align: center;
  font-weight: 500;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 6%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 57, 122, 0.901);
  backdrop-filter: blur(50px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(23, 255, 158, 0.415);
  transition: all 0.3s cubic-bezier(0.71, 0.18, 0.25, 1); 
}

.logo { text-decoration: none; }
.logo-img {
  height: 55px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  cursor: pointer;
}
.logo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--cyan); }





.nav-ctas { display: flex; gap: 10px; align-items: center; }

.user-greeting {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
  margin-right: 6px;
}

.btn {
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  letter-spacing: 0.1px;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-ghost {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 10px 18px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0288d1 100%);
  color: var(--navy);
  padding: 10px 20px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,195,227,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,195,227,0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e8931a 100%);
  color: var(--navy);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(244,185,66,0.40);
  border-radius: 14px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(244,185,66,0.50);
}

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.30);
  color: var(--white);
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 14px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6% 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,195,227,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(10,111,168,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(244,185,66,0.08) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,195,227,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,195,227,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,195,227,0.12);
  border: 1px solid rgba(0,195,227,0.28);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--cyan); letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-tag::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700; line-height: 1.00;
  color: var(--white); letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px; line-height: 1.72;
  color: rgba(255,255,255,0.68);
  max-width: 560px; margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 28px; margin-top: 52px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat {
  border-left: 2px solid rgba(0,195,227,0.30);
  padding-left: 16px;
}
.hero-stat strong {
  display: block;
  font-family: 'Clash Display', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--white); letter-spacing: -1px; line-height: 1;
}
.hero-stat span {
  font-size: 13px; color: rgba(255,255,255,0.48);
  font-weight: 400; margin-top: 4px; display: block;
}

.hero-visual { animation: fadeUp 0.7s 0.2s ease both; }
.card-3d {
  background: linear-gradient(135deg, #0b3a5a 0%, #062640 50%, #041820 100%);
  border: 1px solid rgba(0,195,227,0.22);
  border-radius: 26px; padding: 32px;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: perspective(1000px) rotateY(-4deg) rotateX(3deg);
  transition: transform 0.4s ease;
}
.card-3d:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(1deg); }
.card-3d::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,195,227,0.12) 0%, transparent 65%);
}
.card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,195,227,0.15);
  border: 1px solid rgba(0,195,227,0.25);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 24px;
}
.feature-rows { display: flex; flex-direction: column; gap: 14px; }
.feature-row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 16px 18px;
  transition: background 0.2s;
}
.feature-row:hover { background: rgba(0,195,227,0.08); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px;
  line-height: 1;
}
.fi-cyan { background: rgba(0,195,227,0.15); }
.fi-gold { background: rgba(244,185,66,0.15); }
.fi-green { background: rgba(14,164,114,0.15); }
.feature-row-text strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--white); margin-bottom: 2px;
}
.feature-row-text span {
  font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300;
}
.hero-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,195,227,0.3), transparent);
  margin: 24px 0;
}
.qr-preview {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: rgba(244,185,66,0.08);
  border: 1px solid rgba(244,185,66,0.20);
  border-radius: 14px;
}
.qr-box {
  width: 52px; height: 52px;
  background: white; border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 2px; padding: 5px; flex-shrink: 0;
}
.qr-dot { border-radius: 1px; background: var(--navy); }
.qr-preview-text strong {
  display: block; font-size: 13px; font-weight: 600; color: var(--gold);
}
.qr-preview-text span { font-size: 12px; color: rgba(255,255,255,0.45); }

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

/* ============ HOW IT WORKS ============ */
.section { padding: 90px 6%; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700; color: var(--text);
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px;
}
.section-header p {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
}
.bg-off { background: var(--section-bg); }
.bg-navy { background: var(--navy); }

.steps {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--rad-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(0,195,227,0.3);
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover::after { opacity: 1; }
.step-visual {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.step-number {
  font-family: 'Clash Display', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #e0e7ff;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -3px;
}
.step-illustration {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
}
.step-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.step-visual {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.step-visual .step-number {
  font-size: 72px;
  font-weight: 800;
  color: #e0e7ff;
  line-height: 1;
  font-family: 'Clash Display', sans-serif;
  flex-shrink: 0;
  margin-bottom: 0;
  letter-spacing: -3px;
  background: none;
  -webkit-text-fill-color: #e0e7ff;
}

.step-illustration {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
  flex-shrink: 0;
}

/* ============ PACKAGES ============ */
.packages-grid {
  max-width: 1100px; margin: auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: end;
}
.pkg-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--rad-lg);
  padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: all 0.3s ease; cursor: pointer;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pkg-card.featured {
  background: var(--navy);
  border: 2px solid rgba(0,195,227,0.40);
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(6,24,39,0.22);
}
.pkg-card.featured:hover { transform: translateY(-18px); }
.popular-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--cyan), #0288d1);
  color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.pkg-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.pkg-card.featured .pkg-label { color: rgba(255,255,255,0.5); }
.pkg-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--text); letter-spacing: -0.5px; margin-bottom: 6px;
}
.pkg-card.featured .pkg-name { color: var(--white); }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0; }
.pkg-price .amount {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px; font-weight: 700;
  color: var(--text); letter-spacing: -2px; line-height: 1;
}
.pkg-card.featured .amount { color: var(--gold); }
.pkg-price .currency { font-size: 16px; color: var(--muted); font-weight: 500; }
.pkg-card.featured .currency { color: rgba(255,255,255,0.5); }
.pkg-divider { height: 1px; background: var(--border-dark); margin: 24px 0; }
.pkg-card.featured .pkg-divider { background: rgba(255,255,255,0.10); }
.pkg-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 28px;
}
.pkg-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #3d4f62; line-height: 1.5; font-weight: 400;
}
.pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.78); }
.pkg-check {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(14,164,114,0.12);
  border: 1px solid rgba(14,164,114,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pkg-check::before { content: '✓'; font-size: 11px; font-weight: 800; color: var(--success); }
.pkg-card.featured .pkg-check {
  background: rgba(0,195,227,0.15);
  border-color: rgba(0,195,227,0.3);
}
.pkg-card.featured .pkg-check::before { color: var(--cyan); }
.btn-pkg {
  width: 100%; padding: 15px;
  font-size: 15px; font-weight: 600;
  border-radius: 14px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s ease; letter-spacing: 0.2px;
}
.btn-pkg-default {
  background: var(--off); color: var(--text);
  border: 1.5px solid var(--border-dark);
}
.btn-pkg-default:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: translateY(-2px);
}
.btn-pkg-featured {
  background: linear-gradient(135deg, var(--cyan), #0097c7);
  color: var(--navy); font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,195,227,0.40);
}
.btn-pkg-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,195,227,0.50);
}

/* ============ TRUST STRIP ============ */
.trust-section { background: var(--navy); padding: 56px 6%; }
.trust-inner {
  max-width: 1100px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.trust-item {
  text-align: center; padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-value {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px; font-weight: 700; color: var(--white);
  letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px;
}
.trust-value span { color: var(--cyan); }
.trust-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  font-weight: 300; letter-spacing: 0.2px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--navy) 0%, #0b3558 50%, #062b50 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,195,227,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(34px, 5vw, 58px); font-weight: 700;
  color: var(--white); letter-spacing: -1.5px;
  line-height: 1.05; margin-bottom: 18px; position: relative;
}
.cta-banner p {
  font-size: 18px; color: rgba(255,255,255,0.60);
  margin-bottom: 40px; font-weight: 300; line-height: 1.6; position: relative;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative;
}

/* ============ FORMS ============ */
.form-section {
  display: none;
  padding: 80px 6%;
  background: var(--section-bg);
}
.form-panel {
  max-width: 780px; margin: auto;
  background: var(--white);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-dark);
  overflow: hidden;
}
.form-panel-narrow { max-width: 480px; }
.form-panel-top {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--border-dark);
  background: linear-gradient(to right, #f7fbff, #edf5fc);
}
.form-panel-top h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--text); letter-spacing: -0.5px; margin-bottom: 6px;
}
.form-panel-top p { font-size: 15px; color: var(--muted); font-weight: 300; }
.form-body { padding: 36px 40px; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 13px; font-weight: 600;
  color: #2d3f52; margin-bottom: 8px; letter-spacing: 0.1px;
}
input:not([type="checkbox"]):not([type="radio"]), select {
  font-family: 'DM Sans', sans-serif;
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #dde6f0;
  border-radius: 12px;
  font-size: 14px; color: var(--text);
  background: #fbfdff;
  outline: none; transition: all 0.2s ease;
  appearance: none;
}
input:focus, select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,195,227,0.10);
  background: var(--white);
}
input::placeholder { color: #9db0c3; }

input.field-invalid, select.field-invalid {
  border-color: var(--danger);
  background: #fff5f5;
}
input.field-invalid:focus, select.field-invalid:focus {
  box-shadow: 0 0 0 4px rgba(214,69,69,0.10);
}

.field-error {
  display: none;
  font-size: 12px;
  color: var(--danger);
  margin-top: 6px;
  font-weight: 500;
}
.field-error.visible { display: block; }

.field-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 400;
}

.form-checkbox { margin-top: 4px; }
.checkbox-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 400; color: var(--text);
  cursor: pointer; margin: 0;
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  margin: 0;
  border: 1.5px solid #dde6f0;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  vertical-align: middle;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}
.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

.form-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 14px; color: var(--muted);
}
.form-switch a {
  color: var(--blue); font-weight: 600; text-decoration: none;
}
.form-switch a:hover { text-decoration: underline; }

.payment-info-box {
  background: linear-gradient(135deg, rgba(14,164,114,0.06), rgba(0,195,227,0.06));
  border: 1.5px solid rgba(14,164,114,0.25);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 24px 0;
}
.payment-box-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.payment-box-title span { font-size: 18px; }
.payment-note {
  font-size: 13px; color: var(--muted);
  margin-bottom: 0; font-weight: 300; line-height: 1.6;
}

.form-submit {
  width: 100%; padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white); border: none; border-radius: 14px;
  cursor: pointer; transition: all 0.25s ease;
  letter-spacing: 0.2px; margin-top: 8px;
  box-shadow: 0 8px 20px rgba(6,24,39,0.18);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6,24,39,0.25);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-google {
  width: 100%;
  margin-top: 16px;
  padding: 13px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
  color: #3c4043;
  border: 1.5px solid #dadce0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-google:hover {
  background: #f8f9fa;
  border-color: #c6c9cc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.termos-link {
  font-size: 12px;
  color: var(--blue);
  text-decoration: underline;
  margin-left: 28px;
}
/* ============ login popup============ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);           /* ← Efeito blur */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 440px;
}

/* GARANTIR QUE POPUPS DE ALERTA FICAM POR CIMA */
.popup {
  z-index: 11000 !important;
}

.modal-overlay {
  z-index: 10000 !important;
}




/* ============ DASHBOARD ============ */
#dashboard {
  display: none;
  padding: 80px 6%;
  background: var(--section-bg);
}
.dash-panel {
  max-width: 1050px; margin: auto;
  background: var(--white);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  width: 100%;
  max-width: none;
}
.dash-header {
  width: 100%;
  padding: 28px 36px;
  background: rgb(10, 19, 90);
  display: flex; justify-content: space-between; align-items: center;
}
.dash-header h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); letter-spacing: -0.3px;
}
.dash-header p { font-size: 14px; color: rgba(255,255,255,0.50); margin-top: 3px; }

.btn-logout {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-logout:hover { background: rgba(255,255,255,0.18); }

.alert-banner {
  background: linear-gradient(135deg, rgba(244,185,66,0.15), rgba(244,185,66,0.08));
  border-bottom: 1px solid rgba(244,185,66,0.4);
  padding: 14px 36px;
  font-size: 14px;
  color: #6b4a0e;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.link-btn {
  background: none; border: none; padding: 0;
  color: var(--blue); font-weight: 600; cursor: pointer;
  text-decoration: underline; font-size: 14px;
  font-family: inherit;
}

.dash-body {
  display: flex;
  gap: 24px;
}

.dash-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #28a558, #2d5c99);
  padding: 20px 12px;
  height: 100%;           /* ocupa toda a altura do dash-body */
  margin: 0;
  border-radius: 0;       /* bordas retas */
}

.dash-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
}

/* Responsivo */
@media (max-width: 1150px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-body {
    flex-direction: column;
  }
  .dash-sidebar {
    width: 100%;
    height: auto;
  }
}


/* ====================== CENTRALIZAÇÃO FORÇADA DO CARTÃO ====================== */
.dash-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.virtual-card {
  margin: 0 auto !important;
  max-width: 470px !important;
  width: 100% !important;
  box-shadow: 0 20px 60px rgba(6, 24, 39, 0.25);
}

.virtual-card > div[style*="display: flex"] {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

/* Botão centralizado */
.addft-btn {
  display: block !important;
  margin: 32px auto 0 auto !important;
  width: 100% !important;
  max-width: 300px !important;
}

/* Stats centralizados com bom espaçamento */
.stats-grid {
  margin-top: 58px !important;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}






.stat-box {
  background: var(--section-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px; padding: 20px;
}
.stat-box span { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; display: block; margin-bottom: 6px; }
.stat-box strong { font-family: 'Clash Display', sans-serif; font-size: 22px; color: var(--text); font-weight: 700; letter-spacing: -0.5px; }

.chip-active {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,164,114,0.10);
  border: 1px solid rgba(14,164,114,0.25);
  color: var(--success);
  font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; margin-top: 4px;
}
.chip-active::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

.recharge-box {
  background: var(--section-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px; padding: 22px;
}
.recharge-box h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--text); margin-bottom: 6px; letter-spacing: -0.2px;
}
.recharge-note {
  font-size: 12px; color: var(--muted);
  margin-bottom: 16px; font-weight: 300;
}
.recharge-btn {
  width: 100%; padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), #0288d1);
  color: var(--navy); border: none; border-radius: 12px;
  cursor: pointer; transition: all 0.2s;
  margin-top: 14px;
  box-shadow: 0 6px 16px rgba(0,195,227,0.30);
}
.recharge-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,195,227,0.40); }

.qr-card {
  background:  rgba(3, 10, 47, 0.985);
  border-radius: 16px; padding: 16px;
  text-align: center; margin-bottom: 16px;
  
}
.qr-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 18px; letter-spacing: -0.2px;
}
#qrCode { display: flex; justify-content: center; margin-bottom: 14px; }
#qrCode img, #qrCode canvas {
  border-radius: 8px;
  background: white;
  padding: 8px;
}
.qr-countdown {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin: 10px 0; font-weight: 400;
}
.qr-countdown strong { color: var(--cyan); font-weight: 700; }
.qr-progress {
  width: 100%; height: 3px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px; margin-top: 8px; overflow: hidden;
}
.qr-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transition: width 1s linear;
}
.qr-note { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.5; margin-top: 12px; }

.card-req-box {
  background: rgba(244,185,66,0.07);
  border: 1.5px solid rgba(244,185,66,0.22);
  border-radius: 16px;
  padding: 22px; text-align: center;
}
.card-req-box h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.card-req-box p { font-size: 13px; color: var(--muted); margin-bottom: 16px; font-weight: 300; }
.btn-card-req {
  width: 100%; padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #e8931a);
  color: var(--navy); border: none; border-radius: 12px;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 6px 16px rgba(244,185,66,0.35);
}
.btn-card-req:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(244,185,66,0.45); }

/* ============ ADD foto no cartao ============ */
.addft-btn {
  width: 100%; padding: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  background: linear-gradient(135deg, var(--cyan), #026ba3);
  color: var(--navy); border: none; border-radius: 12px;
  cursor: pointer; transition: all 0.2s;
  margin-top: 14px;
  box-shadow: 0 6px 16px rgba(13, 200, 228, 0.3);
}

/* ============ POPUP ============ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(6,18,30,0.70);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-box {
  background: var(--white);
  max-width: 440px; width: 90%;
  padding: 44px 36px; border-radius: 28px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-icon { font-size: 60px; margin-bottom: 18px; display: block; }
.popup-box h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--text); margin-bottom: 10px; letter-spacing: -0.5px;
}
.popup-box p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; font-weight: 300; }
.popup-btn {
  background: var(--navy); color: var(--white);
  border: none; padding: 14px 32px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.popup-btn:hover { background: var(--blue); transform: translateY(-1px); }

.loading * { pointer-events: none; opacity: 0.7; }

/* SELECT PACOTE - BOTÃO COM COR DIFERENTE */
.select-button-wrapper {
    position: relative;
    width: 100%;
    margin-top: 8px;
}

.select-button-wrapper select {
    width: 100%;
    padding: 16px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #0a6fa8, #0288d1); /* Azul forte */
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(10, 111, 168, 0.35);
    appearance: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.select-button-wrapper::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: white;
    pointer-events: none;
    font-weight: bold;
}

.select-button-wrapper select:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 111, 168, 0.45);
}

.select-button-wrapper select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(2, 136, 209, 0.4);
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 6%; text-align: center;
}
footer p { font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 300; }
footer p strong { color: rgba(255,255,255,0.60); font-weight: 500; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pkg-card.featured { transform: none; }
  .steps { grid-template-columns: 1fr; max-width: 500px; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(2n) { border-right: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .user-greeting { display: none; }
}
@media (max-width: 768px) {
  .logo-img { height: 45px; }
}
@media (max-width: 600px) {
  header { padding: 0 5%; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-body, .form-panel-top { padding: 24px 22px; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 22px; }
  .trust-inner { grid-template-columns: 1fr; }
  .dash-body { padding: 22px; }
  .dash-header { padding: 22px 22px; }
}
/* ============ FOTO DE PERFIL NO DASHBOARD ============ */
/* Foto redonda à esquerda do título "Minha Conta NOSZONA Smart" */

.dash-header {
  gap: 18px;
}

.dash-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.dash-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.dash-profile-photo-area {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-profile-photo-area .cliente-foto-wrapper {
  position: relative;
  width: 58px;
  height: 58px;
}

.dash-profile-photo-area .cliente-foto-btn {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.88);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-family: 'Clash Display', sans-serif;
  font-size: 21px;
  font-weight: 700;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.dash-profile-photo-area .cliente-foto-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-profile-photo-area .menu-foto-cliente {
  position: absolute;
  top: 68px;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: none;
  z-index: 500;
}

.dash-profile-photo-area .menu-foto-cliente.ativo {
  display: block;
}

.dash-profile-photo-area .menu-foto-cliente button {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-bottom: 1px solid #edf2f7;
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.dash-profile-photo-area .menu-foto-cliente button:hover {
  background: var(--section-bg);
}

.dash-profile-photo-area .menu-foto-cliente button:last-child {
  border-bottom: none;
  color: var(--muted);
}

@media (max-width: 600px) {
  .dash-header {
    align-items: flex-start;
    gap: 12px;
  }

  .dash-header-left,
  .dash-header-right {
    color: white !important;
  }

  .dash-header-right strong,
  .dash-header-right span {
    color: white !important;
  }
}
/* ============ MODAL VER FOTO PERFIL CLIENTE ============ */

.modal-foto-perfil-cliente {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 99999;
}

.modal-foto-perfil-cliente.ativo {
  display: flex;
}

.modal-foto-perfil-conteudo {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
  max-width: 92vw;
  max-height: 92vh;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  text-align: center;
}

.modal-foto-perfil-conteudo img {
  width: 320px;
  height: 320px;
  max-width: 80vw;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

.modal-foto-perfil-acoes {
  margin-top: 14px;
}

.modal-foto-perfil-acoes button {
  padding: 11px 22px;
  border-radius: 12px;
  border: 1px solid #dbe4ef;
  background: #ffffff;
  color: #062b4f;
  font-weight: 800;
  cursor: pointer;
}

.modal-foto-perfil-acoes button:hover {
  background: #f4f7fb;
}

/* Wrapper para transformar o select num botão visual */
.select-button-wrapper {
    position: relative;
    width: 100%;
}

.select-button-wrapper select {
    width: 100%;
    padding: 16px 20px;           /* mesmo padding dos botões grandes */
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    background: linear-gradient(135deg, var(--cyan), #0288d1); /* cor do botão "Criar conta" */
    border: none;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,195,227,0.35);
    appearance: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Seta customizada */
.select-button-wrapper::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--navy);
    pointer-events: none;
    font-weight: bold;
}

.select-button-wrapper select:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,195,227,0.45);
}

.select-button-wrapper select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,195,227,0.25);
}

/* Quando tem valor selecionado */
.select-button-wrapper select:not([value=""]) {
    font-weight: 700;
}

.dash-container { display: flex; min-height: 100vh; background: #f8fafc; }
.dash-sidebar { width: 260px; background: white; border-right: 1px solid #e2e8f0; padding: 20px 0; }
/* SIDEBAR NAV - MELHORADO */
.sidebar-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 15.5px;
  border-radius: 12px;
  margin: 4px 12px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255,255,255,0.09);
}

.sidebar-nav .nav-item:hover {
  background: #f1f5f9;
  color: #0ea5e9;
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.sidebar-nav .nav-item.active {
  background: #0ea5e9;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* Icones maiores e mais bonitos */
.sidebar-nav .nav-item span {
  font-size: 20px;
  width: 24px;
  text-align: center;
}


.dash-main { flex: 1; padding: 20px; }
.dash-top-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.virtual-card { background: linear-gradient(145deg, #0f172a, #1e2937); color: white; border-radius: 16px; padding: 24px; position: relative; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0; }

