/*
Theme Name: Handy Sofort Orten (Child)
Theme URI: https://handy-sofort-orten.de/
Description: Child Theme for Twenty Twenty-Four. Custom marketing homepage + backend-editable sections (no extra plugins).
Author: Nico + ChatGPT
Template: twentytwentyfour
Version: 1.0.0
Text Domain: hso-child
*/

/* --- Base layout --- */
:root{
  --hso-container: 1120px;
  --hso-radius: 16px;
  --hso-shadow: 0 10px 30px rgba(0,0,0,.06);
  --hso-border: rgba(0,0,0,.08);
  --hso-blue: #1f63ff;
  --hso-blue2: #0b3fd8;
  --hso-bg: #f6f7fb;
  --hso-text: #1e2430;
  --hso-muted: rgba(30,36,48,.68);
}

body{
  background: var(--hso-bg);
  color: var(--hso-text);
}

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

.hso-card{
  background: #fff;
  border: 1px solid var(--hso-border);
  border-radius: var(--hso-radius);
  box-shadow: var(--hso-shadow);
}

.hso-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(180deg,var(--hso-blue),var(--hso-blue2));
  text-decoration: none;
  font-weight: 700;
  border: 0;
  box-shadow: 0 12px 28px rgba(31,99,255,.25);
  transition: transform .08s ease, filter .12s ease;
}
.hso-btn:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.hso-btn:active{ transform: translateY(0px); }

.hso-kicker{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top: 18px;
  color: var(--hso-muted);
  font-weight: 600;
}
.hso-kicker span{
  display:flex;
  align-items:center;
  gap:8px;
}
.hso-kicker .dot{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(31,99,255,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--hso-blue);
  font-size: 14px;
}

.hso-hero{
  padding: 52px 0 26px;
}
.hso-hero h1{
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-align:center;
}
.hso-hero p{
  margin: 0 auto 22px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--hso-muted);
  text-align:center;
}
.hso-hero .hso-cta{
  display:flex;
  justify-content:center;
}

.hso-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0 40px;
}
@media (max-width: 900px){
  .hso-grid-3{ grid-template-columns: 1fr; }
}

.hso-tile{
  padding: 18px;
  overflow:hidden;
}
.hso-tile h3{
  margin: 0 0 8px;
  font-size: 18px;
}
.hso-tile p{
  margin: 0;
  color: var(--hso-muted);
}
.hso-tile .hso-tile-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(31,99,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--hso-blue);
}

.hso-section{
  padding: 34px 0;
}
.hso-section h2{
  text-align:center;
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.01em;
}
.hso-section .hso-sub{
  text-align:center;
  color: var(--hso-muted);
  margin: 0 auto 18px;
  max-width: 780px;
}

.hso-slim{
  padding: 24px 0;
}

.hso-legalbox{
  padding: 22px;
  text-align:center;
}
.hso-legalbox ul{
  list-style:none;
  padding:0;
  margin: 14px auto 18px;
  max-width: 520px;
  text-align:left;
}
.hso-legalbox li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 8px 0;
  color: var(--hso-text);
}
.hso-legalbox li .chk{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(45, 180, 120, .14);
  color: #2db478;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 22px;
  font-weight: 900;
}

.hso-footer-note{
  text-align:center;
  color: var(--hso-muted);
  padding: 10px 0 26px;
  font-size: 14px;
}

/* Make header look clean */
.site-header{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header .wp-block-site-title a{ text-decoration:none; }
