/*
  ZÁKLADNÍ NASTAVENÍ
  - Mobil-first
  - Barevná paleta podle návrhu
*/

:root {
  --color-navy: #003366;
  --color-navy-light: #0055aa;
  --color-red: #d32027;
  --color-red-dark: #b01a20;
  --color-white: #ffffff;
  --color-bg-light: #f2f4f7;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --container-max-width: 1200px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 10px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 999;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-navy);
  text-decoration: none;
}

a:hover {
  color: var(--color-navy-light);
  text-decoration: underline;
}

.text-red {
  color: var(--color-red);
}

h1,
 h2,
 h3,
 h4 {
  margin: 0 0 0.75em;
  color: var(--color-navy);
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
}

.logo:hover {
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-line-1 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.logo-line-2 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 999px;
}

.nav-toggle {
  background: none;
  border: none;
  padding: 8px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  color: var(--color-white);
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
}

.main-nav {
  position: fixed;
  inset: 64px 0 auto 0;
  background-color: var(--color-navy);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.main-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 16px 20px 24px;
}

.main-nav li {
  margin-bottom: 8px;
}

.main-nav a {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
}

  .main-nav a[aria-current='true'],
  .main-nav a.is-current {
    text-decoration: underline;
    font-weight: 700;
  }

.main-nav a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 32px;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-red-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
}

.btn-outline:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
}

.btn-call {
  display: none;
}

.btn-call-icon {
  font-size: 1.1rem;
}

/* HERO */

.section-hero {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}

.hero-fullscreen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(135deg, rgba(0, 51, 102, 0.88) 0%, rgba(0, 85, 170, 0.82) 50%, rgba(0, 51, 102, 0.9) 100%),
    url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(211, 32, 39, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0, 85, 170, 0.15) 0%, transparent 50%),
    url('data:image/svg+xml,%3Csvg width="120" height="120" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0l60 60M60 0l60 60M0 60l60 60M60 60l60 60" stroke="%23ffffff" stroke-width="0.5" opacity="0.06"/%3E%3C/svg%3E');
  background-size: auto, auto, 120px 120px;
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: 40px;
  padding: 64px 20px 56px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  max-width: 32rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-status .eyebrow {
  margin: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-red);
  position: relative;
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot--online {
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
}

.hero-heading {
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-title-main {
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 18px rgba(211, 32, 39, 0.45);
}

.hero-kicker {
  display: block;
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #d0e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
}

.hero-tag--alert {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(211, 32, 39, 0.3);
  animation: pulse-badge 3s ease-in-out infinite;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.section-hero h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 4px 40px rgba(0, 51, 102, 0.5);
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-strong {
  color: var(--color-white);
  font-weight: 600;
}

.hero-accent {
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.5rem 0 0.75rem;
}

.hero-assurances {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 12px 0 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 18px;
}

.hero-assurances li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-white);
  font-weight: 600;
}

