/* ============================================
   PAKET-SERVICE.EU — Modern / Clean
   Fonts: Outfit + Figtree (Google Fonts)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-dark: #0F0F1A;
  --color-primary: #2B2B8E;
  --color-primary-dark: #22226e;
  --color-primary-light: #4040B0;
  --color-primary-bright: #7B7BE5;
  --color-secondary: #00a19a;
  --color-secondary-dark: #008580;
  --color-light: #F4F0FF;
  --color-cream: #FAFAFE;
  --color-white: #ffffff;
  --color-text: #111827;
  --color-muted: #6B7280;
  --color-border: #e5e5ef;
  --color-overlay: rgba(15, 15, 26, 0.85);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Figtree', sans-serif;

  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.15);
  --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.2);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --container: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  font-size: 1.05rem;
  max-width: 65ch;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary-bright);
  border: 1px solid rgba(123, 123, 229, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary-bright);
  color: var(--color-white);
  box-shadow: 0 4px 24px rgba(123, 123, 229, 0.3);
}

.btn-primary:hover {
  background: #8f8ff0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123, 123, 229, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: #162033;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Carlito', Calibri, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1;
}


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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-bright);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-dark) 0%, #1a1a5e 40%, var(--color-primary) 100%);
  overflow: hidden;
  text-align: center;
}

.hero-rings {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(123, 123, 229, 0.12);
}

.hero-ring--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  animation: ringPulse 8s ease-in-out infinite;
}

.hero-ring--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: ringPulse 8s ease-in-out infinite 2s;
}

.hero-ring--3 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: 15%;
  animation: ringPulse 8s ease-in-out infinite 4s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-grid-pattern,
.hero-geometric {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.hero .label {
  margin-bottom: 2rem;
  color: var(--color-primary-bright);
  border-color: rgba(123, 123, 229, 0.3);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-primary-bright), #a5a5f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(249, 250, 251, 0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

/* --- V9-Style Pricing Layout --- */
.pricing-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-center {
  flex: 0 0 auto;
  text-align: center;
  min-width: 260px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -3px;
}

.price-amount sup {
  font-size: 0.4em;
  vertical-align: super;
  letter-spacing: 0;
}

.price-period-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  font-weight: 500;
}

.price-annual-text {
  font-size: 0.9rem;
  color: var(--color-primary-bright);
  margin-top: 0.25rem;
}

.pricing-cta {
  margin-top: 2rem;
}

.pricing-features-v9 {
  flex: 1;
  columns: 2;
  column-gap: 2rem;
  list-style: none;
}

.pricing-features-v9 li {
  break-inside: avoid;
  padding: 10px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features-v9 li svg {
  flex-shrink: 0;
  color: var(--color-primary-bright);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* --- Section Base --- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header .label {
  margin-bottom: 0.75rem;
}

.section-header h2 {
  color: var(--color-dark);
}

.section-header p {
  color: var(--color-muted);
  margin-top: 1rem;
}

/* --- Leistungen (Services) --- */
.services {
  background: var(--color-white);
}

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

.service-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 43, 142, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

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

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* --- So funktioniert's (How it Works) --- */
.how-it-works {
  background: var(--color-dark);
  padding: 6rem 0;
}

.how-it-works .section-header .label {
  color: var(--color-primary-bright);
}

.how-it-works .section-header h2 {
  color: var(--color-white);
}

.how-it-works .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-bright), var(--color-secondary));
  opacity: 0.3;
}

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

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(123, 123, 229, 0.12);
  border: 2px solid rgba(123, 123, 229, 0.4);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary-bright);
  position: relative;
  z-index: 2;
}

.step h3 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Lieferadressen (Addresses) --- */
.addresses {
  background: var(--color-light);
}

.address-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

.address-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--color-border);
  transition: all 0.4s ease;
  position: relative;
}

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

.address-card--de {
  border-color: rgba(43, 43, 142, 0.25);
  background: linear-gradient(180deg, rgba(43, 43, 142, 0.04) 0%, var(--color-cream) 100%);
}

.address-card--de:hover {
  border-color: var(--color-primary);
}

.address-card-flag {
  margin-bottom: 1.25rem;
}

