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

html {
  scroll-behavior: smooth;
}

:root {
  --green: #8662f6;
  --green-dk: #6f4de8;
  --brand-lime: rgba(173, 244, 77, 1);
  --ink: #08141e;
  --ink-soft: #555e6a;
  --surface-dark: #1e2832;
  --surface: #f6f7f9;
  --border: #e8eaed;
  --border-w-thin: 0.5px;
  --white: #fff;
  --radius-sm: 4px;
  --radius: 4px;
  --radius-lg: 4px;
  --btn-radius: 4px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .09);
  --max-w: 1400px;
  --px: 48px;
  --nav-h: 70px;
  --touch-min: 44px;
  --mobile-bar-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --font-body: 'TT Hoves', sans-serif;
  --font-heading: 'TT Hoves Medium', sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  padding-bottom: var(--safe-bottom);
}

body.mobile-nav-open {
  overflow: hidden;
  touch-action: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ── Buttons (shared chrome) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'TT Hoves', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: #0f0029;
  color: #fff;
}

.btn-dark:hover {
  background: #0f0029;
  box-shadow: var(--shadow);
}

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .14);
}

.btn-white:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

/* ── Topbar ── */
.topbar {
  background: radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--surface-dark) 96%, #fff) 0%, var(--surface-dark) 62%, color-mix(in srgb, var(--surface-dark) 88%, #000) 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, .72);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: 100%;
}

.topbar::before {
  content: '';
  position: absolute;
  inset: -8% 24% 30%;
  background: radial-gradient(circle, rgba(17, 24, 39, .42) 0%, rgba(10, 14, 22, .14) 28%, rgba(0, 0, 0, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.topbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02) 36%, rgba(255, 255, 255, 0) 70%);
  opacity: .24;
  z-index: 0;
  pointer-events: none;
}

.topbar .wrap {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  box-shadow: none;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-text {
  opacity: .95;
  transition: opacity .35s ease;
}

a.topbar-text.topbar-rotator {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  white-space: nowrap;
}

a.topbar-text.topbar-rotator:hover {
  border-bottom-color: #fff;
  opacity: 1;
}

.topbar-text.is-out {
  opacity: 0;
}

.topbar-promo {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  transition: border-color .18s, opacity .18s;
}

.topbar-promo:hover {
  border-color: #fff;
  opacity: 1;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topbar-phone {
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: opacity .18s;
}

.topbar-phone:hover {
  opacity: .85;
}

.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .35);
  flex-shrink: 0;
}

.topbar-callback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .18s;
}

.topbar-callback:hover {
  opacity: .85;
}

.topbar-callback svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: var(--border-w-thin) solid var(--border);
  flex: 0 0 auto;
  width: 100%;
  transition: background-color .22s ease, backdrop-filter .22s ease, -webkit-backdrop-filter .22s ease;
}

