/* ═══════════════════════════════════════════════════════════════
   MaksHost.eu — Full CSS (ported from Next.js globals.css)
   Glassmorphism design system · Inter + Outfit fonts
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap');

:root {
  --brand-blue:        #1e40af;
  --brand-blue-light:  #3b82f6;
  --brand-blue-hover:  #1d4ed8;
  --brand-cyan:        #06b6d4;
  --bg-primary:        #f8fafc;
  --bg-secondary:      #f1f5f9;
  --bg-white:          #ffffff;
  --text-main:         #0f172a;
  --text-muted:        #64748b;
  --text-light:        #94a3b8;
  --glass-bg:          rgba(255,255,255,0.82);
  --glass-border:      rgba(255,255,255,0.7);
  --glass-shadow:      0 8px 32px rgba(31,38,135,0.08);
  --font-heading:      'Outfit', 'Inter', system-ui, sans-serif;
  --font-body:         'Inter', system-ui, sans-serif;
  --radius-xl:         24px;
  --radius-lg:         16px;
  --radius-md:         12px;
  --radius-sm:         8px;
  --transition:        all 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:         0 2px 8px rgba(15,23,42,0.06);
  --shadow-md:         0 4px 16px rgba(15,23,42,0.10);
  --shadow-lg:         0 12px 40px rgba(15,23,42,0.13);
  --shadow-blue:       0 4px 20px rgba(37,99,235,0.35);
  --nav-h:             72px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { scroll-behavior: smooth; }
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-blue); }
img, video { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════
   GLASS PANEL
═══════════════════════════════════════════ */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}
.glass-panel:hover {
  box-shadow: 0 16px 48px rgba(31,38,135,0.12);
  transform: translateY(-3px);
}
.glass-panel--static:hover { transform: none; box-shadow: var(--glass-shadow); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 100%);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.5);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--bg-white);
  color: var(--brand-blue);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(59,130,246,0.25);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: #eff6ff;
  border-color: var(--brand-blue-light);
  transform: translateY(-2px);
  color: var(--brand-blue);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff1f2;
  color: #e11d48;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid #fecdd3;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-danger:hover { background: #ffe4e6; border-color: #fb7185; color: #e11d48; }

.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }

/* ═══════════════════════════════════════════
   INPUTS
═══════════════════════════════════════════ */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #e2e8f0;
  background: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}
.input-field:focus {
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
  background: #fff;
}
.input-field::placeholder { color: var(--text-light); }
textarea.input-field { resize: vertical; min-height: 130px; }
label.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-group { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.1rem; }

/* ═══════════════════════════════════════════
   NAVIGATION — GLASSMORPHISM
═══════════════════════════════════════════ */
.main-nav {
  position: sticky;
  top: 0.75rem;
  z-index: 200;
  margin: 0.75rem 1.5rem;
  padding: 0 1.75rem;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo:hover { opacity: 0.85; }
.nav-logo img { height: 38px; width: auto; max-width: 160px; object-fit: contain; }

/* Desktop links */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--brand-blue); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue-light);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link--active::after { width: 100%; }
.nav-link--active { color: var(--brand-blue); }

.nav-cta-btn { padding: 0.55rem 1.25rem; font-size: 0.9rem; }

