/* ============================================================
   Rollladen Fuchs — Global Stylesheet
   Bold Industrial Design: dark backgrounds, red accents,
   strong typography, image-heavy layouts
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ------------------------------------------------------------
   2. CSS Variables
   ------------------------------------------------------------ */
:root {
  --dark: #1a1a1a;
  --primary: #e63224;
  --primary-hover: #cc2a1e;
  --accent: #ff6b5a;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #555555;
  --text-muted: #aaaaaa;
  --card-border: #e0e0e0;
  --max-w: 1200px;
  --radius-btn: 8px;
  --radius-card: 12px;
}

/* ------------------------------------------------------------
   3. Utility Classes
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 50, 36, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   5. Animation Classes
   ------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ------------------------------------------------------------
   6. Header
   ------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo,
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.header-logo svg,
.logo-link svg {
  width: 36px;
  height: 36px;
}

.header-logo img,
.logo-link img {
  max-height: 44px;
  width: auto;
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
  color: var(--white);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--white);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: calc(100vh - 72px);
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  transition: right 0.35s ease;
  padding: 24px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--white);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-dropdown-toggle:hover {
  color: var(--white);
}

.mobile-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.mobile-dropdown-toggle.active {
  color: var(--white);
}

.mobile-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-sub.open {
  max-height: 500px;
}

.mobile-sub a {
  padding: 10px 0 10px 16px;
  font-size: 0.9rem;
  border-bottom: none;
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 16px rgba(230, 50, 36, 0.3);
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------
   7. Hero Section — Bold Industrial
   ------------------------------------------------------------ */
.hero {
  background: var(--dark);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Hero background image with dark overlay */
.hero[style*="background-image"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.82) 50%, rgba(26,26,26,0.7) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(230, 50, 36, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(26, 26, 26, 0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb:nth-child(1) {
  width: 400px;
  height: 400px;
  background: rgba(230, 50, 36, 0.06);
  top: -100px;
  right: -100px;
  animation: pulse 6s ease-in-out infinite;
}

.hero-orb:nth-child(2) {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 90, 0.05);
  bottom: -50px;
  left: -80px;
  animation: pulse 8s ease-in-out infinite 2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 20px 28px;
  min-width: 140px;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ------------------------------------------------------------
   8. Section Shared Styles
   ------------------------------------------------------------ */
section {
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

/* Dark section variant */
.section-dark {
  background: var(--dark);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

/* Light gray section variant */
.section-light {
  background: var(--bg-light);
}

/* ------------------------------------------------------------
   9. Product Grid
   ------------------------------------------------------------ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-light);
  background-size: cover;
  background-position: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-body {
  padding: 24px;
}

.product-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.product-card-link:hover {
  gap: 10px;
}

.products-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.products-more a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.products-more a:hover {
  background: var(--primary);
  color: var(--white);
}

.products-more a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   10. About Section
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
}

.about-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ------------------------------------------------------------
   11. Reviews Section
   ------------------------------------------------------------ */
.reviews-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.reviews-rating {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-stars svg {
  width: 22px;
  height: 22px;
  fill: #f5a623;
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--card-border);
}

.review-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.review-card-stars svg {
  width: 16px;
  height: 16px;
  fill: #f5a623;
}

.review-card-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.review-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.reviews-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.reviews-compact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ------------------------------------------------------------
   12. Service Area
   ------------------------------------------------------------ */
.service-area {
  text-align: center;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.tags-list span,
.tags-list a {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-light);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}

.tags-list a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ------------------------------------------------------------
   13. CTA Banner
   ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(230, 50, 36, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ------------------------------------------------------------
   14. Product Page Template
   ------------------------------------------------------------ */
.product-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.35) 100%);
}

.product-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 48px;
  width: 100%;
}

.product-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 32px 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 50, 36, 0.1);
  border-radius: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(230, 50, 36, 0.15);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(230, 50, 36, 0.15);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-img:hover img {
  transform: scale(1.05);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '\2295';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.4);
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Related Products */
.related-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-product-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: transparent;
}

.related-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-product-card:hover img {
  transform: scale(1.08);
}

.related-product-card h3 {
  padding: 16px 20px 4px;
  font-size: 1.1rem;
  font-weight: 700;
}

.related-product-card p {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ------------------------------------------------------------
   15. Contact Page
   ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

/* Form Sections */
.form-section {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 20px;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 550px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-btn);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 50, 36, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Topic radio card options */
.topic-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.topic-option {
  position: relative;
}

.topic-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.topic-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.88rem;
  font-weight: 500;
}

.topic-option input[type="radio"]:checked + label {
  border-color: var(--primary);
  background: rgba(230, 50, 36, 0.04);
  color: var(--primary);
}

