:root {
  --bg: #eaf1ff;
  --panel: #ffffff;
  --text: #1a1a1f;
  --muted: #5c5c68;
  --accent: #2563eb;
  --accent-strong: #1e40af;
  --border: #e6e6ec;
  --shadow: 0 10px 40px rgba(17, 24, 39, 0.1);
  --radius: 14px;
  --radius-soft: 18px;
  --radius-sharp: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Mobile drawer: slow glide + soft deceleration into place (not a snap) */
  --ease-nav-drawer: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-nav-drawer: 1s;
  /* Hamburger morph: same curve, shorter so it doesn’t lag behind the panel */
  --duration-nav-icon: 0.52s;
  --duration-sm: 0.22s;
  --duration-md: 0.35s;
  --duration-lg: 0.5s;
  --accent-warm: #f97316;
  --accent-warm-light: #fb923c;
  --accent-warm-dark: #ea580c;
  --focus-ring: 2px solid var(--accent-warm);
  --focus-ring-nav: 2px solid #fff;
  --focus-offset: 3px;
  --photo-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
  --bg-warm-tint: #fff7ed;
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gradient-blue-orange: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
  --footer-bg: #475569;
  --photo-grade: saturate(1.07) contrast(1.03) brightness(1.01);
}

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

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.nav-bar__content :focus-visible {
  outline: var(--focus-ring-nav);
  outline-offset: var(--focus-offset);
}

.nav-bar__menu-toggle:focus-visible {
  outline: var(--focus-ring-nav);
  outline-offset: 4px;
}

html {
  /* Offset in-page anchors (#contact, #routes) below sticky nav */
  scroll-padding-top: 5.5rem;
  min-width: 0;
  height: 100%;
  /* Global type scale (rem-based); bumped for comfortable reading with Source Sans 3 */
  font-size: 118%;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
  opacity: 0;
  animation: fadeIn 0.4s ease-in-out forwards;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

main {
  flex: 1;
}

/* Page transition overlay */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-md) var(--ease-out);
}

.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.page-transition-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

.page-transition-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  margin: 5px;
  border: 3px solid var(--accent);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

img {
  max-width: 100%;
  height: auto;
}

.hero-image__img,
.offers-hero__img,
.about__img,
.route-card__img,
.gallery-img,
.blog-post__img {
  filter: var(--photo-grade);
}

/* Shared “surface” photos: consistent radius + depth (hero stays full-bleed; route cards use card shadow) */
.offers-hero__img,
.about__img,
.gallery-img,
.blog-post__img {
  border-radius: var(--radius);
  box-shadow: var(--photo-shadow);
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 0.85rem;
  font-weight: 600;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.social-icon {
  display: block;
}

.nav-bar {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 10000;
  position: sticky;
  top: 0;
  width: 100%;
  transition: box-shadow var(--duration-md) var(--ease-out);
}

.nav-bar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 12px clamp(20px, 4vw, 48px);
  background: var(--gradient-blue);
}

.nav-bar__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.nav-bar__menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: transform var(--duration-nav-icon) var(--ease-nav-drawer),
    opacity calc(var(--duration-nav-icon) * 0.8) var(--ease-nav-drawer);
  border-radius: 2px;
}

.nav-bar__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-bar__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-bar__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-bar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  flex: 1;
  position: relative;
  z-index: 2;
}


.nav-bar__nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-bar__nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-bar__nav-right .social-links {
  margin-right: 0;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  z-index: 100;
  flex-shrink: 0;
}

.brand a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--duration-md) var(--ease-out), transform var(--duration-md) var(--ease-out);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand a:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

.brand a:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.brand .logo-img {
  width: 168px;
  height: auto;
  object-fit: contain;
  display: block;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  padding: 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  color: var(--accent-warm);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  transition: fill 0.2s ease, color 0.2s ease;
}

