/* ===== Base ===== */
:root{
  --bg: #fbfaf8;
  --card: #ffffff;
  --text: #1f2430;
  --muted: #667085;
  --line: rgba(31,36,48,0.10);

  --primary: #6b7a6a;         /* ніжний шавлієвий */
  --primary-2: #7f8f7e;
  --cream: #f3efe9;

  --radius: 18px;
  --shadow: 0 14px 40px rgba(31,36,48,0.10);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(107,122,106,0.12), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(127,143,126,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===== Buttons / links ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 24px rgba(107,122,106,0.25);
}
.btn--primary:hover{ background: var(--primary-2); }
.btn--ghost{
  background: rgba(255,255,255,0.65);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover{ box-shadow: 0 10px 22px rgba(31,36,48,0.10); }

.link{
  color: var(--primary);
  font-weight: 700;
}
.link:hover{ text-decoration: underline; }

.muted{ color: var(--muted); }

/* ===== Topbar ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,248,0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), #a0b29e);
  box-shadow: 0 6px 16px rgba(107,122,106,0.35);
}
.nav{
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: rgba(31,36,48,0.82);
}
.nav a{
  padding: 8px 10px;
  border-radius: 999px;
}
.nav a:hover{ background: rgba(255,255,255,0.6); }

.topbar__actions{
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger{
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
  border-radius: 12px;
  padding: 10px;
}
.burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(31,36,48,0.75);
  margin: 4px 0;
  border-radius: 2px;
}

/* mobile menu */
.mobile{
  border-top: 1px solid var(--line);
  background: rgba(251,250,248,0.82);
}
.mobile__inner{
  display: grid;
  gap: 10px;
  padding: 16px 0 18px;
}
.mobile a{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
}
.mobile__cta{ margin-top: 6px; }

/* ===== Sections ===== */
.section{ padding: 68px 0; }
.section__head{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}
.section__head p{ margin: 0; }

.hero{
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background:
    linear-gradient(
      rgba(251,250,248,0.75),
      rgba(251,250,248,0.88)
    ),
    url("images/bg-soft-green.jpg") center / cover no-repeat;
}
.hero__content {
  background: rgba(251,250,248,0.35);
  border-radius: 24px;
  gap 12px;
  padding: 8px 12px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.badge{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  font-weight: 700;
  color: rgba(31,36,48,0.80);
  margin: 0 0 14px;
}
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.subtitle{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(31,36,48,0.76);
  line-height: 1.55;
}
.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero__facts{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.fact{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.60);
  border-radius: 16px;
  padding: 12px;
}
.fact__title{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.fact__text{
  margin-top: 6px;
  font-weight: 800;
}

.hero__card{
  display: grid;
  gap: 18px;
  align-content: start;
    background: rgba(255,255,255,0.35);
    padding: 18px;
    border-radius: 28px;

}

.portrait{
  border-radius: 28px;
  overflow: hidden;
  height: 520px;       /* було занадто високо */
  max-height: 62vh;    /* щоб на маленьких екранах не займало все */
}
.portrait img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%; /* під цей кадр добре */
  display: block;
}
.portrait__placeholder{
  height: 290px;
  display: grid;
  place-items: center;
  color: rgba(31,36,48,0.55);
  font-weight: 800;
  background: radial-gradient(500px 240px at 30% 10%, rgba(107,122,106,0.16), transparent 60%),
              radial-gradient(420px 220px at 70% 40%, rgba(127,143,126,0.12), transparent 60%),
              rgba(255,255,255,0.55);
}
.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card__title{ margin: 0 0 8px; }
.card__text{ margin: 0 0 10px; color: rgba(31,36,48,0.76); line-height: 1.55; }

.hero__glow{
  position: absolute;
  inset: auto 0 -40px 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(251,250,248,1));
  pointer-events: none;
}

.strip{
  padding: 18px 0;
}
.strip__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  argin-bottom: 64px;
}
.strip__item{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.62);
  border-radius: 16px;
}
.strip__icon{
  width: 40px; height: 40px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(107,122,106,0.12);
  border: 1px solid rgba(107,122,106,0.18);
}
.strip__title{ font-weight: 900; }
.strip__text{ color: var(--muted); font-weight: 600; }

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.panel{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.68);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(31,36,48,0.08);
}
.panel--soft{
  background: linear-gradient(180deg, rgba(243,239,233,0.95), rgba(255,255,255,0.65));
}
.panel h3{ margin: 0 0 10px; }
.panel p{ margin: 0 0 10px; line-height: 1.6; color: rgba(31,36,48,0.78); }

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(31,36,48,0.76);
  line-height: 1.75;
  font-weight: 600;
}

