:root{
  --navy:#10265c;
  --blue:#1268e8;
  --text:#17213a;
  --muted:#69758c;
  --bg:#f5f7fb;
  --line:#e3e8f1;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}
a{color:var(--blue)}
.wrap{width:min(1120px,calc(100% - 32px));margin:auto}
header{
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:20;
}
.header{
  min-height:72px;
  display:flex;align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  font-size:22px;font-weight:850;
  color:var(--navy);text-decoration:none;
}
nav{display:flex;gap:22px;flex-wrap:wrap}
nav a{color:#46536c;text-decoration:none;font-size:14px}
.hero{padding:82px 0 65px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;align-items:center;
}
.badge{
  display:inline-block;
  background:#e9f1ff;color:#0e55bd;
  padding:8px 13px;border-radius:99px;
  font-weight:700;font-size:14px;
}
h1{
  margin:18px 0;
  font-size:clamp(42px,6vw,70px);
  line-height:1.01;letter-spacing:-2.3px;
  color:#102454;
}
.lead{
  color:#5f6b82;
  font-size:20px;line-height:1.55;
  max-width:720px;
}
.actions{
  display:flex;gap:12px;
  flex-wrap:wrap;margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;justify-content:center;
  min-height:52px;padding:0 22px;
  border-radius:15px;
  text-decoration:none;font-weight:800;
}
.primary{
  background:linear-gradient(135deg,#116eea,#10275f);
  color:white;
}
.secondary{
  background:white;color:var(--navy);
  border:1px solid var(--line);
}
.demo{
  background:white;border:1px solid var(--line);
  border-radius:30px;padding:26px;
  box-shadow:0 24px 70px rgba(25,49,97,.12);
}
.avatar{
  width:92px;height:92px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#1686ff,#5e4ce7);
  color:white;font-weight:850;font-size:38px;
}
.demo h3{font-size:27px;margin:18px 0 4px}
.demo p{margin:5px 0;color:var(--muted)}
.demo-line{
  padding:13px 0;border-top:1px solid #edf0f5;
}
section{padding:64px 0}
section.white{background:white}
.eyebrow{
  color:var(--blue);font-weight:800;
  text-transform:uppercase;
  font-size:13px;letter-spacing:.08em;
}
h2{
  font-size:clamp(30px,4vw,45px);
  line-height:1.08;margin:9px 0 30px;
  color:#122557;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.card{
  background:white;
  border:1px solid var(--line);
  border-radius:22px;padding:24px;
}
.white .card{background:var(--bg)}
.icon{font-size:28px;margin-bottom:13px}
.card h3{margin:0 0 9px;font-size:19px}
.card p{margin:0;color:var(--muted);line-height:1.55}
.steps{counter-reset:step}
.step{position:relative;padding-top:12px}
.step:before{
  counter-increment:step;
  content:counter(step);
  width:34px;height:34px;border-radius:50%;
  background:#e8f1ff;color:#105bc7;
  display:flex;align-items:center;justify-content:center;
  font-weight:850;margin-bottom:15px;
}
.notice{
  background:#edf4ff;
  border:1px solid #d5e6ff;
  border-radius:22px;padding:24px;
  color:#334a72;line-height:1.6;
}
.legal-page{padding:55px 0 80px}
.legal{
  background:white;border:1px solid var(--line);
  border-radius:24px;padding:36px;
}
.legal h1{
  font-size:38px;letter-spacing:-1px;
  margin-top:0;
}
.legal h2{font-size:23px;margin-top:34px;margin-bottom:12px}
.legal p,.legal li{line-height:1.65;color:#404c62}
.legal table{width:100%;border-collapse:collapse}
.legal td{padding:11px;border-bottom:1px solid var(--line);vertical-align:top}
.legal td:first-child{width:35%;color:var(--muted)}
footer{
  background:#101d3e;color:#dce3f3;
  padding:45px 0;
}
.footer-grid{
  display:grid;grid-template-columns:1.2fr 1fr 1fr;
  gap:30px;
}
footer h4{margin:0 0 12px;color:white}
footer p{color:#aeb8cd;line-height:1.55}
footer a{
  display:block;color:#ced7e9;
  margin:8px 0;text-decoration:none;
}
.small{font-size:13px;color:#9eabc3;margin-top:28px}
@media(max-width:800px){
  nav{display:none}
  .hero{padding-top:45px}
  .hero-grid,.grid,.footer-grid{grid-template-columns:1fr}
  .legal{padding:22px}
  .hero-grid{gap:28px}
}

/* === INTAPNI DEMO SLIDER === */

.hero-demo-slider {
  position: relative;
  width: 100%;
  max-width: 510px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;

  overflow: hidden;

  border-radius: 28px;

  background: #f5f7fb;

  box-shadow:
    0 24px 70px
    rgba(25, 49, 97, .12);
}


.hero-demo-slider .demo-slide {
  position: absolute;
  inset: 0;

  opacity: 0;

  transform: scale(.985);

  transition:
    opacity .75s ease,
    transform .75s ease;

  pointer-events: none;
}


.hero-demo-slider .demo-slide.active {
  opacity: 1;

  transform: scale(1);

  pointer-events: auto;
}


.hero-demo-slider .demo-slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.demo-dots {
  position: absolute;
  z-index: 5;

  left: 50%;
  bottom: 14px;

  transform: translateX(-50%);

  display: flex;

  gap: 8px;

  padding: 7px 10px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .82);

  backdrop-filter:
    blur(8px);
}


.demo-dot {
  appearance: none;

  width: 9px;
  height: 9px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background:
    rgba(16, 38, 92, .25);

  cursor: pointer;
}


.demo-dot.active {
  background: #1268e8;

  transform: scale(1.2);
}


@media (max-width: 800px) {

  .hero-demo-slider {
    max-width: 420px;
  }

}



/* === INTAPNI TARIFFS FINAL === */

.tariffs-section {
  padding: 80px 0;
  background: #f5f7fb;
}

.tariffs-intro {
  max-width: 760px;
  margin: -10px 0 35px;
  color: #69758c;
  font-size: 18px;
  line-height: 1.6;
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;

  padding: 32px;

  border: 1px solid #e1e7f0;
  border-radius: 26px;

  background: #ffffff;

  box-shadow:
    0 18px 50px
    rgba(22, 42, 86, .07);
}

.tariff-pro {
  border: 2px solid #1268e8;

  box-shadow:
    0 24px 65px
    rgba(18, 104, 232, .13);
}

.tariff-label {
  display: inline-flex;
  align-self: flex-start;

  padding: 7px 12px;

  border-radius: 999px;

  background: #edf3ff;
  color: #155fc5;

  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.pro-label {
  background: #1268e8;
  color: #ffffff;
}

.tariff-popular {
  position: absolute;

  top: 32px;
  right: 30px;

  color: #1268e8;

  font-size: 13px;
  font-weight: 750;
}

.tariff-card h3 {
  margin: 22px 0 8px;

  color: #10265c;

  font-size: 30px;
}

.tariff-price {
  color: #10265c;

  font-size: 42px;
  line-height: 1.1;

  font-weight: 850;
  letter-spacing: -1px;
}

.tariff-price span {
  color: #69758c;

  font-size: 16px;
  font-weight: 500;

  letter-spacing: 0;
}

.tariff-year {
  margin-top: 8px;

  color: #354463;

  font-size: 18px;
  font-weight: 700;
}

.tariff-divider {
  height: 1px;

  margin: 25px 0 20px;

  background: #e7ebf2;
}

.tariff-list {
  flex: 1;

  margin: 0;
  padding: 0;

  list-style: none;
}

.tariff-list li {
  margin: 0;
  padding: 8px 0;

  color: #36435c;

  font-size: 15px;
  line-height: 1.45;
}

.tariff-list .tariff-no {
  color: #9aa3b4;
}

.tariff-button {
  width: 100%;

  margin-top: 25px;
}

.tariff-note {
  margin-top: 25px;
  padding: 22px 25px;

  border: 1px solid #d9e5f8;
  border-radius: 20px;

  background: #edf4ff;

  color: #405372;

  line-height: 1.6;
}


@media (max-width: 800px) {

  .tariffs-grid {
    grid-template-columns: 1fr;
  }

  .tariff-card {
    padding: 25px;
  }

  .tariff-price {
    font-size: 36px;
  }

}




/* === INTAPNI CHECKOUT FINAL === */


.payment-site-notice {
  margin-top: 24px;
  padding: 20px 22px;

  border: 1px solid #d8e5f8;
  border-radius: 18px;

  background: #edf4ff;

  color: #405372;

  font-size: 14px;
  line-height: 1.6;
}


.checkout-body {
  background: #f5f7fb;
}


.checkout-page {
  padding: 58px 0 80px;
}


.checkout-head {
  max-width: 760px;
  margin-bottom: 32px;
}


.checkout-head h1 {
  margin: 8px 0 15px;

  font-size:
    clamp(34px, 5vw, 50px);

  letter-spacing: -1.4px;
}


.checkout-head p {
  color: #69758c;

  font-size: 18px;
  line-height: 1.6;
}


.checkout-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr) 380px;

  gap: 24px;

  align-items: start;
}


.checkout-main {
  display: grid;
  gap: 18px;
}


.checkout-box {
  padding: 28px;

  border: 1px solid #e1e7f0;
  border-radius: 24px;

  background: #ffffff;
}


.checkout-box h2 {
  margin: 0 0 20px;

  font-size: 21px;
}


.checkout-plans,
.checkout-periods {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px;
}


.checkout-choice {
  display: flex;

  gap: 12px;

  padding: 17px;

  border: 1px solid #dfe5ef;
  border-radius: 17px;

  cursor: pointer;

  transition: .2s ease;
}


.checkout-choice:hover {
  border-color: #1268e8;
}


.checkout-choice:has(input:checked) {
  border-color: #1268e8;

  background: #f2f7ff;

  box-shadow:
    0 0 0 1px #1268e8;
}


.checkout-choice input {
  margin-top: 4px;
}


.checkout-choice-body {
  display: flex;
  flex-direction: column;

  gap: 6px;
}


.checkout-choice-body strong {
  color: #10265c;

  font-size: 17px;
}


.checkout-choice-body small {
  color: #69758c;

  line-height: 1.45;
}


.form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}


.field {
  display: flex;
  flex-direction: column;

  gap: 7px;
}


.field:first-child {
  grid-column: 1 / -1;
}


.field span {
  color: #43516b;

  font-size: 14px;
  font-weight: 650;
}


.field b {
  color: #d33;
}


.field input {
  min-height: 50px;

  padding: 0 14px;

  border: 1px solid #dfe5ef;
  border-radius: 13px;

  background: #fff;

  color: #17213a;

  font: inherit;
}


.field input:focus {
  border-color: #1268e8;
  outline: none;

  box-shadow:
    0 0 0 3px
    rgba(18,104,232,.10);
}


.checkout-help {
  margin: 15px 0 0;

  color: #8791a5;

  font-size: 13px;
  line-height: 1.5;
}


.legal-checkbox {
  display: flex;

  gap: 11px;

  margin: 13px 0;

  color: #46536b;

  font-size: 14px;
  line-height: 1.55;
}


.legal-checkbox input {
  flex: 0 0 auto;

  margin-top: 4px;
}


.order-summary {
  position: sticky;
  top: 95px;
}


.summary-card,
.summary-company {
  padding: 27px;

  border: 1px solid #e1e7f0;
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 18px 50px
    rgba(22,42,86,.07);
}


.summary-label {
  margin-bottom: 22px;

  color: #1268e8;

  font-size: 12px;
  font-weight: 850;

  letter-spacing: .09em;
}


.summary-row {
  display: flex;

  justify-content:
    space-between;

  gap: 20px;

  margin: 12px 0;

  color: #69758c;
}


.summary-row strong {
  color: #17213a;
}


.summary-divider {
  height: 1px;

  margin: 22px 0;

  background: #e6ebf2;
}


.summary-total {
  display: flex;

  justify-content:
    space-between;

  align-items:
    flex-end;

  gap: 20px;
}


.summary-total span {
  color: #69758c;
}


.summary-total strong {
  color: #10265c;

  font-size: 31px;
}


.checkout-pay {
  width: 100%;

  margin-top: 24px;

  border: 0;

  cursor: pointer;

  font: inherit;
}


.payment-message {
  margin-top: 13px;

  padding: 13px 15px;

  border-radius: 13px;

  font-size: 13px;
  line-height: 1.5;
}


.payment-info {
  background: #edf4ff;
  color: #36517c;
}


.payment-error {
  background: #fff0f0;
  color: #a63333;
}


.secure-payment {
  margin: 17px 0;

  color: #7c879a;

  font-size: 12px;
  line-height: 1.5;
}


.payment-methods {
  display: flex;
  flex-direction: column;

  gap: 5px;

  padding-top: 16px;

  border-top: 1px solid #e7ebf2;

  color: #69758c;

  font-size: 13px;
}


.payment-methods strong {
  color: #38455f;
}


.summary-company {
  margin-top: 15px;

  box-shadow: none;
}


.summary-company p {
  margin: 6px 0;

  color: #69758c;

  font-size: 13px;
}


.summary-company a {
  display: inline-block;

  margin-top: 8px;

  font-size: 13px;
}


.checkout-bottom-info {
  margin-top: 27px;
  padding: 28px;

  border: 1px solid #e1e7f0;
  border-radius: 24px;

  background: #ffffff;
}


.checkout-bottom-info h2 {
  margin-top: 0;

  font-size: 23px;
}


.checkout-bottom-info p {
  color: #56627a;

  line-height: 1.65;
}


@media (max-width: 900px) {

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

}


@media (max-width: 620px) {

  .checkout-plans,
  .checkout-periods,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field:first-child {
    grid-column: auto;
  }

  .checkout-box,
  .summary-card,
  .summary-company {
    padding: 21px;
  }

}