.navbar.navbar--stuck:not(.navbar--dark) {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.packages-page .packages-compare-table {
  padding-top: 48px;
}

.navbar .wrap,
.navbar__inner {
  min-height: var(--nav-h);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-img {
  height: 34px;
  width: auto;
  max-width: 144px;
  object-fit: contain;
}

.lottie-logo {
  width: 120px;
  height: 38px;
  display: block;
  line-height: 0;
}

.lottie-logo svg {
  display: block;
}

.footer-brand .lottie-logo {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-menu--mobile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item--has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: .9;
  margin-top: 1px;
}

.nav-caret svg {
  display: block;
}

.nav-item--mega.is-open .nav-caret,
.nav-mega-trigger[aria-expanded="true"] .nav-caret,
.nav-item--has-children.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  letter-spacing: -.01em;
  transition: opacity .15s;
}

.nav-mega-trigger:hover,
.nav-mega-trigger.active,
.nav-mega-trigger[aria-expanded="true"] {
  opacity: .72;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  display: none;
  z-index: 30;
}

.nav-dropdown__bridge {
  display: block;
  height: 8px;
}

.nav-dropdown__panel {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-radius: 20px;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(8, 20, 30, .12);
}

.nav-item--has-children.is-open .nav-dropdown,
.nav-item--has-children:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown__link {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 0;
  border-radius: 0;
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: opacity .15s;
}

.nav-dropdown__link:hover,
.nav-dropdown__link.active {
  background: transparent;
  color: var(--ink);
  opacity: .72;
}

.nav-menu a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
  background: transparent;
  letter-spacing: -.01em;
  transition: opacity .15s;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: transparent;
  color: var(--ink);
  opacity: .72;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-lang-form {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.nav-lang-select {
  height: 54px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 0 12px;
  font-size: .9rem;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}

.nav-actions .btn-dark {
  height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-lime);
  color: #0a141e;
  box-shadow: none;
}

.nav-actions .btn-dark:hover {
  background: var(--brand-lime);
  color: #0a141e;
  box-shadow: none;
  transform: none;
}

/* ── Mobile nav toggle & drawer (desktop: hidden) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .18s ease, border-color .18s ease;
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--surface);
  border-color: #d5d9df;
  outline: none;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease, width .22s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.mobile-nav:not([hidden]) {
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 30, .42);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .28s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 360px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -16px 0 48px rgba(8, 20, 30, .16);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  padding-top: var(--safe-top);
  padding-bottom: var(--safe-bottom);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--nav-h);
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-nav__title {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}

.mobile-nav__close {
  display: inline-grid;
  place-items: center;
  width: var(--touch-min);
  height: var(--touch-min);
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  touch-action: manipulation;
}

.mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px 12px 16px;
}

.mobile-nav__contact {
  flex-shrink: 0;
  padding: 14px 20px 12px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-nav__contact-title {
  margin: 0 0 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mobile-nav__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__contact-link,
.mobile-nav__contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.45;
  color: var(--ink);
}

.mobile-nav__contact-link {
  text-decoration: none;
  transition: color .15s ease;
}

.mobile-nav__contact-link:hover {
  color: var(--brand-lime);
}

.mobile-nav__contact-link svg,
.mobile-nav__contact-address svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand-lime);
}

.mobile-nav__contact-address {
  color: var(--ink-soft);
}

.mobile-nav__footer {
  display: grid;
  gap: 10px;
  padding: 16px 20px calc(16px + var(--safe-bottom));
  border-top: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}

.mobile-nav__cta {
  width: 100%;
  justify-content: center;
  min-height: var(--touch-min);
  height: auto;
  padding: 12px 20px;
}

.nav-lang-select--mobile {
  width: 100%;
  height: var(--touch-min);
}

.nav-menu--mobile > a,
.nav-menu--mobile .nav-mega-trigger,
.nav-menu--mobile .nav-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--touch-min);
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background .15s ease;
}

.nav-menu--mobile > a:hover,
.nav-menu--mobile > a.active,
.nav-menu--mobile .nav-mega-trigger:hover,
.nav-menu--mobile .nav-dropdown-trigger:hover,
.nav-menu--mobile .nav-dropdown-trigger.active {
  background: var(--surface);
  opacity: 1;
}

.nav-menu--mobile .nav-item {
  display: block;
  width: 100%;
}

.nav-menu--mobile .nav-item--has-children,
.nav-menu--mobile .nav-item--mega {
  border-bottom: 1px solid #f0f2f5;
}

.nav-menu--mobile .nav-dropdown {
  position: static;
  display: none;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0 0 8px 8px;
}

.nav-menu--mobile .nav-item--has-children.is-open .nav-dropdown,
.nav-menu--mobile .nav-item--mega.is-open .nav-dropdown {
  display: block;
}

.nav-menu--mobile .nav-dropdown__bridge {
  display: none;
}

.nav-menu--mobile .nav-dropdown__panel {
  box-shadow: none;
  border: 0;
  padding: 0;
  background: transparent;
  gap: 0;
}

.nav-menu--mobile .nav-dropdown__link {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 16px;
  font-size: .92rem;
  border-radius: var(--radius-sm);
}

/* ── Services mega menu (popup) ── */
.mega-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 980;
  background: rgba(8, 20, 30, .28);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .22s ease;
}

.mega-menu-backdrop.is-visible {
  opacity: 1;
}

.mega-menu-popup {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 990;
  padding: 12px 0 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  pointer-events: none;
}

.mega-menu-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-popup__wrap {
  max-width: var(--max-w);
}

.mega-menu-panel {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(8, 20, 30, .14);
  overflow: hidden;
}

.mega-menu-main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 36px 40px 40px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 28px 48px;
}

.mega-menu-panel--simple {
  display: block;
}

.mega-menu-main--full {
  width: 100%;
  padding: 36px 40px 40px;
}

.mega-menu-grid--cols-1 {
  grid-template-columns: 1fr;
  grid-template-rows: none;
  grid-auto-flow: row;
  gap: 24px;
}

.mega-menu-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-flow: row;
  gap: 28px 48px;
}

.mega-menu-grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-flow: row;
  gap: 28px 40px;
}

.mega-menu-service {
  display: block;
  transition: opacity .15s ease;
}

.mega-menu-service:hover {
  opacity: .78;
}