/* ─── Hamburger button ─── */
.hamburger-btn {
  display: none;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger-icon--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-icon--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-icon--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hamburger-label { font-weight: 700; font-size: 0.88rem; }

/* ─── Mobile overlay ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  z-index: 299;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.mobile-overlay--visible {
  display: block;
  opacity: 1;
}

/* ─── Mobile drawer ─── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: white;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(15,23,42,0.15);
  overflow-y: auto;
}
.mobile-drawer--open { transform: translateX(0); }
.mobile-drawer-inner { padding: 2rem 1.5rem; display: flex; flex-direction: column; min-height: 100%; }

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════ */
.lsw-wrapper { position: relative; }

.lsw-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px 6px 8px;
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  line-height: 1;
}
.lsw-trigger:hover { border-color: var(--brand-blue-light); box-shadow: 0 2px 8px rgba(59,130,246,.12); }
.lsw-trigger.open .lsw-caret { transform: rotate(180deg); }
.lsw-caret { width: 14px; height: 14px; stroke: #94a3b8; transition: transform .2s; flex-shrink: 0; }

.lsw-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 155px;
  z-index: 1100;
  animation: lswIn .16s ease;
}
@keyframes lswIn {
  from { opacity: 0; transform: translateY(-6px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.lsw-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 9px;
  cursor: pointer;
  border: none;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: background .14s, color .14s;
  text-align: left;
  width: 100%;
  text-decoration: none;
}
.lsw-opt:hover  { background: #f1f5f9; color: var(--text-main); }
.lsw-opt.active { background: #eff6ff; color: var(--brand-blue); }
.lsw-check { margin-left: auto; color: var(--brand-blue); }
.lsw-flag-wrap {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Desktop-only: shown on ≥769px */
.lsw-desktop { display: flex; }
/* Mobile controls: hidden on desktop */
.nav-mobile-controls { display: none; }

/* Mobile language pills */
.lsw-strip { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.lsw-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px 6px 8px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  background: white;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  text-decoration: none;
}
.lsw-pill:hover  { border-color: var(--brand-blue-light); color: var(--brand-blue); }
.lsw-pill.active { border-color: var(--brand-blue); background: #eff6ff; color: var(--brand-blue); }

.mobile-nav-link {
  display: block;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--bg-secondary); color: var(--brand-blue); }

.mobile-cta-link {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
}

/* ═══════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.9rem,4vw,2.75rem); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0.5rem auto 0; }

/* ─── Service row (alternating) ─── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-row__img { display: flex; justify-content: center; }
.service-row__text { display: flex; flex-direction: column; }

/* ─── Hero grid ─── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ─── Stats grid ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ─── Cards grid ─── */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.cards-grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; }

/* ─── Portfolio grid ─── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 2rem; }

.portfolio-card {
  display: block;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }

.portfolio-card__img {
  position: relative;
  width: 100%;
  padding-bottom: 62.5%;
  background: #f1f5f9;
  overflow: hidden;
}
.portfolio-card__img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(30,64,175,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.portfolio-card__body { padding: 1.25rem 1.5rem; }
.portfolio-card__body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; }
.portfolio-card__body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.portfolio-card__url {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-blue-light);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   BADGE / TAG
═══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-blue  { background: #dbeafe; color: var(--brand-blue); }
.badge-green { background: #dcfce7; color: #166534; }
.badge-white { background: rgba(255,255,255,0.2); color: white; }

/* ═══════════════════════════════════════════
   STAT CARD
═══════════════════════════════════════════ */
.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  text-align: center;
}
.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #e0f2fe 100%);
  padding: 4rem 0 3.5rem;
}

.hero-badge { margin-bottom: 1.25rem; display: inline-flex; }

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-h1 .gradient-text {
  background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  max-width: 420px;
  width: 100%;
  background: white;
}

.hero-card img { width: 100%; height: auto; object-fit: contain; }

/* ═══════════════════════════════════════════
   SERVICE ROW CONTENT
═══════════════════════════════════════════ */
.service-img-wrap {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  max-width: 440px;
  width: 100%;
}
.service-img-wrap img { width: 100%; height: auto; object-fit: contain; }

.service-img-wrap--normal {
  background: white;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-sm);
}
.service-img-wrap--highlight {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid var(--brand-blue-light);
  box-shadow: 0 16px 50px rgba(59,130,246,0.22);
}

.service-badge { margin-bottom: 1rem; align-self: flex-start; }
.service-h2 { font-size: clamp(1.65rem, 3vw, 2.2rem); margin-bottom: 0.85rem; }
.service-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.4rem; line-height: 1.75; }
.service-points { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.service-points li { display: flex; gap: 0.65rem; font-size: 0.95rem; }
.service-check { color: var(--brand-blue-light); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CTA BANNER (blue)
═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1d4ed8 60%, #2563eb 100%);
  padding: 4rem 0;
  margin: 0 0 5rem;
}
.cta-banner__inner { text-align: center; max-width: 660px; margin: 0 auto; padding: 0 2rem; }
.cta-banner h2 { color: white; font-size: clamp(1.85rem,4vw,2.6rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.25rem; line-height: 1.7; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-secondary { color: var(--brand-blue); font-weight: 700; }
.cta-banner .btn-secondary:hover { color: var(--brand-blue); }
.cta-banner .btn-ghost {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow: none;
  color: white;
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.28); color: white; }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.9rem,4vw,2.75rem); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-detail svg { flex-shrink: 0; color: var(--brand-blue-light); }
.contact-detail a { color: var(--brand-blue); font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 1.75rem; }

.honeypot { display: none !important; }

.form-msg {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
}
.form-msg--success { background: #dcfce7; color: #166534; display: block; }
.form-msg--error   { background: #fff1f2; color: #e11d48; display: block; }

/* ═══════════════════════════════════════════
   BOOKING PAGE SPECIFIC
═══════════════════════════════════════════ */
.use-case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.use-case-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: var(--transition);
}
.use-case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.use-case-card__icon { flex-shrink: 0; }
.use-case-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.use-case-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 2rem; }
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
}
.feature-icon-wrap {
  width: 52px; height: 52px;
  background: #eff6ff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; align-items: stretch; }

.plan-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.plan-card--normal {
  background: white;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
}
.plan-card--highlight {
  background: linear-gradient(145deg, #1e40af, #2563eb);
  box-shadow: 0 20px 60px rgba(37,99,235,0.35);
  color: white;
  transform: scale(1.03);
}
.plan-badge {
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 1rem;
  color: white;
}
.plan-card h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.plan-card__desc { font-size: 0.85rem; opacity: 0.75; margin-bottom: 1.75rem; }
.plan-price-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.6; display: block; margin-bottom: 0.2rem; }
.plan-price-value { font-size: 1.6rem; font-weight: 900; font-family: var(--font-heading); }
.plan-price-suffix { font-size: 0.85rem; opacity: 0.7; }
.plan-price-block { margin-bottom: 0.5rem; }
.plan-sub-block { margin-bottom: 2rem; }
.plan-sub-value { font-size: 2rem; font-weight: 900; font-family: var(--font-heading); }
.plan-items { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; flex: 1; }
.plan-items li { display: flex; gap: 0.6rem; font-size: 0.92rem; align-items: flex-start; }
.plan-check-normal  { color: var(--brand-blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-check-highlight { color: #86efac; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.comparison-table { overflow-x: auto; }
.comparison-table table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table thead tr { background: var(--brand-blue); color: white; }
.comparison-table th { padding: 1.1rem 1.5rem; text-align: left; font-weight: 700; }
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table th:last-child { background: #1d4ed8; text-align: center; }
.comparison-table td { padding: 0.9rem 1.5rem; font-size: 0.9rem; }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:nth-child(even) td { background: #f8fafc; }
.comparison-table tr:nth-child(odd) td { background: white; }
.comparison-table td:last-child { font-weight: 700; background: #f0fdf4 !important; }
.text-red   { color: #e11d48; }
.text-green { color: #166534; }
.fw-600     { font-weight: 600; }

/* ═══════════════════════════════════════════
   PRIVACY PAGE
═══════════════════════════════════════════ */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-content h2 { font-size: 1.25rem; margin-top: 2.5rem; margin-bottom: 0.65rem; color: var(--text-main); }
.privacy-content p { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* ═══════════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════════ */
.admin-body {
  background: #f1f5f9;
  min-height: 100vh;
  font-family: var(--font-body);
}
.admin-sidebar {
  width: 240px;
  background: #0f172a;
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.25rem;
  gap: 0.5rem;
  z-index: 100;
}
.admin-sidebar__logo {
  padding: 0 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.75rem;
}
.admin-sidebar__logo img { height: 32px; width: auto; opacity: 0.9; filter: brightness(0) invert(1); }

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  transition: var(--transition);
  text-decoration: none;
}
.admin-nav-link:hover { background: rgba(255,255,255,0.07); color: #e2e8f0; }
.admin-nav-link--active { background: rgba(59,130,246,0.18); color: #93c5fd; }
.admin-nav-link svg { flex-shrink: 0; }

.admin-main {
  margin-left: 240px;
  padding: 2rem 2.5rem;
  min-height: 100vh;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.admin-topbar h1 { font-size: 1.5rem; font-weight: 800; margin: 0; }
.admin-breadcrumb { font-size: 0.82rem; color: var(--text-muted); }

.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.25rem; margin-bottom: 2rem; }

.admin-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-stat-icon--blue  { background: #dbeafe; color: var(--brand-blue); }
.admin-stat-icon--green { background: #dcfce7; color: #166534; }
.admin-stat-icon--amber { background: #fef3c7; color: #92400e; }
.admin-stat-val  { font-size: 1.75rem; font-weight: 900; font-family: var(--font-heading); color: var(--text-main); line-height: 1; }
.admin-stat-lbl  { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }

.admin-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}
.admin-card h2 { font-size: 1.1rem; margin-bottom: 1.25rem; padding-bottom: 0.85rem; border-bottom: 1px solid #f1f5f9; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { text-align: left; padding: 0.65rem 1rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); border-bottom: 2px solid #f1f5f9; }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #f8fafc; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }
.admin-table .unread td { font-weight: 600; }

.badge-unread { background: #fef3c7; color: #92400e; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.badge-read   { background: #f1f5f9; color: #64748b; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}
.admin-login-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.admin-login-card h1 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.admin-login-card p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.92rem; }
.admin-alert { padding: 0.75rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.88rem; font-weight: 600; }
.admin-alert--error { background: #fff1f2; color: #e11d48; }

.toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-track {
  width: 36px; height: 20px;
  background: #cbd5e1;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s;
}
.toggle-track::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
input:checked + .toggle-track { background: var(--brand-blue-light); }
input:checked + .toggle-track::after { transform: translateX(16px); }

/* ═══════════════════════════════════════════
   FOOTER — dark, high-contrast
═══════════════════════════════════════════ */
.site-footer {
  margin-top: 6rem;
  background: #0f172a;
  color: #cbd5e1;
}
.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-brand img { height: 34px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 0.5rem;
}
.footer-col a { font-size: 0.9rem; color: #94a3b8; }
.footer-col a:hover { color: #f1f5f9; }
.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
  color: #475569;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* ═══════════════════════════════════════════
   ALERT / NOTICE BOXES
═══════════════════════════════════════════ */
.alert { padding: 0.85rem 1.1rem; border-radius: var(--radius-md); font-size: 0.9rem; margin-bottom: 1rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fff1f2; color: #e11d48; border: 1px solid #fecdd3; }
.alert-info    { background: #dbeafe; color: var(--brand-blue); border: 1px solid #bfdbfe; }

/* ═══════════════════════════════════════════
   RESPONSIVE  ≤ 1024px  (tablet)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row__img { order: -1 !important; }
  .service-row__text { order: 0 !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-grid > div:last-child { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1/-1; }
  .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE  ≤ 768px  (mobile)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* Nav */
  .main-nav { margin: 0.5rem 0.75rem; padding: 0 1.25rem; }
  .nav-links-desktop { display: none; }
  .hamburger-btn { display: inline-flex; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid > div:last-child { order: -1; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }

  /* Services */
  .service-row { grid-template-columns: 1fr; gap: 2rem; }

  /* Cards */
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  /* Section */
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* Lang switcher */
  .lsw-desktop { display: none !important; }
  .nav-mobile-controls { display: flex !important; }

  /* Booking page pricing */
  .plan-card--highlight { transform: none; }

  /* Admin */
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 1.25rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE  ≤ 480px  (small mobile)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .stat-card { padding: 1.25rem; }
  .stat-card .stat-value { font-size: 1.75rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .contact-form-wrap { padding: 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.82rem; }
}
