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

:root {
  --bg:       #FFFFFF;
  --bg-alt:   #F8F8F8;
  --bg-dark:  #1A1A2E;
  --text:     #111111;
  --text-2:   #444444;
  --muted:    #888888;
  --border:   #E8E8E8;
  --orange:   #F55008;
  --orange-d: #D44006;
  --orange-l: #FFF3EE;
  --radius:   10px;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ── TOPBAR ── */
.topbar { background: #0D2137; color: #fff; font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { color: #5B8DB8; font-size: 12px; }
.topbar-contacts { display: flex; gap: 20px; align-items: center; }
.topbar-phone { font-weight: 700; font-size: 15px; color: #fff; }
.topbar-messenger { display: inline-flex; align-items: center; gap: 5px; color: #5B8DB8; font-size: 12px; font-weight: 600; transition: color .15s; }
.topbar-messenger:hover { color: var(--orange); }

/* ── NAV ── */
nav { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a { padding: 7px 13px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-2); transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { background: var(--bg-alt); color: var(--text); }
.nav-cta { background: var(--orange) !important; color: #fff !important; border-radius: 8px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--orange-d) !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile { display: none; padding: 12px 24px 16px; border-top: 1px solid var(--border); background: #fff; }
.nav-mobile.open { display: flex; flex-direction: column; gap: 2px; }
.nav-mobile a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--text-2); }
.nav-mobile a:hover { background: var(--bg-alt); color: var(--text); }

/* ── HERO ── */
.hero { padding: 64px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--orange-l); color: var(--orange); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: block; }
.hero h1 { font-size: clamp(34px, 4vw, 56px); font-weight: 800; line-height: 1.06; letter-spacing: -2px; color: var(--text); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 15px; color: var(--muted); max-width: 440px; line-height: 1.75; margin-bottom: 28px; }
.hero-bullets { display: flex; flex-direction: column; gap: 10px; }
.hero-bullet { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); font-weight: 500; }
.hero-bullet::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--orange-l); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F55008'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-size: 13px; background-position: center; background-repeat: no-repeat; }

.hero-form { background: var(--bg); border: 1.5px solid var(--border); border-radius: 16px; padding: 30px; box-shadow: 0 4px 32px rgba(0,0,0,.07); }
.hero-form h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; letter-spacing: -.3px; }
.hero-form .form-sub { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.hero-form .field { margin-bottom: 10px; }
.hero-form label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 4px; }
.hero-form input, .hero-form select { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text); background: var(--bg); outline: none; transition: border-color .15s; font-family: 'Poppins', sans-serif; }
.hero-form input:focus, .hero-form select:focus { border-color: var(--orange); }
.hero-form .btn-submit { width: 100%; padding: 13px; background: var(--orange); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 4px; transition: background .15s; font-family: 'Poppins', sans-serif; }
.hero-form .btn-submit:hover { background: var(--orange-d); }
.hero-form .form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 8px; }
.free-tag { background: #F0FDF4; color: #16A34A; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 5px; }

/* ── STATS BAR ── */
.stats-bar { background: #0D2137; padding: 28px 0; }
.stats-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 11px; color: #4A6A87; margin-top: 2px; }

/* ── SECTIONS ── */
section { padding: 80px 0; }
section.alt { background: var(--bg-alt); }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.section-title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; color: var(--text); margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 520px; margin-bottom: 44px; line-height: 1.7; }

/* ── COUNTRY CARDS ── */
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.country-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 18px; transition: border-color .2s, box-shadow .2s, transform .2s; cursor: pointer; }
.country-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(245,80,8,.1); transform: translateY(-2px); }
.country-flag { font-size: 30px; margin-bottom: 10px; }
.country-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.country-type { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.country-price { font-size: 13px; font-weight: 700; color: var(--orange); }
.country-price span { font-size: 10px; font-weight: 400; color: var(--muted); }
.more-countries { text-align: center; margin-top: 28px; }
.btn-outline-orange { display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px; border-radius: 9px; border: 2px solid var(--orange); color: var(--orange); font-size: 14px; font-weight: 700; transition: all .15s; }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { position: relative; }
.step-card::after { content: '→'; position: absolute; right: -14px; top: 20px; font-size: 18px; color: #ddd; }
.step-card:last-child::after { display: none; }
.step-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange-l); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.step-num { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 20px; }
.team-card { text-align: center; }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--orange-l); border: 3px solid var(--orange); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; color: var(--orange); }
.team-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--muted); }
.team-exp { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 3px; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 22px; transition: border-color .2s; }
.review-card:hover { border-color: var(--orange); }
.review-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-ava { width: 34px; height: 34px; border-radius: 50%; background: var(--orange-l); border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: var(--orange); flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 700; }
.review-dest { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ── CTA ── */
.cta-section { background: var(--orange); padding: 72px 0; text-align: center; }
.cta-section h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 10px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.btn-white-fill { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--orange); padding: 13px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: transform .15s, box-shadow .15s; }
.btn-white-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ── FOOTER ── */
footer { background: #0D2137; color: #fff; padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid #1A3550; }
.footer-brand p { font-size: 13px; color: #5B8DB8; margin-top: 12px; line-height: 1.7; max-width: 220px; }
.footer-phone { font-size: 17px; font-weight: 700; color: #fff; margin-top: 12px; }
.footer-messengers { display: flex; gap: 12px; margin-top: 10px; }
.footer-msg { font-size: 12px; font-weight: 600; color: #5B8DB8; transition: color .15s; }
.footer-msg:hover { color: var(--orange); }
.footer-col h4 { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: #5B8DB8; transition: color .15s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12px; color: #3A5A78; }

/* ── INNER PAGES ── */
.page-hero { padding: 56px 0 44px; border-bottom: 1px solid var(--border); }
.page-hero .breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero h1 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -1.5px; color: var(--text); margin-bottom: 8px; }
.page-hero p { font-size: 15px; color: var(--muted); }

.service-layout { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.service-meta { position: sticky; top: 80px; }
.service-meta h2 { font-size: 26px; font-weight: 800; letter-spacing: -.8px; margin-bottom: 10px; }
.service-meta p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.service-block { padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }

.list-clean { list-style: none; }
.list-clean li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-2); }
.list-clean li:last-child { border-bottom: none; }
.list-clean li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--orange-l); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F55008'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }

.info-block { border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; }
.info-block.warn { background: #FFFBEB; border: 1.5px solid #FDE68A; }
.info-block.ok { background: #F0FDF4; border: 1.5px solid #BBF7D0; }
.info-block.neutral { background: var(--bg-alt); border: 1.5px solid var(--border); }
.info-block strong { font-size: 13px; font-weight: 700; display: block; margin-bottom: 4px; }
.info-block p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.visa-types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.visa-type { border: 1.5px solid var(--border); border-radius: 10px; padding: 14px; transition: border-color .2s; }
.visa-type:hover { border-color: var(--orange); }
.visa-code { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.visa-type h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.visa-type p { font-size: 12px; color: var(--muted); line-height: 1.5; }

.validity-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.validity-table th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); text-align: left; padding: 8px 0; border-bottom: 2px solid var(--border); }
.validity-table td { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-2); }
.validity-table td:last-child { font-weight: 700; color: var(--text); }

.process-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; }
.step-row { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.step-row:last-child { border-bottom: none; }
.step-num-lg { font-size: 13px; font-weight: 700; color: var(--orange); width: 28px; flex-shrink: 0; padding-top: 2px; }
.step-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.tag-small { display: inline-block; margin-top: 7px; font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .5px; }

.sidebar-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 12px; }
.sidebar-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.time-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.time-row:last-child { border-bottom: none; }
.time-row .flag { color: var(--text-2); font-weight: 500; }
.time-row .days { color: var(--muted); }
.time-row .days.fast { color: #16A34A; font-weight: 600; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 17px 0; cursor: pointer; font-size: 15px; font-weight: 600; gap: 12px; }
.faq-q:hover { color: var(--orange); }
.faq-icon { font-size: 20px; flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

.contacts-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row-icon { font-size: 20px; flex-shrink: 0; }
.contact-row h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 4px; }
.contact-row a { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-row a:hover { color: var(--orange); }
.contact-row small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.form-wrap { border: 1.5px solid var(--border); border-radius: 14px; padding: 32px; }
.form-wrap h3 { font-size: 19px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 4px; }
.form-wrap .sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 4px; }
.field input, .field select, .field textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text); background: var(--bg); outline: none; transition: border-color .15s; font-family: 'Poppins', sans-serif; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-orange-fill { width: 100%; padding: 13px; background: var(--orange); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif; transition: background .15s; }
.btn-orange-fill:hover { background: var(--orange-d); }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.stat-cell { background: var(--bg); padding: 22px; }
.stat-cell-num { font-size: 34px; font-weight: 800; letter-spacing: -2px; color: var(--orange); line-height: 1; margin-bottom: 3px; }
.stat-cell-label { font-size: 12px; color: var(--muted); }
.values-list { display: flex; flex-direction: column; }
.value-item { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.value-item:last-child { border-bottom: none; }
.value-n { font-size: 12px; font-weight: 700; color: var(--orange); }
.value-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.value-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.pill { display: inline-block; font-size: 12px; font-weight: 600; color: var(--text-2); background: var(--bg-alt); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 9px; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: all .18s; font-family: 'Poppins', sans-serif; text-decoration: none; }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { opacity: .85; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-d); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: #aaa; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form { max-width: 520px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card::after { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; gap: 32px; }
  .service-meta { position: static; }
  .process-layout { grid-template-columns: 1fr; }
  .contacts-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  section { padding: 52px 0; }
  .hero { padding: 44px 0 52px; }
  .steps-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .visa-types { grid-template-columns: 1fr; }
}
