/* ==========================================================================
   FunnelExpert — Shared Section Styles
   Styles for all sections in _shared/sections/.
   Template-specific CSS can extend/override these.
   ========================================================================== */

/* ==========================================================================
   Section — Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10, 57, 78, .5) 0%, rgba(10, 57, 78, .75) 100%);
  z-index: 1;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-poster {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(4px);
  margin-bottom: 20px;
}

.hero h1 {
  text-shadow: 0 2px 24px rgba(10, 57, 78, .3);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: .95rem;
  line-height: 1.6;
  opacity: .9;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(10, 57, 78, .2);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 12px;
}

.hero-price-hint {
  display: inline-block;
  margin-top: 14px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 6px 18px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .5s;
}

.hero-price-hint.loaded { opacity: 1; }

/* Hero ratings */
.hero-ratings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 300px;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 10px 18px;
  backdrop-filter: blur(4px);
}

.hero-rating-score {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
}

.hero-rating-label {
  text-align: left;
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.3;
}

.hero-rating-label strong { color: var(--white); font-weight: 600; }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
}

.hero-dot.active { background: var(--white); border-color: var(--white); }

/* Trust bar */
.trust-bar {
  background: var(--bg-primary);
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.trust-item .score {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  margin-right: 6px;
}

.trust-item .score .score-max { font-size: .55em; opacity: .45; }

/* ==========================================================================
   Section — About / Welcome
   ========================================================================== */

.welcome { background: var(--surface, #FCFCFC); }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.welcome-text h2 { color: var(--bg-primary); }

.welcome-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
}

.welcome-text p { color: var(--text-light); font-size: 1.1rem; }

.welcome-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.welcome-image img,
.welcome-image video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.welcome-morph { position: relative; height: 300px; overflow: hidden; }

.welcome-morph .welcome-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.welcome-morph .welcome-vid.active { opacity: 1; }

.welcome-placeholder {
  width: 100%;
  height: 300px;
  background: var(--surface);
  border-radius: var(--radius-lg);
}

/* Icon boxes */
.icon-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 60px;
}

.icon-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}

.icon-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.icon-box-icon { font-size: 2.6rem; margin-bottom: 16px; }
.icon-box h3 { color: var(--bg-primary); margin-bottom: 10px; font-size: 1.1rem; }
.icon-box p { color: var(--text-light); font-size: 1rem; margin: 0; }

/* ==========================================================================
   Section — Gallery
   ========================================================================== */

.gallery { background: var(--surface, #FCFCFC); }
.gallery h2 { text-align: center; color: var(--bg-primary); margin-bottom: 44px; }
.gallery h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 220px;
  gap: 8px;
}

.gallery-item { overflow: hidden; cursor: pointer; position: relative; border-radius: var(--radius-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25, .46, .45, .94); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child { grid-column: span 1; }
.gallery-item video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25, .46, .45, .94); }
.gallery-item:hover video { transform: scale(1.08); }

.gallery-item .video-play-hint {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gallery-item .video-play-hint span {
  font-size: 2.5rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(10, 57, 78, .5);
  background: rgba(10, 57, 78, .35);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}

.gallery-item:hover .video-play-hint span { opacity: 0; }
.gallery-empty { text-align: center; color: var(--text-light); font-size: 1rem; }

/* Watermark */
.gallery-watermark-fe { position: relative; }
.gallery-watermark-fe::after {
  content: 'FunnelExpert';
  position: absolute;
  bottom: 8px; right: 8px;
  font-size: .65rem;
  color: rgba(255, 255, 255, .4);
  background: rgba(10, 57, 78, .3);
  padding: 2px 8px;
  border-radius: 3px;
  pointer-events: none;
}

/* ==========================================================================
   Section — Reviews / Testimonials
   ========================================================================== */

.testimonials {
  background: var(--surface, #FCFCFC);
  position: relative;
}

.testimonials h2 { text-align: center; color: var(--bg-primary); margin-bottom: 10px; }
.testimonials h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }
.testimonials-sub { text-align: center; color: var(--text-light); font-size: 1.05rem; margin-bottom: 54px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card { padding: 6px 0; }
.testimonial-card.hidden-review { display: none; }

.testimonial-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--bg-primary);
}

.testimonial-flag { font-size: 1.3rem; }
.testimonial-country { font-weight: 400; color: var(--text-light); font-size: .85rem; }

.testimonial-bubble {
  background: #DCF8C6;
  border-radius: 12px 12px 12px 0;
  padding: 14px 18px;
  position: relative;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(10, 57, 78, .06);
}

