/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* === TŁA === */
  --bg-white: #FFFFFF;
  --bg-cream: #F4F6FA;
  --bg-cream-light: #F8F9FC;
  --bg-warm-gray: #EEF1F6;

  /* === ZŁOTY (primary — z wizytówki) === */
  --gold-500: #C9A633;
  --gold-600: #B08E1E;
  --gold-700: #8A6E18;
  --gold-100: #F5EDCF;
  --gold-50: #FAF6EA;
  --gold-border: #E0D5B5;

  /* === CZERWONY (CTA — z wizytówki) === */
  --red-500: #C0392B;
  --red-600: #A33025;
  --red-700: #862720;
  --red-50: #FDF0EE;

  /* === TEKST I NEUTRALNE === */
  --text-primary: #1B2D4E;
  --text-secondary: #4A5568;
  --text-muted: #7A8494;
  --text-on-gold: #FFFFFF;
  --text-on-gold-muted: rgba(255,255,255,0.75);

  /* === NAVY BLUE (z wizytówki wiz.jpg) === */
  --navy-900: #1B2D4E;
  --navy-800: #263878;
  --navy-700: #2C4383;
  --navy-600: #355099;
  --navy-100: #E8EDF5;
  --navy-50: #F1F4F9;

  /* === BORDERY === */
  --border-light: #DDE1E8;
  --border-cream: #D0D8E2;

  /* === CIEMNE (navy z wizytówki) === */
  --dark-900: #0F1A2E;
  --dark-800: #1B2D4E;

  /* === BORDER RADIUS === */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 24px;

  /* === SHADOWS === */
  --shadow-sm: 0 1px 3px rgba(27,45,78,0.06);
  --shadow-md: 0 4px 12px rgba(27,45,78,0.08);
  --shadow-lg: 0 8px 32px rgba(27,45,78,0.12);
  --shadow-xl: 0 16px 48px rgba(27,45,78,0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 17px;
  font-weight: 600;
}

/* === SKIP TO CONTENT === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold-500);
  color: var(--text-on-gold);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === CONTAINER === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.nav--scrolled::after {
  opacity: 0;
}
.nav--scrolled {
  background: var(--bg-white);
  border-bottom: 1px solid var(--gold-100);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.nav--scrolled .nav__logo span {
  color: var(--text-primary);
}
.nav--scrolled .nav__links > a {
  color: var(--text-secondary);
}
.nav--scrolled .nav__links > a:hover {
  color: var(--text-primary);
}
.nav--scrolled .nav__hamburger span {
  background: var(--text-primary);
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav--scrolled .nav__logo {
  transform: scale(0.92);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav__logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,0.85);
  transition: color 0.3s ease;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links > a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
  transition: color 0.2s;
}
.nav__links > a:hover {
  color: rgba(0,0,0,0.8);
}
.nav__cta {
  background: var(--red-500) !important;
  color: var(--text-on-gold) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover {
  background: var(--red-600) !important;
  transform: translateY(-1px);
}

/* Phone link */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav__phone:hover {
  color: var(--red-500);
}
.nav__phone svg {
  flex-shrink: 0;
}
.nav:not(.nav--scrolled) .nav__phone {
  color: rgba(0,0,0,0.8);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav__dropdown:hover .nav__chevron,
.nav__dropdown.open .nav__chevron {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 20px 0;
  min-width: 680px;
  z-index: 100;
  columns: 2;
  column-gap: 0;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  display: block;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown-group {
  break-inside: avoid;
  padding: 0 24px 16px;
}
.nav__dropdown-group:last-child {
  padding-bottom: 4px;
}
.nav__dropdown-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 6px;
}
.nav__dropdown-menu a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s, padding-left 0.15s;
}
.nav__dropdown-menu a:hover {
  color: var(--red-500);
  padding-left: 4px;
}
.nav__dropdown-menu a.active {
  color: var(--red-500);
  font-weight: 600;
}

