:root{
  --bg: #f1efe7;
  --bg2:#e6e2d4;
  --surface: rgba(0,0,0,.06);
  --surface2: rgba(0,0,0,.09);
  --stroke: rgba(0,0,0,.12);
  --text: #000000;
  --muted: rgba(0,0,0,.68);
  --muted2: rgba(0,0,0,.55);
  --primary: #ffdb8b;
  --primary2:#d7a24a;
  --good:#3ddc97;
  --shadow: 0 16px 50px rgba(0,0,0,.18);
  --radius: 18px;
  --radius2: 12px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-padding-top: 92px; }
body{
  margin:0;
  padding-top:72px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}

main{
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(255,219,139,.18), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(215,162,74,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 14px;
  background:rgba(0,0,0,.12);
  border:1px solid var(--stroke);
  border-radius:12px;
  color:var(--text);
  z-index:9999;
}
.skip-link:focus{ left:10px; }

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:100;
  background:rgba(241,239,231,.92);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand__mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 10px 30px rgba(255,219,139,.25);
}
.brand__logo{
  width:34px;
  height:34px;
  border-radius:12px;
  object-fit:contain;
  display:block;
}
.brand__mark--sm{
  width:26px;height:26px;border-radius:10px;
}
.brand__name{
  font-weight:700;
  letter-spacing:.2px;
  color:#d4af37;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav__link{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav__link:hover{
  color:var(--text);
  background: rgba(0,0,0,.06);
}
.nav__link--cta{
  color:rgba(0,0,0,.95);
  background: linear-gradient(135deg, rgba(255,219,139,.18), rgba(215,162,74,.18));
  border:1px solid rgba(0,0,0,.12);
}

.burger{
  display:none;
  background:transparent;
  border:1px solid rgba(0,0,0,.14);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
}
.burger__line{
  display:block;
  width:18px;
  height:2px;
  background:rgba(0,0,0,.85);
  margin:4px 0;
  border-radius:10px;
}

.mobile-menu{
  padding:0 0 14px 0;
}
.mobile-menu__inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:10px;
}
.mobile-menu__link{
  text-decoration:none;
  color:var(--text);
  font-weight:650;
  padding:12px 14px;
  border-radius:14px;
  background: rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.08);
}
.mobile-menu__link--cta{
  border-color: rgba(215,162,74,.25);
  background: linear-gradient(135deg, rgba(255,219,139,.18), rgba(215,162,74,.18));
}

.hero{
  padding:54px 0 26px 0;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:start;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:650;
  font-size:14px;
  margin-bottom:14px;
}
.eyebrow__dot{
  width:10px;height:10px;border-radius:50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 6px rgba(215,162,74,.12);
}

.h1{
  font-size:48px;
  line-height:1.06;
  margin:0 0 14px 0;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 20px 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
  max-width: 560px;
}

.hero__bullets{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:22px;
}
.pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  background: rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.10);
  border-radius:16px;
  width:max-content;
  max-width: 100%;
}
.pill__icon{
  display:inline-flex;
  width:22px;height:22px;
  align-items:center;justify-content:center;
  border-radius:10px;
  background: rgba(255,219,139,.22);
  border:1px solid rgba(215,162,74,.32);
  color: rgba(0,0,0,.88);
  font-weight:800;
  font-size:13px;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  text-decoration:none;
  font-weight:750;
  border:1px solid rgba(0,0,0,.14);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  color:var(--text);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }
.btn--full{ width:100%; }
.btn--primary{
  background: linear-gradient(135deg, rgba(255,219,139,.95), rgba(215,162,74,.85));
  border-color: rgba(0,0,0,.18);
}
.btn--secondary{
  background: rgba(0,0,0,.06);
}

.hero__trust{
  margin-top:16px;
  color:var(--muted);
}
.muted{ color:var(--muted); }
.trust-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.trust-item{
  padding:10px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.10);
  color: rgba(0,0,0,.84);
  font-weight:650;
  font-size:14px;
}

.hero-card{
  position:relative;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.03));
  border:1px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px 16px 18px;
  overflow:hidden;
}
.hero-card:before{
  content:'';
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 300px at 0% 0%, rgba(255,219,139,.25), transparent 55%),
              radial-gradient(600px 300px at 100% 0%, rgba(215,162,74,.22), transparent 55%);
  opacity:.55;
  pointer-events:none;
}
.hero-card > *{ position:relative; }