.social-links a span {
  display: none;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-bar__nav a {
  padding: 10px 12px;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s ease;
}

.nav-bar__nav a:hover {
  color: var(--accent-warm-light);
}

.nav-bar__nav a:focus-visible {
  outline: var(--focus-ring-nav);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav-bar__nav a.active {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 8px;
}

.nav-bar__nav .pill {
  background: var(--accent-warm);
  color: #fff;
  border: 2px solid var(--accent-warm);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.18s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
  margin-left: 8px;
}

.nav-bar__nav .pill:hover {
  background: var(--accent-warm-dark);
  border-color: var(--accent-warm-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.nav-bar__nav .pill:focus-visible {
  outline: var(--focus-ring-nav);
  outline-offset: 4px;
}

.lang-select {
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  padding-right: 32px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.18s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  backdrop-filter: blur(4px);
  overflow: visible;
  transform: translateX(8px);
}

.lang-select:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-select:focus:not(:focus-visible) {
  outline: none;
}

.lang-select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

h4 {
  margin: 0 0 6px;
}

.lede {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.65;
}

/* Comfortable reading width in content sections (not full-bleed hero) */
section.section .lede,
section.section .about__extended p,
section.section .about__outro p,
section.section .about__intro p {
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-sharp);
  font-weight: 600;
  border: 1px solid transparent;
  transition: background var(--duration-sm) var(--ease-out), color var(--duration-sm) var(--ease-out), border-color var(--duration-sm) var(--ease-out), box-shadow var(--duration-sm) var(--ease-out), transform var(--duration-sm) var(--ease-out);
}

.btn.primary {
  background: var(--gradient-blue);
  color: #fff;
  border-color: var(--accent);
}

.btn.primary:hover {
  background: var(--gradient-orange);
  border-color: var(--accent-warm);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn.ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn.ghost:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm-dark);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.btn.large {
  padding: 14px 22px;
}


.hero-image {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-soft) var(--radius-soft);
  background: var(--bg);
  margin: 0;
  padding: 0;
  display: block;
}

.hero-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Helps avoid slightly soft scaling on some mobile GPUs */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 88% 54% at 50% 46%, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.14) 46%, transparent 70%),
    radial-gradient(ellipse 95% 75% at 50% 38%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 45%, transparent 65%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  padding: 60px clamp(20px, 4vw, 48px);
  padding-top: 80px;
  z-index: 1;
}

.hero-image__overlay .hero__content {
  max-width: 860px;
  color: #fff;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.hero-image__overlay .hero__content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow:
    0 0 28px rgba(0, 0, 0, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 4px 28px rgba(0, 0, 0, 0.4);
}

.hero-image__overlay .hero__content .lede {
  text-align: center;
  font-size: clamp(1rem, 2.1vw, 1.08rem);
  line-height: 1.65;
  font-weight: 500;
  color: #fff;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4px;
  text-shadow:
    0 0 22px rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 3px 26px rgba(0, 0, 0, 0.45);
}

.hero-image__overlay .hero__actions {
  justify-content: center;
  width: 100%;
  display: flex;
}

.hero-image__overlay .hero__content .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hero-image__overlay .btn.ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-image__overlay .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Page Hero Banner for sub-pages */
.page-hero {
  background: #f5f5f5;
  padding: 24px clamp(20px, 4vw, 48px) 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: none;
}

.page-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.page-hero__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.breadcrumbs {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px clamp(20px, 4vw, 48px);
}

.breadcrumbs__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}

.breadcrumbs__content a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__content a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

.breadcrumbs__separator {
  color: var(--muted);
  opacity: 0.6;
}

.breadcrumbs__content span:last-child {
  color: var(--text);
  font-weight: 500;
}

.section {
  padding: 70px clamp(16px, 3vw, 40px);
  background: var(--bg);
  min-width: 0;
}

.section:nth-child(even) {
  background: var(--bg-warm-tint);
}

.section.muted {
  background: #ffffff;
  padding: 70px clamp(16px, 3vw, 40px);
  overflow: hidden;
}

.section.muted:nth-child(even) {
  background: var(--bg-warm-tint);
}

#offers.section.muted {
  padding-bottom: 180px;
}

.about {
  background: #ffffff;
}

/* Alternating backgrounds - hero is image, so start with about as white */
#about {
  background: #ffffff;
  padding: 70px clamp(16px, 3vw, 40px);
}

#about .section__header {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
}

#offers {
  background: var(--bg);
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.offers-hero {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 120px;
}

.offers-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.offers-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.offers-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -180px;
}

.offers-hero__textbox {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: 100%;
  text-align: center;
  border: 1px solid rgba(230, 230, 236, 0.95);
  transition: transform var(--duration-md) var(--ease-out), box-shadow var(--duration-md) var(--ease-out), border-color var(--duration-md) var(--ease-out);
}

#offers:hover .offers-hero__textbox,
.offers-hero__textbox:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.14), 0 18px 48px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
}

.offers-hero__textbox .eyebrow {
  margin: 0 0 10px;
}

.offers-hero__textbox h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 18px;
  text-align: center;
  line-height: 1.25;
}

.offers-hero__textbox p:not(.eyebrow) {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 22px;
  text-align: center;
}

.offers-hero__textbox .btn {
  margin: 0;
  display: inline-block;
}

.offers-cta {
  text-align: center;
  margin-top: 48px;
  padding: 0 20px;
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Offer Page Styles */
.offer-page {
  padding: 70px clamp(16px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}

.offer-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(147, 197, 253, 0.03) 100%);
  z-index: 0;
  pointer-events: none;
}

.offer-page::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-30px, -50px) scale(1.1);
    opacity: 0.7;
  }
}

.offer-page > * {
  position: relative;
  z-index: 1;
}

/* Animated background shapes for offer page */
.offer-page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
  animation: drift 25s ease-in-out infinite;
}

