/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Public Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --blue: #1e668d;
  --blue-hero: #1b5c80;
  --text-dark: #343434;
  --text-light: #fff;
  --text-body: #1a1a1a;
  --beige: #f2efea;
  --gray-light: #efeff0;
  --gray-text: #868686;
  --gray-placeholder: #8f8f8f;
  --white: #ffffff;
  --px: 189px;
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Scroll-reveal: elements start hidden, JS adds .visible */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }
.reveal-stagger.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.72s; }
.reveal-stagger.visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.84s; }
.reveal-stagger.visible > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.96s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px var(--px);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-weight: 300;
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1;
  margin-top: 2px;
}
.nav-logo-line {
  height: 1px;
  background: #ddd;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 400;
  transition: color var(--transition);
}
.btn-kontakt {
  color: var(--text-light) !important;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); font-weight: 600; }

.btn-kontakt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: background var(--transition), transform 0.2s;
}
.btn-kontakt:hover { background: var(--blue-hero); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
}
.mobile-menu .btn-kontakt { font-size: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 13px 40px;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--blue-hero); transform: translateY(-2px); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
  padding: 13px 40px;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--blue);
  transition: background var(--transition), transform 0.2s;
}
.btn-outline:hover { background: var(--gray-light); transform: translateY(-1px); }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-title.center { text-align: center; }
.section-title.white { color: #fff; }

/* ============================================================
   PAGE HEADER (Usluge / Kontakt)
   ============================================================ */
.page-header {
  position: relative;
  height: 286px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.16) 100%),
              linear-gradient(90deg, #1b5c80 0%, #1b5c80 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-header-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.6;
  pointer-events: none;
}
.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  padding-left: var(--px);
  animation: fadeInLeft 0.8s ease both;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue);
  padding: 50px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}
.footer-logo-sub {
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}
.footer-logo-line {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.footer-contacts {
  display: flex;
  align-items: center;
  gap: 64px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
}
.footer-contact-item img { width: 26px; height: 26px; object-fit: contain; }
.footer-copyright {
  color: #ccc;
  font-size: 12px;
  letter-spacing: -0.03em;
}

/* ============================================================
   HOME: HERO
   ============================================================ */
.hero {
  position: relative;
  height: 470px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.16) 100%),
              linear-gradient(90deg, #1b5c80 0%, #1b5c80 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.55;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: var(--px);
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 720px;
  animation: fadeInLeft 0.9s ease both;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
}
.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.hero-photo-wrap {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 480px;
  display: flex;
  align-items: flex-end;
  animation: fadeInRight 0.9s 0.2s ease both;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   HOME: STATS
   ============================================================ */
.stats {
  background: var(--beige);
  padding: 55px var(--px);
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 120px;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.stat-icon { width: 40px; height: 40px; object-fit: contain; }
.stat-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.4;
}

/* ============================================================
   HOME: SERVICES PREVIEW
   ============================================================ */
.services-preview {
  padding: 80px var(--px);
  background: #fff;
}
.services-preview-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}
.services-preview-cards {
  display: flex;
  gap: 0;
  align-items: flex-end;
  justify-content: center;
}
.service-card {
  flex: 1;
  max-width: 420px;
  padding-bottom: 32px;
  position: relative;
}
.service-card-divider {
  width: 1px;
  height: 332px;
  background: #e0e0e0;
  flex-shrink: 0;
  align-self: flex-end;
  margin: 0 60px;
}
.service-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e8e8;
}
.service-card-icon-wrap {
  position: relative;
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}
.service-card-icon-bg {
  width: 75px;
  height: 75px;
}
.service-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.service-card-name {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.service-card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 40px;
}
.service-card-link {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 auto;
  text-decoration: underline;
}
.service-card-link:hover { opacity: 0.8; }

/* ============================================================
   HOME: ABOUT
   ============================================================ */
.about {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}
.about-inner {
  background: var(--beige);
  border-radius: 0 16px 16px 0;
  width: calc(100% - 190px);  /* leaves right margin */
  max-width: 1251px;
  padding: 54px 0 54px 189px;
  display: flex;
  gap: 80px;
  align-items: center;
}
.about-photo {
  width: 390px;
  height: 408px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.about-text { flex: 1; }
.about-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.about-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   HOME: PRICING
   ============================================================ */
.pricing {
  background: var(--blue);
  padding: 80px var(--px);
  position: relative;
  overflow: hidden;
}
.pricing-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.pricing-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 48px;
}
.pricing-cards {
  display: flex;
  gap: 63px;
  margin-bottom: 32px;
}
.pricing-card {
  flex: 1;
  background: var(--beige);
  border-radius: 16px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
}
.pricing-card-subtitle {
  font-size: 16px;
  color: rgba(26,26,26,0.5);
  line-height: 1.4;
}
.pricing-card-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card-list li {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-body);
  padding-left: 4px;
}
.pricing-card-note {
  font-size: 16px;
  color: rgba(26,26,26,0.5);
  margin-top: auto;
}
.pricing-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.pricing-info-icon { width: 20px; height: 20px; object-fit: contain; }
.pricing-info-text {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.pricing-cta { text-align: center; }

/* ============================================================
   HOME: FAQ
   ============================================================ */
.faq {
  padding: 80px var(--px);
  background: #fff;
}
.faq-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px; height: 12px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 820px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   USLUGE: WRITTEN TRANSLATIONS
   ============================================================ */
.written-section {
  padding: 99px var(--px) 80px;
  background: #fff;
}
.written-header {
  text-align: center;
  margin-bottom: 80px;
}
.written-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.written-header p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 100px;
  margin-bottom: 60px;
}
.doc-item { display: flex; flex-direction: column; gap: 12px; }
.doc-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.doc-item-header img { width: 22px; height: 22px; object-fit: contain; }
.doc-item-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.doc-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}
.written-cta { text-align: center; }