.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0;
  border-color: #DCF8C6 transparent transparent;
}

.testimonial-bubble q { quotes: none; font-style: italic; }
.testimonial-check { color: #4FC3F7; font-size: .8rem; float: right; margin-left: 6px; margin-top: 4px; }
.testimonial-meta { color: var(--text-light); font-size: .8rem; margin-top: 10px; display: flex; align-items: center; gap: 8px; }
.testimonial-stars { color: var(--color-star); letter-spacing: 2px; }

/* Platform rating badges */
.booking-badge {
  margin-top: 54px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.badge-scores { display: flex; justify-content: center; gap: 28px; margin-bottom: 14px; flex-wrap: wrap; }
.badge-platform { text-align: center; }
.badge-platform .badge-score { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--bg-primary); }
.badge-platform .badge-source { font-size: .9rem; color: var(--text-light); margin-top: 2px; }
.badge-platform .score-max { font-size: .55em; font-weight: 600; opacity: .45; color: var(--text-light); }
.booking-badge .badge-detail { font-size: .9rem; color: var(--text-light); }

/* ==========================================================================
   Section — Blog
   ========================================================================== */

.blog-preview { background: var(--white); }
.blog-preview h2 { text-align: center; color: var(--bg-primary); margin-bottom: 14px; }
.blog-preview h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }

/* Category filter */
.blog-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog-cat-link {
  padding: 8px 20px;
  border: 1px solid var(--bg-primary);
  border-radius: 20px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  color: var(--bg-primary);
  transition: all .3s;
  letter-spacing: .5px;
}

.blog-cat-link:hover, .blog-cat-link.active { background: var(--bg-primary); color: var(--white); }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 0 auto; }
.blog-feed { display: flex; flex-direction: column; gap: 32px; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s;
  display: block;
}

.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .6s; }
.blog-card:hover img { transform: scale(1.06); }
.blog-card-body { padding: 24px 28px; }
.blog-card-image { overflow: hidden; }

.blog-card-cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent, var(--bg-primary));
  margin-bottom: 8px;
  padding: 3px 10px;
  background: rgba(10, 57, 78, .05);
  border-radius: 3px;
}

.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; text-transform: none; letter-spacing: 0; color: var(--bg-primary); }
.blog-card p { font-size: .95rem; color: var(--text-light); margin: 0; line-height: 1.6; }
.blog-card-meta { display: block; font-size: .78rem; color: var(--text-light); margin-top: 10px; opacity: .7; }

.blog-load-more { text-align: center; margin-top: 40px; }
.blog-empty { text-align: center; color: var(--text-light); padding: 40px 0; }

/* Störer (interrupters) */
.blog-stoerer {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.blog-stoerer--gradient {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--accent, #5C7A7A) 100%);
  color: var(--white);
}

.blog-stoerer--dark {
  background: var(--bg-primary);
  color: var(--white);
}

.blog-stoerer--light {
  background: var(--surface, #F0F4F5);
  color: var(--bg-primary);
  border: 1px solid rgba(10, 57, 78, .08);
}

.stoerer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stoerer-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-stoerer--light .stoerer-icon { background: rgba(10, 57, 78, .08); }

.stoerer-text { flex: 1; min-width: 200px; }
.stoerer-text h3 { font-size: 1.1rem; margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.stoerer-text p { font-size: .95rem; margin: 0; opacity: .85; }

.stoerer-btn {
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .3s;
  white-space: nowrap;
}

.blog-stoerer--gradient .stoerer-btn,
.blog-stoerer--dark .stoerer-btn {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.blog-stoerer--gradient .stoerer-btn:hover,
.blog-stoerer--dark .stoerer-btn:hover { background: rgba(255, 255, 255, .25); }

.blog-stoerer--light .stoerer-btn {
  background: var(--bg-primary);
  color: var(--white);
}

.blog-stoerer--light .stoerer-btn:hover { filter: brightness(1.15); }

.stoerer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stoerer-email {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: .9rem;
  flex: 1;
}

.blog-stoerer--light .stoerer-email {
  border-color: rgba(10, 57, 78, .15);
  background: var(--white);
  color: var(--bg-primary);
}

/* ==========================================================================
   Section — CTA Banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--bg-primary), rgba(10, 57, 78, .85));
  padding: 0;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 28px;
  padding: 28px 24px;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-banner-text { font-family: var(--font-heading); font-size: 1.25rem; line-height: 1.4; }
.cta-banner-gold { color: var(--accent); font-weight: 700; }
.cta-banner-white { color: rgba(255, 255, 255, .85); font-weight: 400; }

.cta-banner-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent, var(--white));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all .3s;
  white-space: nowrap;
}

.cta-banner-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 16px rgba(10, 57, 78, .3);
}

/* ==========================================================================
   Section — FAQ
   ========================================================================== */

.faq { background: var(--white); }
.faq h2 { text-align: center; color: var(--bg-primary); margin-bottom: 44px; }
.faq h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }

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

.faq-item {
  border-bottom: 1px solid rgba(10, 57, 78, .08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bg-primary);
  text-align: left;
  transition: color .3s;
  gap: 16px;
}

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

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.22, 1, 0.36, 1), padding .4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 20px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Section — Coach / Funnel specific
   ========================================================================== */

/* Offer cards */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.offer-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 24px rgba(10, 57, 78, .15);
}

.offer-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 12px;
}