.bg-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(59, 130, 246, 0.3));
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.3), rgba(96, 165, 250, 0.2));
  bottom: 20%;
  right: -5%;
  animation-delay: 8s;
}

.bg-shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.2));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 15s;
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

@media (max-width: 768px) {
  .bg-shape {
    filter: blur(40px);
  }
  
  .bg-shape-1,
  .bg-shape-2,
  .bg-shape-3 {
    width: 250px;
    height: 250px;
  }
}

.offer-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: stretch;
}

.offer-page__main {
  min-width: 0;
  max-width: min(68ch, 840px);
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  box-sizing: border-box;
}

.offer-page__main * {
  max-width: 100%;
  box-sizing: border-box;
}

.offer-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 320px;
  flex-shrink: 0;
  justify-self: end;
}

.offer-page .section__header {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
}

.offer-page .section__header h2 {
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .offer-page__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-page__main {
    max-width: 100%;
  }

  .offer-page__sidebar {
    max-width: 100%;
    justify-self: stretch;
    order: 2;
    margin-top: 0;
  }

  .offer-page .section__header {
    grid-column: 1;
    margin-bottom: 32px;
  }
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent-warm);
  border-radius: var(--radius-sharp);
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform var(--duration-md) var(--ease-out), box-shadow var(--duration-md) var(--ease-out), border-color var(--duration-md) var(--ease-out);
}

.sidebar-card:hover {
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.sidebar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
}

.sidebar-card--contact .sidebar-contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
}

.sidebar-card--contact .sidebar-contact__item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.sidebar-card--contact .sidebar-contact__item a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  word-break: break-word;
  transition: color 0.2s ease;
}

.sidebar-card--contact .sidebar-contact__item a:hover {
  color: var(--accent);
}

.sidebar-card--contact .btn {
  width: 100%;
  margin-top: 8px;
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.sidebar-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.sidebar-why__list li:last-child {
  margin-bottom: 0;
}

.sidebar-why__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.sidebar-testimonial {
  text-align: center;
}

.sidebar-testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 12px;
}

.sidebar-testimonial__author {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}

.offer-intro {
  margin: 0 0 32px;
}

.offer-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 16px;
}

.offer-intro p:last-child {
  margin-bottom: 0;
}

.offer-services {
  margin: 0;
}

.offer-services h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.offer-services__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
}

.offer-services__list li {
  margin: 4px 0;
  padding-left: 28px;
  position: relative;
  display: block;
}

.offer-services__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
}

.offer-services__inline-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}

.offer-services__inline-link:hover {
  color: var(--accent-warm-dark);
  border-bottom-color: var(--accent-warm);
}

.offer-audience {
  margin: 40px 0 0;
}

.offer-audience h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.offer-audience__intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px;
}

.offer-audience__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
}

.offer-audience__list li {
  margin: 4px 0;
  padding-left: 28px;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.offer-audience__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
}

.offer-pricing {
  margin-top: 40px;
}

.offer-pricing h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.offer-pricing p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 40px;
}

.offer-process {
  margin: 40px 0 0;
}

.offer-process h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-step__circle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step__number {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.process-step__content {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.process-step__title {
  font-weight: 600;
}

.process-step__separator {
  margin: 0 2px;
  color: var(--muted);
}

.offer-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

#pricing {
  background: #ffffff;
}

#pricing .section__header {
  max-width: 100%;
}

#pricing .section__header h2 {
  white-space: nowrap;
}

#routes {
  position: relative;
  padding: 0;
  min-height: 600px;
  scroll-margin-top: 0;
  margin-top: 0;
  clear: both;
}

.routes-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Images/warsaw-976910_1280.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0;
}

.routes-section__background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .routes-section__background {
    background-attachment: scroll;
  }
}

.routes-section__content {
  position: relative;
  z-index: 1;
  padding: 70px clamp(20px, 4vw, 48px);
  max-width: none;
}

.routes-section__content .section__header {
  text-align: left;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.routes-section__content .section__header h2 {
  color: var(--text);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  text-align: left;
  margin: 0;
  line-height: 1.25;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px auto 0;
  max-width: 1400px;
  padding: 0 clamp(20px, 4vw, 48px);
}

@media (min-width: 1400px) {
  .routes-grid {
    gap: 32px;
  }
}

@media (min-width: 1800px) {
  .routes-grid {
    gap: 40px;
  }
}

.route-card {
  background: var(--panel);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(230, 230, 236, 0.9);
  transition: transform var(--duration-md) var(--ease-out), box-shadow var(--duration-md) var(--ease-out), border-color var(--duration-md) var(--ease-out);
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.12), 0 20px 50px rgba(249, 115, 22, 0.22);
  border-color: rgba(249, 115, 22, 0.45);
}

.route-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--duration-md) var(--ease-out);
}

.route-card__image--thematic .route-card__img {
  object-position: left center;
}

