/* ── Design Tokens ── */
:root {
  --bg: #121212;
  --blue: #0d2461;
  --white: #ffffff;
  --text-muted: #8c8c8c;
  --text-light: #c7c7c7;
  --text-mid: #d9d9d9;
  --divider: rgba(255, 255, 255, 0.08);
  --px: 80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Typography ── */
h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  color: #ffffff;
}
.body-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}
.btn:hover { opacity: 0.88; }

.btn-primary {
  background: #081835;
  color: var(--white);
  padding: 14px 28px;
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  padding: 14px 28px;
}
.btn-sm {
  padding: 12px 24px;
}
.btn-full {
  width: 100%;
  height: 48px;
  padding: 0;
}
.btn-lg {
  height: 52px;
  font-size: 15px;
}

/* ── Dot bullets ── */
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-dark { background: var(--blue); }
.dot-white { background: var(--white); }

/* ── Navbar ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 var(--px);
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.logo-img {
  height: 70px;
  width: auto;
  filter: invert(1);
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.lang-dropdown {
  position: relative;
  margin-right: 8px;
}
.lang-dd-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  transition: color 0.2s;
  line-height: 1;
}
.lang-dd-btn:hover { color: var(--white); }
.lang-dd-arrow {
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}
.lang-dd-btn:hover .lang-dd-arrow,
.lang-dropdown.open .lang-dd-arrow { opacity: 1; }
.lang-dropdown.open .lang-dd-arrow { transform: rotate(180deg); }
.lang-dropdown.open .lang-dd-btn { color: var(--white); }
.lang-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 14, 28, 0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 4px;
  min-width: 70px;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.lang-dropdown.open .lang-dd-menu { display: block; }
.lang-dd-item {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  padding: 7px 12px;
  text-align: left;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}
.lang-dd-item:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.lang-dd-item--active { color: var(--white); }
.nav-links a.btn::after { display: none; }
.nav-links a {
  color: var(--text-mid);
  font-size: 14px;
  position: relative;
  transition: color 0.25s, text-shadow 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ── Hero ── */