.address-card-flag svg {
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.address-card h3 {
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.address-card-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.address-benefits {
  list-style: none;
}

.address-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.address-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* --- Kundenstimmen (Testimonials) --- */
.testimonials {
  background: var(--color-white);
}

.trust-line {
  color: var(--color-primary-bright);
  font-weight: 600;
  font-size: 1rem;
}

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

.testimonial-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

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

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

/* --- Sparbeispiel-Box --- */
.saving-box {
  margin-top: 3rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid rgba(43, 43, 142, 0.15);
  text-align: center;
  font-family: var(--font-body);
}

.saving-box h3 {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.saving-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.saving-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  min-width: 180px;
}

.saving-item--old {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.saving-item--new {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.saving-item--fee {
  background: rgba(43, 43, 142, 0.04);
  border: 1px solid rgba(43, 43, 142, 0.12);
}

.saving-label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.saving-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
}

.saving-item--old .saving-price {
  color: #EF4444;
  text-decoration: line-through;
}

.saving-item--new .saving-price {
  color: #10B981;
}

.saving-arrow,
.saving-plus {
  font-size: 1.5rem;
  color: var(--color-muted);
  font-weight: 700;
}

.saving-result {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.saving-result strong {
  color: var(--color-primary);
}

/* --- FAQ --- */
.faq-section {
  background: var(--color-dark);
}

.faq-section .section-header h2 {
  color: var(--color-white);
}

.faq-section .section-header .label {
  color: var(--color-primary-bright);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: left;
}

.faq-question:hover {
  color: var(--color-primary-bright);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-primary-bright);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* --- Fee Intro --- */
.fee-intro {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* --- Preise (Pricing) --- */
.pricing {
  background: var(--color-dark);
  color: var(--color-white);
}

.pricing-single {
  max-width: 520px;
  margin: 0 auto;
}

.pricing .section-header h2 {
  color: var(--color-white);
}

.pricing .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.pricing .section-header .label {
  color: var(--color-primary-bright);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(123, 123, 229, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card h3 {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary-bright);
  line-height: 1;
  margin: 1rem 0;
}

.pricing-card .price-period {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin: 1.5rem 0 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

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

/* --- Gebühren-Sektion (V9-Stil) --- */
.fees-section {
  background: var(--color-light);
}

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

.fee-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.fee-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  padding: 12px 14px;
  text-align: left;
  border-bottom: 2px solid var(--color-primary);
}

.fee-table thead th:last-child,
.fee-table thead th:not(:first-child) {
  text-align: right;
}

.fee-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.fee-table tbody tr:hover {
  background: rgba(43, 43, 142, 0.04);
}

.fee-table .price-cell {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  text-align: right;
}

.fee-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

.fee-note a {
  text-decoration: none;
}

/* Legacy shipping-rates (unused) */
.shipping-rates {
  margin-top: 3rem;
}

.shipping-rates h3 {
  text-align: center;
  color: var(--color-white);
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.rates-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rates-table thead {
  background: var(--color-dark);
}

.rates-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.rates-table td {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rates-table tbody tr:last-child td {
  border-bottom: none;
}

.rates-table tbody tr:hover {
  background: rgba(123, 123, 229, 0.08);
}

.rates-table-tip {
  background: rgba(123, 123, 229, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
  padding: 0.9rem 1.5rem;
}

/* --- Standort (Location) --- */
.location {
  background: var(--color-light);
}

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

.location-info {
  padding: 1rem 0;
}

.location-info h3 {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 43, 142, 0.06);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.location-detail-icon svg {
  width: 20px;
  height: 20px;
}

.location-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}

.location-detail-text p,
.location-detail-text a {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.location-detail-text a:hover {
  color: var(--color-primary);
}

.hours-grid {
  margin-top: 0.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  max-width: 380px;
}

.hours-row .day {
  min-width: 110px;
  flex-shrink: 0;
  font-weight: 500;
  color: var(--color-text);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* --- Kontakt (Contact) --- */
.contact {
  background: var(--color-dark);
  padding: 6rem 0;
}

.contact .section-header .label {
  color: var(--color-primary-bright);
}

.contact .section-header h2 {
  color: var(--color-white);
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(123, 123, 229, 0.4);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(123, 123, 229, 0.15);
  border-radius: 50%;
  color: var(--color-primary-bright);
}

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

.contact-card h4 {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-card a:hover {
  color: var(--color-primary-bright);
}

/* --- Footer --- */
.footer {
  background: #060e1a;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  max-width: 350px;
}

.footer h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 22, 40, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-geometric {
    width: 300px;
    height: 300px;
    right: -15%;
    top: 5%;
    opacity: 0.5;
  }

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

  .how-it-works {
    padding: 4rem 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps::before {
    display: none;
  }

  .address-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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

  .contact {
    padding: 4rem 0;
  }

  .pricing-layout {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .pricing-features-v9 {
    columns: 1;
  }

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

  .saving-comparison {
    flex-direction: column;
  }

  .saving-item {
    min-width: auto;
    width: 100%;
  }

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

  .fee-table thead th,
  .fee-table tbody td {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .rates-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rates-table th,
  .rates-table td {
    padding: 0.6rem 0.7rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  h1 { font-size: 2.5rem; }
}