/* Show full photos on wider screens */
@media (min-width: 1400px) {
  .route-card__img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  
  .route-card__image--thematic .route-card__img {
    object-position: center center;
  }
}

.route-card:hover .route-card__img {
  transform: scale(1.05);
}

.route-card h3 {
  padding: 16px 20px 8px;
  margin: 0;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}

.route-card p {
  padding: 0 20px 16px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

#distinctive .section__header {
  max-width: 100%;
}

#distinctive .section__header h2 {
  white-space: nowrap;
}

#distinctive {
  background: var(--bg);
}

#testimonials {
  background: #ffffff;
}

.testimonials-spotlight {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 36px;
  padding: 28px 32px;
  text-align: center;
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 55%, #fff7ed 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}

.testimonials-spotlight__stars {
  color: var(--accent-warm);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  line-height: 1;
}

.testimonials-spotlight__quote {
  margin: 0 0 14px;
  padding: 0;
  border: none;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
}

.testimonials-spotlight__author {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  color: var(--accent-strong);
}

.testimonials-spotlight__label {
  margin: 10px 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 768px) {
  .testimonials-spotlight {
    padding: 18px 16px;
    margin-bottom: 24px;
  }

  .testimonials-spotlight__stars {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .testimonials-spotlight__quote {
    font-size: 0.92rem;
    line-height: 1.58;
    margin-bottom: 10px;
  }

  .testimonials-spotlight__author {
    font-size: 0.88rem;
  }

  .testimonials-spotlight__label {
    font-size: 0.68rem;
    margin-top: 8px;
  }
}

/* Scroll-in sections (respects reduced motion via JS) */
.reveal-on-scroll:not(.is-revealed) {
  opacity: 0;
  transform: translateY(28px);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: none;
    transition: opacity var(--duration-lg) var(--ease-out), transform var(--duration-lg) var(--ease-out);
  }
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
}

#contact {
  background: var(--accent-strong);
  color: #fff;
}

#contact h2,
#contact .lede,
#contact .eyebrow {
  color: #fff;
}

#contact .section__header h2,
#contact .section__header .lede {
  color: #fff;
}

.about__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flow-root;
}

/* O mnie (about.html): photo + prose in two columns — no float wrap */
.about__content--split {
  display: grid;
  grid-template-columns: min(272px, 34%) minmax(0, 1fr);
  column-gap: clamp(24px, 4vw, 44px);
  row-gap: 0;
  align-items: start;
}

.about__content--split .about__intro {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 1rem;
}

.about__content--split .about__image {
  grid-column: 1;
  grid-row: 1 / 3;
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
  shape-outside: none;
}

.about__content--split .about__text {
  grid-column: 2;
  grid-row: 2;
}

.about__content--split .about__outro {
  grid-column: 2;
  grid-row: 3;
  max-width: 62ch;
  justify-self: start;
  clear: none;
  margin-top: clamp(1.35rem, 2.8vw, 1.85rem);
  padding-top: clamp(1.15rem, 2.2vw, 1.5rem);
  border-top: 1px solid var(--border);
}

