:root {
  --primary: #1E459F;
  --primary-dark: #163571;
  --dark: #12306E;
  --text: #212529;
  --bg: #F4F6F9;
  --white: #FFFFFF;
  --muted: #5c6672;
  --border: #e2e6ea;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1180px;
  --header-h: 74px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--primary-dark); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 88px 0; }

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

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(30, 69, 159, 0.32);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 69, 159, 0.42);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-block { width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-block;
  line-height: 0;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-right { display: flex; align-items: center; gap: 26px; }

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

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  padding: 8px 32px 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(30,69,159,0.8)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}

.lang-select:hover {
  background: #eef2fa;
  border-color: var(--primary);
  color: var(--primary);
}

.lang-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(30, 69, 159, 0.2);
}

.lang-select option {
  background: var(--dark);
  color: var(--white);
  padding: 8px;
  font-family: 'Montserrat', sans-serif;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 100px;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(30, 69, 159, 0.22), transparent 60%),
    linear-gradient(140deg, #0E2450 0%, #12306E 55%, #1E459F 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 60% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -180px;
  border-radius: 50%;
  border: 1px solid rgba(30, 69, 159, 0.25);
  box-shadow: 0 0 0 40px rgba(30, 69, 159, 0.04);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 640px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }

.hero-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.5;
}

.trust-bar { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.07); }

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 26px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.trust-item svg { width: 26px; height: 26px; color: var(--primary); flex-shrink: 0; }

.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(30, 69, 159, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 30px; height: 30px; color: var(--primary); }

.service-card h3 { font-size: 1.22rem; margin-bottom: 12px; }

.service-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; flex-grow: 1; }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.service-tag svg { width: 15px; height: 15px; }

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

.steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0 10px, transparent 10px 20px);
  opacity: 0.4;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(30, 69, 159, 0.18);
}

.step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }

.why { background: var(--bg); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.why-block {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg { width: 28px; height: 28px; color: var(--primary); }

.why-block h3 { font-size: 1.18rem; margin-bottom: 8px; }
.why-block p { color: var(--muted); font-size: 0.96rem; }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item.open { box-shadow: var(--shadow); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--dark);
}

.faq-q .icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-q .icon::before,
.faq-q .icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.faq-q .icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.3s ease; }

.faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 0.98rem; }

.reviews { background: var(--bg); }

.reviews-list { max-width: 860px; margin: 0 auto; }

.review-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-item.open { box-shadow: var(--shadow); border-color: var(--primary); }

.review-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.review-head { display: flex; align-items: center; gap: 14px; min-width: 0; }

.review-avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-name { font-weight: 700; color: var(--dark); font-size: 1rem; }
.review-loc { color: var(--muted); font-size: 0.82rem; }
.review-stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 1px; }

.review-q .icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  position: relative;
}

.review-q .icon::before,
.review-q .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.review-q .icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.review-q .icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }

.review-item.open .review-q .icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.review-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.review-a-inner {
  padding: 0 22px 20px 82px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-width: 560px) {
  .review-a-inner { padding: 0 22px 20px 22px; }
}

.contact { background: var(--dark); color: var(--white); }

.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }

.contact-info h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.contact-info p { color: rgba(255, 255, 255, 0.78); margin-bottom: 30px; font-size: 1.05rem; }

.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-detail svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.contact-detail span { color: rgba(255, 255, 255, 0.88); font-size: 0.98rem; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  font-family: 'Montserrat', sans-serif;
}

.form-group label .req { color: var(--primary); }

.form-control {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 69, 159, 0.14);
}

textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7076' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.form-consent input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--primary); flex-shrink: 0; cursor: pointer; }
.form-consent label { font-size: 0.84rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.5; }

.field-error { color: #d33; font-size: 0.78rem; margin-top: 5px; display: none; }
.form-control.invalid { border-color: #d33; }
.form-group.has-error .field-error { display: block; }

.iti { width: 100%; }
.iti__selected-dial-code { color: var(--text); font-family: 'Inter', sans-serif; }
.iti--separate-dial-code .iti__selected-flag { border-radius: 10px 0 0 10px; }
.iti__country-list { font-family: 'Inter', sans-serif; font-size: 0.9rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.show { display: block; animation: pop 0.5s var(--ease); }

.form-success .check {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #eaf0fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.form-success .check svg { width: 42px; height: 42px; color: var(--dark); }
.form-success h3 { color: var(--dark); margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 1rem; }

@keyframes pop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.site-footer { background: #0E2450; color: rgba(255, 255, 255, 0.7); padding: 60px 0 28px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

.footer-col .logo { margin-bottom: 16px; }

.disclaimer {
  max-width: 820px;
  margin: 0 auto 32px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.disclaimer strong { color: rgba(255, 255, 255, 0.9); font-weight: 600; }

.disclaimer a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.disclaimer a:hover { color: #7f9fd6; }

.footer-col p, .footer-col address {
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }
.footer-links a:hover { color: var(--primary); }

.footer-meta { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-meta strong { color: rgba(255,255,255,0.85); }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  margin-bottom: 22px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px 30px;
  transform: translateY(-120%);
  transition: transform 0.35s var(--ease);
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  display: block;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 64px 0; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .step {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    text-align: left;
    align-items: start;
    padding-bottom: 30px;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 33px;
    top: 68px;
    bottom: 6px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--primary) 0 8px, transparent 8px 16px);
    opacity: 0.4;
  }
  .step-num { margin: 0; }

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

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 26px 22px; }
  .trust-grid { flex-direction: column; align-items: flex-start; padding: 22px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .lang-select { font-size: 0.78rem; padding: 7px 28px 7px 10px; }
}
