:root{
  --bg:#08111f;
  --bg2:#0d1b2f;
  --panel:rgba(255,255,255,.08);
  --panel-border:rgba(255,255,255,.16);
  --text:#eaf1fb;
  --muted:#b7c4da;
  --primary:#2dd4bf;
  --primary-2:#1fb5a2;
  --white:#ffffff;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:22px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(45,212,191,.14), transparent 30%),
    radial-gradient(circle at right center, rgba(59,130,246,.12), transparent 28%),
    linear-gradient(180deg, #07101c 0%, #0a1424 45%, #0d1727 100%);
  color:var(--text);
  min-height:100%;
}

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

.site-shell{
  min-height:100vh;
}

.container{
  width:min(1200px, 92%);
  margin:0 auto;
}

.narrow{
  width:min(760px, 92%);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(5,10,18,.65);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-row{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--primary), #4f46e5);
  color:#041019;
  font-weight:900;
}

.brand-text{
  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.nav-links a{
  color:var(--muted);
  font-weight:600;
}

.nav-links a:hover{
  color:var(--white);
}

.nav-tools{
  display:flex;
  align-items:center;
  gap:12px;
}

.lang-select{
  background:rgba(255,255,255,.08);
  color:var(--text);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:10px 12px;
}

.btn-nav,
.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  transition:.2s ease;
  border:none;
  cursor:pointer;
}

.btn-nav,
.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#041019;
  box-shadow:var(--shadow);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:var(--white);
}