.about__content--split .about__intro p,
.about__content--split .about__extended p,
.about__content--split .about__outro p {
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (min-width: 769px) {
  .page-about .page-hero {
    background: linear-gradient(180deg, #eef2ff 0%, #f7f9fc 55%, #fafbfc 100%);
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .page-about #about .section__header {
    margin-bottom: 32px;
  }

  .page-about #about .section__header h2 {
    font-size: clamp(1.65rem, 2.4vw, 2.1rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .about__content--split {
    grid-template-columns: min(300px, 31%) minmax(0, 1fr);
    column-gap: clamp(32px, 4.5vw, 52px);
  }

  .about__content--split .about__intro,
  .about__content--split .about__text {
    max-width: 62ch;
  }

  .about__content--split .about__intro {
    margin-bottom: 1.25rem;
  }

  .about__content--split .about__intro p {
    font-size: clamp(1.03rem, 1.05vw, 1.125rem);
    line-height: 1.72;
    font-weight: 500;
  }

  .about__content--split .about__extended p {
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 1.35rem;
  }

  .page-about .about__content--split .about__extended p {
    margin-bottom: 0.8rem;
  }

  .about__content--split .about__intro p,
  .about__content--split .about__extended p,
  .about__content--split .about__outro p {
    hyphens: manual;
    -webkit-hyphens: manual;
  }

  .about__content--split .about__outro {
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
    padding-top: clamp(1.35rem, 2.5vw, 1.65rem);
  }

  .about__content--split .about__outro p {
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 62ch;
  }

  .about__qualifications {
    margin-top: 52px;
    padding: 32px 40px 36px;
    background: var(--bg);
    border-radius: var(--radius-soft);
    border: 1px solid var(--border);
    box-shadow: 0 6px 28px rgba(17, 24, 39, 0.05);
  }

  .about__qualifications .qualifications-title {
    margin-bottom: 22px;
  }

  .about__qualifications-grid {
    gap: 14px 20px;
  }

  .about__qualifications .qualification-item {
    padding: 14px 18px;
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .page-about .about__gallery {
    margin-top: 56px;
  }
}

.about__content--centered {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

.about__content--centered .about__image {
  width: 100%;
  max-width: min(300px, 85vw);
  aspect-ratio: 1;
  overflow: hidden;
  float: none;
  margin: 0;
}

.about__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.about__content--centered .about__text {
  overflow: visible;
  text-align: left;
  max-width: none;
}

.about__content--centered .about__actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.about__intro {
  margin-bottom: 20px;
  margin-top: 0;
}

.about__intro p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.about__outro {
  clear: both;
  margin-top: 20px;
}

.about__outro p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: justify;
}

.about__outro p:last-child {
  margin-bottom: 0;
}

.about__image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  max-width: none;
}

.about__text {
  display: block;
  margin-top: 0;
  min-width: 0;
}

.about__extended {
  margin-top: 0;
}

.about__extended p {
  margin: 0 0 20px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--text);
  text-align: justify;
}

.about__extended p:last-child {
  margin-bottom: 0;
}

.page-about .about__extended p,
.page-about .about__outro p {
  margin-bottom: 0.65rem;
}

.about__qualifications {
  margin: 40px auto 0;
  max-width: 1200px;
  clear: both;
}

.qualifications-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.about__qualifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.qualification-tick {
  color: #10b981;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.about__gallery {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--bg);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item {
  cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  line-height: 1;
  padding: 0;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .lightbox__img {
    max-width: 95%;
    max-height: 85vh;
  }
}

.about__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.offer-icon-placeholder {
  width: 48px;
  height: 48px;
  background: var(--border);
  border-radius: var(--radius);
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.card {
  position: relative;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.offer-list li {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.offer-list li:last-child {
  border-bottom: none;
}

.price__logistics {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.section__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section__header h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  margin: 0 0 8px;
  line-height: 1.25;
  font-weight: 700;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.offer-languages {
  display: flex;
  gap: 6px;
  margin: 8px 0 12px;
  flex-wrap: wrap;
}

.lang-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lang-badge--en {
  background: #e3f2fd;
  color: #1976d2;
  border: 1px solid #90caf9;
}

.lang-badge--pl {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffb74d;
}

.price__languages {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.price__languages .flag {
  font-size: 1.2rem;
  line-height: 1;
}

.price__desc {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-summary {
  margin-top: 40px;
  padding: 24px;
  background: var(--panel);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-summary p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.pricing-summary--highlight {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-summary--highlight p {
  color: #92400e;
  font-weight: 600;
}

.pricing-summary--info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #3b82f6;
  border-radius: var(--radius);
  padding: 20px 24px;
}

.pricing-summary--info .pricing-summary__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-summary--info p {
  color: #1e40af;
  font-weight: 500;
  margin: 0;
}

.pricing-table-wrapper {
  margin: 40px 0;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1000px;
}

.pricing-table thead {
  background: var(--accent);
  color: #fff;
}

.pricing-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.05);
}

.pricing-table td:first-child {
  font-weight: 600;
  color: var(--text);
  min-width: 180px;
}

.pricing-table td:nth-child(2) {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  min-width: 140px;
}

.pricing-table td:nth-child(3) {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-extra {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cards.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards.five {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card ul {
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--muted);
}

.card li {
  margin: 6px 0;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

#distinctive .tag {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.3rem;
  text-align: center;
}

.grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.highlight {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.highlight__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.highlight h4 {
  padding: 18px 18px 8px;
  margin: 0;
}

.highlight p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.note {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.note.center {
  text-align: center;
}

.price {
  border-top: 4px solid var(--accent);
}

.price__value {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 6px 0 4px;
}

.price__meta {
  color: var(--muted);
  margin: 0 0 10px;
}

.price__languages {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.price__languages .flag {
  font-size: 1.2rem;
  line-height: 1;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.quote {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%);
  border-left: 4px solid var(--accent);
}

.quote p {
  margin: 0;
  line-height: 1.6;
}

.quote--carousel p {
  text-align: center;
}

.quote--carousel .quote__author {
  margin: 16px 0 0;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}

.quote__author {
  margin: 16px 0 0;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.quote--large {
  min-height: 250px;
  padding: 32px !important;
}

.quote--large {
  grid-column: span 1;
  min-height: 250px;
  display: flex;
  align-items: center;
  padding: 32px !important;
}

.quote__meta {
  color: var(--muted);
  margin: 10px 0 0;
  font-weight: 600;
}

.testimonials-grid {
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
}

.testimonials-single {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonials-carousel {
  position: relative;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 8px 0 40px;
}

.testimonials-carousel__row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.testimonials-carousel__count {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.testimonials-carousel__container {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  padding: 24px 12px;
  display: flex;
  align-items: stretch;
}

.testimonials-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform var(--duration-lg) var(--ease-out);
  will-change: transform;
}

.testimonials-carousel__track.is-content-fading .quote--carousel__body {
  opacity: 0.22;
  transition: opacity 0.12s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-carousel__track {
    transition: none;
  }

  .testimonials-carousel__track.is-content-fading .quote--carousel__body {
    opacity: 1;
    transition: none;
  }
}

.testimonials-carousel__arrow {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration-sm) var(--ease-out), transform var(--duration-sm) var(--ease-out), opacity var(--duration-sm) var(--ease-out);
  flex-shrink: 0;
  align-self: center;
  z-index: 10;
}

.testimonials-carousel__arrow:hover {
  background: var(--accent-strong);
  transform: scale(1.08);
}

.testimonials-carousel__arrow:active {
  transform: scale(0.96);
}

.testimonials-carousel__arrow svg {
  width: 24px;
  height: 24px;
}

.quote--carousel__body {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity var(--duration-md) var(--ease-out);
}

.quote--carousel {
  width: calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 28px 22px !important;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-soft);
  transition: transform var(--duration-lg) var(--ease-out), opacity var(--duration-lg) var(--ease-out), box-shadow var(--duration-md) var(--ease-out), border-color var(--duration-md) var(--ease-out), background var(--duration-md) var(--ease-out);
  transform: scale(0.92);
  opacity: 0.65;
  cursor: default;
}

.quote--carousel:hover {
  opacity: 0.82;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.quote--carousel.quote--active {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%);
  border: 2px solid var(--accent);
  border-left: 4px solid var(--accent);
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  z-index: 2;
  position: relative;
}

.quote--carousel.quote--active:hover {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .quote--large {
    grid-column: span 1;
  }

  .testimonials-carousel {
    gap: 8px;
    padding: 4px 0 28px;
  }

  .testimonials-carousel__row {
    gap: 10px;
  }

  .testimonials-carousel__arrow {
    width: 40px;
    height: 40px;
  }

  .testimonials-carousel__arrow svg {
    width: 20px;
    height: 20px;
  }

  .testimonials-carousel__container {
    padding: 10px 2px;
  }

  .testimonials-carousel__track {
    gap: 14px;
  }

  .quote--carousel {
    width: min(248px, calc(100% - 4px));
    min-width: min(248px, calc(100% - 4px));
    max-width: min(248px, calc(100% - 4px));
    flex: 0 0 min(248px, calc(100% - 4px));
    padding: 14px 12px !important;
    min-height: 0;
    transform: scale(0.94);
    opacity: 0.72;
  }

  .quote--carousel.quote--active {
    transform: scale(0.98);
  }

  .quote--carousel p {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .quote--carousel .quote__author {
    font-size: 0.8rem;
    margin-top: 10px;
  }

  .testimonials-carousel__count {
    font-size: 0.72rem;
  }
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin: 10px 0 0;
}

.cta {
  background: var(--bg);
}

.cta h2,
.cta .lede,
.cta .eyebrow {
  color: var(--text);
}

.cta .section__header h2,
.cta .section__header .lede {
  color: var(--text);
}

.cta__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.cta__left {
  max-width: 600px;
  text-align: left;
}

.contact-boxes {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.contact-box--email {
  grid-column: 1;
}

.contact-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--accent-warm);
  border-radius: var(--radius-soft);
  padding: 20px;
  transition: background var(--duration-sm) var(--ease-out), border-color var(--duration-sm) var(--ease-out);
}

.contact-box:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  border-left-color: var(--accent-warm-light);
}

.contact-box h4 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.contact-box a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.contact-box a:hover {
  text-decoration: underline;
}

.cta__actions {
  display: grid;
  gap: 10px;
}

.cta .btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.cta .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Contact form submit button - orange style */
#contact .btn.primary {
  background: var(--accent-warm);
  color: #fff;
  border-color: var(--accent-warm);
}

#contact .btn.primary:hover {
  background: var(--accent-warm-dark);
  border-color: var(--accent-warm-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

/* Contact form styles */
.cta__form {
  max-width: 500px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-soft);
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color var(--duration-sm) var(--ease-out), background var(--duration-sm) var(--ease-out), box-shadow var(--duration-sm) var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus:not(:focus-visible),
.form-group textarea:focus:not(:focus-visible) {
  outline: none;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 2px;
  border-color: var(--accent-warm);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Distinctive section styles */
.distinctive__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distinctive__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  position: relative;
  padding: 30px clamp(20px, 4vw, 48px);
  background: var(--footer-bg);
  color: #e8e8ef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.04) 3px,
    rgba(255, 255, 255, 0.04) 4px
  );
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer__brand {
  font-weight: 700;
}

.footer__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #b5b5c2;
  margin-left: auto;
}

.footer__email-note {
  font-weight: 500;
  color: #e8e8ef;
}

.footer__copyright {
  flex-basis: 100%;
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #e8e8ef;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__social .social-link:hover,
.footer__social .social-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--accent-warm);
}

.footer__social .social-icon {
  display: block;
  width: 24px;
  height: 24px;
}

/* Dim page behind mobile drawer; stays under .nav-bar (10000) so logo + menu button stay usable */
@media (min-width: 1116px) {
  .nav-drawer-backdrop {
    display: none !important;
  }
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15, 23, 42, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-nav-drawer) var(--ease-nav-drawer),
    visibility 0s linear var(--duration-nav-drawer);
}

.nav-drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--duration-nav-drawer) var(--ease-nav-drawer),
    visibility 0s linear 0s;
}

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

@media (max-width: 1115px) {
  .nav-bar__menu-toggle {
    display: flex;
  }

  .nav-bar__nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--accent);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.22);
    z-index: 10001;
    overflow-y: auto;
    margin-left: 0;
    padding-left: 24px;
    gap: 0;
    justify-content: flex-start;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--duration-nav-drawer) var(--ease-nav-drawer),
      visibility 0s linear var(--duration-nav-drawer),
      box-shadow var(--duration-nav-drawer) var(--ease-nav-drawer);
  }

  .nav-bar__nav.active {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    transition: transform var(--duration-nav-drawer) var(--ease-nav-drawer),
      visibility 0s linear 0s,
      box-shadow var(--duration-nav-drawer) var(--ease-nav-drawer);
  }

  @media (prefers-reduced-motion: reduce) {
    .nav-bar__nav {
      transition-duration: 0.01ms;
      transition-delay: 0s;
    }

    .nav-drawer-backdrop {
      transition-duration: 0.01ms;
    }

    .nav-bar__menu-toggle span {
      transition-duration: 0.01ms;
    }
  }

  .nav-bar__content .social-links {
    display: none;
  }

  .nav-bar__nav-left,
  .nav-bar__nav-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
  }

  .nav-bar__nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    color: #fff;
    text-shadow: none;
  }

  .nav-bar__nav a:hover {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-bar__nav a.active {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 12px;
  }

  .nav-bar__nav-right {
    margin-top: 20px;
    align-items: center;
    gap: 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 0;
  }

  .nav-bar__nav-right .pill {
    order: 3;
    width: auto;
    text-align: center;
    border: 2px solid #fff;
    padding: 10px 18px;
    background: #fff;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 999px;
    flex-shrink: 0;
  }

  .nav-bar__nav-right .pill:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-strong);
    transform: translateY(-1px);
  }

  .nav-bar__nav-right .lang-select {
    order: 2;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    padding-right: 32px;
    text-align: left;
    border-radius: 999px;
    flex-shrink: 0;
  }

  .nav-bar__nav-right .social-links {
    order: 1;
    display: flex !important;
    gap: 12px;
    justify-content: flex-start;
    width: auto;
    margin-top: 0;
    align-items: center;
    flex-wrap: nowrap;
    padding-top: 0;
    border-top: none;
  }

  .nav-bar__nav-right .social-links a {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-bar__nav-right .social-links a svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #fff;
    color: #fff;
    transition: fill 0.2s ease, color 0.2s ease;
  }

  .nav-bar__nav-right .social-links a:hover svg,
  .nav-bar__nav-right .social-links a:focus-visible svg {
    fill: var(--accent-warm);
    color: var(--accent-warm);
  }

}

