/* ============================================
   LONDONER — Biuro Tlumaczeń
   V2: Modern / Bold Design
   ============================================ */

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

/* --- Variables --- */
:root {
  --red: #E31E24;
  --red-dark: #c41a1f;
  --red-light: rgba(227, 30, 36, 0.08);
  --red-glow: rgba(227, 30, 36, 0.35);
  --navy: #003DA5;
  --navy-dark: #002d7a;
  --navy-deeper: #001d54;
  --navy-light: #e8eef8;
  --navy-glow: rgba(0, 61, 165, 0.25);
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #0a0f1a;

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
  --shadow-card: 0 2px 4px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-glow-navy: 0 8px 32px rgba(0, 61, 165, 0.3);
  --shadow-glow-red: 0 8px 32px rgba(227, 30, 36, 0.3);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--gray-900);
  line-height: 1.15;
  font-weight: 800;
}

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

/* --- Section Defaults --- */
.section {
  padding: var(--section-pad-mobile) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--red);
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.7;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  background: rgba(255,255,255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
  text-decoration: none;
}

.logo:hover { transform: scale(1.02); }

.logo svg, .logo img {
  height: 50px;
  width: auto;
}

.logo-roundel-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-brand {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font);
  font-size: 8.5px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  line-height: 1;
}

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav a:hover { color: var(--gray-900); }
.nav a:hover::after { width: 100%; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  background: var(--navy-light);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all var(--transition);
}

.header-phone:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-navy);
}

.header-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1100;
  padding: 110px 32px 32px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-600);
}
.mobile-nav-close svg { width: 28px; height: 28px; }

.mobile-nav a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--red); }

.mobile-nav .mobile-phone {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

/* Gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(227, 30, 36, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(0, 82, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(-30deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 100px;
  pointer-events: none;
}

/* Two-column hero layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

/* Roundel in hero */
.hero-roundel {
  width: 420px;
  flex-shrink: 0;
  opacity: 0.28;
  filter: drop-shadow(0 0 80px rgba(227, 30, 36, 0.25));
  animation: hero-roundel-float 8s ease-in-out infinite;
}

.hero-roundel img {
  width: 100%;
  height: auto;
}

@keyframes hero-roundel-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--red-glow);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -1.5px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-trust svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(227, 30, 36, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  padding: 16px 36px;
  box-shadow: var(--shadow-glow-red);
}
.btn-red:hover {
  background: var(--red-dark);
  color: var(--white);
  box-shadow: 0 8px 36px rgba(227, 30, 36, 0.5);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  box-shadow: var(--shadow-glow-navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: 0 8px 36px rgba(0, 61, 165, 0.45);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-spring);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   LANGUAGES
   ============================================ */
.languages {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Diagonal top divider */
.languages::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.languages .container {
  position: relative;
  z-index: 1;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.lang-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  cursor: default;
}

.lang-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.lang-flag {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-info { flex: 1; }

.lang-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-800);
}

.lang-type {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-other {
  background: transparent;
  border: 2px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  border-radius: var(--radius);
  padding: 22px;
  transition: all var(--transition);
}

.lang-other:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--white);
  position: relative;
}

/* Range cards (Variant B pricing) */
.pricing-range-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.range-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
}

.range-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.range-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.range-card .range-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.range-card .range-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.range-card .range-unit {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 600;
}

.range-card .range-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-400);
}

