:root {
  --navy: #0f172a;
  --navy-2: #0b1220;
  --teal: #10b981;
  --lime: #84cc16;
  --soft: #ecfdf5;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 14px; padding: 14px 22px; font-weight: 700; border: 1px solid transparent;
  transition: .2s ease; cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--lime)); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(16, 185, 129, .25); }
.btn-secondary { background: white; border-color: var(--line); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: var(--soft); color: #047857; font-weight: 700; font-size: 14px;
}
.site-header {
  position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; position: relative;
  background: linear-gradient(180deg, var(--navy), var(--navy-2)); color: white; font-size: 28px; font-weight: 900;
}
.logo-mark::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); position: absolute; top: 7px; right: 7px;
}
.logo-text strong { display: block; font-size: 26px; letter-spacing: -.03em; }
.logo-text span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #334155; font-weight: 600; }
.nav a.active, .nav a:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; }
.hero {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at right top, rgba(16,185,129,.12), transparent 32%),
    radial-gradient(circle at left bottom, rgba(132,204,22,.08), transparent 28%),
    linear-gradient(180deg, #fff, #f8fafc 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 42px; align-items: center; }
.hero h1, .page-hero h1 { font-size: clamp(42px, 6vw, 64px); line-height: 1.04; letter-spacing: -.04em; margin: 18px 0; }
.hero h1 .accent, .page-hero h1 .accent { color: var(--teal); }
.lead { font-size: 18px; line-height: 1.7; color: #475569; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 20px; }
.mini-points { display: flex; flex-wrap: wrap; gap: 20px; color: #64748b; font-size: 14px; }
.mini-points span::before { content: "✓"; color: var(--teal); font-weight: 900; margin-right: 8px; }
.mockup-card {
  background: white; border: 1px solid rgba(226,232,240,.9); border-radius: 30px; padding: 22px;
  box-shadow: var(--shadow);
}
.dashboard {
  background: linear-gradient(180deg, var(--navy), #08101d); border-radius: 26px; padding: 22px; color: white;
}
.dashboard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dashboard-grid { display: grid; gap: 14px; }
.metric, .white-card {
  background: white; color: var(--text); border-radius: 18px; padding: 18px; border: 1px solid rgba(226,232,240,.8);
}
.metric strong { display: block; font-size: 28px; margin-top: 10px; }
.metric span { color: var(--muted); font-size: 14px; }
.two-panels { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; margin-top: 14px; }
.chart {
  height: 160px; border-radius: 14px; background:
    linear-gradient(to top, rgba(16,185,129,.08), rgba(16,185,129,0) 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='160' viewBox='0 0 400 160'%3E%3Cpath d='M0 120 C30 100 60 95 90 110 S150 145 180 120 240 60 270 80 330 150 400 70' fill='none' stroke='%2310b981' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/cover no-repeat,
    #f8fafc;
}
.list-item { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.list-item:last-child { border-bottom: 0; }
.section { padding: 82px 0; }
.section-alt { background: var(--bg); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -.04em; margin: 0 0 14px; }
.section-head p { color: #475569; font-size: 18px; line-height: 1.7; }
.grid-4, .grid-3 { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card, .plan-card, .testimonial, .info-card {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 10px 30px rgba(15,23,42,.04);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--soft); color: var(--teal); font-size: 22px; font-weight: 900;
}
.feature-card h3, .info-card h3, .plan-card h3 { margin: 0 0 10px; font-size: 22px; }
.feature-card p, .info-card p, .plan-card p, .testimonial p { color: #475569; line-height: 1.7; }
.plan-card { position: relative; }
.plan-badge {
  position: absolute; top: 18px; right: 18px; background: var(--soft); color: #047857; font-weight: 800;
  padding: 8px 12px; border-radius: 999px; font-size: 13px;
}
.price { font-size: 46px; font-weight: 900; letter-spacing: -.04em; margin: 18px 0 6px; }
.price small { font-size: 16px; color: var(--muted); }
.plan-list { margin: 18px 0 26px; padding: 0; list-style: none; }
.plan-list li { padding: 10px 0; border-bottom: 1px solid var(--line); color: #334155; }
.plan-list li::before { content: "✓"; color: var(--teal); margin-right: 10px; font-weight: 900; }
.plan-card.highlight { border: 2px solid rgba(16,185,129,.7); transform: translateY(-8px); }
.testimonial footer { margin-top: 20px; color: var(--muted); font-size: 14px; }
.cta {
  padding: 82px 0; background: linear-gradient(135deg, var(--navy), #08101d); color: white;
}
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; margin: 0 0 14px; }
.site-footer { background: #08101d; color: white; padding: 26px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.1fr .8fr .8fr .8fr; gap: 24px; padding: 26px 0 18px; }
.footer-col h4 { margin: 0 0 14px; font-size: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; color: rgba(255,255,255,.6); font-size: 14px; }
.page-hero { padding: 72px 0 48px; background: linear-gradient(180deg, #fff, #f8fafc); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 34px; align-items: center; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
label { display: block; font-weight: 700; margin-bottom: 8px; }
.input, textarea {
  width: 100%; border-radius: 14px; border: 1px solid #cbd5e1; padding: 14px 16px; font: inherit; color: var(--text);
  outline: none; transition: .2s ease; background: white;
}
textarea { min-height: 130px; resize: vertical; }
.input:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(16,185,129,.1); }
.form-row { margin-bottom: 16px; }
.notice { padding: 12px 14px; border-radius: 14px; font-weight: 600; margin-top: 14px; display: none; }
.notice.success { display: block; background: var(--soft); color: #047857; }
.notice.error { display: block; background: #fef2f2; color: #b91c1c; }
.table-like { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.table-row { display: grid; grid-template-columns: 1fr 1fr 1.1fr; }
.table-row > div { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.table-row.header { background: #f8fafc; font-weight: 800; }
.table-row:last-child > div { border-bottom: 0; }
@media (max-width: 980px) {
  .hero-grid, .page-hero-grid, .cta-box, .footer-top, .contact-box, .info-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .dashboard-grid, .two-panels { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 78px; left: 16px; right: 16px; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .nav.open { display: flex; }
  .nav-actions .btn-secondary { display: none; }
  .menu-toggle {
    display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 14px;
    border: 1px solid var(--line); background: white; font-size: 22px;
  }
  .highlight { transform: none; }
  .table-row { grid-template-columns: 1fr; }
}


.hero-premium{
  position:relative;
  overflow:hidden;
  padding-top:40px;
  padding-bottom:90px;
}

.premium-grid{
  align-items:center;
  gap:56px;
}

.hero-copy{
  position:relative;
  z-index:2;
}

.badge-premium{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(16,185,129,.10);
  border:1px solid rgba(16,185,129,.18);
  font-weight:600;
  color:#0f172a;
  backdrop-filter:blur(8px);
}

.badge-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#10b981,#84cc16);
  box-shadow:0 0 0 6px rgba(16,185,129,.12);
}

.lead-premium{
  max-width:640px;
  font-size:1.08rem;
}

.hero-bg-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(50px);
  opacity:.45;
  pointer-events:none;
}

.hero-orb-1{
  width:320px;
  height:320px;
  background:rgba(16,185,129,.22);
  top:-60px;
  right:8%;
}

.hero-orb-2{
  width:260px;
  height:260px;
  background:rgba(132,204,22,.18);
  bottom:20px;
  left:4%;
}

.mini-points-premium{
  margin-top:18px;
  gap:18px;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}

.trust-item{
  padding:16px 18px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(8px);
  border-radius:18px;
  box-shadow:0 15px 40px rgba(15,23,42,.05);
}

.trust-item strong{
  display:block;
  font-size:1.1rem;
  margin-bottom:4px;
  color:#0f172a;
}

.trust-item span{
  color:#64748b;
  font-size:.92rem;
  line-height:1.5;
}

.hero-visual{
  position:relative;
}

.floating-chip{
  position:absolute;
  z-index:3;
  padding:12px 16px;
  border-radius:16px;
  font-weight:600;
  font-size:.92rem;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  backdrop-filter:blur(10px);
}

.chip-top{
  top:-14px;
  right:24px;
}

.chip-bottom{
  bottom:-14px;
  left:18px;
}

.mockup-card-premium{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:
    0 30px 60px rgba(2, 6, 23, .16),
    inset 0 1px 0 rgba(255,255,255,.4);
  background:linear-gradient(180deg,#f8fafc 0%,#eef6f3 100%);
}

.premium-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 22px;
  background:linear-gradient(135deg,#0f172a 0%,#111827 65%,#0b1220 100%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.dashboard-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-icon-mini{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,#10b981,#84cc16);
  box-shadow:0 10px 24px rgba(16,185,129,.30);
}

.dashboard-brand small{
  display:block;
  color:rgba(255,255,255,.64);
  font-size:.78rem;
  margin-top:2px;
}

.top-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  font-size:.85rem;
}

.dashboard-premium-layout{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  padding:18px;
}

.dashboard-sidebar{
  border-radius:24px;
  padding:20px 16px;
  background:linear-gradient(180deg,#0f172a 0%,#111827 100%);
  color:rgba(255,255,255,.72);
}

.sidebar-title{
  color:#fff;
  font-weight:700;
  margin-bottom:14px;
  font-size:.95rem;
}

.dashboard-sidebar ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:0;
  margin:0;
}

.dashboard-sidebar li{
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  transition:.25s ease;
}

.dashboard-sidebar li.active,
.dashboard-sidebar li:hover{
  background:linear-gradient(135deg,rgba(16,185,129,.22),rgba(132,204,22,.18));
  color:#fff;
}

.dashboard-content{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.metrics-premium{
  gap:14px;
}

.glass-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.07);
  box-shadow:0 14px 34px rgba(15,23,42,.05);
  backdrop-filter:blur(10px);
}

.glass-card span{
  display:block;
  color:#64748b;
  font-size:.92rem;
  margin-bottom:8px;
}

.glass-card strong{
  display:block;
  font-size:2rem;
  color:#0f172a;
  line-height:1.1;
}

.glass-card small{
  display:block;
  margin-top:6px;
  color:#10b981;
  font-weight:600;
}

.premium-panels{
  gap:16px;
}

.white-card-premium{
  border-radius:24px;
  border:1px solid rgba(15,23,42,.06);
  background:rgba(255,255,255,.86);
  box-shadow:0 16px 36px rgba(15,23,42,.05);
  backdrop-filter:blur(8px);
}

.card-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.card-head span{
  font-size:.85rem;
  color:#64748b;
}

.chart-premium{
  height:190px;
  display:flex;
  align-items:flex-end;
  gap:12px;
}

.chart-premium::before,
.chart-premium::after{
  display:none !important;
}

.chart-premium span{
  flex:1;
  border-radius:16px 16px 6px 6px;
  background:linear-gradient(180deg,#86efac 0%,#10b981 55%,#059669 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
}

.dashboard-bottom-note{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.dashboard-bottom-note span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  color:#475569;
  font-size:.9rem;
}

.section-brand-strip{
  padding-top:0;
}

.brand-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:-20px;
}

.brand-strip-item{
  padding:18px 20px;
  border-radius:18px;
  text-align:center;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 14px 30px rgba(15,23,42,.05);
  font-weight:600;
  color:#334155;
}

.section-head-premium{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}

.section-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:#10b981;
  font-size:.88rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.feature-card-premium{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 18px 36px rgba(15,23,42,.05);
}

.feature-card-premium a{
  display:inline-block;
  margin-top:14px;
  color:#10b981;
  font-weight:700;
}

.feature-card-premium:hover{
  transform:translateY(-8px);
}

.section-showcase{
  position:relative;
}

.showcase-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.showcase-copy p{
  margin:14px 0 18px;
}

.premium-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.premium-list li{
  padding:14px 16px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 12px 28px rgba(15,23,42,.04);
}

.premium-list li::before{
  content:"✔";
  color:#10b981;
  font-weight:800;
  margin-right:10px;
}

.showcase-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.mini-showcase-card{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 18px 36px rgba(15,23,42,.05);
}

.mini-label{
  display:inline-block;
  margin-bottom:10px;
  color:#10b981;
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.plan-card-premium{
  position:relative;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 18px 36px rgba(15,23,42,.05);
}

.plan-card-premium.highlight{
  transform:translateY(-10px);
  box-shadow:0 28px 60px rgba(16,185,129,.14);
}

.testimonials-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
}

.testimonial-premium{
  position:relative;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(135deg,#0f172a 0%,#111827 100%);
  color:#fff;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(15,23,42,.16);
}

.quote-mark{
  position:absolute;
  top:14px;
  right:24px;
  font-size:5rem;
  line-height:1;
  color:rgba(255,255,255,.08);
  font-weight:800;
}

.testimonial-premium p{
  color:rgba(255,255,255,.78);
  margin:14px 0 22px;
  max-width:620px;
}

.testimonial-premium footer{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.testimonial-premium footer span{
  color:rgba(255,255,255,.68);
}

.testimonial-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.info-card-premium{
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 18px 36px rgba(15,23,42,.05);
}

.cta-premium{
  padding-top:10px;
}

.cta-box-premium{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.20), transparent 28%),
    linear-gradient(135deg,#0f172a 0%,#111827 60%,#0b1220 100%);
  box-shadow:0 24px 60px rgba(15,23,42,.18);
}

.kicker-light{
  color:#86efac;
}

.btn-light{
  background:#fff;
  color:#0f172a;
  border-color:#fff;
}

@media (max-width: 1100px){
  .trust-row,
  .brand-strip,
  .testimonials-layout,
  .showcase-grid,
  .dashboard-premium-layout{
    grid-template-columns:1fr;
  }

  .chip-top,
  .chip-bottom{
    position:static;
    display:inline-flex;
    margin-bottom:12px;
  }

  .hero-visual{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
}

@media (max-width: 768px){
  .trust-row{
    grid-template-columns:1fr;
  }

  .brand-strip{
    gap:12px;
  }

  .brand-strip-item{
    text-align:left;
  }

  .plan-card-premium.highlight{
    transform:none;
  }

  .testimonial-premium,
  .mini-showcase-card,
  .trust-item{
    border-radius:22px;
  }
}

/* =========================
   HOME PREMIUM - CORREÇÕES
========================= */

.hero-premium{
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 90px;
}

.premium-grid{
  align-items: center;
  gap: 56px;
}

.hero-copy{
  position: relative;
  z-index: 2;
}

.badge-premium{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16,185,129,.10);
  border: 1px solid rgba(16,185,129,.18);
  font-weight: 700;
  color: #0f172a;
  backdrop-filter: blur(8px);
}

.badge-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg,#10b981,#84cc16);
  box-shadow: 0 0 0 6px rgba(16,185,129,.12);
}

.lead-premium{
  max-width: 640px;
  font-size: 1.08rem;
}

.hero-bg-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .45;
  pointer-events: none;
}

.hero-orb-1{
  width: 320px;
  height: 320px;
  background: rgba(16,185,129,.22);
  top: -60px;
  right: 8%;
}

.hero-orb-2{
  width: 260px;
  height: 260px;
  background: rgba(132,204,22,.18);
  bottom: 20px;
  left: 4%;
}

.mini-points-premium{
  margin-top: 18px;
  gap: 18px;
}

.trust-row{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust-item{
  padding: 16px 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(15,23,42,.05);
}

.trust-item strong{
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #0f172a;
}

.trust-item span{
  display: block;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.5;
}

.hero-visual{
  position: relative;
}

.floating-chip{
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 600;
  font-size: .92rem;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
}

.chip-top{
  top: -14px;
  right: 24px;
}

.chip-bottom{
  bottom: -14px;
  left: 18px;
}

.mockup-card-premium{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow:
    0 30px 60px rgba(2, 6, 23, .16),
    inset 0 1px 0 rgba(255,255,255,.4);
  background: linear-gradient(180deg,#f8fafc 0%,#eef6f3 100%);
  padding: 0; /* importante */
}

.mockup-card-premium .dashboard{
  background: transparent; /* remove o fundo antigo */
  padding: 0; /* remove padding antigo do dashboard base */
  border-radius: 0;
  color: inherit;
}

.premium-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  background: linear-gradient(135deg,#0f172a 0%,#111827 65%,#0b1220 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 0; /* corrige conflito com .dashboard-top */
}

.dashboard-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon-mini{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg,#10b981,#84cc16);
  box-shadow: 0 10px 24px rgba(16,185,129,.30);
}

.dashboard-brand small{
  display: block;
  color: rgba(255,255,255,.64);
  font-size: .78rem;
  margin-top: 2px;
}

.top-status{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: .85rem;
}

.dashboard-premium-layout{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
}

.dashboard-sidebar{
  border-radius: 24px;
  padding: 20px 16px;
  background: linear-gradient(180deg,#0f172a 0%,#111827 100%);
  color: rgba(255,255,255,.72);
}

.sidebar-title{
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: .95rem;
}

.dashboard-sidebar ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.dashboard-sidebar li{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  transition: .25s ease;
}

.dashboard-sidebar li.active,
.dashboard-sidebar li:hover{
  background: linear-gradient(135deg,rgba(16,185,129,.22),rgba(132,204,22,.18));
  color: #fff;
}

.dashboard-content{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metrics-premium{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.metrics-premium .metric{
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
}

.glass-card{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.07);
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
  backdrop-filter: blur(10px);
  padding: 18px;
}

.glass-card span{
  display: block;
  color: #64748b;
  font-size: .92rem;
  margin-bottom: 8px;
}

.glass-card strong{
  display: block;
  font-size: 2rem;
  color: #0f172a;
  line-height: 1.1;
  margin-top: 0; /* corrige conflito com .metric strong */
}

.glass-card small{
  display: block;
  margin-top: 6px;
  color: #10b981;
  font-weight: 600;
}

.premium-panels{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  margin-top: 0; /* corrige conflito com .two-panels */
}

.white-card-premium{
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.06);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 36px rgba(15,23,42,.05);
  backdrop-filter: blur(8px);
}

.card-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-head span{
  font-size: .85rem;
  color: #64748b;
}

.chart-premium{
  height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  background: none !important; /* remove o gráfico antigo */
  border-radius: 0;
}

.chart-premium span{
  flex: 1;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg,#86efac 0%,#10b981 55%,#059669 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

.dashboard-bottom-note{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-bottom-note span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  color: #475569;
  font-size: .9rem;
}

.section-brand-strip{
  padding-top: 0;
}

.brand-strip{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: -20px;
}

.brand-strip-item{
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 14px 30px rgba(15,23,42,.05);
  font-weight: 600;
  color: #334155;
}

.section-head-premium{
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker{
  display: inline-block;
  margin-bottom: 12px;
  color: #10b981;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-card-premium{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 36px rgba(15,23,42,.05);
}

.feature-card-premium a{
  display: inline-block;
  margin-top: 14px;
  color: #10b981;
  font-weight: 700;
}

.feature-card-premium:hover{
  transform: translateY(-8px);
}

.section-showcase{
  position: relative;
}

.showcase-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.showcase-copy p{
  margin: 14px 0 18px;
}

.premium-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-list li{
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 12px 28px rgba(15,23,42,.04);
}

.premium-list li::before{
  content: "✔";
  color: #10b981;
  font-weight: 800;
  margin-right: 10px;
}

.showcase-stack{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-showcase-card{
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 36px rgba(15,23,42,.05);
}

.mini-label{
  display: inline-block;
  margin-bottom: 10px;
  color: #10b981;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plan-card-premium{
  position: relative;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 36px rgba(15,23,42,.05);
}

.plan-card-premium.highlight{
  border: 2px solid rgba(16,185,129,.7);
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(16,185,129,.14);
}

.testimonials-layout{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}

.testimonial-premium{
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg,#0f172a 0%,#111827 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.quote-mark{
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,.08);
  font-weight: 800;
}

.testimonial-premium p{
  color: rgba(255,255,255,.78);
  margin: 14px 0 22px;
  max-width: 620px;
}

.testimonial-premium footer{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-premium footer span{
  color: rgba(255,255,255,.68);
}

.testimonial-side{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card-premium{
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 36px rgba(15,23,42,.05);
}

.cta-premium{
  padding-top: 10px;
}

.cta-box-premium{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.20), transparent 28%),
    linear-gradient(135deg,#0f172a 0%,#111827 60%,#0b1220 100%);
  box-shadow: 0 24px 60px rgba(15,23,42,.18);
}

.kicker-light{
  color: #86efac;
}

.btn-light{
  background: #fff;
  color: #0f172a;
  border-color: #fff;
}

@media (max-width: 1100px){
  .trust-row,
  .brand-strip,
  .testimonials-layout,
  .showcase-grid,
  .dashboard-premium-layout,
  .premium-panels,
  .metrics-premium{
    grid-template-columns: 1fr;
  }

  .chip-top,
  .chip-bottom{
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .hero-visual{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px){
  .trust-row{
    grid-template-columns: 1fr;
  }

  .brand-strip{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-strip-item{
    text-align: left;
  }

  .plan-card-premium.highlight{
    transform: none;
  }

  .testimonial-premium,
  .mini-showcase-card,
  .trust-item{
    border-radius: 22px;
  }
}

/* HERO MAIS LIMPO E PREMIUM */
.hero-clean{
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at right top, rgba(16,185,129,.10), transparent 30%),
    radial-gradient(circle at left bottom, rgba(132,204,22,.08), transparent 24%),
    linear-gradient(180deg, #fff, #f8fafc 100%);
}

.hero-grid-clean{
  grid-template-columns: 1fr 1.02fr;
  gap: 56px;
  align-items: center;
}

.hero-copy-clean{
  max-width: 580px;
}

.badge-clean{
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.hero-clean h1{
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 18px 0 18px;
  max-width: 680px;
}

.lead-clean{
  font-size: 20px;
  line-height: 1.75;
  color: #475569;
  max-width: 560px;
}

.hero-benefits{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.hero-benefits span{
  position: relative;
  padding-left: 18px;
}

.hero-benefits span::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 7px;
}

.hero-visual-clean{
  position: relative;
}

.mockup-clean{
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 30px 70px rgba(15,23,42,.10);
  background: #fff;
}

.mockup-top-clean{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0f172a, #0b1220);
  color: #fff;
}

.mockup-brand-clean{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mini{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  box-shadow: 0 10px 24px rgba(16,185,129,.28);
}

.mockup-brand-clean small{
  display: block;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  margin-top: 2px;
}

.mockup-status{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  font-size: 13px;
  font-weight: 700;
}

.mockup-body-clean{
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.mockup-sidebar{
  background: linear-gradient(180deg, #0f172a, #111827);
  border-radius: 22px;
  padding: 18px 14px;
  color: rgba(255,255,255,.72);
}

.mockup-menu-title{
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.mockup-sidebar ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mockup-sidebar li{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  font-weight: 500;
}

.mockup-sidebar li.active{
  background: linear-gradient(135deg, rgba(16,185,129,.26), rgba(132,204,22,.18));
  color: #fff;
}

.mockup-main{
  display: grid;
  gap: 16px;
}

.mockup-stats{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.mock-stat{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 20px;
  padding: 18px;
}

.mock-stat span{
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 10px;
}

.mock-stat strong{
  display: block;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
  color: #0f172a;
}

.mockup-panels{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

.mock-panel{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 22px;
  padding: 18px;
}

.panel-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.panel-head strong{
  font-size: 18px;
  line-height: 1.2;
}

.panel-head span{
  color: #64748b;
  font-size: 14px;
}

.bars-clean{
  height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.bars-clean span{
  flex: 1;
  border-radius: 14px 14px 5px 5px;
  background: linear-gradient(180deg, #86efac, var(--teal));
}

.activity-clean{
  display: grid;
  gap: 14px;
}

.activity-clean div{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.activity-clean div:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.activity-clean span{
  color: #334155;
  line-height: 1.5;
}

.activity-clean strong{
  color: #0f172a;
  white-space: nowrap;
}

@media (max-width: 1100px){
  .hero-grid-clean{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy-clean{
    max-width: 100%;
  }
}

@media (max-width: 820px){
  .mockup-body-clean,
  .mockup-panels,
  .mockup-stats{
    grid-template-columns: 1fr;
  }

  .hero-clean h1{
    font-size: clamp(38px, 11vw, 56px);
  }

  .lead-clean{
    font-size: 18px;
  }
}

/* AUTH PAGES */
.auth-page{
  padding: 80px 0;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.10), transparent 28%),
    radial-gradient(circle at left bottom, rgba(132,204,22,.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.auth-container{
  display: flex;
  justify-content: center;
}

.auth-card{
  width: 100%;
  max-width: 560px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
}

.auth-card-wide{
  max-width: 760px;
}

.auth-header{
  margin-bottom: 24px;
}

.auth-header h1{
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.auth-header p{
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
}

.auth-form{
  margin-top: 16px;
}

.auth-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.auth-full{
  grid-column: 1 / -1;
}

.auth-extra{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 0 24px;
}

.auth-extra a{
  color: var(--teal);
  font-weight: 600;
}

.auth-btn{
  width: 100%;
  min-height: 54px;
}

.auth-footer{
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #64748b;
}

.auth-footer a{
  color: var(--teal);
  font-weight: 700;
}

.remember-me{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #334155;
}

.remember-me input{
  width: 16px;
  height: 16px;
}

@media (max-width: 768px){
  .auth-grid{
    grid-template-columns: 1fr;
  }

  .auth-card{
    padding: 24px;
    border-radius: 22px;
  }

  .auth-extra{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* DASHBOARD LAYOUT */
.dashboard-body{
  background: #f8fafc;
}

.dash-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.dash-header-wrap{
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dash-logo{
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-logo-mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16,185,129,.22);
}

.dash-logo-text strong{
  display: block;
  font-size: 20px;
  line-height: 1;
}

.dash-logo-text small{
  color: var(--muted);
}

.dash-nav{
  display: flex;
  align-items: center;
  gap: 20px;
}

.dash-nav a{
  font-weight: 700;
  color: #475569;
}

.dash-nav a.active,
.dash-nav a:hover{
  color: var(--teal);
}

.dash-user{
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-user-meta{
  text-align: right;
}

.dash-user-meta strong{
  display: block;
  line-height: 1.1;
}

.dash-user-meta small{
  color: var(--muted);
}

.btn-sm{
  padding: 10px 14px;
  font-size: 14px;
}

.dash-footer{
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

/* DASH CARDS */
.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card{
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.stat-card span{
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.stat-card strong{
  display: block;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.04em;
}

.toolbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.form-inline{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.input-sm{
  min-width: 180px;
}

.card{
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.actions-inline{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.link-action{
  color: var(--teal);
  font-weight: 700;
}

.link-action:hover{
  text-decoration: underline;
}

@media (max-width: 980px){
  .dash-header-wrap{
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .dash-nav{
    flex-wrap: wrap;
  }

  .dash-user{
    width: 100%;
    justify-content: space-between;
  }

  .stat-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px){
  .stat-grid{
    grid-template-columns: 1fr;
  }
}

/* AUTH PREMIUM */
.auth-shell{
  min-height: calc(100vh - 120px);
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.08), transparent 25%),
    radial-gradient(circle at left bottom, rgba(132,204,22,.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 36px 0 64px;
}

.auth-layout{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 28px;
  align-items: stretch;
}

.auth-layout-register{
  grid-template-columns: .95fr 1.05fr;
}

.auth-side{
  min-width: 0;
}

.auth-side-brand{
  display: flex;
}

.auth-brand-box{
  width: 100%;
  border-radius: 30px;
  padding: 38px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 65%, #0b1220 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
  position: relative;
  overflow: hidden;
}

.auth-brand-box::after{
  content: "";
  position: absolute;
  right: -70px;
  top: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(16,185,129,.18);
  filter: blur(18px);
}

.auth-logo{
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.auth-brand-box .badge{
  position: relative;
  z-index: 1;
}

.auth-brand-box h1{
  position: relative;
  z-index: 1;
  margin: 20px 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.045em;
  max-width: 680px;
}

.auth-brand-box p{
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.75;
}

.auth-points{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.auth-point{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.auth-side-form{
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-panel{
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
}

.auth-panel-wide{
  max-width: 720px;
}

.auth-panel-head{
  margin-bottom: 20px;
}

.auth-panel-head h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.auth-panel-head p{
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.auth-form-modern{
  margin-top: 16px;
}

.auth-grid-modern{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.auth-form-actions{
  margin-top: 22px;
}

.auth-submit-btn{
  width: 100%;
  min-height: 54px;
  font-size: 16px;
}

.auth-switch{
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #64748b;
}

.auth-switch a{
  color: var(--teal);
  font-weight: 700;
}

.auth-panel .notice{
  display: block;
  margin-bottom: 16px;
}

@media (max-width: 980px){
  .auth-layout,
  .auth-layout-register{
    grid-template-columns: 1fr;
  }

  .auth-brand-box,
  .auth-panel{
    border-radius: 24px;
  }
}

@media (max-width: 680px){
  .auth-grid-modern{
    grid-template-columns: 1fr;
  }

  .auth-brand-box,
  .auth-panel{
    padding: 24px;
  }

  .auth-brand-box h1{
    font-size: clamp(30px, 9vw, 44px);
  }

  .auth-brand-box p{
    font-size: 16px;
  }
}