.hero-section{
  position:relative;
  overflow:hidden;
  padding:84px 0 56px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(45,212,191,.10), rgba(79,70,229,.08)),
    url("https://images.unsplash.com/photo-1639762681485-074b7f938ba0?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  opacity:.16;
  transform:scale(1.03);
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.35fr .85fr;
  gap:28px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:#98f5e7;
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hero-copy h1{
  margin:0 0 16px;
  font-size:clamp(2.2rem, 5vw, 4.4rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:900px;
}

.lead{
  max-width:760px;
  color:var(--muted);
  font-size:1.15rem;
  line-height:1.7;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-panel{
  background:var(--panel);
  border:1px solid var(--panel-border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.hero-panel h3{
  margin-top:0;
  margin-bottom:16px;
  font-size:1.35rem;
}

.feature-list{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}

.feature-list li{
  margin:0 0 14px;
  line-height:1.55;
}

.content-section,
.page-banner{
  padding:60px 0 80px;
}

.cards-2,
.steps-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.info-card,
.step-card,
.form-card{
  overflow:hidden;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.card-image{
  height:220px;
  background-size:cover;
  background-position:center;
}

.card-image-wallet{
  background-image:
    linear-gradient(rgba(6,10,18,.18), rgba(6,10,18,.18)),
    url("https://images.unsplash.com/photo-1518546305927-5a555bb7020d?auto=format&fit=crop&w=1400&q=80");
}

.card-image-process{
  background-image:
    linear-gradient(rgba(6,10,18,.18), rgba(6,10,18,.18)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1400&q=80");
}

.card-body,
.step-card{
  padding:24px;
}

.card-body h2,
.step-card h2,
.page-banner h1{
  margin:0 0 12px;
}

.card-body p,
.step-card p,
.page-banner p{
  color:var(--muted);
  line-height:1.7;
}

.pricing-wrap{
  margin-top:24px;
  overflow:auto;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
}

.pricing-table{
  width:100%;
  border-collapse:collapse;
}

.pricing-table th,
.pricing-table td{
  padding:18px 16px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.pricing-table th{
  background:rgba(255,255,255,.06);
}

.form-card{
  padding:24px;
}

.form-card label{
  display:block;
  margin:14px 0 8px;
  font-weight:600;
}

.form-card input,
.form-card select,
.form-card textarea{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--text);
}

.form-card textarea{
  resize:vertical;
}

.flash-wrap{
  margin-top:16px;
}

.flash{
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:12px;
}

.flash-success{
  background:rgba(45, 212, 191, .15);
  border:1px solid rgba(45, 212, 191, .4);
}

.flash-danger{
  background:rgba(239, 68, 68, .15);
  border:1px solid rgba(239, 68, 68, .4);
}

.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(5,10,18,.55);
}

.footer-row{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
}

@media (max-width: 980px){
  .hero-grid,
  .cards-2,
  .steps-grid{
    grid-template-columns:1fr;
  }

  .nav-row{
    flex-wrap:wrap;
    padding:14px 0;
  }

  .nav-links{
    width:100%;
    order:3;
  }

  .nav-tools{
    margin-left:auto;
  }
}

@media (max-width: 640px){
  .hero-section{
    padding-top:56px;
  }

  .hero-copy h1{
    font-size:2.2rem;
  }

  .btn-nav,
  .btn-primary,
  .btn-secondary{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .footer-row{
    flex-direction:column;
    justify-content:center;
    padding:18px 0;
  }
}
.form-help{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:.92rem;
}

.confirm-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin:18px 0;
}

.files-list{
  display:grid;
  gap:16px;
  margin-top:16px;
}

.file-card{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}

.mt-2{ margin-top:12px; }
.mt-3{ margin-top:18px; }

@media (max-width: 768px){
  .confirm-grid{
    grid-template-columns:1fr;
  }
}
.cta-stack{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
}

.cta-meta{
  color:#98f5e7;
  font-size:.75rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.85;
}

.btn-urgent{
  position:relative;
  overflow:hidden;
}

.btn-urgent::after{
  content:"";
  position:absolute;
  inset:-40%;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.18) 50%, transparent 80%);
  transform:translateX(-140%) rotate(12deg);
  pointer-events:none;
}

.btn-urgent.blink-now{
  box-shadow:0 0 0 0 rgba(45,212,191,.65), 0 0 28px rgba(45,212,191,.35), var(--shadow);
  animation:urgentBlink 1.8s ease;
}

.btn-urgent.blink-now::after{
  animation:urgentSweep 1.8s ease;
}

@keyframes urgentBlink{
  0%{ transform:scale(1); }
  18%{ transform:scale(1.04); }
  36%{ transform:scale(1); }
  54%{ transform:scale(1.035); }
  100%{ transform:scale(1); }
}

@keyframes urgentSweep{
  0%{ transform:translateX(-140%) rotate(12deg); }
  100%{ transform:translateX(140%) rotate(12deg); }
}

.signal-note{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:20px;
  color:var(--muted);
  font-size:.96rem;
}

.signal-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#8af1df;
  box-shadow:0 0 10px rgba(138,241,223,.8);
  animation:signalPulse 2.8s infinite ease-in-out;
}

@keyframes signalPulse{
  0%,100%{ opacity:.55; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.3); }
}

.agency-band{
  padding:54px 0 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.04)),
    radial-gradient(circle at 20% 20%, rgba(45,212,191,.08), transparent 26%),
    radial-gradient(circle at 80% 60%, rgba(79,70,229,.08), transparent 24%);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.agency-header h2{
  margin:0 0 10px;
  font-size:clamp(1.8rem, 3.2vw, 2.6rem);
}

.agency-header p{
  margin:0 0 24px;
  color:var(--muted);
  line-height:1.7;
  max-width:900px;
}

.agency-eyebrow{
  margin-bottom:10px;
}

.agency-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.agency-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  min-height:96px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}

.agency-emblem{
  width:62px;
  height:62px;
  min-width:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(145deg, rgba(45,212,191,.22), rgba(79,70,229,.22)),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.20), transparent 40%);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
  position:relative;
}

.agency-emblem::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
}

.agency-emblem span{
  position:relative;
  z-index:1;
  font-weight:900;
  letter-spacing:.08em;
  color:#dcfff8;
}

.agency-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.agency-copy strong{
  font-size:.95rem;
  line-height:1.3;
}

.agency-copy small{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer-stack{
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:10px;
  padding:22px 0;
}

.legal-small{
  color:var(--muted);
  font-size:.82rem;
  line-height:1.6;
  max-width:1100px;
}

@media (max-width: 1100px){
  .agency-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

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

  .cta-stack{
    width:100%;
  }
}