.mini{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.mini__item{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px dashed rgba(31,36,48,0.14);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.55);
}
.mini__k{ color: var(--muted); font-weight: 800; }
.mini__v{ font-weight: 900; }

.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.tile{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.68);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(31,36,48,0.07);
}
.tile h3{ margin: 0 0 8px; }
.tile p{ margin: 0; color: rgba(31,36,48,0.75); line-height: 1.55; }
.tile--cta{
  background: linear-gradient(180deg, rgba(107,122,106,0.12), rgba(255,255,255,0.7));
}

.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.step{
  display: flex;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
  border-radius: var(--radius);
  padding: 16px;
}
.step__n{
  width: 40px; height: 40px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 900;
  color: var(--primary);
  background: rgba(107,122,106,0.12);
  border: 1px solid rgba(107,122,106,0.18);
}
.step__t{ font-weight: 900; margin-bottom: 4px; }
.step__p{ color: rgba(31,36,48,0.75); font-weight: 600; line-height: 1.55; }

.pricing{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.price{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(31,36,48,0.08);
}
.price--featured{
  transform: none;
  border-color: rgba(107,122,106,0.28);
  background: linear-gradient(180deg, rgba(243,239,233,0.95), rgba(255,255,255,0.72));
}
.price__top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price__tag{
  font-weight: 900;
  color: rgba(31,36,48,0.70);
  background: rgba(107,122,106,0.12);
  border: 1px solid rgba(107,122,106,0.18);
  border-radius: 999px;
  padding: 6px 10px;
}
.price__num{
  font-size: 28px;
  font-weight: 1000;
  margin: 12px 0 10px;
}

.faq{
  display: grid;
  gap: 10px;
}
.qa{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.68);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.qa summary{
  cursor: pointer;
  font-weight: 900;
}
.qa p{
  margin: 10px 0 0;
  color: rgba(31,36,48,0.75);
  line-height: 1.6;
  font-weight: 600;
}

.contact{ padding-top: 52px; }
.contact__box{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}
.contact__left{
  padding: 10px;
}
.contact__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
}
.note{
  border: 1px dashed rgba(31,36,48,0.18);
  border-radius: 18px;
  padding: 12px;
  background: rgba(243,239,233,0.65);
}
.note__t{ font-weight: 900; margin-bottom: 6px; }
.note__p{ color: rgba(31,36,48,0.70); font-weight: 600; line-height: 1.55; }

.contact__form{
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: rgba(251,250,248,0.65);
}
.contact__form h3{ margin: 0 0 12px; }
.field{
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.field span{ font-weight: 800; color: rgba(31,36,48,0.78); font-size: 13px; }
input, textarea, select{
  width: 100%;
  border: 1px solid rgba(31,36,48,0.14);
  border-radius: 14px;
  padding: 12px 12px;
  font: inherit;
  background: rgba(255,255,255,0.78);
  outline: none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(107,122,106,0.45);
  box-shadow: 0 0 0 4px rgba(107,122,106,0.12);
}
.form__honeypot{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form__consent{
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  margin: 4px 0 14px;
  color: rgba(31,36,48,0.72);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}
.form__consent input{
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--primary);
}
.form__hint{
  margin: 10px 0 0;
  font-size: 12px;
}

.success-page{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.success-card{
  width: min(620px, 100%);
  padding: clamp(26px, 6vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 48px rgba(31,36,48,0.10);
  text-align: center;
}
.success-card .badge{ display: inline-block; }
.success-card h1{ margin: 16px 0 12px; }
.success-card p{ margin: 0 0 22px; }

.footer{
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(251,250,248,0.78);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.brand--footer{ opacity: 0.95; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .strip__grid{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .contact__box{ grid-template-columns: 1fr; }
  .nav{ display: none; }
  .burger{ display: inline-block; }
}
.pricing-note {
  margin-top: 24px;
  text-align: ;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--text);
  font-weight: 700;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.pricing-note a:hover {
  text-decoration: underline;
}
.hero__note{
  margin-top: 4px;
    display: grid;
    gap: 16px;
    align-content: start;
      background: rgba(255,255,255,0.35);
      padding: 16px;
      border-radius: 28px;

}


.hero__note h3{
                font-size: 16px;

                font-weight: 600;
                margin: 0 0 8px;
                color: rgba(20, 27, 33, 0.92);
              }

.hero__note p{
  margin: 0;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.сard.soft-card{
  background: rgba(251,250,248,0.55);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 22px;
  box-shadow: none;
}