/* ============================================================
   USLUGE: VERBAL INTERPRETATION
   ============================================================ */
.verbal-section {
  background: var(--beige);
  padding: 100px var(--px);
  text-align: center;
}
.verbal-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.verbal-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 680px;
  margin: 0 auto 16px;
}

/* ============================================================
   USLUGE: CTA BANNER
   ============================================================ */
.cta-banner {
  display: flex;
  align-items: stretch;
  min-height: 368px;
  overflow: hidden;
}
.cta-banner-left {
  flex: 1;
  background: #fff;
  padding: 100px var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.cta-banner-left h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 4px;
}
.cta-banner-left p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 430px;
}
.cta-banner-right {
  width: 595px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(60,60,60,0.55);
}

/* ============================================================
   KONTAKT: CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 84px var(--px) 116px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.contact-info { width: 340px; flex-shrink: 0; }
.contact-info-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.contact-info-line {
  width: 99px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 16px;
}
.contact-info-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 56px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 28px;
}
.contact-info-item img { width: 32px; height: 32px; object-fit: contain; }
.contact-info-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form-wrap { flex: 1; width: 100%; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-input,
.form-textarea {
  background: var(--gray-light);
  border: none;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text-body);
  width: 100%;
  outline: none;
  transition: box-shadow var(--transition), background var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-placeholder); }
.form-input:focus,
.form-textarea:focus {
  background: #e8e9ea;
  box-shadow: 0 0 0 2px rgba(30,102,141,0.25);
}
.form-textarea { height: 180px; resize: vertical; }
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-section {
  position: relative;
  width: 100%;
  height: 447px;
  overflow: hidden;
}
.map-section img.map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.map-pin {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet ---- */
@media (max-width: 1100px) {
  :root { --px: 48px; }

  .hero-title { font-size: 48px; }
  .hero-photo-wrap { width: 360px; }
  .stats-inner { gap: 64px; }
  .about-inner { padding-left: 48px; gap: 48px; }
  .about-photo { width: 300px; height: 320px; }
  .pricing-cards { gap: 32px; }
  .pricing-card { padding: 40px; }
  .doc-grid { gap: 48px 60px; }
  .contact-section { gap: 48px; }
  .contact-info { width: 280px; }
  .cta-banner-left { padding: 60px 48px; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  :root { --px: 24px; }

  /* Nav */
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { height: auto; padding: 60px 24px 0; align-items: flex-start; flex-direction: column; }
  .hero-content { padding-left: 0; max-width: 100%; gap: 32px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-photo-wrap {
    position: relative;
    right: auto; top: auto;
    width: 100%;
    height: 400px;
    margin-top: 24px;
  }
  .hero-photo { clip-path: none; object-position: bottom; height: 100%; }

  /* Stats */
  .stats { padding: 40px 24px; }
  .stats-inner { flex-direction: column; gap: 32px; }

  /* Services preview */
  .services-preview { padding: 60px 24px; }
  .services-preview-cards { flex-direction: column; gap: 40px; }
  .service-card-divider { display: none; }
  .service-card { max-width: 100%; }
  .service-card-name { font-size: 24px; }

  /* About */
  .about { padding: 0; }
  .about-inner {
    width: 100%;
    border-radius: 0;
    padding: 40px 24px;
    flex-direction: column;
    gap: 32px;
  }
  .about-photo { width: 100%; height: 280px; }
  .about-title { font-size: 32px; }

  /* Pricing */
  .pricing { padding: 60px 24px; }
  .pricing-cards { flex-direction: column; gap: 24px; }
  .pricing-card { padding: 32px; }
  .pricing-card-title { font-size: 20px; }
  .pricing-card-list li { font-size: 16px; }
  .pricing-title, .pricing-subtitle { text-align: left; }

  /* FAQ */
  .faq { padding: 60px 24px; }
  .faq-title { font-size: 28px; margin-bottom: 32px; }
  .faq-question-text { font-size: 17px; }

  /* Page header */
  .page-header { height: 200px; }
  .page-header h1 { font-size: 40px; padding-left: 24px; }

  /* Section titles */
  .section-title { font-size: 28px; }

  /* Usluge */
  .written-section { padding: 60px 24px; }
  .written-header h2 { font-size: 28px; }
  .doc-grid { grid-template-columns: 1fr; gap: 36px; }

  .verbal-section { padding: 60px 24px; text-align: left; }
  .verbal-section h2 { font-size: 28px; }
  .verbal-section p { margin: 0 0 16px; text-align: left; }

  .cta-banner { flex-direction: column; }
  .cta-banner-right { width: 100%; height: 220px; }
  .cta-banner-left { padding: 48px 24px; }
  .cta-banner-left h2 { font-size: 20px; }

  /* Kontakt */
  .contact-section { flex-direction: column; padding: 48px 24px; gap: 48px; }
  .contact-info { width: 100%; }
  .contact-info-title { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }

  .map-section { height: 280px; }

  /* Footer */
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; align-items: flex-start; }
  .footer-contacts { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .page-header h1 { font-size: 32px; }
}