.topic-option label:hover {
  border-color: var(--primary);
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--card-border);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover {
  border-color: var(--primary);
  background: rgba(230, 50, 36, 0.02);
}

.upload-zone.drag-active {
  border-color: var(--primary);
  background: rgba(230, 50, 36, 0.04);
}

.upload-zone svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  margin: 0 auto 12px;
}

.upload-zone p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.upload-zone span {
  color: var(--primary);
  font-weight: 600;
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.upload-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.upload-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
}

/* Form popup */
.form-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}

.form-popup.visible {
  opacity: 1;
  visibility: visible;
}

.form-popup-content,
.form-popup-inner {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: form-popup-pop 0.28s cubic-bezier(.22,1,.36,1);
}

@keyframes form-popup-pop {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.form-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.form-popup-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.form-popup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
}

/* Color the icon via the popup's success/error class on the wrapper */
.form-popup.success .form-popup-icon,
.form-popup-icon.success {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.form-popup.error .form-popup-icon,
.form-popup-icon.error {
  background: rgba(230, 50, 36, 0.12);
  color: var(--primary);
}

.form-popup-icon svg {
  width: 32px;
  height: 32px;
}

.form-popup h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.form-popup p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.55;
}

/* Map */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 32px;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact info */
.contact-info {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 32px;
}

.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.88rem;
  color: var(--text-light);
}

.contact-info-item a:hover {
  color: var(--primary);
}

/* Contact Card (unified block) */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 28px;
}

.contact-card-header {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-light);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(230, 50, 36, 0.08);
  border-radius: 10px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-card-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-card-link {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-link:hover {
  color: var(--primary);
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 6px 0;
  color: var(--text-light);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 550px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer-logo svg,
.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
  padding: 0;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.footer-membership {
  text-align: center;
  padding: 32px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-membership-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-membership-logo img {
  height: 100px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: inline-block;
}
.footer-membership-logo:hover img {
  opacity: 1;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.stundensatz-info {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

/* ------------------------------------------------------------
   17. Utility Components
   ------------------------------------------------------------ */

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(230, 50, 36, 0.3);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary-hover);
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

/* Legal content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex: 1;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   18. Responsive Breakpoints
   ------------------------------------------------------------ */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-grid {
    gap: 40px;
  }

  .features-grid {
    gap: 24px;
  }

  .related-products {
    gap: 20px;
  }
}

/* Mobile navigation switch */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 12px;
  }

  .hero-stat {
    min-width: auto;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-more {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-products {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Stack layouts */
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats {
    gap: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .related-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-hero h1 {
    font-size: 2rem;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .topic-options {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}

/* Smallest screens */
@media (max-width: 550px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 120px 0 64px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.88rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .products-more {
    grid-template-columns: 1fr;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .cta-banner-buttons {
    flex-direction: column;
  }

  .cta-banner-buttons .btn {
    width: 100%;
  }

  .form-popup-content,
  .form-popup-inner {
    padding: 36px 24px 28px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.2rem;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ────────────────────────────────────────────────────────────
   Content-Image Split Layout
   ──────────────────────────────────────────────────────────── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.content-split.reverse {
  direction: rtl;
}
.content-split.reverse > * {
  direction: ltr;
}

.content-split-text {
  max-width: 540px;
}

.content-split-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.content-split-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.content-split-text p:last-child {
  margin-bottom: 0;
}

.content-split-text .content-highlight {
  color: var(--primary);
  font-weight: 600;
}

.content-split-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.content-split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 0.5s ease;
}

.content-split-image:hover img {
  transform: scale(1.03);
}

/* Decorative accent on image */
.content-split-image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-card);
  z-index: -1;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.content-split-image:hover::before {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .content-split.reverse {
    direction: ltr;
  }
  .content-split-text {
    max-width: 100%;
  }
  .content-split-image img {
    height: 300px;
  }
  .content-split-image::before {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────
   Full Width Image Break
   ──────────────────────────────────────────────────────────── */
.image-break {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break-text {
  color: white;
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

.image-break-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.image-break-text p {
  font-size: 1.1rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .image-break {
    height: 250px;
  }
  .image-break-text h2 {
    font-size: 1.5rem;
  }
}

/* ────────────────────────────────────────────────────────────
   Feature Cards (upgraded)
   ──────────────────────────────────────────────────────────── */
.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .features-cards {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────────────────────────────────
   Gallery item lightbox click targets
   ──────────────────────────────────────────────────────────── */
.gallery-item {
  cursor: pointer;
}
.gallery-item .gallery-img {
  cursor: pointer;
}