/* Active page indicator */
.nav__links > a.active {
  color: var(--text-primary);
  position: relative;
}
.nav__links > a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red-500);
  border-radius: 1px;
}
.nav:not(.nav--scrolled) .nav__links > a.active {
  color: rgba(0,0,0,0.9);
}
.nav__dropdown-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red-500);
  border-radius: 1px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(0,0,0,0.7);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
/* Hamburger X animation removed — dedicated close button in mobile menu */

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100dvh;
  background: var(--bg-white);
  padding: 0;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  flex-direction: column;
}
.nav__mobile-menu.open {
  transform: translateX(0);
}
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 2px solid var(--border-light);
}
.nav__mobile-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}
.nav__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-cream-light);
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.15s, border-color 0.15s;
}
.nav__mobile-close:hover {
  background: var(--bg-warm-gray);
  border-color: var(--border-cream);
}
.nav__mobile-menu > a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s, padding-left 0.15s;
}
.nav__mobile-menu > a:hover {
  background: var(--bg-cream-light);
  padding-left: 28px;
}
.nav__mobile-menu > a.active {
  color: var(--red-500);
  font-weight: 600;
  border-left: 3px solid var(--red-500);
}
.nav__mobile-group {
  padding: 0;
}
.nav__mobile-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 16px 24px 8px;
}
.nav__mobile-group a {
  display: block;
  padding: 11px 24px 11px 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s, padding-left 0.15s, color 0.15s;
}
.nav__mobile-group a:hover {
  background: var(--bg-cream-light);
  padding-left: 36px;
}
.nav__mobile-group a.active {
  color: var(--red-500);
  font-weight: 600;
  border-left: 3px solid var(--red-500);
}
.nav__mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  background: var(--red-500);
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 24px 8px;
  border-radius: 8px;
  border-bottom: none;
  transition: background 0.2s;
}
.nav__mobile-menu .mobile-cta:hover {
  background: var(--red-600);
}
.nav__mobile-menu .mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy-900);
  color: #fff;
  padding: 14px 24px;
  margin: 8px 24px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: none;
  transition: background 0.2s;
}
.nav__mobile-menu .mobile-phone:hover {
  background: var(--navy-800);
}
.nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}
.nav__overlay.open {
  display: block;
}

/* Sticky phone bar (mobile) */
.phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--red-500);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.phone-bar.visible {
  transform: translateY(0);
}
.phone-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: var(--radius-md);
  letter-spacing: 0.3px;
}
.btn:active {
  transform: scale(0.97);
}
.btn--red {
  background: var(--red-500);
  color: #fff;
  font-size: 14px;
  padding: 14px 32px;
  box-shadow: 0 4px 14px rgba(192,57,43,0.3);
}
.btn--red:hover {
  background: var(--red-600);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--gold-500);
  color: #fff;
  font-size: 14px;
  padding: 14px 28px;
  box-shadow: 0 4px 14px rgba(201,166,51,0.3);
}
.btn--gold:hover {
  background: var(--gold-600);
  box-shadow: 0 6px 20px rgba(201,166,51,0.35);
  transform: translateY(-1px);
}
.btn--navy {
  background: var(--navy-900);
  color: #fff;
  font-size: 14px;
  padding: 14px 32px;
  box-shadow: 0 4px 14px rgba(27,45,78,0.3);
}
.btn--navy:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--navy-900);
  font-size: 14px;
  padding: 13px 28px;
  border: 2px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
}
.btn--large {
  font-size: 15px;
  padding: 16px 36px;
}
.btn--full {
  width: 100%;
  justify-content: center;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* === HERO (wizytówka) === */
.hero {
  background: linear-gradient(135deg, #ECC635 0%, #F0D04A 40%, #E8BF28 70%, #ECC635 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* --- Tekstura wałka malarskiego (warstwa CSS) --- */
.hero__roller-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cdefs%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015 0.003' numOctaves='3' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='800' height='800' fill='%23f5e06a' filter='url(%23t)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 1;
}
.hero__roller-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cdefs%3E%3Cfilter id='b'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.04 0.006' numOctaves='2' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='600' height='600' fill='%23f5e06a' filter='url(%23b)' opacity='0.15'/%3E%3C/svg%3E");
  background-size: cover;
  mix-blend-mode: screen;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__content--bottom {
  padding-top: 0;
}

/* Hero Logo */
.hero__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 40px;
  margin-bottom: 0;
}
.hero__logo-img {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}
.hero__logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #1A1A1A;
  letter-spacing: 3px;
  border-bottom: 2px solid rgba(26,26,26,0.25);
  padding-bottom: 6px;
  line-height: 1;
  text-shadow: 0 0 8px rgba(255,255,255,0.35);
}