@media (max-width: 768px) {
  .page-hero {
    padding: 20px 20px 18px;
  }

  .page-hero__title {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  .page-hero__title::after {
    width: 40px;
    height: 2px;
  }

  .nav-bar__content {
    flex-direction: row;
    align-items: center;
    position: relative;
    justify-content: center;
  }

  .nav-bar__menu-toggle {
    display: flex;
    margin-left: auto;
  }
  
  .nav-bar__menu-toggle span {
    background-color: #fff;
  }

  .brand {
    order: 1;
  }

  .brand .logo-img {
    width: 132px;
    height: auto;
  }

  .nav-bar__menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .nav-bar__nav {
    background: var(--accent);
  }

  .nav-bar__nav-right {
    margin-top: 20px;
    align-items: center;
    gap: 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 0;
  }

  .nav-bar__nav-right .pill {
    order: 3;
    width: auto;
    text-align: center;
    border: 2px solid #fff;
    padding: 10px 18px;
    background: #fff;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 999px;
    flex-shrink: 0;
  }

  .nav-bar__nav-right .pill:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-strong);
    transform: translateY(-1px);
  }

  .nav-bar__nav-right .lang-select {
    order: 2;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    padding-right: 32px;
    text-align: left;
    border-radius: 999px;
    flex-shrink: 0;
  }

  .nav-bar__nav-right .social-links {
    order: 1;
    display: flex !important;
    gap: 12px;
    justify-content: flex-start;
    width: auto;
    margin-top: 0;
    align-items: center;
    flex-wrap: nowrap;
    padding-top: 0;
    border-top: none;
  }

  .nav-bar__nav-right .social-links a {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-bar__nav-right .social-links a svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #fff;
    color: #fff;
    transition: fill 0.2s ease, color 0.2s ease;
  }

  .nav-bar__nav-right .social-links a:hover svg,
  .nav-bar__nav-right .social-links a:focus-visible svg {
    fill: var(--accent-warm);
    color: var(--accent-warm);
  }

  .nav-bar__nav .pill {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    border: 2px solid #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    padding-top: 16px;
    background: #fff;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .nav-bar__nav .lang-select {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    backdrop-filter: blur(4px);
    text-shadow: none;
  }
  
  .nav-bar__nav .lang-select:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
  }
  
  .nav-bar__nav .lang-select:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
  }

  .hero-image {
    height: 500px;
    margin-top: 0;
  }
  
  .hero-image__overlay {
    padding: 40px 20px;
    padding-top: 60px;
  }

  .brand .logo-img {
    width: 180px;
    height: auto;
  }

  .social-links a span {
    display: none;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    padding: 4px;
  }

  .nav-bar__content {
    padding: 10px 20px;
  }
  
  .offers-hero {
    min-height: 300px;
    padding: 0 20px;
    padding-bottom: 60px;
  }

  .offers-hero__content {
    margin-bottom: -80px;
  }

  .offers-hero__textbox {
    padding: 24px;
  }

  .offers-hero__textbox p:not(.eyebrow) {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  #offers.section.muted {
    padding-bottom: 120px;
  }

  .offer-services__list {
    font-size: 1rem;
  }

  .process-steps {
    gap: 16px;
  }

  .process-step {
    gap: 12px;
  }

  .process-step__circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .process-step__number {
    font-size: 0.85rem;
  }

  .offer-audience h2,
  .offer-pricing h2 {
    font-size: 1.5rem;
  }
  
  .offer-item {
    padding: 20px;
  }
  
  .offer-item__title {
    font-size: 1.2rem;
  }

  .lang-select {
    margin-top: 10px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__content--split {
    display: block;
  }

  .about__content--split .about__outro {
    max-width: none;
  }

  .about__content--split .about__intro {
    margin-bottom: 24px;
  }

  .about__content--split .about__image {
    margin: 0 auto 28px;
    max-width: 280px;
    width: 100%;
  }

  .about__content--centered {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__content--centered .about__image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .about__content--centered .about__text-block {
    align-items: center;
    text-align: center;
  }
  
  .about__content--centered .about__text {
    text-align: center;
  }
  
  .about__content--centered .about__actions {
    justify-content: center;
  }

  .about__intro {
    margin-bottom: 32px;
  }

  .about__image {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 32px auto;
    display: block;
  }

  .about__text {
    overflow: visible;
  }

  .about__qualifications-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .qualification-item {
    font-size: 0.85rem;
    padding: 8px;
  }

  .about__image {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cta__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta__form {
    max-width: 100%;
  }

  .contact-boxes {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__meta {
    margin-left: 0;
  }

  .routes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #distinctive .section__header h2,
  #pricing .section__header h2 {
    white-space: normal;
  }

  .cards.four {
    grid-template-columns: 1fr;
  }
}

/* Blog Styles */
.blog-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(17, 24, 39, 0.15);
}

.blog-post__header {
  padding: 28px 28px 16px;
}

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-post__date {
  font-weight: 500;
}

.blog-post__category {
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-post__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.blog-post__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--border);
}

.blog-post__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-post__img {
  transform: scale(1.05);
}

.blog-post__content {
  padding: 24px 28px 28px;
}

.blog-post__excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 24px;
}

.blog-post__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.blog-post__body p {
  margin: 0 0 16px;
}

.blog-post__body p:last-child {
  margin-bottom: 0;
}

.loading-message,
.empty-blog,
.error-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

.error-message {
  color: #dc2626;
  background: #fee2e2;
  border-radius: var(--radius);
  padding: 20px;
}

.blog-post__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.blog-post__read-more {
  font-weight: 600;
}

.blog-post__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-tag {
  background: #f3f4f6;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  right: 0;
  top: 0;
  width: 4px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  pointer-events: none;
}

.scroll-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
  transition: height 0.1s ease-out;
  border-radius: 0 0 2px 2px;
}

@media (max-width: 768px) {
  .scroll-progress {
    width: 3px;
  }
}

@media (max-width: 768px) {
  .blog-post__header,
  .blog-post__content {
    padding: 20px;
  }

  .blog-post__title {
    font-size: 1.5rem;
  }

  .blog-post__image {
    height: 200px;
  }

  .blog-post__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

