/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== VARIABLES ========== */
:root {
  --primary: #0B3D91;
  --primary-light: #1565C0;
  --primary-dark: #062A64;
  --accent: #2196F3;
  --accent-hover: #1976D2;
  --light-bg: #F0F4F8;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #5A6A7A;
  --border: #D8E2EC;
  --shadow: 0 2px 12px rgba(11,61,145,0.08);
  --radius: 8px;
  --max-width: 1280px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.8); transition: color .2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* ========== HEADER ========== */
.header {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); font-weight: 400; }

.search-bar {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 2px solid var(--border);
  border-radius: 9999px;
  font-size: 15px;
  outline: none;
  background: var(--light-bg);
}
.search-bar input:focus { border-color: var(--accent); }
.search-bar button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar button:hover { background: var(--accent-hover); }

/* Search Results Dropdown */
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 101;
  margin-top: 4px;
}
.search-results.open { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover,
.search-result-item.active { background: var(--light-bg); }
.search-result-item .result-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.search-result-item .result-title {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}
.search-result-item .result-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.search-no-results {
  padding: 20px 16px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-action {
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  gap: 3px;
  cursor: pointer;
  transition: color .2s;
}
.header-action:hover { color: var(--accent); }
.header-action .icon { font-size: 22px; }

/* ========== NAVIGATION ========== */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
}
.nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.nav li a {
  display: block;
  padding: 14px 22px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
  white-space: nowrap;
  position: relative;
}
.nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav li a:hover {
  color: var(--accent);
}
.nav li a:hover::after {
  transform: scaleX(1);
}

/* ========== MOBILE MENU ========== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 540px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,145,0.55) 0%, rgba(6,42,100,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 70px 0;
}
.hero-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.hero-price {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-price span {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--primary);
  padding: 18px 0;
  overflow-x: auto;
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-width: max-content;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ========== SECTION TITLES ========== */
.section { padding: 70px 0; }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-img {
  aspect-ratio: 16/9;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--primary);
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  pointer-events: none;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  z-index: 1;
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.product-info .desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.product-price .from {
  font-size: 13px;
  color: var(--text-light);
}
.product-price .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.product-price .unit {
  font-size: 13px;
  color: var(--text-light);
}
.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-card:hover { background: var(--primary-light); }
.price-info {
  font-size: 11px;
  color: var(--text-light);
  margin: 4px 0 8px;
  opacity: 0.8;
}

/* ========== SERVICE SECTION ========== */
.service-section {
  background: var(--light-bg);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .2s;
}
.service-card:hover {
  transform: translateY(-3px);
}
.service-icon {
  width: 72px;
  height: 72px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== FEATURES / USP ========== */
.features {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: var(--light-bg);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-bg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s, opacity .4s;
  opacity: 0;
}
.gallery-item img.loaded {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,61,145,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background .3s;
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(11,61,145,0.85) 0%, transparent 70%);
}
.gallery-text {
  color: var(--white);
}
.gallery-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-text p {
  font-size: 13px;
  opacity: 0.85;
}

/* ========== GALLERY SLIDER ========== */
.gallery-slider {
  position: relative;
  overflow: hidden;
}
.gallery-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
  -webkit-user-select: none;
}
.gallery-slider-track.dragging {
  transition: none;
}
.gallery-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 8px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: none;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.slider-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .gallery-slide { flex: 0 0 50%; }
}
@media (max-width: 600px) {
  .gallery-slide { flex: 0 0 100%; }
  .slider-arrow { width: 38px; height: 38px; font-size: 22px; }
  .slider-prev { left: 6px; }
  .slider-next { right: 6px; }
}