/* Hero Tagline (red bar — full-width) */
.hero__tagline {
  background: #B83230;
  width: 100%;
  align-self: stretch;
  padding: 28px 40px;
  text-align: center;
  margin-top: 32px;
  box-shadow: 0 4px 16px rgba(184,50,48,0.25);
  position: relative;
  z-index: 2;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
.hero__tagline p {
  font-size: 20px;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* Hero Services (4 items) */
.hero__services {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 28px 40px 22px;
  width: 100%;
  max-width: none;
}
.hero__service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero__chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 3px solid #C0392B;
  border-bottom: 3px solid #C0392B;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.hero__service span:not(.hero__chevron) {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Hero Phone (pill CTA) */
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #C0392B;
  padding: 16px 42px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  margin: 32px 0 16px;
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.hero__phone:hover {
  background: #A33025;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.4);
}
.hero__phone svg {
  flex-shrink: 0;
}
.hero__phone span {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
}

/* Hero Buttons */
.hero__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  padding: 4px 32px 52px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.hero__btn--primary {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.12);
  color: #1A1A1A;
}
.hero__btn--primary:hover {
  background: rgba(0,0,0,0.30);
  transform: translateY(-1px);
}
.hero__btn--secondary {
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(255,255,255,0.3);
  color: #1A1A1A;
}
.hero__btn--secondary:hover {
  background: rgba(255,255,255,0.65);
  transform: translateY(-1px);
}

/* Hero entry animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero__logo {
  animation: heroFadeUp 0.7s ease-out both;
}
.hero__tagline {
  animation: heroFadeUp 0.7s 0.15s ease-out both;
}
.hero__services {
  animation: heroFadeUp 0.7s 0.3s ease-out both;
}
.hero__phone {
  animation: heroFadeUp 0.7s 0.45s ease-out both;
}
.hero__buttons {
  animation: heroFadeIn 0.7s 0.6s ease-out both;
}

/* === STATS BAR === */
.stats {
  background: var(--navy-900);
  border-top: 3px solid var(--gold-500);
  padding: 0;
  position: relative;
}
.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  position: relative;
}
.stats__item {
  padding: 18px 20px;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.stat-number {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: -0.02em;
}
.stats__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 500;
}

/* === SECTIONS === */
.section {
  padding: 72px 0;
}
.section--white {
  background: var(--bg-white);
}
.section--cream {
  background: var(--bg-cream);
}
.section--gold-tint {
  background: var(--gold-50);
}
.section--bordered {
  border-top: 1px solid var(--border-light);
}
.section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.section__number {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--gold-500);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.section__header h2 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 18px;
}

/* === SERVICE CARDS === */
.services__grid {
  display: grid;
  gap: 20px;
}
.card {
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
}