/* Pricing CTA block */
.pricing-cta-block {
  margin-top: 48px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.pricing-cta-block h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-cta-block p {
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-lg {
  font-size: 16px;
  padding: 18px 36px;
}

.pricing-cta-phone {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gray-500);
}

.pricing-cta-phone a {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.pricing-extra {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  transition: all var(--transition);
}

.pricing-extra:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.pricing-extra .extra-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-extra .extra-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
}


/* ============================================
   FOR BUSINESS
   ============================================ */
.for-business {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Angled top edge */
.for-business::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}

/* Background mesh */
.for-business::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(227, 30, 36, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(0, 82, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.for-business .container { position: relative; z-index: 1; }

.for-business .section-label::before { background: rgba(255,255,255,0.3); }

.business-teaser {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px 0;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}

.business-alert {
  background: rgba(227, 30, 36, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(227, 30, 36, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.business-alert h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-alert h3 svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; }

.business-alert p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.business-alert .penalty {
  display: inline-block;
  background: rgba(227, 30, 36, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  color: #ff9999;
  letter-spacing: 0.3px;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.business-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.business-feature:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(4px);
}

.business-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.business-feature-icon svg { width: 22px; height: 22px; }

.business-feature h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.business-feature p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.business-cta {
  margin-top: 56px;
  text-align: center;
}

/* ============================================
   PROCESS (How to order)
   ============================================ */
.process {
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 44px);
  right: calc(16.66% + 44px);
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow-navy);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-credentials {
  background: var(--gray-950);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

/* Glassmorphism overlay on credentials */
.about-credentials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-credentials h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.credential-item:last-child { border-bottom: none; }

.credential-item svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item span {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.credential-item span strong {
  color: var(--white);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--off-white);
}

.faq-list {
  margin: 56px auto 0;
  max-width: 800px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item.open {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
  box-shadow: var(--shadow-glow-red);
}

.faq-toggle svg { width: 14px; height: 14px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 56px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.contact-info-card:last-of-type { border-bottom: none; }

.contact-info-card:hover { transform: translateX(4px); }

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: all var(--transition);
}

.contact-info-card:hover .contact-icon {
  background: var(--navy);
  color: var(--white);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
}

.contact-value a { color: var(--gray-800); }
.contact-value a:hover { color: var(--navy); }

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 220px;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.contact-form {
  background: var(--gray-950);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* Glassmorphism accent */
.contact-form::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 61, 165, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.form-select {
  color: rgba(255,255,255,0.7);
}

.form-select option {
  background: var(--gray-900);
  color: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.15);
  background: rgba(255,255,255,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.form-note svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}

.form-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.form-submit {
  margin-top: 24px;
  width: 100%;
  font-size: 16px;
  padding: 18px 32px;
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-950);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 28px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--navy));
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand svg, .footer-brand > img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-brand {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.footer-logo-tagline {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  padding: 5px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   STICKY PHONE (Mobile)
   ============================================ */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(227, 30, 36, 0.45);
  text-decoration: none;
  transition: all var(--transition);
}

.sticky-phone:hover {
  transform: scale(1.12);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.6);
}

.sticky-phone svg { width: 26px; height: 26px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 769px) {
  .section { padding: var(--section-pad) 0; }
}

@media (max-width: 1024px) {
  .hero-roundel { width: 280px; }
  .hero-layout { gap: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .languages-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-range-cards { grid-template-columns: 1fr; }
  .pricing-extras { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }

  .hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  .hero { padding: 120px 0 70px; }
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-roundel { display: none; }
  .hero h1 { font-size: 34px; letter-spacing: -0.5px; }
  .hero-description { font-size: 16px; }

  .languages::before,
  .for-business::before { height: 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .languages-grid { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-steps::before { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .sticky-phone { display: flex; }

  .footer-links { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .languages-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .about-stats { grid-template-columns: 1fr; }
  .range-card { padding: 28px 20px; }
  .range-card .range-price { font-size: 36px; }
  .pricing-cta-block { padding: 32px 20px; }
  .contact-form { padding: 28px 20px; }
}

/* ============================================
   LIGHT VARIANT: About Credentials
   ============================================ */
.about-credentials--light {
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-lg);
}

.about-credentials--light::before {
  background: radial-gradient(circle, rgba(0, 61, 165, 0.06) 0%, transparent 70%);
}

.about-credentials--light h3 {
  color: var(--gray-900);
}

.about-credentials--light .credential-item {
  border-bottom-color: var(--gray-200);
}

.about-credentials--light .credential-item span {
  color: var(--gray-600);
}

.about-credentials--light .credential-item span strong {
  color: var(--gray-900);
}

/* ============================================
   LIGHT VARIANT: Contact Form
   ============================================ */
.contact-form--light {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.contact-form--light::before {
  background: radial-gradient(circle, rgba(0, 61, 165, 0.04) 0%, transparent 70%);
}

.contact-form--light .form-title {
  color: var(--gray-900);
}

.contact-form--light .form-label {
  color: var(--gray-500);
}

.contact-form--light .form-input,
.contact-form--light .form-textarea,
.contact-form--light .form-select {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--gray-800);
}

.contact-form--light .form-input::placeholder,
.contact-form--light .form-textarea::placeholder {
  color: var(--gray-400);
}

.contact-form--light .form-select {
  color: var(--gray-600);
}

.contact-form--light .form-select option {
  background: var(--white);
  color: var(--gray-800);
}

.contact-form--light .form-input:focus,
.contact-form--light .form-textarea:focus,
.contact-form--light .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.12);
  background: var(--white);
}

.contact-form--light .form-note {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-600);
}

.contact-form--light .form-note svg {
  color: var(--gray-500);
}

.contact-form--light .form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.25);
}

.contact-form--light .form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border-color: rgba(239, 68, 68, 0.25);
}

/* ============================================
   Hero phone button label
   ============================================ */
.btn-phone-label {
  font-weight: 500;
  opacity: 0.7;
  margin-right: 4px;
}

/* ============================================
   SUBPAGE: Dla Firm
   ============================================ */
.subpage-hero {
  padding: 140px 0 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(227, 30, 36, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(0, 82, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.breadcrumb:hover { color: var(--white); }
.breadcrumb svg { width: 16px; height: 16px; }

.subpage-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.subpage-hero p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
}

/* Legal info card (calm variant) */
.legal-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 48px;
  box-shadow: var(--shadow-sm);
}

.legal-info-body p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

.legal-info-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}

.legal-info-item {
  text-align: center;
  padding: 16px;
}

.legal-info-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.legal-info-value {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

/* Packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-spring);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.package-card--featured {
  border: 2px solid var(--red);
  box-shadow: var(--shadow-lg);
}

.package-card--featured:hover {
  border-color: var(--red);
  box-shadow: 0 16px 48px rgba(227, 30, 36, 0.15);
}

.package-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  background: var(--navy-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.package-badge--red {
  color: var(--white);
  background: var(--red);
}

.package-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.package-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.package-discount {
  text-align: center;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.discount-value {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.package-card--featured .discount-value {
  color: var(--red);
}

.discount-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
}

.package-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.package-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  padding-left: 24px;
  position: relative;
}

.package-features li:last-child { border-bottom: none; }

.package-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 800;
}

.package-card .btn {
  width: 100%;
  justify-content: center;
}

/* Business languages */
.business-langs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.business-lang {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all var(--transition);
}

.business-lang:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.business-lang .lang-flag {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.business-lang strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.business-lang span {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
}

/* Business CTA section */
.business-cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.business-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 82, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.business-cta-section .container {
  position: relative;
  z-index: 1;
}

/* Responsive for subpage */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .legal-info-details { grid-template-columns: 1fr; }
  .business-langs { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .subpage-hero { padding: 120px 0 50px; }
  .legal-info-card { padding: 24px; }
}

/* --- Print --- */
@media print {
  .header, .sticky-phone, .hamburger, .mobile-nav { display: none; }
  .hero { padding-top: 40px; background: #fff; color: #000; }
  .hero::before, .hero::after { display: none; }
  .hero-roundel { display: none; }
  .hero-layout { display: block; }
  .hero h1, .hero h1 .accent { color: #000; -webkit-text-fill-color: #000; }
  body { font-size: 12pt; }
}