.offer-icon { font-size: 2.4rem; margin-bottom: 16px; }
.offer-name { font-size: 1.3rem; color: var(--bg-primary); margin-bottom: 8px; }
.offer-tagline { font-size: .95rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.offer-desc { font-size: .95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.offer-features li {
  padding: 6px 0;
  font-size: .92rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(10, 57, 78, .05);
}

.offer-transformation {
  background: rgba(10, 57, 78, .03);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
}

.offer-transform-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }
.offer-transformation p { font-size: .92rem; color: var(--text-primary); margin: 4px 0 0; }

.offer-footer { margin-top: auto; }
.offer-price { margin-bottom: 16px; }
.offer-price-original { text-decoration: line-through; color: var(--text-light); font-size: .9rem; margin-right: 8px; }
.offer-price-current { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--bg-primary); }
.offer-price-note { display: block; font-size: .82rem; color: var(--text-light); margin-top: 2px; }
.offer-cta { width: 100%; text-align: center; }

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform .3s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 24px rgba(10, 57, 78, .15);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}

.pricing-name { font-size: 1.3rem; color: var(--bg-primary); margin-bottom: 8px; }
.pricing-tagline { font-size: .92rem; color: var(--text-light); margin-bottom: 20px; }

.pricing-price { margin-bottom: 24px; }
.pricing-original { text-decoration: line-through; color: var(--text-light); font-size: .9rem; display: block; }
.pricing-amount { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; color: var(--bg-primary); }
.pricing-period { font-size: .9rem; color: var(--text-light); }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(10, 57, 78, .05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li.excluded { color: var(--text-light); opacity: .5; }
.pricing-check { font-size: 1rem; flex-shrink: 0; }
.pricing-cta { width: 100%; }
.pricing-guarantee { font-size: .82rem; color: var(--text-light); margin-top: 12px; }

/* Lead magnet */
.lead-magnet { background: var(--surface, #FCFCFC); }

.lead-magnet-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.lead-magnet-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lead-magnet-badge {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.lead-magnet-desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 20px; }

.lead-magnet-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.lead-magnet-bullets li {
  padding: 6px 0;
  font-size: .95rem;
  color: var(--text-primary);
}

.lead-magnet-form { margin-top: 8px; }

.lm-inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.lm-inputs input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #D3DDE1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.lm-inputs input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(10, 57, 78, .1); }

.lm-privacy { font-size: .78rem; color: var(--text-light); margin-top: 8px; }

.lead-magnet-success { text-align: center; padding: 24px 0; }
.success-icon { font-size: 2.5rem; margin-bottom: 12px; }

/* Calendar booking */
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.call-type-card {
  background: var(--white);
  border: 1px solid rgba(10, 57, 78, .08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .3s, box-shadow .3s;
}

.call-type-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }

.call-type-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.call-type-header h3 { font-size: 1.1rem; text-transform: none; letter-spacing: 0; }
.call-duration { font-size: .85rem; color: var(--text-light); background: rgba(10, 57, 78, .05); padding: 3px 10px; border-radius: 10px; }
.call-type-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.call-price { font-family: var(--font-heading); font-weight: 700; color: var(--bg-primary); }

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

/* Frontend form inline validation */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select,
.form-row.has-error input,
.form-row.has-error textarea,
.form-row.has-error select,
.date-field.has-error .date-display {
  border-color: var(--error, #B83B3B);
}
.form-group .field-error,
.form-row .field-error,
.date-field .field-error {
  display: block;
  color: var(--error, #B83B3B);
  font-size: .82rem;
  margin-top: 4px;
  line-height: 1.3;
}
.form-group label.required::after,
.form-row label.required::after,
.date-field label.required::after {
  content: ' *';
  color: var(--error, #B83B3B);
  font-weight: 700;
}

.booking-success { text-align: center; padding: 24px 0; }

.calendly-wrapper { max-width: 800px; margin: 0 auto; }
.calendly-consent { text-align: center; padding: 40px 20px; background: rgba(10, 57, 78, .03); border-radius: var(--radius-lg); }
.calendly-consent p { color: var(--text-light); font-size: .92rem; margin-bottom: 16px; }

/* ==========================================================================
   Section — Restaurant specific
   ========================================================================== */

/* Menu */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--bg-primary);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--bg-primary);
  cursor: pointer;
  transition: all .3s;
}

.menu-tab.active, .menu-tab:hover { background: var(--bg-primary); color: var(--white); }

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-cat-title { font-size: 1.4rem; color: var(--bg-primary); margin-bottom: 8px; }
.menu-cat-desc { color: var(--text-light); font-size: .95rem; margin-bottom: 24px; }

.menu-items { display: flex; flex-direction: column; gap: 4px; }

.menu-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 57, 78, .06);
  align-items: flex-start;
}

.menu-item-image { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-info { flex: 1; }

.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item-name { font-size: 1rem; font-weight: 600; color: var(--bg-primary); text-transform: none; letter-spacing: 0; margin: 0; }
.menu-item-price { font-family: var(--font-heading); font-weight: 700; color: var(--bg-primary); white-space: nowrap; }
.menu-item-desc { font-size: .88rem; color: var(--text-light); margin: 4px 0 0; }
.menu-dietary { font-size: .85rem; margin-left: 4px; }

/* Reservation form */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.reservation-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.reservation-submit { text-align: center; margin-top: 24px; }
.reservation-hint { font-size: .85rem; color: var(--text-light); margin-top: 12px; }
.reservation-success { text-align: center; padding: 32px 0; }

/* Specials */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.special-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
}

.special-card:hover { transform: translateY(-4px); }
.special-today { border: 2px solid var(--accent); }

.special-image img { width: 100%; height: 180px; object-fit: cover; }
.special-body { padding: 20px; }
.special-badge { display: inline-block; font-size: .75rem; font-weight: 700; background: var(--accent); color: var(--white); padding: 2px 10px; border-radius: 10px; margin-bottom: 8px; }
.special-days { font-size: .85rem; color: var(--text-light); margin-bottom: 8px; }
.special-desc { font-size: .92rem; color: var(--text-primary); }
.special-price { font-family: var(--font-heading); font-weight: 700; color: var(--bg-primary); display: block; margin-top: 8px; }

.events-subtitle { text-align: center; margin: 48px 0 24px; }

.events-list { max-width: 700px; margin: 0 auto; }

.event-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 57, 78, .06);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  background: var(--bg-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  flex-shrink: 0;
}