/* Flagship card */
.card--flagship {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(201,166,51,0.15);
  border-top: 4px solid var(--gold-500);
  border-radius: 0;
  position: relative;
  padding: 28px 24px;
  margin-bottom: 12px;
  color: #fff;
}
.card--flagship:hover {
  box-shadow: var(--shadow-xl);
}
.card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  font-weight: 700;
  background: var(--gold-500);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.card--flagship .card__title {
  color: #FFFFFF;
  font-size: 20px;
}
.card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}
.card--flagship .card__desc {
  color: rgba(255,255,255,0.75);
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.card__tag {
  font-size: 11px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-weight: 500;
}
.card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.card__link:hover {
  gap: 8px;
  color: var(--red-600);
}
.card--flagship .card__link {
  color: var(--gold-500);
}

/* Small cards */
.card--small {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-500);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}
.card--small:hover {
  border-color: var(--gold-600);
  border-left-color: var(--red-500);
  box-shadow: var(--shadow-md);
}
.card__icon {
  width: 40px;
  height: 40px;
  background: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card--small .card__title {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
}
.card--small .card__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.card--small .card__link {
  font-size: 12px;
}

/* === PROCESS / HOW WE WORK === */
.process {
  padding: 72px 0;
  background: var(--bg-white);
  border-top: none;
}
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: 12px;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 12px;
}
.process__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,45,78,0.2);
}
.process__step:last-child .process__circle {
  background: var(--red-500);
  color: #fff;
}
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-100));
}
.process__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.process__subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #ECC635 0%, #F0D04A 40%, #E8BF28 70%, #ECC635 100%);
  border-top: 4px solid var(--red-500);
  border-bottom: none;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.05);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cta-section__subtitle {
  font-size: 15px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 28px;
}
.cta-section .btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.cta-section .btn--whatsapp:hover {
  background: #1da851;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--dark-900);
  padding: 40px 0;
  border-top: 3px solid var(--gold-500);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__company {
  font-size: 13px;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer__details {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.footer__link {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__link:hover {
  color: var(--gold-500);
}

/* === SUBPAGE HERO (mini-hero) === */
.mini-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 48px 0;
  padding-top: 96px;
  position: relative;
  overflow: hidden;
}
.mini-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mini-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,45,78,0.93) 0%, rgba(38,56,120,0.88) 50%, rgba(44,67,131,0.82) 100%);
}
.mini-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

/* === FLAGSHIP CARD IMAGE === */
.card--flagship .card__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 16/7;
  border: 1px solid rgba(255,255,255,0.1);
}
.card--flagship .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--gold-500);
  transition: color 0.15s;
}
.breadcrumb a:hover {
  color: var(--gold-600);
}
.breadcrumb span {
  margin: 0 6px;
  color: rgba(255,255,255,0.3);
}
.mini-hero h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.mini-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 560px;
  line-height: 1.7;
}
.mini-hero__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mini-hero__ctas .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.mini-hero__ctas .btn--outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* === SEO CONTENT === */
.seo-content {
  background: var(--bg-white);
  padding: 56px 0;
}
.seo-content .container {
  max-width: 780px;
}
.seo-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.seo-content h2:first-child {
  margin-top: 0;
}
.seo-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.seo-content ul,
.seo-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.seo-content ul {
  list-style: disc;
}
.seo-content ul li::marker {
  color: var(--gold-500);
}
.seo-content li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.seo-content strong {
  color: var(--text-primary);
  font-weight: 600;
}
.seo-content .cta-inline {
  background: var(--navy-50);
  border-left: 4px solid var(--navy-900);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.seo-content .cta-inline a {
  color: var(--gold-500);
  font-weight: 700;
}

/* === FAQ === */
.faq {
  margin-top: 48px;
  border-top: 1px solid var(--border-light);
  padding-top: 36px;
}
.faq h2 {
  margin-top: 0;
  margin-bottom: 24px;
}
.faq__item {
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}
.faq__item summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  transition: color 0.15s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { display: none; content: ''; }
.faq__item summary:hover {
  color: var(--navy-800);
}
.faq__item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: transform 0.25s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  border-radius: 50%;
}
.faq__item[open] summary::after {
  content: '−';
}
.faq__item > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 8px;
  margin: 0;
}