.hero-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}
.hero-card__badge{
  font-weight:800;
  font-size:12px;
  color:rgba(0,0,0,.85);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.05);
}
.hero-card__title{
  font-weight:800;
  color: rgba(0,0,0,.92);
}

.hero-metrics{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.metric{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}
.metric__value{
  font-weight:900;
  letter-spacing:-.4px;
  font-size:22px;
}
.metric__label{
  color:var(--muted);
  font-weight:650;
}
.hero-card__divider{
  height:1px;
  background: rgba(0,0,0,.12);
  margin:14px 0;
}
.checklist{
  list-style:none;
  padding:0;margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.checklist__item{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(0,0,0,.88);
  font-weight:650;
  font-size:14px;
}
.checklist__mark{
  width:18px;height:18px;border-radius:8px;
  background: rgba(255,219,139,.16);
  border:1px solid rgba(215,162,74,.30);
  box-shadow: 0 0 0 5px rgba(215,162,74,.08);
}
.hero-card__footer{
  margin-top:12px;
}
.micro{
  display:flex;
  gap:8px;
  align-items:baseline;
}
.micro__label{ color:var(--muted2); font-weight:650; }
.micro__value{ font-weight:800; }

.hero-stack{
  margin-top:16px;
  display:flex;
  gap:14px;
}
.stack-card{
  flex:1;
  height:90px;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}
.stack-card--a{
  background: linear-gradient(135deg, rgba(255,219,139,.14), rgba(0,0,0,.03));
}
.stack-card--b{
  background: linear-gradient(135deg, rgba(215,162,74,.14), rgba(0,0,0,.03));
}

.section{
  padding:58px 0;
  background: transparent;
}
#services{
  padding-top:72px;
  background: transparent;
}
.section--alt{
  background: transparent;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.section__head{
  margin-bottom:24px;
}
.h2{
  font-size:32px;
  margin:0 0 10px 0;
  letter-spacing:-.3px;
}

.h3{
  font-size:18px;
  margin:10px 0 8px 0;
  letter-spacing:-.2px;
}
.section__sub{
  margin:0;
  color:var(--muted);
  font-weight:600;
  line-height:1.6;
  max-width: 700px;
}

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

.card{
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
  padding:18px;
}
.card__text{
  color:var(--muted);
  line-height:1.55;
  font-weight:600;
}

.service-card__icon{
  width:42px;height:42px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.05);
  font-weight:900;
  margin-bottom:8px;
}
.service-card:hover{
  border-color: rgba(215,162,74,.28);
  background: rgba(215,162,74,.06);
}
.card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.tag{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,.10);
  color: rgba(0,0,0,.82);
  font-weight:700;
  font-size:13px;
}

.step{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
}
.step__num{
  width:38px;height:38px;
  border-radius: 16px;
  background: rgba(215,162,74,.14);
  border:1px solid rgba(215,162,74,.28);
  display:flex;align-items:center;justify-content:center;
  font-weight:950;
}

