/* ============================================
   FOCUS 100% – haus-planen.css
   Page-specific styles for index.html
   ============================================ */

/* === HERO === */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Glow orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(245,165,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(245,165,32,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; width: 100%; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,165,32,0.12);
  border: 1px solid rgba(245,165,32,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem 0.35rem 0.6rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
.hero-eyebrow span {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--amber);
}

.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--amber); }

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 3rem;
}

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item-hero { }
.stat-num-hero {
  font-size: 1.75rem; font-weight: 900; color: #fff;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-num-hero span { color: var(--amber); }
.stat-label-hero { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,165,32,0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 0 60px rgba(245,165,32,0.08), 0 30px 80px rgba(0,0,0,0.4);
}

.hero-card-top {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero-card-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}
.hero-card-title { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.hero-floorplan {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.25rem;
}

.hero-card-badges {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.badge {
  background: rgba(245,165,32,0.1);
  border: 1px solid rgba(245,165,32,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem; font-weight: 700;
  color: var(--amber); text-transform: uppercase; letter-spacing: 0.08em;
}
.badge--white {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 5rem 0 4rem; }
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.trust-strip-inner {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35); white-space: nowrap;
}
.trust-strip-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }
.trust-strip-logos { display: flex; gap: 2.5rem; align-items: center; overflow: hidden; }
.trust-logo-item {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.2); white-space: nowrap;
}

/* === SERVICES SECTION === */
.section-services {
  background: var(--gray-100);
  padding: 7rem 0;
}
.section-services .section-header { text-align: center; margin-bottom: 4rem; }
.section-services .section-header h2 { margin-bottom: 1rem; }
.section-services .section-header p { color: var(--gray-600); margin: 0 auto; }

.services-features {
  display: flex; flex-direction: column; gap: 4rem;
}
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }

.service-feature-text .label { margin-bottom: 1rem; display: block; }
.service-feature-text h3 { margin-bottom: 1rem; }
.service-feature-text p { color: var(--gray-600); margin-bottom: 1.5rem; }

.service-feature-visual {
  background: var(--dark);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.service-feature-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(245,165,32,0.15) 0%, transparent 60%);
}
.service-icon-large {
  position: relative; z-index: 1;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-feature.reverse { direction: ltr; }
  .service-feature-visual { aspect-ratio: 16/7; }
}

/* === HOUSE TYPES === */
.section-types {
  background: var(--dark);
  padding: 7rem 0;
}
.section-types .section-header { text-align: center; margin-bottom: 4rem; }
.section-types .section-header h2 { color: #fff; margin-bottom: 1rem; }
.section-types .section-header p { color: rgba(255,255,255,0.5); margin: 0 auto; }

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

.type-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.25s;
  cursor: default;
}
.type-card:hover {
  background: rgba(245,165,32,0.06);
  border-color: rgba(245,165,32,0.25);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(245,165,32,0.1);
}
.type-card-icon {
  width: 48px; height: 48px;
  background: rgba(245,165,32,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber);
}
.type-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.type-card p { color: rgba(255,255,255,0.45); font-size: 0.875rem; max-width: none; }

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

/* === PROCESS === */
.section-process {
  background: var(--gray-100);
  padding: 7rem 0;
}
.section-process .section-header { text-align: center; margin-bottom: 5rem; }
.section-process .section-header h2 { margin-bottom: 1rem; }
.section-process .section-header p { color: var(--gray-600); margin: 0 auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}

.process-step-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s;
}
.process-step-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.process-number {
  font-size: 3.5rem; font-weight: 900; color: var(--amber);
  letter-spacing: -0.06em; line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.25;
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.process-step-icon {
  width: 44px; height: 44px;
  background: rgba(245,165,32,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--amber);
}
.process-step-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.process-step-card p { font-size: 0.85rem; color: var(--gray-600); max-width: none; text-align: center; }

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* === CTA BANNER === */
.section-cta {
  background: var(--amber);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0,0,0,0.03) 30px, rgba(0,0,0,0.03) 31px);
}
.section-cta .container { position: relative; z-index: 2; }
.section-cta h2 { color: #000; margin-bottom: 1rem; }
.section-cta p { color: rgba(0,0,0,0.65); font-size: 1.1rem; margin: 0 auto 2.5rem; max-width: 55ch; }
.btn-dark { background: #000; color: #fff; border-radius: var(--radius-sm); }
.btn-dark:hover { background: #1a1a2e; }

/* === BENEFITS === */
.section-benefits {
  background: var(--dark);
  padding: 7rem 0;
}
.section-benefits .section-header { text-align: center; margin-bottom: 4rem; }
.section-benefits .section-header h2 { color: #fff; margin-bottom: 1rem; }
.section-benefits .section-header p { color: rgba(255,255,255,0.5); margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.benefit-card:hover { border-color: rgba(245,165,32,0.3); }
.benefit-card-icon {
  width: 40px; height: 40px;
  background: rgba(245,165,32,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--amber);
}
.benefit-card h4 { color: #fff; margin-bottom: 0.5rem; font-size: 0.95rem; }
.benefit-card p { color: rgba(255,255,255,0.45); font-size: 0.875rem; max-width: none; }

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

/* === TESTIMONIALS === */
.section-testimonials {
  background: var(--gray-100);
  padding: 7rem 0;
}
.section-testimonials .section-header { text-align: center; margin-bottom: 4rem; }
.section-testimonials .section-header h2 { margin-bottom: 1rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.testi-stars {
  display: flex; gap: 0.2rem; margin-bottom: 1.1rem;
  color: var(--amber);
}
.testi-quote {
  font-size: 0.975rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 1.5rem; max-width: none;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 0.85rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #ffd166);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; color: #000;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; margin-bottom: 0.1rem; }
.testi-role { font-size: 0.78rem; color: var(--gray-400); }

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

/* === FAQ === */
.section-faq {
  background: #fff;
  padding: 7rem 0;
}
.section-faq .section-header { text-align: center; margin-bottom: 4rem; }
.section-faq .section-header h2 { margin-bottom: 1rem; }
.section-faq .section-header p { color: var(--gray-600); margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; }

/* === FOOTER CTA === */
.section-final-cta {
  background: var(--dark);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(245,165,32,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.section-final-cta .container { position: relative; z-index: 2; }
.section-final-cta h2 { color: #fff; margin-bottom: 1rem; max-width: 16ch; margin-left: auto; margin-right: auto; }
.section-final-cta p { color: rgba(255,255,255,0.5); font-size: 1.05rem; margin: 0 auto 2.5rem; }