/* === GALLERY === */
.gallery {
  padding: 48px 0;
  background: var(--bg-white);
}
.gallery h2 {
  margin-bottom: 20px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery__item {
  background: var(--bg-warm-gray);
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery__item span {
  font-size: 13px;
  color: var(--text-muted);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img {
  transform: scale(1.07);
}

/* === CONTACT PAGE === */
.contact {
  padding: 56px 0;
  background: var(--bg-cream);
}
.contact__grid {
  display: grid;
  gap: 36px;
}
/* Contact Cards */
.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-md);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card--phone {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
}
.contact-card--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}
.contact-card--whatsapp .contact-card__icon svg {
  fill: #fff;
  stroke: none;
}
.contact-card__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.contact-card__value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.contact-card__hint {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
}

/* Contact Details Grid */
.contact__details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

/* WhatsApp CTA button */
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--whatsapp:hover {
  background: #128C7E;
  color: #fff;
}
.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact__info {
  padding: 4px 0;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact__info-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy-900);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact__phone {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
}
.contact__info-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact__map {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  background: var(--bg-warm-gray);
  box-shadow: var(--shadow-sm);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === RELATED SERVICES LINKS === */
.related-services {
  padding: 40px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}
.related-services h2 {
  margin-bottom: 16px;
}
.related-services__list {
  display: grid;
  gap: 8px;
}
.related-services__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-800);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s, padding-left 0.2s;
}
.related-services__list a:hover {
  color: var(--gold-500);
  padding-left: 4px;
}
.related-services__list a::before {
  content: '→';
  color: var(--gold-500);
  font-weight: 700;
}

/* === SERVICES HUB (uslugi.html) === */
.services-hub {
  padding: 56px 0 72px;
  background: var(--bg-cream);
}
.services-hub__category {
  margin-bottom: 48px;
}
.services-hub__category:last-child {
  margin-bottom: 0;
}
.services-hub__category-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.services-hub__category-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.services-hub__category-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-hub__category-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.services-hub__category-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.services-hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.services-hub__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-500);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.services-hub__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--red-500);
}
.services-hub__card-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  flex-shrink: 0;
  min-width: 200px;
}
.services-hub__card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.services-hub__card-arrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
  margin-left: auto;
}
.services-hub__card:hover .services-hub__card-arrow {
  transform: translateX(4px);
  color: var(--red-500);
}