.hero-microcopy {
  font-size: 0.8rem;
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-contact {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  color: var(--color-text);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: visible;
}

.hero-contact-title {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.hero-chip {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.hero-ribbon {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 12px 16px;
  border-radius: 12px 12px 0 0;
  margin: -24px -20px 20px;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-ribbon::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.12"/%3E%3C/svg%3E');
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.contact-card {
  margin-bottom: 0.9rem;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 51, 102, 0.08);
  background: var(--color-white);
}

.contact-card--primary {
  background: linear-gradient(135deg, rgba(211, 32, 39, 0.05) 0%, rgba(211, 32, 39, 0.015) 100%);
  border-left: 3px solid var(--color-red);
  border-color: rgba(211, 32, 39, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-contact-phone {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-red);
}

.hero-contact-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin: 0;
}

.hero-contact-note strong {
  color: var(--color-red);
}

.hero-contact-note-icon {
  color: #10b981;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.hero-contact-link {
  font-size: 0.9rem;
  word-break: break-word;
}

.hero-contact-text {
  font-size: 0.9rem;
}

.contact-meta-grid {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.hero-security {
  margin-top: 16px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.8rem;
  color: #059669;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-scroll-indicator a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(4px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* SECTIONS */

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 1.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-red) 100%);
  border-radius: 2px;
}

.section-header p {
  max-width: 40rem;
  margin: 0.5rem auto 0;
  color: var(--color-text-muted);
}

.pill-row {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-row--muted {
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pill--accent {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(211, 32, 39, 0.3);
}

.pill--light {
  background: #f2f4f7;
}

.section-services {
  background-color: var(--color-bg-light);
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 0L35 15L30 30L25 15Z" fill="%23003366" opacity="0.02"/%3E%3C/svg%3E');
  background-size: 60px 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(135deg, var(--color-white) 0%, #fafbfc 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 51, 102, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-red) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.15);
  border-color: rgba(0, 51, 102, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  color: var(--color-navy);
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.08) 0%, rgba(0, 85, 170, 0.12) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal), transform var(--transition-normal);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(211, 32, 39, 0.12) 0%, rgba(176, 26, 32, 0.15) 100%);
  transform: scale(1.1);
}

.service-icon .icon {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
}

/* Themed images */
.service-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

/* responsive image layout and fallback look */
.service-photo[src*="images/gallery-placeholder.svg"],
.img-fallback {
  filter: grayscale(30%);
  opacity: 0.95;
}

.service-photo[width][height] {
  /* reserve layout space for images and avoid layout shift */
  /* using a fixed 3:2 aspect ratio for service previews */
  aspect-ratio: 3 / 2;
}

/* Akce */
.section-deals {
  background-color: var(--color-white);
}

.deal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.deal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-left: 4px solid var(--color-red);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.deal-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.deal-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deal-desc {
  color: var(--color-text);
  font-size: 0.95rem;
}

.deal-pill {
  font-size: 0.8rem;
}

/* Nové prvky pro akční nabídky */
.deal-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-red);
  margin: 0 0 4px;
}

.deal-points {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.deal-points li {
  position: relative;
  padding-left: 18px;
}

.deal-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

.deal-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: -4px 0 0;
}

@media (min-width: 768px) {
  .service-photo { height: 180px; }
}

.section-banner-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 16px 0 0;
}

.pricing-illustration {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 12px 0 24px;
}

.contact-illustration {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 0 0 16px;
}

.blog-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}

.store-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.section-cta {
  text-align: center;
  margin-top: 24px;
}

.section-microcopy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.section-why {
  background-color: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-icon {
  width: 60px;
  height: 60px;
  color: var(--color-red);
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(211, 32, 39, 0.1) 0%, rgba(211, 32, 39, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal), transform var(--transition-normal);
  flex-shrink: 0;
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, rgba(211, 32, 39, 0.15) 0%, rgba(211, 32, 39, 0.1) 100%);
  transform: scale(1.05);
}

.why-icon .icon {
  width: 26px;
  height: 26px;
}

.why-item h3 {
  font-size: 1.05rem;
}

.section-about {
  background-color: var(--color-bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-image-placeholder {
  position: relative;
  background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="200" height="200" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M100 40c-10 20-15 30-15 40a15 15 0 0030 0c0-10-5-20-15-40z" fill="%23ffffff" opacity="0.1"/%3E%3Cpath d="M50 100h100v40H50z" fill="%23ffffff" opacity="0.08"/%3E%3C/svg%3E');
  background-size: 150px 150px;
  background-position: center;
  opacity: 0.3;
}

.about-image-placeholder span {
  line-height: 1.4;
}

.about-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  font-size: 1.6rem;
}

.club-sponsor {
  margin-top: 32px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 51, 102, 0.08);
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.04) 0%, rgba(211, 32, 39, 0.04) 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.section-partner .club-sponsor {
  margin-top: 0;
}

.club-copy h3 {
  margin-bottom: 0.35em;
}

.club-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.club-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.club-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.club-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
}

