/* ---------- Grundlagen ---------- */
:root{
  --navy: #0f1c2e;
  --gold: #f2a71b;
  --cream: #fbf9f4;
  --ink: #182338;
  --slate: #5b6577;
  --line: #e9e6dd;
}
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--cream);
}
h1,h2,h3,.brand{ font-family:'Sora', sans-serif; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
img{ display:block; max-width:100%; }

.wrap{ max-width:1240px; margin:0 auto; padding:0 32px; }
.eyebrow{
  display:block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:12px;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 26px;
  border-radius:8px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
}
.btn-gold{ background:var(--gold); color:#1a1200; }
.btn-outline{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.35); }

/* ---------- Header ---------- */
header{
  position:absolute;
  top:0; left:0; right:0;
  z-index:50;
  padding:22px 0;
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo-badge{
  display:inline-flex;
  background:#fff;
  border-radius:10px;
  padding:10px 18px;
}
.logo-badge img{ height:64px; }

.main-nav{ display:flex; gap:30px; }
.main-nav a{ color:rgba(255,255,255,.85); font-size:14.5px; font-weight:500; padding-bottom:6px; border-bottom:2px solid transparent; }
.main-nav a:hover, .main-nav a.active{ color:var(--gold); border-color:var(--gold); }

.header-actions{ display:flex; align-items:center; gap:26px; }
.phone{ color:#fff; font-weight:600; font-size:14.5px; }

@media (max-width:980px){
  .main-nav, .phone{ display:none; }
}

/* ---------- Hero + Slideshow ---------- */
.hero{
  position:relative;
  min-height:820px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  z-index:1;
  background:linear-gradient(100deg, rgba(10,16,28,.92) 10%, rgba(10,16,28,.55) 45%, rgba(30,25,15,.25) 70%);
}
.slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  animation:fade 20s infinite;
}
.slide:nth-child(1){ background-image:url('https://images.unsplash.com/photo-1595437193398-f24279553f4f?auto=format&fit=crop&w=1600&q=80'); animation-delay:0s; }
.slide:nth-child(2){ background-image:url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1600&q=80'); animation-delay:5s; }
.slide:nth-child(3){ background-image:url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1600&q=80'); animation-delay:10s; }
.slide:nth-child(4){ background-image:url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1600&q=80'); animation-delay:15s; }

@keyframes fade{
  0%, 100%{ opacity:0; }
  4%, 22%{ opacity:1; }
  27%{ opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .slide{ animation:none; opacity:0; }
  .slide:nth-child(1){ opacity:1; }
}

.hero-content{ position:relative; z-index:2; max-width:600px; padding-top:60px; }
.hero h1{ font-size:56px; line-height:1.08; font-weight:800; color:#fff; margin-bottom:22px; }
.hero .lead{ font-size:17px; line-height:1.65; color:rgba(255,255,255,.82); max-width:460px; margin-bottom:34px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }

@media (max-width:640px){
  .hero{ min-height:760px; }
  .hero h1{ font-size:38px; }
  .hero-content{ padding-top:110px; }
}

/* ---------- Stat bar ---------- */
.stat-bar{ position:relative; margin-top:-64px; z-index:10; }
.stat-bar-inner{
  background:rgba(12,21,34,.92);
  border-radius:16px;
  padding:32px 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stat{ display:flex; align-items:center; gap:14px; padding:0 14px; border-left:1px solid rgba(255,255,255,.12); }
.stat:first-child{ border-left:none; }
.stat .icon{
  width:44px; height:44px;
  border-radius:50%;
  background:rgba(242,167,27,.12);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.stat .icon i{ font-size:19px; color:var(--gold); }
.stat .num{ color:#fff; font-weight:700; font-size:19px; font-family:'Sora', sans-serif; }
.stat .label{ color:rgba(255,255,255,.6); font-size:13px; }

@media (max-width:900px){
  .stat-bar-inner{ grid-template-columns:repeat(2,1fr); row-gap:26px; }
  .stat{ border-left:none; }
}

/* ---------- Section head (shared) ---------- */
.section-head{ max-width:620px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:36px; font-weight:800; margin-bottom:14px; }
.section-head p{ color:var(--slate); font-size:16px; line-height:1.6; }

/* ---------- Services ---------- */
.services{ padding:150px 0 90px; text-align:center; }
.service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; text-align:left; }
.service-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:32px 26px; }
.service-card .icon{
  width:52px; height:52px;
  border-radius:12px;
  background:var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.service-card .icon i{ font-size:22px; color:#1a1200; }
.service-card h3{ font-size:18px; font-weight:700; margin-bottom:10px; }
.service-card p{ color:var(--slate); font-size:14.5px; line-height:1.6; margin-bottom:18px; }
.service-card .more{ color:var(--gold); font-weight:600; font-size:14px; }

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

/* ---------- Benefits ---------- */
.benefits{
  background:var(--navy);
  border-radius:22px;
  margin:0 auto 120px;
  max-width:1240px;
  padding:60px 60px 0;
  color:#fff;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  overflow:hidden;
}
.benefits h2{ font-size:32px; font-weight:800; margin-bottom:18px; line-height:1.2; }
.benefits > div > p{ color:rgba(255,255,255,.7); font-size:15.5px; line-height:1.7; margin-bottom:30px; max-width:460px; }
.benefit-list{ display:flex; flex-direction:column; gap:20px; margin-bottom:40px; }
.benefit-item{ display:flex; align-items:center; gap:14px; }
.benefit-item .icon{
  width:38px; height:38px;
  border-radius:9px;
  background:rgba(242,167,27,.14);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.benefit-item .icon i{ font-size:17px; color:var(--gold); }
.benefit-item span{ font-weight:600; font-size:15px; }
.benefits-right{ align-self:end; border-radius:16px 16px 0 0; overflow:hidden; min-height:340px; }
.benefits-right img{ width:100%; height:100%; object-fit:cover; min-height:340px; }

@media (max-width:900px){
  .benefits{ grid-template-columns:1fr; padding:48px 28px 0; }
  .benefits-right, .benefits-right img{ min-height:220px; }
}

/* ---------- Footer ---------- */
footer{ background:var(--navy); color:rgba(255,255,255,.6); padding:60px 0 26px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-grid h4{ color:#fff; font-size:15px; font-weight:700; margin-bottom:16px; }
.footer-grid li{ margin-bottom:10px; font-size:14px; }
.footer-grid a:hover{ color:var(--gold); }
.footer-brand p{ font-size:14px; line-height:1.6; margin-top:14px; max-width:280px; }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:22px; font-size:13px; flex-wrap:wrap; gap:10px; }

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