.mega-menu-service__title {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.mega-menu-service__desc {
  display: block;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.mega-menu-sidebar {
  flex: 0 0 300px;
  width: 300px;
  background: #f3f4f6;
  padding: 28px 24px 32px;
  border-left: 1px solid var(--border);
}

.mega-menu-sidebar__title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9aa3ad;
  text-align: center;
  margin-bottom: 22px;
}

.mega-menu-packages {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mega-menu-package {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: opacity .15s ease;
}

.mega-menu-package:hover {
  opacity: .82;
}

.mega-menu-package__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--ink);
}

.mega-menu-package__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mega-menu-package__body {
  min-width: 0;
}

.mega-menu-package__title {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.mega-menu-package__desc {
  display: block;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

body.nav-mega-open {
  overflow: hidden;
}

/* ── Footer ── */
.site-footer,
footer {
  background: #0b1118;
  padding: 72px 0 36px;
}

.site-footer__grid,
.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 48px;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}

.site-footer__logo img {
  display: block;
  width: 168px;
  height: auto;
}

.site-footer__tagline {
  margin: 0 0 22px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.site-footer__contact li,
.site-footer__contact a {
  font-size: .84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .52);
}

.site-footer__contact a {
  transition: color .18s ease;
}

.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__socials,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__social,
.soc {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .72);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.site-footer__social:hover,
.soc:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__social svg,
.soc svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
}

.site-footer__heading,
.footer-col h5 {
  margin: 0 0 20px;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.site-footer__links,
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links a,
.footer-col ul a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .52);
  transition: color .18s ease;
}

.site-footer__links a:hover,
.footer-col ul a:hover {
  color: #fff;
}

.site-footer__badge,
.footer-tool-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--green, #8662f6);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  vertical-align: middle;
}

.site-footer__bar,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  text-align: left;
}

.site-footer__copyright {
  margin: 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer__legal a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .52);
  transition: color .18s ease;
}

.site-footer__legal a:hover {
  color: #fff;
}

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

.footer-brand p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-col--tools ul a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

@media (max-width: 1100px) {
  :root {
    --px: 32px;
  }

  .site-footer__grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --px: 20px;
    --nav-h: 60px;
    --mobile-bar-h: 76px;
  }

  html {
    scroll-padding-top: calc(var(--nav-h) + 8px);
    scroll-padding-bottom: calc(var(--mobile-bar-h) + var(--safe-bottom) + 12px);
  }

  body.has-mobile-bottom-bar {
    padding-bottom: calc(var(--mobile-bar-h) + var(--safe-bottom));
  }

  body.mobile-nav-open .mobile-bottom-bar,
  body.pkg-quote-modal-open .mobile-bottom-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu--desktop {
    display: none;
  }

  .nav-actions .nav-cta--desktop {
    display: none;
  }

  .nav-lang-select--desktop {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mega-menu-popup,
  .mega-menu-backdrop {
    display: none !important;
  }

  .site-footer__grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer__bar,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar .wrap {
    font-size: .78rem;
    gap: 10px;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
  }

  .topbar-right {
    display: none;
  }

  .navbar .wrap,
  .navbar__inner {
    height: auto;
    min-height: var(--nav-h);
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-logo-img {
    height: 28px;
    max-width: 118px;
  }
}

/* Lead / callback modal (shared with package quote form) */
body.pkg-quote-modal-open { overflow: hidden; }
.pkg-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pkg-quote-modal[hidden] { display: none; }
.pkg-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(2px);
}
.pkg-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, .22);
}
.pkg-quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--btn-radius);
  background: #f8fafc;
  color: #64748b;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.pkg-quote-modal__close:hover { background: #f1f5f9; color: #0f172a; }
.pkg-quote-modal__title {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #0f172a;
}
.pkg-quote-modal__lead {
  margin: 0 0 22px;
  font-size: .9rem;
  line-height: 1.6;
  color: #64748b;
}
.pkg-quote-form { display: grid; gap: 12px; }
.pkg-quote-form__field input {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
  font-size: 16px;
  color: #0f172a;
}
.pkg-quote-form__field input::placeholder { color: #94a3b8; }
.pkg-quote-form__field input:focus {
  outline: none;
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, .18);
}
.pkg-quote-form__field--phone .pkg-phone-input {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pkg-quote-form__field--phone:focus-within .pkg-phone-input {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, .18);
}
.pkg-phone-input__country {
  flex: 0 0 auto;
  max-width: 92px;
  height: 48px;
  border: 0;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 0 8px 0 10px;
  font-size: .82rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
}
.pkg-quote-form__field--phone input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}
.pkg-quote-form__error {
  margin: 0;
  font-size: .82rem;
  line-height: 1.5;
  color: #b91c1c;
}
.pkg-quote-form__submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: var(--btn-radius);
  background: rgba(173, 244, 77, 1);
  color: #0a141e;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
}