/* ========== ABOUT SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.about-text .btn { margin-top: 10px; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--accent);
}
.review-stars { color: #F5A623; font-size: 18px; margin-bottom: 12px; }
.review-card p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  font-style: italic;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.rating-summary {
  text-align: center;
  margin-bottom: 36px;
}
.rating-big {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
}
.rating-stars { color: #F5A623; font-size: 28px; margin: 6px 0; }
.rating-count { font-size: 14px; color: var(--text-light); }

/* ========== CONTACT TEASER ========== */
.contact-section {
  background: var(--light-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
}
.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-detail .c-icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail .c-text strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 2px;
}
.contact-detail .c-text span {
  font-size: 14px;
  color: var(--text-light);
}
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  font-size: 14px;
  transition: color .2s;
}
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer-payments .pay-icon {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .search-bar { max-width: 100%; order: 3; flex-basis: 100%; }
  .header .container { flex-wrap: wrap; }
  .logo img { height: 50px !important; }
  .nav ul { flex-direction: column; }
  .nav li a { padding: 10px 20px; border-bottom: 1px solid var(--border); }
  .nav li a::after { display: none; }
  .hero { min-height: 380px; }
  .hero-content { padding: 40px 0; }
  .top-bar { display: none; }
  .trust-bar .container { justify-content: flex-start; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .header-actions { gap: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* ========== MOBILE MENU ========== */
@media (max-width: 768px) {
  .nav ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.open ul {
    max-height: 500px;
  }
  .mobile-toggle .toggle-close { display: none; }
  .nav.open ~ .header .mobile-toggle .toggle-open,
  .mobile-toggle .toggle-open { display: inline; }
  .mobile-toggle .toggle-close { display: none; }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, bottom .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* ========== FAQ ACCORDION ========== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}
/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { max-width: 600px; line-height: 1.5; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept { background: var(--accent); color: var(--white); }
.cookie-accept:hover { background: var(--accent-hover); }
.cookie-decline { background: rgba(255,255,255,0.15); color: var(--white); }
.cookie-decline:hover { background: rgba(255,255,255,0.25); }

/* ========== FORM VALIDATION ========== */
.form-error {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #e53e3e;
}
.form-group.error .form-error { display: block; }
.form-success {
  background: #38a169;
  color: var(--white);
  padding: 16px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  display: none;
}
.form-fail {
  background: #e53e3e;
  color: var(--white);
  padding: 16px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  display: none;
}
.dsgvo-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.dsgvo-check input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

/* ========== GALLERY LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  text-align: center;
}
.gallery-item { cursor: pointer; }

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  border: none;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s, bottom .3s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ========== COUNTER ANIMATION ========== */
.trust-number {
  font-weight: 800;
  font-size: 15px;
}

/* ========== PROCESS TIMELINE ========== */
.process-section { background: var(--white); }
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 3px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}
.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(11,61,145,0.2);
}
.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.process-step p {
  font-size: 12px;
  color: var(--text-light);
  max-width: 120px;
}
.process-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
  }
  .process-step { flex-direction: row; text-align: left; gap: 16px; }
  .process-step p { max-width: none; }
  .process-icon { margin-bottom: 0; flex-shrink: 0; }
}

/* ========== STICKY CTA MOBILE ========== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--primary);
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.sticky-cta a {
  display: block;
  background: var(--accent);
  color: var(--white);
  padding: 14px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
}
.sticky-cta a:hover { background: var(--accent-hover); }
@media (max-width: 768px) {
  .sticky-cta.visible { display: block; }
  .back-to-top.sticky-pushed { bottom: 100px; }
  .whatsapp-btn.sticky-pushed { bottom: 100px; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb { background: var(--light-bg); padding: 12px 0; font-size: 14px; }
.breadcrumb a { color: var(--accent); }

/* ========== PAGE HERO (kleiner als Startseiten-Hero) ========== */
.page-hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 48px 0; text-align: center; }
.page-hero h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; }

/* ========== LEGAL CONTENT (Impressum, Datenschutz, AGB) ========== */
.legal-content { padding: 60px 0; }
.legal-content h2 { font-size: 22px; color: var(--primary); margin: 32px 0 12px; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.7; color: var(--text-light); }
.legal-content ul { list-style: disc; padding-left: 24px; }

/* ========== SERVICE CONTENT (Montage, Beratung, Lieferung) ========== */
.service-content { padding: 60px 0; }