.club-logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.club-logo-label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-navy);
  font-weight: 600;
}

.section-stats {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.section-gallery {
  background-color: var(--color-white);
}

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.gallery-slide {
  min-width: 100%;
  margin: 0;
}

/* Center the gallery images and captions vertically and horizontally */
.gallery-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* vertical centering */
  padding: 16px 12px; /* breathing room for caption and arrows */
  text-align: center;
}

.gallery-slide img,
.gallery-slide picture {
  max-width: 880px; /* prevent overly wide images on large screens */
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: block;
  margin: 0 auto; /* center inline images if any */
  object-fit: cover;
}

.gallery-slide figcaption {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  text-align: center;
}

/* Full gallery grid (galerie.html) */
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.gallery-item {
  margin: 0;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.gallery-item figcaption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-image-placeholder {
  background: linear-gradient(135deg, #e5e7eb 0%, #f9fafb 100%);
  border-radius: var(--radius-lg);
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.gallery-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="30" cy="30" r="20" fill="%23003366" opacity="0.04"/%3E%3Crect x="60" y="10" width="30" height="30" fill="%23d32027" opacity="0.04"/%3E%3C/svg%3E');
  background-size: 100px 100px;
  background-position: center;
}

.gallery-image-placeholder::after {
  content: '📸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.2;
}

.slider-arrow {
  background-color: var(--color-white);
  border-radius: 999px;
  border: 1px solid #d1d5db;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-navy);
  box-shadow: var(--shadow-xs);
  transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--transition-fast), width var(--transition-fast);
}
.gallery-dot:focus {
  outline: 2px solid var(--color-navy-light);
  outline-offset: 4px;
}

.gallery-dot.is-active {
  background-color: var(--color-navy);
  width: 24px;
}

.section-pricing {
  background-color: var(--color-bg-light);
  background-image: 
    linear-gradient(rgba(242, 244, 247, 0.8), rgba(242, 244, 247, 0.8)),
    url('data:image/svg+xml,%3Csvg width="80" height="80" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h40v40H0z" fill="%23003366" opacity="0.02"/%3E%3Cpath d="M40 40h40v40H40z" fill="%23003366" opacity="0.02"/%3E%3C/svg%3E');
  background-size: auto, 80px 80px;
}

.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pricing-note {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 8px;
}

.pricing-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
}