/* Fixed contact widget (callback form + WhatsApp) */
.site-float-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.site-float-contact__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: auto;
}

.site-float-contact__teaser {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px 0 14px;
  border: 0;
  border-radius: var(--btn-radius, 4px);
  background: #fff;
  color: #0a141e;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .16);
  cursor: pointer;
  animation: site-float-bob 3.2s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}

.site-float-contact__teaser:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .2);
}

.site-float-contact__teaser-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-lime, #adf44d);
  color: #0a141e;
  flex-shrink: 0;
}

.site-float-contact__teaser-icon svg {
  width: 15px;
  height: 15px;
}

.site-float-contact__teaser-text {
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.site-float-contact__panel {
  position: relative;
  width: min(100vw - 32px, 340px);
  padding: 20px 18px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .22);
  pointer-events: auto;
  transform-origin: bottom right;
  animation: site-float-panel-in .32s cubic-bezier(.2, .8, .2, 1);
}

.site-float-contact__panel[hidden] {
  display: none !important;
}

.site-float-contact.is-open .site-float-contact__teaser {
  animation: site-float-wiggle .55s ease;
}

.site-float-contact__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.site-float-contact__title {
  margin: 0 28px 6px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.site-float-contact__lead {
  margin: 0 0 14px;
  font-size: .84rem;
  line-height: 1.55;
  color: #64748b;
}

.site-float-contact__form .pkg-quote-form__field {
  margin-bottom: 10px;
}

.site-float-contact__success {
  text-align: left;
}

.site-whatsapp-fab {
  position: static;
  right: auto;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: var(--btn-radius, 4px);
  background: #0a141e;
  color: var(--brand-lime);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .18);
  transition: background .2s ease, transform .2s ease;
  animation: site-float-bob 3.2s ease-in-out infinite;
  animation-delay: .45s;
}

.site-float-contact__whatsapp:hover {
  background: #141414;
  color: var(--brand-lime);
  transform: translateY(-2px);
}

.site-whatsapp-fab:hover {
  transform: translateY(-2px);
}

.site-whatsapp-fab__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--brand-lime);
}

.site-whatsapp-fab__icon::before {
  display: none;
}

.site-whatsapp-fab__icon svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.site-whatsapp-fab__label {
  display: none;
}

@keyframes site-float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes site-float-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg) translateY(-2px); }
  75% { transform: rotate(2deg) translateY(-2px); }
}

@keyframes site-float-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .site-float-contact {
    display: none !important;
  }
}
.pkg-quote-form__submit:hover { filter: brightness(.98); }
.pkg-quote-form__submit:disabled { opacity: .7; cursor: wait; }

/* ── Dark chrome (başarı hikayeleri vb.) ── */
body.site-chrome--dark {
  background: var(--ink);
  color: #eef1f4;
}

