/* Happy Handwerk – Redesign v5 (CLEAR)
   Goals: very clear, airy, minimal, readable. */

:root{
  --bg: #F7FAFC;
  --surface: #FFFFFF;
  --surface2: #F2F7FB;
  --stroke: #D7E2EC;
  --stroke2:#C4D3E1;

  --text: #0D1B2A;
  --muted:#445668;

  --brand:#0A3D62;
  --brand2:#0F5E8F;
  --accent:#F7B731;

  --shadow: 0 12px 24px rgba(13,27,42,0.08);
  --radius: 16px;
  --max: 1120px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #EEF4F9);
  line-height: 1.6;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }

.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 18px; top: 18px; width:auto; height:auto;
  padding: 10px 12px; border-radius: 12px;
  background: var(--accent);
  color:#0b1720;
  z-index: 9999;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(247,250,252,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215,226,236,0.95);
}

.header-row{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .title{
  font-weight: 950;
  letter-spacing: .6px;
  font-size: 16px;
}
.brand .sub{
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
}

.nav{
  display:flex; align-items:center; gap: 8px;
}
.nav a{
  font-weight: 900;
  font-size: 14px;
  color: #1C2E40;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s var(--ease);
}
.nav a:hover{ background: rgba(15,94,143,0.10); text-decoration:none; }

.actions{
  display:flex; align-items:center; gap: 10px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: var(--surface);
  color: #13212d;
  font-weight: 950;
  cursor:pointer;
  box-shadow: 0 8px 16px rgba(13,27,42,0.08);
  transition: transform .12s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.btn:hover{ background: #fbfdff; text-decoration:none; }
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color:#fff;
  border-color: rgba(10,61,98,0.25);
}
.btn.primary:hover{ filter: brightness(0.995); }

.btn.ghost{
  background: transparent;
  box-shadow: none;
  border-color: rgba(196,211,225,0.9);
}

.hamburger{ display:none; padding: 12px; width: 46px; height: 46px; }
.hamburger svg{ width: 20px; height: 20px; }

.mobile-drawer{
  display:none;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(215,226,236,0.95);
}
.mobile-drawer a{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  margin-top: 10px;
  font-weight: 950;
  box-shadow: 0 10px 18px rgba(13,27,42,0.06);
}
.mobile-drawer a:hover{ text-decoration:none; background: #fbfdff; }

/* Hero */
.hero{
  padding: 54px 0 22px;
}
.hero-wrap{
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 30px;
}
.kicker{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,94,143,0.10);
  border: 1px solid rgba(15,94,143,0.18);
  color: #163247;
  font-weight: 950;
  font-size: 13px;
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(32px, 4.1vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.2px;
}
.hero p{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}
.hero-panel{
  background: var(--surface2);
  border: 1px solid rgba(215,226,236,0.9);
  border-radius: var(--radius);
  padding: 18px;
}
.hero-panel h3{ margin:0 0 8px; font-size: 15px; }
.hero-panel p{ margin:0; color: var(--muted); font-size: 14px; }

.quick{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}
.quick a{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-weight: 950;
}
.quick a:hover{ text-decoration:none; background: #fbfdff; }

.badges{
  display:flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.badge{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: #203042;
  font-weight: 950;
  font-size: 13px;
}

/* Sections */
section{ padding: 44px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-head h2{
  margin:0;
  font-size: 26px;
  letter-spacing: .2px;
}
.section-head p{
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 75ch;
}

.surface{
  background: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(215,226,236,0.75);
  border-bottom: 1px solid rgba(215,226,236,0.75);
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card{
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: 0 10px 18px rgba(13,27,42,0.06);
  padding: 18px;
}
.card .top{
  display:flex; align-items:flex-start; justify-content:space-between; gap: 12px;
  margin-bottom: 10px;
}
.card h3{ margin:0; font-size: 16px; font-weight: 950; }
.card .meta{ margin: 2px 0 0; color: var(--muted); font-size: 13px; font-weight: 800; }

.icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(247,183,49,0.22);
  border: 1px solid rgba(247,183,49,0.40);
  display:flex; align-items:center; justify-content:center;
  font-size: 18px;
  flex: 0 0 auto;
}

ul.clean{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
ul.clean li{ margin: 6px 0; }

.note{
  background: rgba(247,183,49,0.22);
  border: 1px solid rgba(247,183,49,0.40);
  border-radius: var(--radius);
  padding: 16px;
  color:#253240;
  margin-top: 14px;
}
.note strong{ color:#111; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 18px rgba(13,27,42,0.06);
}
.step .n{
  display:inline-flex; align-items:center; justify-content:center;
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(15,94,143,0.12);
  border: 1px solid rgba(15,94,143,0.18);
  font-weight: 950;
  margin-bottom: 10px;
}

.faq{ display:grid; gap: 10px; }
details{
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 18px rgba(13,27,42,0.05);
}
summary{ cursor:pointer; font-weight: 950; list-style:none; }
summary::-webkit-details-marker{ display:none; }
details p{ margin: 10px 0 0; color: var(--muted); }

.form{ display:grid; gap: 10px; }
.field{ display:grid; gap: 6px; }
label{ font-weight: 950; font-size: 13px; color: #233241; }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke2);
  background: #fbfdff;
  color: var(--text);
  outline: none;
}
textarea{ min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(15,94,143,0.45);
  box-shadow: 0 0 0 4px rgba(15,94,143,0.12);
}

.hr{
  border:0;
  border-top: 1px solid rgba(215,226,236,0.95);
  margin: 14px 0;
}

/* Footer – very clean */
.footer{
  padding: 28px 0 78px;
  border-top: 1px solid rgba(215,226,236,0.95);
  background: rgba(255,255,255,0.70);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.footer h4{ margin:0 0 10px; font-size: 14px; font-weight: 950; }
.footer a{ color: #1C2E40; font-weight: 900; }
.footer a:hover{ color: var(--brand); text-decoration:none; }
.small{ color: var(--muted); font-size: 13px; }

.footer-box{
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 18px rgba(13,27,42,0.05);
}

/* Mobile CTA */
.mobile-cta{
  display:none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 120;
  background: rgba(247,250,252,0.92);
  border: 1px solid rgba(215,226,236,0.95);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  padding: 10px;
  box-shadow: 0 10px 20px rgba(13,27,42,0.10);
}
.mobile-cta .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-cta .btn{ width:100%; box-shadow:none; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .hamburger{ display:inline-flex; }
  .mobile-cta{ display:block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .grid{ grid-template-columns: 1fr; }
}


/* v7.4 logo */
.brand{display:flex;align-items:center;gap:12px;}
.brand img{display:block;height:46px;width:auto;}


/* v7.5 header logo only */
.brand{gap:0;}
.brand .title,.brand .sub{display:none !important;}
.brand-logo{height:64px;width:auto;display:block;}
@media (max-width: 640px){.brand-logo{height:54px;}}
