/* ==========================================================================
   Klipper THC Sponsoring Website
   Colors: Klipper-Blau #0067ac, Dark #004d80, Gold #c8a84e
   ========================================================================== */

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

:root {
  --blue: #0067ac;
  --blue-dark: #004d80;
  --blue-light: #e8f2fa;
  --blue-lighter: #f4f9fd;
  --gold: #c8a84e;
  --gold-light: #f5efd8;
  --text: #1a1a1a;
  --text-light: #555;
  --text-muted: #888;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-dark);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.header-logo:hover {
  color: var(--blue);
}

.header-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
}

.header-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,77,128,.85) 0%, rgba(0,103,172,.7) 50%, rgba(0,77,128,.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 8rem 0 4rem;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #b8972e;
  border-color: #b8972e;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--blue-dark);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */

.stats {
  background: var(--blue);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.15);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ==========================================================================
   Arguments (Warum Klipper)
   ========================================================================== */

.arguments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.argument-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.argument-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.argument-number {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.argument-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.argument-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ==========================================================================
   Club Section
   ========================================================================== */

.club-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.club-sports {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sport-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.sport-card:hover {
  box-shadow: var(--shadow-md);
}

.sport-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sport-info {
  padding: 1.25rem 1.25rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sport-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.sport-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.club-facts {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.club-facts h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
}

.facts-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}

.fact-row:last-child {
  border-bottom: none;
}

.fact-row dt {
  color: var(--text-muted);
  font-weight: 500;
}

.fact-row dd {
  font-weight: 600;
  color: var(--text);
}

.club-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.value-tag {
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.club-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.club-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--text-light);
  transition: all var(--transition);
}

.club-social a:hover {
  background: var(--blue);
  color: var(--white);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ==========================================================================
   Format Blocks (Preistabellen)
   ========================================================================== */

.format-block {
  margin-bottom: 3rem;
}

.format-block:last-child {
  margin-bottom: 0;
}

.format-block h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.format-intro {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 0.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.price-table thead {
  background: var(--blue);
  color: var(--white);
}

.price-table th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-table th:not(:first-child) {
  text-align: center;
}

.price-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}

.price-table td:not(:first-child) {
  text-align: center;
  white-space: nowrap;
}

.price-table tbody tr:hover {
  background: var(--blue-lighter);
}

.table-detail {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.price-highlight {
  background: var(--blue-light);
  font-weight: 700;
}

.price-highlight strong {
  color: var(--blue);
}

.table-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Trikot Cards
   ========================================================================== */

.trikot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trikot-card {
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.trikot-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trikot-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trikot-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.trikot-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.trikot-price {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.375rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==========================================================================
   Packages
   ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.package-featured {
  border: 2px solid var(--blue);
  transform: scale(1.03);
}

.package-featured:hover {
  transform: scale(1.03) translateY(-3px);
}

.package-header {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.package-bronze {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: var(--white);
}

.package-silver {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}

.package-gold {
  background: linear-gradient(135deg, var(--gold), #b8972e);
  color: var(--white);
}

.package-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.package-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--white);
  color: var(--blue);
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-features {
  list-style: none;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.package-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.package-features li:last-child {
  margin-bottom: 0;
}

.package-prices {
  padding: 1.5rem;
}

.package-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.package-price-row strong {
  color: var(--text);
}

.package-best {
  background: var(--blue-light);
  margin: 0 -1.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
}

.package-best strong {
  color: var(--blue);
}

/* ==========================================================================
   Extras
   ========================================================================== */

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

.extra-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.extra-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.extra-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.extra-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.extra-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.extra-detail {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.cta-content {
  max-width: 700px;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.cta p {
  font-size: 1.0625rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,103,172,.15);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--blue);
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

.form-checkbox a {
  text-decoration: underline;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-info {
  position: sticky;
  top: 96px;
}

.contact-person {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--blue-light);
}

.contact-person h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.contact-role {
  font-size: 0.875rem;
  color: var(--text-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--blue);
}

.contact-detail a {
  color: var(--text);
}

.contact-detail a:hover {
  color: var(--blue);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.7);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: 0.8125rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-address {
  font-size: 0.8125rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .club-grid {
    grid-template-columns: 1fr;
  }

  .sport-card {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }

  .header-nav.open {
    transform: translateX(0);
  }

  .header-nav a {
    padding: 0.875rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem !important;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

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

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 7rem 0 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.15);
  }

  .stat:nth-child(even) {
    border-right: none;
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 1.625rem;
  }

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

  .sport-card {
    grid-template-columns: 1fr;
  }

  .sport-card img {
    height: 200px;
  }

  .sport-info {
    padding: 1rem 1.25rem 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 180px;
  }

  .trikot-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .package-featured {
    transform: none;
  }

  .package-featured:hover {
    transform: translateY(-3px);
  }

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

  .contact-info {
    position: static;
    order: -1;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .price-table {
    font-size: 0.8125rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.625rem 0.75rem;
  }
}