.gradient-zone {
  background: var(--bg);
  position: relative;
}
.gradient-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 33%, #0a1526 90%, #081835 100%);
  opacity: 0.48;
  pointer-events: none;
  z-index: 0;
}
.gradient-zone > * {
  position: relative;
  z-index: 1;
}
.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background: transparent;
}
.hero-content {
  position: absolute;
  left: var(--px);
  top: 220px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.hero-content h1 {
  font-size: 96px;
  line-height: 1.0;
  letter-spacing: -2px;
}
.hero-content .eyebrow {
  font-size: 12px;
  letter-spacing: 1.44px;
}

/* ── Why Choose Us ── */
.why-us {
  padding: 100px var(--px);
  background: transparent;
}
.why-us-image {
  width: 100%;
  min-height: 620px;
  background: #1a1a1f;
  border-radius: 6px;
  display: flex;
  align-items: center;
}
.why-us-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: clamp(36px, 5vw, 72px);
  max-width: 640px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: disc;
  padding-left: 18px;
}
.feature-list li {
  font-size: 14px;
  color: var(--text-light);
}
.stats {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Gallery ── */
.gallery {
  padding: 100px var(--px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gallery-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  height: 260px;
  border-radius: 4px;
}

/* ── About Us ── */
.about {
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 100px var(--px);
  background: transparent;
}
.about-image {
  width: 520px;
  height: 420px;
  flex-shrink: 0;
  background: #141a29;
  border-radius: 4px;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  flex: 1;
  max-width: 640px;
}
.about-text .body-text { color: #999; }

/* ── Services ── */
.services {
  display: flex;
  gap: 80px;
  align-items: stretch;
  padding: 100px var(--px);
  background: var(--bg);
}
.services-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.services-list h2 { margin-top: 16px; }
.service-items {
  width: 100%;
  margin-top: 40px;
}
.divider {
  height: 1px;
  background: var(--divider);
  width: 100%;
}
.service-item {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.service-item p {
  font-size: 13px;
  color: var(--text-muted);
}
.services-image {
  width: 520px;
  flex-shrink: 0;
  background: #0f1424;
  border-radius: 4px;
  align-self: stretch;
}

/* ── Pricing ── */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  padding: 100px var(--px);
  background: var(--bg);
}
.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.pricing-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  width: 400px;
  padding: 64px 40px;
  background: #1a1a1a;
  border: 1px solid var(--divider);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: box-shadow 0.4s ease;
}

.card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.pricing-card--featured {
  background: linear-gradient(160deg, #081835 0%, #0a1526 60%, #0d1220 100%);
  border-color: transparent;
}
.plan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--white);
}
.pricing-card--featured .plan-name { color: var(--white); }
.plan-price {
  font-size: 48px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1;
}
.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}
.card-divider {
  height: 1px;
  background: var(--divider);
  margin: 36px 0;
}
.card-divider--light { background: rgba(255, 255, 255, 0.25); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 20px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #bfbfbf;
}
.plan-features--light li { color: #e5edff; }
.plan-features-text {
  font-size: 14px;
  color: #bfbfbf;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 32px;
}
.plan-features-text--light { color: #e5edff; }

/* ── Contact ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 80px;
  align-items: stretch;
  padding: 100px var(--px);
  background: var(--bg);
  position: relative;
}
.contact > *:not(.gradient-glow) {
  position: relative;
  z-index: 1;
}
.gradient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info h2 {
  font-size: 36px;
  line-height: 1.15;
  margin-top: 10px;
  margin-bottom: 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #d9e8ff;
}
.contact-detail a {
  color: #d9e8ff;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--white); }
.contact-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #d9e8ff;
  opacity: 0.7;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cf-spacer { flex: 1; }
.cf-optional {
  font-weight: 400;
  font-size: 11px;
  opacity: 0.5;
}
.cf-packages {
  display: flex;
  gap: 8px;
}
.cf-pkg {
  padding: 5px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cf-pkg:hover { border-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.85); }
.cf-pkg.cf-pkg-sel { background: #ffffff; color: #0a0a0a; border-color: #ffffff; }
#cf-send:disabled { opacity: 0.35; cursor: default; }
.cf-error-msg { font-size: 12px; color: #ff6b6b; margin: 0; line-height: 1.4; }
.cf-success { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.25); border-radius: 10px; color: rgba(255,255,255,0.9); font-size: 13px; }
.cf-success svg { flex-shrink: 0; margin-top: 1px; color: #4ade80; }
.cf-success strong { display: block; margin-bottom: 2px; }
.cf-success p { margin: 0; font-size: 12px; opacity: 0.7; }
.bw-times-empty { font-size: 12px; opacity: 0.45; padding: 4px 0; }
.bw-sel-indicator {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 18px;
  font-size: 12px; font-weight: 500;
  color: var(--white);
}
.bw-sel-indicator svg { flex-shrink: 0; color: #4ade80; }

/* ── Booking Widget ─────────────────────────────────── */
.bw {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 4px 32px rgba(0,0,0,0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #f4f4f5;
}
.bw-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bw-spacer { flex: 1; }

/* Collapsible wrappers */
.bw-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.bw-collapse.bw-open { max-height: 180px; }

.bw-section {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bw-divider { border-top: 1px solid rgba(255,255,255,0.07); }

.bw-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Calendar header */
.bw-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bw-nav {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  border-radius: 6px;
  color: rgba(255,255,255,0.4);
  transition: background 0.15s, color 0.15s;
}
.bw-nav:hover { background: rgba(255,255,255,0.08); color: #fff; }
.bw-month {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

/* Day-of-week headers — fixed 34 px columns, centred */
.bw-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 34px);
  gap: 2px;
  justify-content: center;
}
.bw-weekdays span {
  width: 34px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  padding: 3px 0;
}

/* Day grid — each cell exactly 34 × 34 px */
.bw-grid {
  display: grid;
  grid-template-columns: repeat(7, 34px);
  gap: 2px;
  justify-content: center;
}
.bw-day {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  border-radius: 6px;
  border: none; background: none; cursor: pointer;
  color: rgba(255,255,255,0.75);
  transition: background 0.12s, color 0.12s;
  line-height: 1;
}
.bw-day:hover:not(:disabled):not(.bw-empty) { background: rgba(255,255,255,0.1); color: #fff; }
.bw-day:disabled { opacity: 0.2; cursor: default; }
.bw-day.bw-today { outline: 1px solid rgba(255,255,255,0.25); outline-offset: -1px; }
.bw-day.bw-selected { background: #ffffff; color: #0a0a0a; font-weight: 600; }
.bw-day.bw-empty { pointer-events: none; background: none !important; }
.bw-day--unavailable { opacity: 0.15 !important; cursor: default; }
.bw-loading { grid-column: 1 / -1; text-align: center; opacity: 0.35; font-size: 12px; pointer-events: none; }

/* Time slots */
.bw-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.bw-time {
  padding: 6px 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s, background 0.12s;
}
.bw-time:hover { border-color: rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.06); }
.bw-time.bw-time-sel { background: #ffffff; color: #0a0a0a; border-color: #ffffff; font-weight: 600; }

/* Contact inputs */
.bw-input {
  width: 100%;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 0 10px;
  font-size: 12px;
  color: #ffffff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}
.bw-input::placeholder { color: rgba(255,255,255,0.25); }
.bw-input:focus { border-color: rgba(255,255,255,0.35); }

/* Book button */
.bw-footer { padding: 10px 16px 14px; }
.bw-book-btn {
  width: 100%;
  height: 34px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.25);
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.bw-book-btn.bw-ready {
  background: #ffffff;
  color: #0a0a0a;
  cursor: pointer;
}
.bw-book-btn.bw-ready:hover { opacity: 0.88; }

/* Success screen */
.bw-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  gap: 8px;
}
.bw-success.bw-show { display: flex; }
.bw-check {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  margin-bottom: 4px;
}
.bw-success h3 {
  font-size: 15px; font-weight: 600; color: #ffffff; margin: 0;
}
.bw-success p {
  font-size: 12px; color: rgba(255,255,255,0.5); margin: 0;
}
.bw-success-note {
  font-size: 11px !important;
  color: rgba(255,255,255,0.3) !important;
  margin-top: 4px !important;
}

/* ── Confirm Appointment Modal ──────────────────────── */
.bm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.bm-overlay.bm-open {
  opacity: 1;
  pointer-events: auto;
}
.bm-dialog {
  background: #141414;
  border-radius: 12px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  transform: translateY(16px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.bm-overlay.bm-open .bm-dialog {
  transform: translateY(0);
}
.bm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: #71717a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.bm-close:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.bm-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}
.bm-subtitle {
  font-size: 13px;
  color: #71717a;
  margin: 0 0 20px;
}
.bm-summary {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bm-row:last-child { border-bottom: none; }
.bm-row-label { font-size: 13px; color: #71717a; }
.bm-row-value { font-size: 13px; font-weight: 500; color: #ffffff; }
.bm-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #d4d4d8;
  margin-bottom: 6px;
}
.bm-input {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  padding: 0 12px;
  font-size: 13px;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  box-sizing: border-box;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.15s;
  font-family: inherit;
}
.bm-input::placeholder { color: #52525b; }
.bm-input:focus { border-color: rgba(255,255,255,0.3); }
.bm-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.bm-cancel {
  flex: 1;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #d4d4d8;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.bm-cancel:hover { background: rgba(255,255,255,0.07); }
.bm-confirm {
  flex: 1;
  height: 38px;
  background: #ffffff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #0a0a0a;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.bm-confirm:hover:not(:disabled) { opacity: 0.85; }
.bm-confirm:disabled { opacity: 0.25; cursor: default; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #d9e8ff;
}
.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0 16px;
  height: 48px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group textarea {
  height: 130px;
  padding-top: 14px;
  resize: vertical;
}

/* ── Footer ── */
.footer {
  background: var(--bg);
  padding: 70px var(--px) 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.footer > *:not(.gradient-glow) {
  position: relative;
  z-index: 1;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-cols-right {
  display: flex;
  gap: 48px;
}
.footer-col {
  flex: 1;
}
.footer-brand {
  flex: 0 0 340px;
}
.footer-cols-right .footer-col {
  flex: 0 0 auto;
  min-width: 160px;
}
.footer-logo {
  height: 51px;
  width: auto;
  margin-bottom: 16px;
  filter: invert(1);
}
.footer-brand p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #ffffff;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col ul li,
.footer-col ul a {
  font-size: 14px;
  color: #737373;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.footer-col ul a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(160, 190, 255, 0.6);
}
.footer-divider {
  height: 1px;
  background: var(--divider);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom > p {
  font-size: 13px;
  color: #666;
}
.social-icons {
  display: flex;
  gap: 16px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.25s ease, filter 0.25s ease;
}
.social-icon svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}
.social-icon:hover {
  color: #ffffff;
  filter: drop-shadow(0 0 7px rgba(160, 190, 255, 0.65));
}

/* ── Inner pages: push content below absolute navbar ── */
body.page-inner { padding-top: 100px; }

/* ── Active nav link ── */
.nav-links a.nav-active { color: var(--white); }
.nav-links a.nav-active::after { transform: scaleX(1); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 180px var(--px) 90px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,36,97,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 72px;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-top: 12px;
}
.page-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 460px;
}

/* ── CTA Strip ── */
.cta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 100px var(--px);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-strip > *:not(.gradient-glow) { position: relative; z-index: 1; }
.cta-strip h2 { font-size: 44px; line-height: 1.1; letter-spacing: -1px; }
.cta-strip p { color: var(--text-muted); font-size: 15px; max-width: 440px; }

/* ── Values Grid (about page) ── */
.values-section {
  padding: 100px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-card h3 { font-size: 20px; font-weight: 700; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.value-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}

/* ── Service Cards (services page) ── */
.services-page-section {
  padding: 100px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.service-page-card {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: #161616;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  position: relative;
}
.service-page-card > *:not(.gradient-glow) { position: relative; z-index: 1; }
/* Bento spans */
.service-page-card:nth-child(1) { grid-column: span 2; justify-self: start; width: 80%; }
.service-page-card:nth-child(2) { justify-self: end; width: 141%; }
.service-page-card:nth-child(6) { grid-column: span 2; }
.service-page-card h3 { font-size: 20px; font-weight: 700; }
.service-page-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.service-page-number {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
}

/* ── Portfolio Full Grid ── */
.portfolio-section {
  padding: 60px var(--px) 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
.portfolio-section > *:not(.gradient-glow) { position: relative; z-index: 1; }
.portfolio-intro { max-width: 520px; }
.portfolio-intro p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-top: 12px; }
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-full-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: #141420;
  overflow: hidden;
}
.portfolio-full-item img {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.portfolio-full-item img.img-visible {
  opacity: 1;
}
.portfolio-full-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ── Portfolio Preview (homepage) ── */
.portfolio-preview {
  padding: 80px var(--px) 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.portfolio-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-preview-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.portfolio-preview-item:hover {
  transform: scale(1.06);
}

/* ── About story layout ── */
.about-page-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px var(--px);
  align-items: center;
}
.about-page-image {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: #141420;
  overflow: hidden;
}
.about-page-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-page-text h2 { font-size: 40px; line-height: 1.15; letter-spacing: -0.5px; }
.about-page-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */

/* Hamburger toggle — injected by lang.js, hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  margin: -9px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.navbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-locked { overflow: hidden; }

/* ─── Large tablet / small laptop ─── */
@media (max-width: 1080px) {
  :root { --px: 48px; }
  .hero { height: 560px; }
  .hero-content { top: 200px; }
  .hero-content h1 { font-size: 76px; }
  .page-hero { padding: 160px var(--px) 80px; }
  .page-hero h1 { font-size: 58px; }
  .about, .services, .contact { gap: 48px; }
  .about-image { width: 420px; height: 360px; }
  .services-image { width: 420px; }
  .pricing-card { width: 340px; padding: 56px 32px; }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .service-page-card:nth-child(1),
  .service-page-card:nth-child(2),
  .service-page-card:nth-child(6) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

/* ─── Tablet portrait — mobile nav kicks in ─── */
@media (max-width: 860px) {
  :root { --px: 24px; }

  .navbar { height: 76px; padding: 0 var(--px); }
  .logo-img { height: 52px; }
  body.page-inner { padding-top: 76px; }

  /* Slide-in menu panel */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(82vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 96px 30px 40px;
    background: rgba(9, 13, 23, 0.98);
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-y: auto;
  }
  .navbar.nav-open .nav-links { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { font-size: 17px; display: inline-block; }
  .nav-links a.btn { width: 100%; margin-top: 8px; }
  .lang-dropdown { margin: 0 0 8px; }
  .lang-dd-menu,
  .lang-dropdown.open .lang-dd-menu { left: 0; transform: none; }

  /* Hero */
  .hero { height: 500px; }
  .hero-content { left: var(--px); right: var(--px); top: 168px; gap: 24px; }
  .hero-content h1 { font-size: 54px; letter-spacing: -1px; }

  /* Two-column sections → stacked */
  .about, .services {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
    padding: 72px var(--px);
  }
  .about-image { width: 100%; height: 300px; }
  .services-image { width: 100%; min-height: 300px; }
  .about-text, .services-list { max-width: 100%; }

  /* Pricing */
  .pricing { padding: 72px var(--px); gap: 40px; }
  .pricing-cards { flex-direction: column; width: 100%; max-width: 440px; }
  .pricing-card { width: 100%; padding: 48px 32px; }

  /* Contact */
  .contact {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 72px var(--px);
  }

  /* Section vertical rhythm */
  .why-us, .gallery, .values-section, .services-page-section,
  .portfolio-section, .portfolio-preview, .about-page-story {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .why-us-image { min-height: 480px; }

  /* Grids → 2 columns */
  .gallery-grid, .values-grid,
  .portfolio-full-grid, .portfolio-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About story stacks */
  .about-page-story { grid-template-columns: 1fr; gap: 40px; }

  /* Inner page hero */
  .page-hero { padding: 124px var(--px) 60px; }
  .page-hero h1 { font-size: 46px; }
  .page-hero-sub { max-width: 100%; }

  /* CTA */
  .cta-strip { padding: 80px var(--px); }
  .cta-strip h2 { font-size: 34px; }

  /* Footer */
  .footer { padding: 56px var(--px) 32px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { flex: 0 0 auto; }
  .footer-cols-right { gap: 40px; flex-wrap: wrap; }
}

/* ─── Phones ─── */
@media (max-width: 540px) {
  :root { --px: 20px; }

  h1 { font-size: 38px; }
  h2 { font-size: 28px; }

  .hero { height: 440px; }
  .hero-content { top: 140px; gap: 20px; }
  .hero-content h1 { font-size: 42px; }

  .page-hero h1 { font-size: 36px; }

  /* All multi-column grids → single column */
  .gallery-grid, .values-grid,
  .portfolio-full-grid, .portfolio-preview-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
  }
  .services-page-grid { grid-auto-rows: auto; }
  .service-page-card { min-height: 190px; }
  .portfolio-full-item.featured { grid-column: auto; aspect-ratio: 4/3; }

  /* Stack headers / rows */
  .gallery-header, .portfolio-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .stats { gap: 28px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-cols-right { gap: 32px; }

  /* Pricing / CTA */
  .pricing-card { padding: 40px 24px; }
  .plan-price { font-size: 40px; }
  .cta-strip { padding: 64px var(--px); }
  .cta-strip h2 { font-size: 26px; }
}