@media (min-width: 768px) {
  .services-hub__grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-hub__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .services-hub__card-title {
    min-width: unset;
  }
  .services-hub__card-arrow {
    margin-left: 0;
    align-self: flex-end;
    margin-top: auto;
  }
}
@media (min-width: 1024px) {
  .services-hub__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .services-hub__category-title {
    font-size: 22px;
  }
  .services-hub {
    padding: 72px 0 96px;
  }
}
@media (max-width: 767px) {
  .services-hub__card {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 4px 12px;
  }
  .services-hub__card-title {
    min-width: unset;
    flex: 1;
  }
  .services-hub__card-desc {
    width: 100%;
    order: 3;
  }
  .services-hub__card-arrow {
    order: 2;
  }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === PRIVACY POLICY === */
.policy-content {
  padding: 48px 0;
  background: var(--bg-white);
}
.policy-content .container {
  max-width: 780px;
}
.policy-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* === PRINT === */
@media print {
  .nav,
  .nav__mobile-menu,
  .nav__overlay,
  .phone-bar,
  .btn,
  .cta-section,
  .hero__phone,
  .hero__buttons,
  .mini-hero__ctas,
  .cta-section__buttons,
  .gallery,
  .contact__map {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 20px 0;
  }
  .footer {
    background: #fff;
    color: var(--text-primary);
  }
  .footer__company,
  .footer__details,
  .footer__copy {
    color: var(--text-primary);
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  body {
    font-size: 12pt;
  }
}

/* === RESPONSIVE: TABLET (768px+) === */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 36px;
  }

  .mini-hero h1 {
    font-size: 30px;
  }

  .hero__logo-text {
    font-size: 38px;
    letter-spacing: 2.5px;
  }
  .hero__logo-img {
    max-width: 440px;
  }
  .hero__logo {
    gap: 20px;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-services__list {
    grid-template-columns: 1fr 1fr;
  }

  .mini-hero {
    padding: 48px 0;
  }
}

/* === RESPONSIVE: DESKTOP (1024px+) === */
@media (min-width: 1024px) {
  h1 {
    font-size: 42px;
  }

  .mini-hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 88px 0;
  }

  .hero__logo-text {
    font-size: 48px;
    letter-spacing: 3.5px;
  }
  .hero__logo-img {
    max-width: 580px;
  }
  .hero__logo {
    gap: 26px;
  }
  .hero__content {
    max-width: 1100px;
  }
  .hero__tagline {
    padding: 30px 48px;
  }
  .hero__tagline p {
    font-size: 21px;
  }

  .mini-hero {
    padding: 56px 0;
  }
  .mini-hero .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .related-services__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* === RESPONSIVE: WIDE (1280px+) === */
@media (min-width: 1280px) {
  .container {
    max-width: 1140px;
    padding: 0 32px;
  }
}

/* === MOBILE ONLY (< 768px) === */
@media (max-width: 767px) {
  .nav__inner {
    padding: 12px 20px;
  }
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__mobile-menu {
    display: flex;
  }
  .phone-bar {
    display: block;
  }
  .nav__phone {
    display: none;
  }
  .nav__dropdown-menu {
    display: none !important;
  }

  .hero {
    min-height: 100svh;
    padding: 60px 0 32px;
    justify-content: center;
  }
  .hero__logo-text {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .hero__logo-img {
    max-width: 280px;
  }
  .nav__logo-img {
    height: 30px;
  }
  .hero__logo {
    gap: 10px;
    padding-top: 24px;
  }
  .hero__tagline {
    padding: 16px 16px;
    margin-top: 20px;
    border-width: 3px;
  }
  .hero__tagline p {
    font-size: 13px;
  }
  .hero__services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    justify-items: start;
    padding: 14px 16px 12px;
    max-width: 100%;
    overflow: hidden;
  }
  .hero__service {
    white-space: nowrap;
    min-width: 0;
    gap: 6px;
  }
  .hero__chevron {
    width: 6px;
    height: 6px;
    border-width: 2px;
  }
  .hero__service span {
    font-size: 9.5px;
    letter-spacing: 0.2px;
  }
  .hero__content--bottom {
    position: static;
  }
  .hero__phone {
    position: static;
    transform: none;
    padding: 12px 28px;
    margin: 20px 0 12px;
    white-space: nowrap;
  }
  .hero__phone:hover {
    transform: translateY(-2px);
  }
  .hero__phone span {
    font-size: 18px;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 4px 20px 12px;
  }
  .hero__btn {
    width: 100%;
    justify-content: center;
    padding: 11px 24px;
    font-size: 13px;
  }
  .stat-number {
    font-size: 18px;
  }
  .stats__item {
    padding: 12px 8px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .process__step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 14px 0;
  }
  .process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 58px;
    left: 21px;
    width: 2px;
    height: calc(100% - 44px);
    transform: none;
    background: var(--border-light);
  }
  .process__title {
    margin-top: 0;
  }
  .process__subtitle {
    margin-top: 0;
  }
  .process__step-text {
    display: flex;
    flex-direction: column;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__cards {
    grid-template-columns: 1fr;
  }
  .contact-card__value {
    font-size: 26px;
  }
  .contact__details-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .mini-hero {
    padding: 32px 0;
  }
  .mini-hero__ctas {
    flex-direction: column;
  }
  .mini-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-section__buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* === FOCUS STATES (Accessibility) === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* === SELECTION === */
::selection {
  background: var(--gold-500);
  color: #fff;
}

/* === SMOOTH SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-800);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--navy-900);
}