body.site-chrome--dark .navbar.navbar--dark {
  background: rgba(8, 20, 30, .92);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

body.site-chrome--dark .nav-menu a,
body.site-chrome--dark .nav-mega-trigger,
body.site-chrome--dark .nav-dropdown-trigger {
  color: #eef1f4;
}

body.site-chrome--dark .nav-menu a:hover,
body.site-chrome--dark .nav-menu a.active,
body.site-chrome--dark .nav-mega-trigger:hover,
body.site-chrome--dark .nav-mega-trigger.active,
body.site-chrome--dark .nav-mega-trigger[aria-expanded="true"],
body.site-chrome--dark .nav-dropdown-trigger:hover,
body.site-chrome--dark .nav-dropdown-trigger.active {
  color: #fff;
  opacity: 1;
}

body.site-chrome--dark .nav-lang-select {
  background: rgba(30, 40, 50, .85);
  border-color: rgba(255, 255, 255, .12);
  color: #eef1f4;
}

body.site-chrome--dark .nav-toggle {
  background: rgba(30, 40, 50, .85);
  border-color: rgba(255, 255, 255, .12);
}

body.site-chrome--dark .nav-toggle__bar {
  background: #eef1f4;
}

body.site-chrome--dark .nav-actions .btn-dark {
  background: var(--brand-lime);
  color: #0a141e;
}

body.site-chrome--dark .nav-dropdown__panel {
  background: #1e2832;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
}

body.site-chrome--dark .nav-dropdown__link {
  color: #eef1f4;
}

body.site-chrome--dark .nav-dropdown__link:hover,
body.site-chrome--dark .nav-dropdown__link.active {
  color: var(--brand-lime);
  opacity: 1;
}

body.site-chrome--dark .mobile-nav__panel,
body.site-chrome--dark .mobile-nav__contact,
body.site-chrome--dark .mobile-nav__footer {
  background: #1e2832;
}

body.site-chrome--dark .mobile-nav__contact {
  border-top-color: rgba(255, 255, 255, .08);
}

body.site-chrome--dark .mobile-nav__contact-title {
  color: rgba(255, 255, 255, .52);
}

body.site-chrome--dark .mobile-nav__contact-link,
body.site-chrome--dark .mobile-nav__contact-address {
  color: rgba(255, 255, 255, .88);
}

body.site-chrome--dark .mobile-nav__contact-address {
  color: rgba(255, 255, 255, .62);
}

body.site-chrome--dark .mobile-nav__contact-link:hover {
  color: var(--brand-lime);
}

body.site-chrome--dark .mobile-nav__head {
  border-bottom-color: rgba(255, 255, 255, .08);
}

body.site-chrome--dark .mobile-nav__title,
body.site-chrome--dark .nav-menu--mobile > a,
body.site-chrome--dark .nav-menu--mobile .nav-mega-trigger,
body.site-chrome--dark .nav-menu--mobile .nav-dropdown-trigger {
  color: #eef1f4;
}

body.site-chrome--dark .mobile-nav__close {
  background: rgba(255, 255, 255, .06);
  color: #eef1f4;
}

body.site-chrome--dark .nav-menu--mobile > a:hover,
body.site-chrome--dark .nav-menu--mobile > a.active,
body.site-chrome--dark .nav-menu--mobile .nav-mega-trigger:hover,
body.site-chrome--dark .nav-menu--mobile .nav-dropdown-trigger:hover,
body.site-chrome--dark .nav-menu--mobile .nav-dropdown-trigger.active {
  background: rgba(255, 255, 255, .06);
}

body.site-chrome--dark .nav-menu--mobile .nav-item--has-children,
body.site-chrome--dark .nav-menu--mobile .nav-item--mega {
  border-bottom-color: rgba(255, 255, 255, .08);
}

body.site-chrome--dark .site-logo-img {
  height: 37px;
  max-width: 168px;
}

@media (max-width: 1024px) {
  body.site-chrome--dark .site-logo-img {
    height: 30px;
    max-width: 128px;
  }
}

/* ── Mobile bottom bar (≤1024px only) ── */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-bottom-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 0 14px calc(12px + var(--safe-bottom));
    pointer-events: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: opacity .28s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
  }

  .mobile-bottom-bar__dock {
    position: relative;
    pointer-events: auto;
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }

  .mobile-bottom-bar__dock::before {
    content: none;
  }

  .mobile-bottom-bar__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2px;
    min-height: 54px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 0;
    box-shadow: none;
  }

  .mobile-bottom-bar__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    text-decoration: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform .14s ease, color .18s ease;
  }

  .mobile-bottom-bar__item:active {
    transform: scale(.92);
  }

  .mobile-bottom-bar__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    transition: background .22s ease, color .22s ease, transform .22s ease;
  }

  .mobile-bottom-bar__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
  }

  .mobile-bottom-bar__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .mobile-bottom-bar__item.is-active .mobile-bottom-bar__icon,
  .mobile-bottom-bar__item.is-menu-open .mobile-bottom-bar__icon {
    background: rgba(134, 98, 246, .12);
    color: var(--green);
    box-shadow: none;
  }

  .mobile-bottom-bar__item--cta .mobile-bottom-bar__icon {
    color: var(--ink);
  }

  .mobile-bottom-bar__item--whatsapp .mobile-bottom-bar__icon {
    color: #25d366;
  }

  .mobile-bottom-bar__item--whatsapp .mobile-bottom-bar__icon svg {
    width: 23px;
    height: 23px;
  }

  .mobile-nav__panel {
    touch-action: pan-y;
  }

  .mobile-nav.is-swipe-closing .mobile-nav__panel {
    transition: transform .18s ease-out;
  }
}

@media (max-width: 1024px) {
  body.site-chrome--dark .mobile-bottom-bar__item.is-active .mobile-bottom-bar__icon,
  body.site-chrome--dark .mobile-bottom-bar__item.is-menu-open .mobile-bottom-bar__icon {
    background: rgba(134, 98, 246, .12);
    color: var(--green);
    box-shadow: none;
  }
}