.event-day { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; line-height: 1; }
.event-month { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; opacity: .7; }
.event-time { font-size: .85rem; color: var(--text-light); }

/* ==========================================================================
   Section — Auto-Dealer specific
   ========================================================================== */

/* Inventory filters */
.inventory-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.inv-filter {
  padding: 10px 16px;
  border: 1px solid #D3DDE1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-primary);
  background: var(--white);
  cursor: pointer;
  transition: border-color .3s;
  min-width: 150px;
}

.inv-filter:focus { outline: none; border-color: var(--accent); }

/* Vehicle grid */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}

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

.vehicle-image { position: relative; overflow: hidden; }
.vehicle-image img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .6s; }
.vehicle-card:hover .vehicle-image img { transform: scale(1.05); }
.vehicle-placeholder { width: 100%; height: 220px; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 3rem; }

.vehicle-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 10px;
}

.vehicle-info { padding: 20px; }
.vehicle-title { font-size: 1.1rem; color: var(--bg-primary); margin-bottom: 8px; text-transform: none; letter-spacing: 0; }

.vehicle-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.vehicle-specs span {
  background: rgba(10, 57, 78, .05);
  padding: 3px 10px;
  border-radius: 10px;
}

.vehicle-footer { display: flex; justify-content: space-between; align-items: center; }
.vehicle-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900; color: var(--bg-primary); }

