:root {
  --cb-navy: #0A2342;
  --cb-navy-2: #071A33;
  --cb-blue: #0E5AF2;
  --cb-gold: #F4B400;
  --cb-light: #F5F7FB;
  --cb-white: #FFFFFF;
  --cb-text: #546274;
  --cb-border: #E2E8F0;
  --cb-shadow: 0 18px 45px rgba(10, 35, 66, 0.12);
  --cb-radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cb-text);
  background: var(--cb-white);
  font-family: "Segoe UI", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 { color: var(--cb-navy); font-weight: 800; letter-spacing: 0; }
p { line-height: 1.75; }
a { transition: 0.25s ease; }
.bg-img { background-size: cover; background-position: center; }
.mb-40 { margin-bottom: 40px; }
.preloader { position: fixed; inset: 0; z-index: 99999; background: #fff; }
.lds-ellipsis { display: inline-block; position: relative; width: 80px; height: 20px; }
.lds-ellipsis div { position: absolute; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--cb-gold); animation-timing-function: cubic-bezier(0, 1, 1, 0); }
.lds-ellipsis div:nth-child(1) { left: 8px; animation: cb-ellipsis1 .6s infinite; }
.lds-ellipsis div:nth-child(2) { left: 8px; animation: cb-ellipsis2 .6s infinite; }
.lds-ellipsis div:nth-child(3) { left: 32px; animation: cb-ellipsis2 .6s infinite; }
.lds-ellipsis div:nth-child(4) { left: 56px; animation: cb-ellipsis3 .6s infinite; }
@keyframes cb-ellipsis1 { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes cb-ellipsis3 { 0% { transform: scale(1); } 100% { transform: scale(0); } }
@keyframes cb-ellipsis2 { 0% { transform: translate(0,0); } 100% { transform: translate(24px,0); } }

.cb-header { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; background: rgba(10, 35, 66, .98); box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.cb-header.scrolled { backdrop-filter: blur(12px); }
.cb-nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 38px; gap: 22px; }
.cb-logo a, .cb-footer-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.cb-logo-icon { width: 40px; height: 40px; border-radius: var(--cb-radius); background: linear-gradient(135deg, var(--cb-gold), #FFD36A); color: var(--cb-navy); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }
.cb-logo-text { color: #fff; font-weight: 700; font-size: 20px; }
.cb-logo-text strong { color: var(--cb-gold); }
.cb-nav ul, .cb-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.cb-nav ul { display: flex; align-items: center; gap: 4px; }
.cb-nav a { color: rgba(255,255,255,.78); text-decoration: none; padding: 9px 11px; border-radius: var(--cb-radius); font-size: 14px; font-weight: 600; white-space: nowrap; }
.cb-nav a:hover, .cb-nav a.active { color: var(--cb-gold); background: rgba(244,180,0,.12); }
.cb-cta-btn, .cb-btn-primary, .cb-btn-white, .cb-btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--cb-radius); padding: 13px 22px; font-weight: 800; text-decoration: none; border: 0; cursor: pointer; }
.cb-cta-btn, .cb-btn-primary { color: #fff; background: var(--cb-blue); }
.cb-cta-btn:hover, .cb-btn-primary:hover { background: var(--cb-gold); color: var(--cb-navy); transform: translateY(-2px); }
.cb-btn-white { background: #fff; color: var(--cb-navy); }
.cb-btn-white:hover { background: var(--cb-gold); color: var(--cb-navy); }
.cb-btn-outline { color: #fff; border: 1px solid rgba(255,255,255,.32); background: transparent; }
.cb-btn-outline:hover { border-color: var(--cb-gold); color: var(--cb-gold); }
.cb-toggler { display: none; background: none; border: 0; padding: 4px; }
.cb-toggler span { display: block; width: 25px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }
.cb-mobile-menu { display: none; background: var(--cb-navy-2); border-top: 1px solid rgba(255,255,255,.08); padding: 12px 24px; }
.cb-mobile-menu.open { display: block; }
.cb-mobile-menu a { display: block; color: rgba(255,255,255,.8); text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.cb-mobile-menu a.active { color: var(--cb-gold); }

.cb-section { padding: 92px 0; }
.cb-section-light { background: var(--cb-light); }
.cb-section-dark { background: var(--cb-navy); }
.cb-section-tag { display: inline-block; color: var(--cb-blue); background: rgba(14,90,242,.09); border: 1px solid rgba(14,90,242,.18); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.cb-section-title { font-size: 42px; line-height: 1.18; margin-bottom: 14px; }
.cb-section-title span { color: var(--cb-gold); }
.cb-section-lead { max-width: 690px; margin: 0 auto 42px; }

.cb-hero { min-height: 720px; display: flex; align-items: center; padding-top: 76px; background: radial-gradient(circle at 12% 15%, rgba(14,90,242,.24), transparent 28%), linear-gradient(135deg, var(--cb-navy), var(--cb-navy-2)); overflow: hidden; }
.cb-hero-content { padding: 90px 0; }
.cb-hero h1 { color: #fff; font-size: 60px; line-height: 1.08; max-width: 760px; }
.cb-hero h1 span { color: var(--cb-gold); }
.cb-hero p { color: rgba(255,255,255,.72); font-size: 18px; max-width: 620px; margin: 24px 0 34px; }
.cb-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cb-hero-panel { position: relative; min-height: 520px; }
.cb-hero-image { position: absolute; inset: 42px 0 0 20px; border-radius: 18px 0 0 18px; box-shadow: var(--cb-shadow); }
.cb-floating-card { position: absolute; right: 16px; top: 90px; max-width: 280px; background: rgba(255,255,255,.96); border-radius: var(--cb-radius); box-shadow: var(--cb-shadow); padding: 22px; }
.cb-floating-card strong { display: block; color: var(--cb-blue); font-size: 24px; margin-bottom: 6px; }

.cb-page-hero { padding: 150px 0 56px; background: linear-gradient(135deg, var(--cb-navy), #103864); }
.cb-page-hero h1 { color: #fff; font-size: 46px; }
.cb-page-hero p { color: rgba(255,255,255,.72); max-width: 720px; }
.cb-breadcrumb-wrap { background: var(--cb-light); border-bottom: 1px solid var(--cb-border); }
.cb-breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 14px 0; margin: 0; font-size: 14px; }
.cb-breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 10px; color: #98A3B3; }
.cb-breadcrumb a { color: var(--cb-blue); text-decoration: none; }
.cb-breadcrumb .active { color: var(--cb-text); }

.cb-grid-2, .cb-grid-3, .cb-grid-4 { display: grid; gap: 24px; }
.cb-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cb-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cb-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cb-card { background: #fff; border: 1px solid var(--cb-border); border-radius: var(--cb-radius); padding: 28px; box-shadow: 0 8px 28px rgba(10,35,66,.06); transition: .25s ease; }
.cb-card:hover { transform: translateY(-5px); box-shadow: var(--cb-shadow); }
.cb-icon { width: 58px; height: 58px; border-radius: var(--cb-radius); background: linear-gradient(135deg, var(--cb-navy), var(--cb-blue)); color: var(--cb-gold); display: inline-flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 18px; }
.cb-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.cb-list li { display: flex; gap: 10px; align-items: flex-start; }
.cb-list i { color: var(--cb-blue); margin-top: 5px; }
.cb-stat-card { text-align: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--cb-radius); padding: 30px 20px; }
.cb-stat-card strong { color: #fff; font-size: 38px; display: block; }
.cb-stat-card span { color: var(--cb-gold); font-weight: 800; }
.cb-stat-card p { margin: 8px 0 0; color: rgba(255,255,255,.62); }
.cb-service-card img, .cb-detail-image { width: 100%; border-radius: var(--cb-radius); object-fit: cover; }
.cb-service-card img { height: 190px; margin-bottom: 20px; }
.cb-testimonial { min-height: 100%; }
.cb-stars { color: var(--cb-gold); letter-spacing: 2px; margin-bottom: 12px; }
.cb-avatar { width: 58px; height: 58px; border-radius: 50%; margin-bottom: 16px; }
.cb-cta { position: relative; background: linear-gradient(90deg, rgba(10,35,66,.94), rgba(14,90,242,.55)), url("../img/bg-img/6.jpg") center/cover; padding: 80px 0; }
.cb-cta h2 { color: #fff; font-size: 40px; }
.cb-cta p { color: rgba(255,255,255,.72); }
.cb-newsletter { background: var(--cb-light); border-top: 1px solid var(--cb-border); border-bottom: 1px solid var(--cb-border); padding: 56px 0; }
.cb-newsletter-form, .cb-footer-newsletter { display: flex; gap: 0; border-radius: var(--cb-radius); overflow: hidden; border: 1px solid var(--cb-border); }
.cb-newsletter-form input, .cb-footer-newsletter input { flex: 1; border: 0; padding: 14px 16px; outline: none; }
.cb-newsletter-form button, .cb-footer-newsletter button { border: 0; background: var(--cb-blue); color: #fff; font-weight: 800; padding: 0 20px; cursor: pointer; }

.cb-footer { background: var(--cb-navy); padding-top: 72px; color: rgba(255,255,255,.64); }
.cb-footer h5 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.cb-footer p { color: rgba(255,255,255,.62); }
.cb-footer-links, .cb-footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cb-footer-links a { color: rgba(255,255,255,.62); text-decoration: none; }
.cb-footer-links a:hover { color: var(--cb-gold); }
.cb-footer-contact i { color: var(--cb-gold); margin-right: 8px; }
.cb-social { display: flex; gap: 10px; }
.cb-social a { width: 38px; height: 38px; border-radius: var(--cb-radius); background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.cb-social a:hover { background: var(--cb-gold); color: var(--cb-navy); }
.cb-footer-newsletter { margin-top: 18px; border-color: rgba(255,255,255,.14); }
.cb-footer-newsletter input { background: rgba(255,255,255,.08); color: #fff; }
.cb-footer-bottom { margin-top: 28px; padding: 22px 0; background: rgba(0,0,0,.22); }
.cb-footer-bottom p { margin: 0; font-size: 13px; }
.cb-footer-bottom a { color: var(--cb-gold); margin-left: 12px; }

.cb-form { background: #fff; border: 1px solid var(--cb-border); border-radius: var(--cb-radius); padding: 30px; box-shadow: var(--cb-shadow); }
.cb-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cb-field { margin-bottom: 18px; }
.cb-field label { display: block; color: var(--cb-navy); font-weight: 800; margin-bottom: 7px; font-size: 13px; }
.cb-field input, .cb-field select, .cb-field textarea { width: 100%; border: 1px solid var(--cb-border); border-radius: var(--cb-radius); padding: 12px 14px; outline: none; }
.cb-field input:focus, .cb-field select:focus, .cb-field textarea:focus { border-color: var(--cb-blue); box-shadow: 0 0 0 3px rgba(14,90,242,.1); }
.cb-error { color: #B42318; font-size: 12px; margin-top: 5px; display: none; }
.has-error .cb-error { display: block; }
.has-error input, .has-error select, .has-error textarea { border-color: #B42318; }
.cb-form-alert-wrap { padding: 18px 0 0; }
.cb-form-alert { border-radius: 8px; padding: 14px 18px; font-weight: 700; }
.cb-form-alert-success { background: #ECFDF3; border: 1px solid #ABEFC6; color: #067647; }
.cb-form-alert-error { background: #FEF3F2; border: 1px solid #FECDCA; color: #B42318; }

.cb-simulator { background: #fff; border: 1px solid var(--cb-border); border-radius: var(--cb-radius); box-shadow: var(--cb-shadow); padding: 32px; }
.cb-range-label, .cb-range-limits { display: flex; justify-content: space-between; gap: 12px; }
.cb-range-label strong { color: var(--cb-navy); }
.cb-range-label span { color: var(--cb-blue); font-weight: 900; }
.cb-range-group { margin-bottom: 28px; }
.cb-range-group input[type=range] { width: 100%; accent-color: var(--cb-blue); }
.cb-results { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
.cb-result { background: var(--cb-light); border: 1px solid var(--cb-border); border-radius: var(--cb-radius); padding: 18px; }
.cb-result span { display: block; font-size: 13px; margin-bottom: 7px; }
.cb-result strong { color: var(--cb-navy); font-size: 20px; }
.cb-table-wrap { overflow-x: auto; margin-top: 30px; }
.cb-table { width: 100%; border-collapse: collapse; background: #fff; }
.cb-table th, .cb-table td { padding: 12px; border-bottom: 1px solid var(--cb-border); text-align: right; white-space: nowrap; }
.cb-table th:first-child, .cb-table td:first-child { text-align: left; }
.cb-table th { color: var(--cb-navy); background: var(--cb-light); }

.cb-progress { height: 10px; background: var(--cb-light); border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
.cb-progress-bar { height: 100%; width: 14.28%; background: var(--cb-blue); transition: .25s ease; }
.cb-step { display: none; }
.cb-step.active { display: block; }
.cb-step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.cb-accordion .card { border: 1px solid var(--cb-border); border-radius: var(--cb-radius); margin-bottom: 12px; overflow: hidden; }
.cb-accordion .card-header { background: #fff; padding: 0; border-bottom: 0; }
.cb-accordion button { width: 100%; text-align: left; padding: 18px 20px; color: var(--cb-navy); font-weight: 800; text-decoration: none; }
.cb-map { width: 100%; min-height: 360px; border: 0; border-radius: var(--cb-radius); box-shadow: var(--cb-shadow); }
