
:root{
  --bg: #edf2fb;
  --bg-2: #f8f5ee;
  --blue: #a9c8ea;
  --blue-dark: #5e7398;
  --apricot: #efb36c;
  --apricot-dark: #b8742f;
  --cream: #fffaf2;
  --lavender: #c9c6e8;
  --text: #4d5971;
  --shadow: 0 12px 28px rgba(95, 115, 152, 0.18);
  --radius: 28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.9), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, #dfeaf7 0%, #eef4fb 30%, #f7f3ea 100%);
}
a{color:var(--blue-dark); text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1100px, calc(100% - 32px)); margin:0 auto}
.section{padding:22px 0}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(245, 249, 254, .78);
  border-bottom: 1px solid rgba(94,115,152,.12);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  gap:18px;
}
.logo-wrap{display:flex; align-items:center; gap:12px}
.logo-ball{
  width:52px; height:52px; border-radius:50%;
  display:grid; place-items:center; font-size:26px;
  background: linear-gradient(180deg, #f9cf99, #eeb06b);
  box-shadow: var(--shadow);
}
.brand{
  font-size: clamp(24px, 4vw, 34px);
  line-height:1;
  font-weight:900;
  color:#6b7fa3;
  text-shadow: 0 2px 0 rgba(255,255,255,.9);
}
.subbrand{
  margin-top:4px;
  color:var(--apricot-dark);
  font-weight:700;
}
nav{display:flex; gap:18px; flex-wrap:wrap}
nav a{
  font-weight:800;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.66);
  border:1px solid rgba(94,115,152,.12);
}

.hero{padding:34px 0 10px}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:center;
}
.card{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(130,150,180,.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:28px;
}
.soft{
  background:
    radial-gradient(circle at top right, rgba(239,179,108,.22), rgba(239,179,108,0) 32%),
    rgba(255,255,255,.72);
}
.hero-text h1{
  margin:12px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height:1.02;
  color:#64789d;
}
.hero-text p{
  font-size:18px;
  line-height:1.6;
}
.mini-badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background: linear-gradient(180deg, #f8d7af, #efb36c);
  color:white;
  font-weight:900;
  box-shadow: var(--shadow);
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.button{
  display:inline-block;
  padding:14px 20px;
  border-radius:16px;
  background: linear-gradient(180deg, #7ea5d2, #677ba0);
  color:white;
  font-weight:900;
  box-shadow: var(--shadow);
}
.button:hover{text-decoration:none; filter:brightness(1.03)}
.button-light{
  background: linear-gradient(180deg, #f8d7af, #efb36c);
}
.hero-image-wrap{display:flex; justify-content:center}
.hero-image{
  width:100%;
  max-width:500px;
  border-radius:34px;
  box-shadow: 0 18px 40px rgba(70, 90, 120, .22);
  border:8px solid rgba(255,255,255,.7);
}

.intro h2, .card h2{
  margin-top:0;
  font-size: clamp(28px, 4vw, 44px);
  color:#6a7ea3;
}
.intro p, .card p{font-size:18px; line-height:1.6}

.price-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}
.price-bubble{
  background: linear-gradient(180deg, #fffaf3, #f9f4eb);
  border-radius:24px;
  padding:22px 16px;
  border:1px solid rgba(130,150,180,.12);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
}
.price-bubble h3{
  margin:0 0 8px;
  color:var(--apricot-dark);
  font-size:28px;
}
.price-bubble p{
  margin:0;
  font-size:30px;
  font-weight:900;
  color:#5f7398;
}
.hint{
  text-align:center;
  margin-top:16px;
  font-style:italic;
}

.card-accent{
  background:
    radial-gradient(circle at left top, rgba(169,200,234,.35), rgba(169,200,234,0) 35%),
    radial-gradient(circle at right bottom, rgba(239,179,108,.22), rgba(239,179,108,0) 28%),
    rgba(255,255,255,.8);
  text-align:center;
}
.contact-mail a{
  font-size: clamp(24px, 4vw, 34px);
  font-weight:900;
}
.domain{
  display:inline-block;
  margin-top:10px;
  padding:10px 20px;
  border-radius:999px;
  background:#f4f0e8;
  color:#657a9f;
  font-weight:900;
  letter-spacing:.5px;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}

.legal p{margin-bottom:0}

.site-footer{
  margin-top:30px;
  padding:26px 0 40px;
}
.footer-inner{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  font-weight:800;
  color:#6e80a1;
}

@media (max-width: 860px){
  .hero-grid, .two-col, .price-grid{
    grid-template-columns: 1fr;
  }
  .nav{
    flex-direction:column;
    align-items:flex-start;
  }
  nav{
    width:100%;
  }
}