.btn-vehicle-inquiry {
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-vehicle-inquiry:hover { background: color-mix(in srgb, var(--accent) 85%, black); }

.inventory-empty { text-align: center; color: var(--text-light); padding: 40px 0; }

/* Financing calculator */
.financing-calculator {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.calc-inputs { display: flex; flex-direction: column; gap: 16px; }

.calc-result {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  text-align: center;
}

.calc-monthly { margin-bottom: 24px; }
.calc-label { font-size: .875rem; color: rgba(255, 255, 255, .85); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.calc-amount { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; }

.calc-details { text-align: left; margin-bottom: 20px; }

.calc-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.calc-detail-row.calc-total { border-bottom: none; font-weight: 700; color: var(--white); font-size: 1rem; }

.calc-disclaimer { font-size: .875rem; color: rgba(255, 255, 255, .65); margin: 16px 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s;
}

.service-card:hover { transform: translateY(-6px); }
.service-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.1rem; color: var(--bg-primary); margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.service-card p { font-size: .92rem; color: var(--text-light); margin: 0; }
.service-price { display: block; font-family: var(--font-heading); font-weight: 700; color: var(--accent); margin-top: 12px; }

/* ==========================================================================
   Thank-You Page
   ========================================================================== */

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface, #FCFCFC);
  padding: 40px 20px;
}

.ty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.ty-icon { font-size: 3rem; margin-bottom: 16px; }
.ty-title { font-size: 1.8rem; color: var(--bg-primary); margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.ty-subtitle { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }

.ty-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}

.ty-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(10, 57, 78, .03);
  border-radius: var(--radius-md);
}

.ty-step-num {
  width: 36px; height: 36px;
  background: var(--bg-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.ty-step p { margin: 0; font-size: .95rem; color: var(--text-primary); }

.ty-cta { margin-top: 8px; }

.ty-social { margin-top: 32px; }
.ty-social p { font-size: .85rem; color: var(--text-light); margin-bottom: 12px; }
.ty-social-links { display: flex; gap: 12px; justify-content: center; }
.ty-social-links a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: .9rem; }
.ty-social-links a:hover { color: var(--bg-primary); }

/* ==========================================================================
   Responsive — Mobile-First Breakpoints
   Mobile values are the DEFAULT above. Desktop overrides below.
   ========================================================================== */

@media (min-width: 481px) {
  .hero-badge { font-size: .9rem; padding: 8px 20px; letter-spacing: 3px; }
  .hero-sub { font-size: 1.2rem; margin-bottom: 32px; }
  .hero-rating-score { font-size: 1.5rem; }
  .badge-scores { gap: 44px; }
}

@media (min-width: 601px) {
  .trust-bar-inner { gap: 32px; font-size: .95rem; }
  .trust-item .score { font-size: 1.3rem; }
  .hero-cta-wrap { flex-direction: row; gap: 16px; padding: 0; }
  .hero-cta-wrap .btn { width: auto; }
  .icon-boxes { grid-template-columns: repeat(2, 1fr); }
  .welcome-image img, .welcome-image video { height: 360px; }
  .welcome-placeholder { height: 360px; }
  .welcome-morph { height: 360px; }
  .cta-banner-inner { flex-direction: row; text-align: left; padding: 28px 44px; }
  .cta-banner-btn { width: auto; }
  .stoerer-newsletter { flex-direction: row; }
}

@media (min-width: 701px) {
  .stoerer-content { flex-direction: row; text-align: left; }
}

@media (min-width: 769px) {
  .hero-slide::after { background: linear-gradient(180deg, rgba(10, 57, 78, .45) 0%, rgba(10, 57, 78, .7) 100%); }
  .hero-ratings { flex-direction: row; gap: 20px; }
  .hero-rating { width: auto; max-width: none; }
  .welcome-grid { grid-template-columns: 1fr 1fr; gap: 54px; }
  .welcome-image img, .welcome-image video { height: 440px; }
  .welcome-placeholder { height: 440px; }
  .welcome-morph { height: 480px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:first-child { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lead-magnet-wrapper { grid-template-columns: 1fr 1fr; gap: 48px; }
  .lm-inputs { flex-direction: row; }
  .booking-form-grid { grid-template-columns: 1fr 1fr; }
  .reservation-grid { grid-template-columns: repeat(3, 1fr); }
  .reservation-contact { grid-template-columns: repeat(3, 1fr); }
  .financing-calculator { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) {
  .icon-boxes { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in, .slide-left, .slide-right, .scale-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
