:root {
  --brand: #183c91;
  --brand-dark: #102f78;
  --gold: #f7c948;
  --cta: #1967d2;
  --cta-hover: #1559bc;
  --surface: #f5f7fb;
  --text: #202636;
  --muted: #687084;
  --card: #ffffff;
  --danger: #b42318;
  --border: #e0e6f0;
  --shadow-card: 0 4px 20px -6px rgba(24, 60, 145, 0.18);
  --shadow-hover: 0 14px 36px -10px rgba(24, 60, 145, 0.28);
  --shadow-popup: 0 25px 80px -10px rgba(24, 60, 145, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(100% - 32px, 1280px); margin-inline: auto; }
.narrow { max-width: 1024px; }

.topbar { background: var(--brand); color: #fff; }
.topbar-inner { min-height: 56px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-size: 20px; font-weight: 800; text-decoration: none; }
.nav { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.nav a { text-decoration: none; }
.nav a:hover { text-decoration: underline; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.1); color: #fff; padding: 7px 12px; font-size: 12px; font-weight: 800;
  cursor: pointer;
}
.lang-toggle:hover { background: rgba(255,255,255,.2); }

.hero { position: relative; isolation: isolate; overflow: hidden; min-height: 520px; padding: 80px 0 64px; background: var(--brand); color: #fff; }
.hero > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(255,255,255,.14), rgba(24,60,145,.38), rgba(24,60,145,.78)); }
.hero-content { text-align: center; max-width: 1024px; }
.discount { display: inline-block; border-radius: 999px; background: rgba(247,201,72,.96); color: #35280a; padding: 5px 16px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; box-shadow: 0 10px 20px rgba(0,0,0,.18); }
.hero h1 { margin: 16px 0 0; font-size: clamp(44px, 7vw, 72px); line-height: 1; font-weight: 900; text-shadow: 0 3px 14px rgba(0,0,0,.28); letter-spacing: 0; }
.hero p { margin: 18px auto 0; max-width: 760px; font-size: 18px; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.search-panel { margin-top: 34px; border-radius: 18px; background: var(--gold); padding: 14px; box-shadow: 0 22px 50px rgba(0,0,0,.25); }
.search-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.field { position: relative; display: block; border-radius: 10px; background: #fff; }
.field .icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.field input, .field select { width: 100%; border: 0; background: transparent; color: var(--text); padding: 14px 10px 14px 34px; outline: 0; min-height: 52px; }
.suggestions { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 20; max-height: 224px; overflow: auto; border: 1px solid rgba(24,60,145,.12); border-radius: 10px; background: #fff; padding: 8px; box-shadow: var(--shadow-card); }
.suggestions.open { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.suggestions button { border: 0; border-radius: 8px; background: rgba(24,60,145,.06); padding: 9px 8px; color: var(--text); text-align: left; font-size: 12px; font-weight: 800; cursor: pointer; }
.suggestions button:hover { background: rgba(24,60,145,.12); }
.search-button {
  margin-top: 12px; width: 100%; border: 0; border-radius: 10px; background: var(--brand); color: #fff;
  padding: 15px 24px; display: flex; justify-content: center; align-items: center; gap: 10px; font-weight: 900; cursor: pointer;
}
.search-button:hover { background: var(--brand-dark); }

.copy-section { padding: 48px 0; }
.copy-section.compact { padding-top: 0; }
.card { border-radius: 24px; background: var(--card); box-shadow: var(--shadow-card); padding: 32px; }
.card h2, .browse-section h2 { margin: 0; color: var(--brand); font-size: clamp(26px, 4vw, 34px); line-height: 1.2; font-weight: 900; text-align: left; }
.main-copy p, .card p { color: rgba(32,38,54,.9); }
.main-copy p { margin: 16px 0 0; }

.call-strip { padding: 32px 0; background: var(--surface); display: flex; justify-content: center; }
.phone-cta { display: inline-flex; align-items: center; gap: 12px; border-radius: 14px; background: var(--brand); color: #fff; padding: 17px 26px; text-decoration: none; font-weight: 900; box-shadow: var(--shadow-card); }
.phone-cta:hover { background: var(--brand-dark); }

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; padding-bottom: 48px; }
.image-offer { position: relative; overflow: hidden; min-height: 288px; border-radius: 18px; box-shadow: var(--shadow-card); }
.image-offer img { width: 100%; height: 100%; min-height: 288px; object-fit: cover; transition: transform .7s ease; }
.image-offer:hover img { transform: scale(1.05); }
.offer-overlay { position: absolute; inset: 0; display: flex; align-items: end; padding: 24px; color: #fff; background: linear-gradient(to top, rgba(24,60,145,.88), rgba(24,60,145,.28), transparent); }
.offer-overlay > div { width: 100%; border-radius: 14px; background: rgba(255,255,255,.15); padding: 16px; backdrop-filter: blur(8px); }
.offer-overlay h3 { margin: 0; font-size: 26px; line-height: 1.18; }
.offer-overlay p { margin: 6px 0 0; color: rgba(255,255,255,.9); font-size: 14px; }
.offer-overlay a, .tile a { display: inline-block; margin-top: 14px; border-radius: 10px; background: var(--cta); color: #fff; padding: 10px 18px; text-decoration: none; font-size: 14px; font-weight: 800; }
.offer-overlay a:hover, .tile a:hover { background: var(--cta-hover); }

.browse-section { padding: 48px 0; }
.browse-section h2 { text-align: center; }
.tile-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.tile { overflow: hidden; border-radius: 18px; background: var(--card); box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tile figure { margin: 0; overflow: hidden; }
.tile img { width: 100%; height: 160px; object-fit: cover; transition: transform .7s ease; }
.tile:hover img { transform: scale(1.1); }
.tile div { display: flex; min-height: 124px; flex-direction: column; align-items: center; gap: 12px; padding: 16px; text-align: center; }
.tile h3 { margin: 0; font-size: 16px; }
.tile a { width: 100%; margin-top: auto; padding: 9px 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chips span { border-radius: 999px; background: rgba(24,60,145,.1); color: var(--brand); padding: 6px 12px; font-size: 13px; font-weight: 900; }
.faq-list { margin-top: 24px; display: grid; gap: 16px; }
.faq-list article { border: 1px solid rgba(24,60,145,.1); border-radius: 16px; background: rgba(255,255,255,.72); padding: 16px; }
.faq-list h3 { margin: 0; font-size: 18px; }
.faq-list p { margin: 8px 0 0; }

.privacy-hero { background: var(--brand); color: #fff; padding: 48px 0; text-align: center; }
.privacy-hero h1 { margin: 0; font-size: clamp(32px, 6vw, 44px); line-height: 1.1; }
.privacy-hero p { margin: 12px auto 0; color: rgba(255,255,255,.85); }
.privacy-list { max-width: 896px; padding: 48px 0; display: grid; gap: 32px; }
.privacy-list section { scroll-margin-top: 84px; border-radius: 18px; background: #fff; padding: 28px; box-shadow: var(--shadow-card); }
.privacy-list h2 { margin: 0; color: var(--brand); font-size: 24px; }
.privacy-list p { margin: 12px 0 0; color: rgba(32,38,54,.9); }

.footer { background: var(--brand); color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 40px; padding: 48px 0; }
.footer h3 { margin: 0; font-size: 18px; }
.footer p { color: rgba(255,255,255,.85); font-size: 14px; }
.footer a { font-weight: 800; }
.rule { height: 2px; margin-top: 8px; background: rgba(255,255,255,.2); }
.service-footer { border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.05); padding: 20px; }
.service-footer h3 { color: rgba(255,255,255,.88); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.service-footer div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.82); }
.copyright { margin: 40px 0 0; border-top: 1px solid rgba(255,255,255,.1); padding: 16px; text-align: center; color: rgba(255,255,255,.7); font-size: 12px; }

.sticky-call { position: sticky; bottom: 0; z-index: 40; display: flex; align-items: center; justify-content: center; gap: 24px; background: var(--brand); color: #fff; padding: 12px 16px; box-shadow: 0 -8px 24px -12px rgba(0,0,0,.4); font-weight: 900; }
.sticky-call a { display: inline-flex; align-items: center; gap: 12px; border-radius: 999px; background: rgba(255,255,255,.1); padding: 6px 16px; text-decoration: none; }
.sticky-call img { width: 36px; height: 36px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 2px rgba(255,255,255,.4); }

.chat-button { position: fixed; right: 20px; bottom: 88px; z-index: 90; width: 56px; height: 56px; border: 0; border-radius: 999px; background: var(--cta); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-popup); cursor: pointer; animation: pulse-ring 2s infinite; }
.chat-widget { position: fixed; right: 20px; bottom: 156px; z-index: 91; width: min(384px, calc(100vw - 32px)); overflow: hidden; border-radius: 18px; background: #fff; box-shadow: var(--shadow-popup); }
.chat-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: var(--brand); color: #fff; padding: 16px 20px; }
.chat-head h3, .chat-head p { margin: 0; }
.chat-head p { color: rgba(255,255,255,.8); font-size: 12px; }
.icon-button, .modal-close { border: 0; background: transparent; cursor: pointer; }
.icon-button { color: #fff; font-size: 26px; }
.chat-form { display: grid; gap: 10px; padding: 16px; }
.chat-form input, .chat-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 11px 12px; resize: none; outline: 0; }
.chat-form input:focus, .chat-form textarea:focus { border-color: var(--cta); box-shadow: 0 0 0 3px rgba(25,103,210,.18); }
.chat-form button { display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 10px; background: var(--cta); color: #fff; padding: 12px; font-weight: 900; cursor: pointer; }
.form-status { margin: 0; border-radius: 10px; background: #ecfdf3; color: #027a48; padding: 10px; font-size: 13px; font-weight: 800; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.6); padding: 16px; }
.modal.open { display: flex; animation: fade-in .24s ease; }
.modal-card { position: relative; width: min(100%, 512px); border-radius: 20px; background: #fff; padding: 32px; text-align: center; box-shadow: var(--shadow-popup); animation: popup-in .34s cubic-bezier(.16,1,.3,1); }
.modal-close { position: absolute; top: 14px; right: 16px; color: var(--muted); font-size: 28px; }
.modal h2 { margin: 0; color: var(--brand); font-size: 26px; }
.modal p { margin: 12px 0 0; }
.danger { color: var(--danger); font-weight: 800; }
.strong { font-weight: 900; }
.muted { color: var(--muted); font-size: 14px; }
.modal-phone { display: block; margin-top: 12px; color: var(--brand); font-size: 26px; font-weight: 900; text-decoration: none; }
.agent-ring { display: inline-block; margin-top: 20px; border-radius: 999px; padding: 4px; animation: pulse-ring 2s infinite; }
.agent-ring img { width: 96px; height: 96px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 4px rgba(25,103,210,.24); }
.modal-cta { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 10px; background: var(--cta); color: #fff; padding: 14px; text-decoration: none; font-weight: 900; }

.icon { width: 18px; height: 18px; display: inline-block; background: currentColor; mask-size: contain; mask-repeat: no-repeat; mask-position: center; -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; }
.pin { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-5.5 8-12a8 8 0 1 0-16 0c0 6.5 8 12 8 12Zm0-9a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E"); }
.calendar { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3h6V2h2v3h3v17H4V5h3V2Zm13 9H4v9h16v-9Z'/%3E%3C/svg%3E"); }
.users { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 2c-4 0-7 2-7 5v2h14v-2c0-3-3-5-7-5Zm7-2a4 4 0 0 0 0-8v8Zm2 2c-.7 0-1.3.1-1.9.3 1.2 1.1 1.9 2.7 1.9 4.7v2h4v-2c0-3-2-5-4-5Z'/%3E%3C/svg%3E"); }
.search { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 20-5.2-5.2a7 7 0 1 0-1.4 1.4L20 21l1-1ZM5 10a5 5 0 1 1 10 0 5 5 0 0 1-10 0Z'/%3E%3C/svg%3E"); }
.phone { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 2h3.2l1.5 5-2.6 1.9c1.1 2.3 3 4.2 5.4 5.4l1.9-2.6 5 1.5v3.2c0 2-1.6 3.6-3.6 3.6C8.9 20 2 13.1 2 4.6 2 2.6 3.6 2 6.6 2Z'/%3E%3C/svg%3E"); }
.globe { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm7.4 9h-4a16 16 0 0 0-1.1-6 8 8 0 0 1 5.1 6ZM12 4c.7 1 1.3 3.3 1.4 7h-2.8C10.7 7.3 11.3 5 12 4Zm-2.3 1a16 16 0 0 0-1.1 6h-4a8 8 0 0 1 5.1-6Zm-5.1 8h4a16 16 0 0 0 1.1 6 8 8 0 0 1-5.1-6ZM12 20c-.7-1-1.3-3.3-1.4-7h2.8C13.3 16.7 12.7 19 12 20Zm2.3-1a16 16 0 0 0 1.1-6h4a8 8 0 0 1-5.1 6Z'/%3E%3C/svg%3E"); }
.message { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3C6.5 3 2 6.8 2 11.5c0 2.4 1.2 4.6 3.1 6.1L4 22l4.7-2.3c1 .2 2.1.3 3.3.3 5.5 0 10-3.8 10-8.5S17.5 3 12 3Z'/%3E%3C/svg%3E"); }
.send { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 11 22 2l-7 20-4-8-9-3Zm10 1 6-6-8 4 2 2Z'/%3E%3C/svg%3E"); }

@keyframes popup-in { from { opacity: 0; transform: scale(.92) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(25,103,210,.45); } 70% { box-shadow: 0 0 0 18px rgba(25,103,210,0); } 100% { box-shadow: 0 0 0 0 rgba(25,103,210,0); } }

@media (max-width: 980px) {
  .search-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .nav a { display: none; }
  .hero { padding-top: 56px; min-height: 560px; }
  .hero h1 { font-size: 44px; }
  .search-grid, .offer-grid, .footer-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .card { padding: 24px; border-radius: 20px; }
  .sticky-call { flex-direction: column; gap: 8px; }
  .chat-button { bottom: 112px; right: 16px; }
  .chat-widget { bottom: 180px; right: 16px; }
}