.pricing-table th {
  background-color: #e5e7eb;
  text-align: center;
  font-weight: 600;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

.section-contact-cta {
  background: linear-gradient(135deg, #003366 0%, #002a54 50%, #003d7a 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M50 10L60 30L50 50L40 30Z" fill="%23ffffff" opacity="0.02"/%3E%3Ccircle cx="20" cy="70" r="15" fill="%23ffffff" opacity="0.02"/%3E%3C/svg%3E');
  background-size: 120px 120px;
  opacity: 0.4;
  pointer-events: none;
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}

.contact-cta-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta-text h2 {
  font-size: 1.6rem;
  color: var(--color-white);
}

.contact-benefits {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.contact-benefits li {
  position: relative;
  padding-left: 0;
}

.contact-benefits li::before {
  content: '✓';
  color: var(--color-red);
  display: inline;
  width: auto;
  margin-left: 0;
  margin-right: 8px;
  font-weight: 700;
}

.privacy-note {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--color-red);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.95;
  color: var(--color-white);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-note-icon {
  font-size: 1.2rem;
}

.contact-cta-form-wrapper {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  color: var(--color-text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row-inline {
  margin-top: 4px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #e5e7eb;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus,
textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.12);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.checkbox input[type='checkbox'] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.form-microcopy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-status--success {
  color: #059669;
}

.form-status--error {
  color: #dc2626;
}

.btn-text-loading {
  display: none;
}

.btn-loading .btn-text-default {
  display: none;
}

.btn-loading .btn-text-loading {
  display: inline;
}

.section-blog {
  background-color: var(--color-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.blog-grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
  border-radius: var(--radius-lg);
  border: 1px dashed #d1d5db;
  padding: 24px 20px;
  text-align: center;
}

.blog-post {
  border-style: solid;
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 51, 102, 0.1);
  box-shadow: var(--shadow-sm);
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.blog-card h3 {
  font-size: 1.05rem;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.section-store {
  background-color: var(--color-bg-light);
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.store-list {
  padding-left: 1.25em;
}

.store-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.store-placeholder-box {
  background: 
    linear-gradient(135deg, rgba(0, 51, 102, 0.03) 0%, rgba(0, 85, 170, 0.05) 100%),
    repeating-linear-gradient(
      45deg,
      #e5e7eb,
      #e5e7eb 8px,
      #f9fafb 8px,
      #f9fafb 16px
    );
  border: 2px dashed rgba(0, 51, 102, 0.2);
  border-radius: var(--radius-lg);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.store-placeholder-box::before {
  content: '🛒';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  opacity: 0.15;
}

.section-bazar {
  background-color: var(--color-bg-light);
}

.bazar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.bazar-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.bazar-card--highlight {
  border: 2px solid #d32027;
  background: #fff5f5;
  box-shadow: 0 14px 36px rgba(211, 32, 39, 0.12);
}

.bazar-image {
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.bazar-image img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

.bazar-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  font-size: 0.9rem;
}

.bazar-body h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.deal-heading-highlight {
  color: #d32027;
}

.bazar-body .deal-price {
  font-size: 1.05rem;
}

.deal-price--highlight {
  color: #d32027;
  font-weight: 700;
}

.bazar-body .deal-points {
  font-size: 0.8rem;
  gap: 4px;
}

.bazar-body .deal-desc,
.bazar-body .deal-note {
  font-size: 0.8rem;
}

.bazar-body .btn {
  font-size: 0.85rem;
  padding: 10px 20px;
}

.deal-pill--highlight {
  color: #d32027;
  background: rgba(211, 32, 39, 0.12);
}

.bazar-meta {
  list-style: none;
  padding: 0;
  margin: 6px 0 4px;
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.bazar-body .btn {
  align-self: flex-start;
}

/* FOOTER */

.site-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 32px 0 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.logo-footer .logo-line-1,
.logo-footer .logo-line-2 {
  color: var(--color-white);
}

.footer-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-top: 12px;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--color-white);
  font-weight: 700;
}

.footer-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-contact-list li {
  margin-bottom: 8px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.icon-facebook {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.icon-facebook svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-white);
  text-decoration: none;
}

/* ANIMACE A INTERAKCE */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-animate-delay='0.05'] {
  transition-delay: 0.05s;
}

[data-animate][data-animate-delay='0.1'] {
  transition-delay: 0.1s;
}

[data-animate][data-animate-delay='0.15'] {
  transition-delay: 0.15s;
}

.btn-call {
  position: relative;
}

.btn-call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: scale(0.95);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes pulse-dot {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1; 
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% { 
    transform: scale(1.1); 
    opacity: 0.9; 
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

@keyframes pulse-badge {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 2px 8px rgba(211, 32, 39, 0.4);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 4px 16px rgba(211, 32, 39, 0.6);
  }
}

/* Respect user preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* FOCUS STATES */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-navy-light);
  outline-offset: 2px;
}

/* MEDIA QUERIES */

@media (min-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
  }

  .main-nav li {
    margin: 0;
  }

  .btn-call {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 80px;
    padding: 80px 24px;
    align-items: center;
  }

  .section-hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-body {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
  }

  .hero-contact {
    padding: 28px 24px;
  }

  .section {
    padding: 96px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .deal-card {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: stretch;
  }

  .deal-image img {
    height: 100%;
    min-height: 100%;
  }

  .club-sponsor {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .club-copy {
    max-width: 560px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid--cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .store-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  
  .bazar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  
  .bazar-card {
    max-width: none;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }

  .section-hero h1 {
    font-size: 3.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }

  .contact-cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 56px;
  }
}