.process-note{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-top:18px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.process-note__icon{
  width:42px;height:42px;border-radius:18px;
  background: rgba(215,162,74,.14);
  border:1px solid rgba(215,162,74,.28);
}
.process-note__text{
  color:var(--muted);
  line-height:1.6;
  font-weight:600;
  margin:0;
  display:flex;
  align-items:center;
  min-height:42px;
}

.case-kpi{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:12px;
}
.case-kpi__value{
  font-weight:950;
  font-size:24px;
  letter-spacing:-.3px;
}
.case-kpi__label{
  color:var(--muted);
  font-weight:700;
}

.price-card--featured{
  border-color: rgba(215,162,74,.34);
  background: linear-gradient(180deg, rgba(215,162,74,.12), rgba(0,0,0,.03));
}
.price-card__top{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:10px;
}
.price-card__name{
  font-weight:950;
  font-size:18px;
}
.price-card__price{
  font-weight:950;
  font-size:28px;
  letter-spacing:-.4px;
}
.price-card__hint{
  color:var(--muted);
  font-weight:650;
}

.price-card__currency{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  height:auto;
  margin-left:.10em;
  vertical-align:baseline;
}
.byn-icon{
  width:auto;
  height:.72em;
  display:block;
  object-fit:contain;
}
.price-list{
  margin:10px 0 16px 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.6;
  font-weight:650;
}
.pricing-note{
  margin-top:18px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.pricing-note__text{ color:var(--muted); font-weight:650; line-height:1.6; }

.faq{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  background: transparent;
  border:0;
  padding:16px 16px;
  color:rgba(0,0,0,.93);
  font-weight:800;
  cursor:pointer;
}
.faq-a{
  padding:0 16px 16px 16px;
  color:var(--muted);
  font-weight:650;
  line-height:1.65;
}

.section--contact{
  padding-top:62px;
}
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap:18px;
  row-gap:0;
  align-items:start;
}
.contact__left{
  display:contents;
}
.contact__left > .h2{
  grid-column:1;
  grid-row:1;
}
.contact__left > .section__sub{
  grid-column:1;
  grid-row:2;
}
.contact__items{
  grid-column:1;
  grid-row:3;
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contact__mini{
  grid-column:1;
  grid-row:4;
}
.contact__right{
  grid-column:2;
  grid-row:3 / span 2;
  margin-top:18px;
}
.contact-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.contact-item__icon{
  width:42px;height:42px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.04);
  font-weight:900;
  color: rgba(0,0,0,.86);
}
.contact-item__label{
  color:var(--muted2);
  font-weight:700;
  font-size:13px;
}
.contact-item__value{
  font-weight:850;
}
.mini-note{
  margin-top:16px;
  display:flex;
  gap:12px;
  padding:14px;
  border-radius: var(--radius);
  background: rgba(215,162,74,.14);
  border:1px solid rgba(215,162,74,.28);
}
.mini-note__icon{
  width:42px;height:42px;border-radius:18px;
  background: rgba(215,162,74,.14);
  border:1px solid rgba(215,162,74,.28);
}
.mini-note__text{ color: rgba(0,0,0,.82); font-weight:650; line-height:1.6; }

.form{
  padding:18px;
}
.form__head{
  margin-bottom:14px;
}
.form__title{
  font-weight:950;
  font-size:20px;
  letter-spacing:-.2px;
}
.form__subtitle{
  margin-top:6px;
  color:var(--muted);
  font-weight:650;
}
.form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field--full{ grid-column: 1 / -1; }
.field__label{
  color:var(--muted2);
  font-weight:750;
  font-size:13px;
}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.04);
  color: var(--text);
  outline:none;
  font-weight:650;
}
.input::placeholder{ color: rgba(0,0,0,.45); }
.input:focus{
  border-color: rgba(215,162,74,.5);
  box-shadow: 0 0 0 4px rgba(215,162,74,.14);
}
.input--textarea{ resize: vertical; min-height: 110px; }

.form__actions{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.form__fineprint{
  margin:0;
  color:var(--muted2);
  font-weight:650;
  font-size:13px;
  line-height:1.5;
}
.form__success{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(61,220,151,.28);
  background: rgba(61,220,151,.10);
  color: rgba(0,0,0,.88);
  font-weight:800;
}

.contact__stamp{
  margin-top:16px;
  display:flex;
  justify-content:flex-end;
}
.stamp{
  width:180px;
  border-radius: var(--radius);
  border:1px dashed rgba(0,0,0,.20);
  padding:16px;
  background: rgba(0,0,0,.02);
  text-align:center;
  color: rgba(0,0,0,.82);
}
.stamp__top{ font-weight:1000; font-size:30px; letter-spacing:-.6px; }
.stamp__mid{ font-weight:900; margin-top:6px; color:var(--muted); }
.stamp__bottom{ font-weight:800; margin-top:8px; color:var(--muted); }

.footer{
  padding:32px 0 22px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.01);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
}
.footer__left{
  max-width: 520px;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer__brand-name{
  font-weight:850;
}
.footer__muted{
  color:var(--muted);
  font-weight:650;
  line-height:1.6;
}
.footer__link{
  display:block;
  color:var(--muted);
  text-decoration:none;
  font-weight:700;
  padding:8px 0;
}
.footer__link:hover{ color:var(--text); }
.footer__bottom{
  margin-top:16px;
  color:var(--muted2);
  font-weight:650;
}
.footer__bottom-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__right{ order:2; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .contact{ grid-template-columns: 1fr; }
  .contact__left{ display:block; }
  .contact__left > .h2,
  .contact__left > .section__sub,
  .contact__items,
  .contact__mini,
  .contact__right{
    grid-column:auto;
    grid-row:auto;
  }
  .contact__right{ margin-top: 0; }
  .form__grid{ grid-template-columns: 1fr; }
  .hero{ padding-top:36px; }
  .h1{ font-size:40px; }
}

@media (max-width: 720px){
  .nav{ display:none; }
  .burger{ display:inline-flex; flex-direction:column; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr; }
  .h1{ font-size:34px; }
  .h2{ font-size:26px; }
}

