:root {
  --bg:      #0F1012;
  --bg-1:    #161719;
  --bg-2:    #1E2022;
  --line:    #272A2E;
  --accent:  #D4A832;
  --accent-d:#A87E20;
  --accent-a: rgba(212,168,50,.12);
  --text:    #ECEDEF;
  --text-2:  #888C96;
  --text-3:  #555860;
  --font-h:  'Montserrat', sans-serif;
  --font-b:  'Inter', sans-serif;
  --font-m:  'DM Mono', monospace;
  --max:     1200px;
  --r:       10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── EYEBROW ─── */
.eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, transform .12s;
  border: none;
  text-decoration: none;
}
.btn:active { transform: scale(.97); }
.btn-wa {
  background: var(--accent);
  color: #0F1012;
}
.btn-wa:hover { background: var(--accent-d); }
.btn-call {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-call:hover { border-color: var(--text-3); background: var(--bg-1); }
.btn-tg {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-tg:hover { border-color: #2AABEE; color: #2AABEE; background: rgba(42,171,238,.07); }

/* ─── HERO ─── */
.hero {
  padding-top: 100px;
  padding-bottom: 48px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left { padding-block: 0; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-a);
  border: 1px solid rgba(212,168,50,.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 28px;
}
.hero-tag span { font-family: var(--font-m); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #7EC8E3;
  letter-spacing: .01em;
  margin-bottom: 20px;
  text-decoration: none;
  transition: opacity .15s;
}
.hero-phone::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: #7EC8E3;
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-phone:hover { opacity: .8; }

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 16px;
}


.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--font-m);
}
.pill svg { flex-shrink: 0; }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(10%) contrast(1.05);
}
/* subtle vignette bottom */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,16,18,.55) 100%);
  pointer-events: none;
}
/* amber border accent */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(212,168,50,.18);
  z-index: 2;
  pointer-events: none;
}

/* ─── SECTION SHARED ─── */
section { padding-block: 80px; }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ─── HOW IT WORKS — 4 STEPS (horizontal) ─── */
.how { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--text-2);
}
.step h3 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* arrow connector */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--bg-1);
  border: 1.5px solid var(--accent);
  border-width: 1.5px 1.5px 0 0;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

/* ─── SERVICES ─── */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.svc-card {
  background: var(--bg-1);
  padding: 32px 28px;
  transition: background .2s;
  position: relative;
}
.svc-card:hover { background: var(--bg-2); }
.svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-card h3 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}
.svc-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ─── TRUST ─── */
.trust { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trust-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trust-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-2);
  align-items: flex-start;
}
.trust-item-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item h4 {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

.process-line {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.proc-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}
.proc-step:last-child { padding-bottom: 0; }
.proc-step:last-child .proc-line { display: none; }
.proc-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.proc-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-a);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
}
.proc-line {
  width: 1px;
  flex: 1;
  min-height: 20px;
  background: var(--line);
  margin-top: 4px;
}
.proc-text h4 {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  padding-top: 4px;
}
.proc-text p {
  font-size: 13.5px;
  color: var(--text-2);
}

/* ─── MASTER ─── */
.master { background: var(--bg); }
.master-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.master-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%);
}
.master-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(212,168,50,.2);
  pointer-events: none;
}
.master-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}
.master-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.2);
}
.master-badge span {
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--font-m);
}

.master-right .section-title { margin-bottom: 16px; }
.master-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.value-check {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── GEO ─── */
.geo {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.geo-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.geo-left { flex: 1; }
.geo-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.geo-zone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  font-size: 15px;
}
.geo-zone svg { color: var(--accent); flex-shrink: 0; }

/* ─── IMMIGRANTS ─── */
.immigrants { background: var(--bg); }
.imm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.imm-badge-block {
  background: var(--accent-a);
  border: 1px solid rgba(212,168,50,.2);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
}
.imm-flag { font-size: 48px; margin-bottom: 16px; }
.imm-badge-title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.imm-badge-sub {
  font-size: 14px;
  color: var(--text-2);
}

/* ─── REVIEWS ─── */
.reviews { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 8px;
}
.review-card {
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
  align-items: flex-start;
  justify-content: center;
}
.review-placeholder {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font-m);
  text-align: center;
  width: 100%;
}
.review-placeholder .rp-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

/* ─── BLOG ─── */
.blog { background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}
.blog-card:hover { border-color: var(--accent); }
.blog-tag {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card-title {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.blog-card-text {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}
.blog-card-footer {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.blog-date {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text-3);
}
a.blog-card { color: inherit; }
.blog-all { margin-top: 36px; text-align: center; }
.blog-all a { color: var(--accent); font-weight: 600; font-size: 15px; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--bg);
  text-align: center;
  padding-block: 120px;
}
.final-cta .section-title { margin-bottom: 16px; }
.final-cta .section-sub { margin-inline: auto; text-align: center; }
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.phone-link {
  font-family: var(--font-m);
  font-size: 14px;
  color: var(--text-2);
  margin-top: 20px;
}
.phone-link a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

/* ─── FLOATING BUTTONS ─── */
@keyframes float-pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 8px rgba(37,211,102,0); }
}
@keyframes float-pulse-tg {
  0%, 100% { box-shadow: 0 4px 16px rgba(42,171,238,.45), 0 0 0 0 rgba(42,171,238,.3); }
  50% { box-shadow: 0 4px 16px rgba(42,171,238,.45), 0 0 0 8px rgba(42,171,238,0); }
}
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.float-wa, .float-tg {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s, box-shadow .18s;
}
.float-wa {
  background: #25D366;
  animation: float-pulse-wa 2.4s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
.float-tg {
  background: #2AABEE;
  animation: float-pulse-tg 2.4s ease-in-out infinite .6s;
}
.float-tg:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 24px rgba(42,171,238,.6);
}
.float-wa svg, .float-tg svg { color: white; }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-tag-dot { animation: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { padding-top: 80px; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }
  .hero-right {
    justify-content: center;
  }
  .hero-photo-wrap {
    max-width: 340px;
    aspect-ratio: 3 / 4;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(2)::after { display: none; }
  .step:nth-child(3) { border-top: 1px solid var(--line); }
  .step:nth-child(4) { border-top: 1px solid var(--line); }
  .step:nth-child(3)::after { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 48px; }
  .master-grid { grid-template-columns: 1fr; gap: 40px; }
  .master-photo { max-width: 300px; }
  .geo-inner { flex-direction: column; gap: 40px; }
  .imm-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding-block: 56px; }
  .hero { padding-bottom: 56px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .step::after { display: none !important; }
  .services-grid { grid-template-columns: 1fr; }
.cta-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; max-width: 340px; margin-inline: auto; }
  .float-wa { bottom: 16px; right: 16px; }
}
