
:root{
  --green:#1fc855;
  --green-dark:#16a34a;
  --green-soft:#eef9f1;
  --text:#222635;
  --muted:#5f6675;
  --line:#e7eaee;
  --bg:#ffffff;
  --blue:#2f97ff;
  --blue-soft:#eff7ff;
  --orange:#f59a17;
  --orange-soft:#fff5ea;
  --purple:#9b57f3;
  --purple-soft:#f5efff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;color:var(--text);background:#fff;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.container{width:min(1280px, calc(100% - 64px));margin:0 auto}

.site-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.94);backdrop-filter:blur(10px);border-bottom:1px solid rgba(231,234,238,.9)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:92px}
.brand img{width:167px}
.main-nav{display:flex;align-items:center;gap:28px;font-size:15px;font-weight:600;color:#101419}
.main-nav>a:not(.btn){white-space:nowrap}
.main-nav>a:not(.btn):hover{color:var(--green-dark)}
.menu-toggle{display:none;background:none;border:none;font-size:28px;cursor:pointer}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:15px 24px;border-radius:12px;font-weight:700;font-size:15px;transition:.18s ease}
.btn-small{padding:11px 18px;font-size:14px}
.btn-primary{background:var(--green);color:#fff;border:1px solid var(--green)}
.btn-primary:hover{background:#1ab84e}
.btn-outline{background:#fff;border:1px solid #dadddf;color:#18202c}
.btn-outline:hover{background:#fafafa}
.btn-white{background:#fff;color:#109241;border:1px solid rgba(255,255,255,.75)}
.light-border{color:#fff;border-color:rgba(255,255,255,.72);background:transparent}
.play-icon{width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:10px solid #111}

.hero{padding:20px 0 24px}
.hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);align-items:center;gap:28px}
.pill{display:inline-flex;align-items:center;padding:6px 12px;border-radius:999px;background:var(--green-soft);color:#24944b;font-size:12px;font-weight:700;line-height:1}
.hero-copy h1{font-size:65px;line-height:.98;letter-spacing:-.055em;margin:18px 0 18px;font-weight:800}
.hero-copy h1 span{color:var(--green-dark)}
.hero-copy p{font-size:18px;line-height:1.7;color:var(--muted);max-width:560px;margin:0}
.hero-actions{display:flex;align-items:center;gap:14px;margin-top:28px;flex-wrap:wrap}
.hero-note{margin-top:26px;display:flex;align-items:flex-start;gap:12px;max-width:560px}
.note-badge{display:grid;place-items:center;width:30px;height:30px;border-radius:999px;background:var(--green-soft);color:var(--green-dark);flex:0 0 30px}
.hero-note p{margin:0;font-size:15px;line-height:1.6;color:#4a5561}

.hero-visual{display:flex;justify-content:flex-end}
.hero-phones{position:relative;width:100%;max-width:720px;height:600px}
.hero-glow{position:absolute;left:70px;right:40px;bottom:40px;height:150px;background:linear-gradient(90deg,rgba(31,200,85,.09),rgba(169,124,255,.08));border-radius:34px;z-index:0}
.phone{position:absolute;width:190px;border-radius:20px;background:#0f0f10;padding:6px;box-shadow:0 10px 30px rgba(20,24,32,.18);z-index:1}
.phone::before{content:"";position:absolute;top:6.5px;left:50%;transform:translateX(-50%);width:36%;height:14px;border-radius:0 0 12px 12px;background:#090909;z-index:3}
.phone-screen{overflow:hidden;border-radius:15px;aspect-ratio:9/19.5;background:#fff}
.phone-screen img{width:100%;height:100%;object-fit:cover}
.phone-a{left:20px;top:68px;transform:rotate(-6deg)}
.phone-b{left:205px;top:12px;width: 220px; z-index: 3;}
.phone-c{left:420px;top:68px;transform:rotate(6deg)}
.phone-d{right:0;top:62px;transform:rotate(4deg)}

.section{padding:20px 0}
.cards{display:grid;gap:22px}
.four-cols{grid-template-columns:repeat(4,minmax(0,1fr))}
.six-cols{grid-template-columns:repeat(6,minmax(0,1fr))}
.mini-card,.segment-card{border:1px solid var(--line);border-radius:20px;background:#fff;padding:24px;box-shadow:0 1px 0 rgba(18,24,32,.02)}
.mini-card h3,.segment-card h3{margin:16px 0 10px;font-size:17px;line-height:1.25}
.mini-card p,.segment-card p{margin:0;color:var(--muted);font-size:15px;line-height:1.55}
.card-icon,.segment-icon{width:52px;height:52px;border-radius:16px;display:grid;place-items:center}
.card-icon svg,.segment-icon svg{width:25px;height:25px}
.green .card-icon{background:var(--green-soft);color:var(--green-dark)}
.blue .card-icon{background:var(--blue-soft);color:var(--blue)}
.orange .card-icon{background:var(--orange-soft);color:var(--orange)}
.purple .card-icon{background:var(--purple-soft);color:var(--purple)}
.mini-card a{display:inline-flex;align-items:center;gap:6px;margin-top:18px;font-size:14px;font-weight:700}
.mini-card.green a{color:var(--green-dark)}
.mini-card.blue a{color:var(--blue)}
.mini-card.orange a{color:var(--orange)}
.mini-card.purple a{color:var(--purple)}

.section-title{margin:0 0 26px;font-size:24px;line-height:1.2;font-weight:800;letter-spacing:-.02em}
.section-title.center{text-align:center}
.flow-grid{display:grid;grid-template-columns:repeat(13,minmax(0,1fr));align-items:start;gap:10px}
.flow-step{text-align:center}
.flow-icon{width:56px;height:56px;border-radius:999px;display:grid;place-items:center;margin:0 auto 14px;border:1px solid #e4ece7;color:var(--green-dark);background:#fff}
.flow-step strong{display:block;font-size:16px;margin-bottom:7px}
.flow-step small{display:block;font-size:13px;line-height:1.45;color:var(--muted)}
.flow-line{height:2px;background:repeating-linear-gradient(90deg,#8fe0a7 0 8px, transparent 8px 14px);margin-top:27px}

.feature-panel{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(0,.97fr);gap:26px;align-items:center;border:1px solid var(--line);border-radius:22px;padding:28px}
.feature-panel.reverse{grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr)}
.green-tint{background:linear-gradient(180deg,#fbfefc 0%,#f9fcfa 100%)}
.blue-tint{background:linear-gradient(180deg,#fbfdff 0%,#f8fbff 100%)}
.orange-tint{background:linear-gradient(180deg,#fffdfb 0%,#fffaf5 100%)}
.feature-copy h3{font-size:20px;line-height:1.3;margin:0 0 12px;font-weight:800}
.feature-copy p{font-size:15px;line-height:1.7;color:var(--muted);margin:0 0 18px}
.feature-head{width:44px;height:44px;border-radius:14px;display:grid;place-items:center;margin-bottom:16px}
.feature-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.feature-title-row .feature-head {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

.feature-title-row h3 {
  margin: 0;
  line-height: 1.2;
}



.feature-head.green{background:var(--green-soft);color:var(--green-dark)}
.feature-head.blue{background:var(--blue-soft);color:var(--blue)}
.feature-head.orange{background:var(--orange-soft);color:var(--orange)}
.bullet-list{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.bullet-list li{position:relative;padding-left:24px;color:#384251;font-size:15px}
.bullet-list li::before{content:"";position:absolute;left:0;top:6px;width:8px;height:8px;border-radius:999px}
.green-list li::before{background:var(--green-dark)}
.blue-list li::before{background:var(--blue)}
.orange-list li::before{background:var(--orange)}

.docs-layout{display:flex;align-items:center;gap:20px}
.small-phone{position:relative;width:170px;flex:0 0 170px;transform:none;left:auto;top:auto;right:auto}
.pdf-preview{width:295px;max-width:100%;background:#fff;border:1px solid #eaedf0;border-radius:18px;padding:18px;box-shadow:0 6px 22px rgba(17,24,39,.06)}
.pdf-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.pdf-top img{width:78px}
.pdf-top span{display:inline-flex;background:#ffefeb;color:#d64a32;font-weight:700;font-size:12px;padding:5px 9px;border-radius:8px}
.pdf-preview h4{margin:0 0 6px;font-size:20px}
.pdf-preview p{margin:0 0 14px;color:#757d88;font-size:14px}
.pdf-preview ul{margin:0;padding:0;list-style:none}
.pdf-preview li{display:flex;justify-content:space-between;gap:14px;padding:10px 0;border-bottom:1px solid #eef1f3;font-size:14px;color:#344050}
.pdf-total{display:flex;justify-content:space-between;align-items:center;padding-top:12px}
.pdf-total span{font-weight:800;letter-spacing:.02em}
.pdf-total strong{font-size:22px;color:#16a34a}
.pdf-footer{margin-top:14px;padding:10px 14px;background:#19c85d;color:#fff;border-radius:12px;text-align:center;font-size:13px;font-weight:700}

.single-board .image-board,.sales-side-card{background:#fff;border:1px solid #edf0f3;border-radius:18px;padding:12px;box-shadow:0 6px 16px rgba(15,23,42,.04)}
.image-board img,.sales-side-card img{width:100%;border-radius:12px}
.sales-layout{display:flex;align-items:center;gap:18px}
.slim-phone{position:relative;width:182px;flex:0 0 182px;transform:none;left:auto;top:auto;right:auto}
.sales-side-card{width:250px;max-width:100%}

.segments{padding-top:22px}
.segment-card{text-align:center;padding:24px 18px}
.segment-icon{margin:0 auto;background:#f5faf7;color:#20b858}

.growth-tools{padding-top:16px}
.tools-footnote{text-align:center;color:#767f8c;font-size:14px;line-height:1.6;margin:18px 0 0}

.final-cta{padding:30px 0 22px}
.cta-box{background:linear-gradient(135deg,#18bd4d 0%, #14a944 100%);border-radius:18px;padding:30px 34px;color:#fff;display:flex;justify-content:space-between;align-items:center;gap:24px}
.cta-copy h2{font-size:22px;line-height:1.3;margin:0 0 8px;font-weight:800}
.cta-copy p{margin:0;color:#e8fff0;font-size:15px}
.cta-buttons{display:flex;gap:14px;flex-wrap:wrap}

.site-footer{padding:16px 0 28px;background:#fff}
.footer-grid{display:grid;grid-template-columns:1.3fr repeat(4,1fr);gap:28px;padding-top:10px}
.footer-brand img{width:110px;margin-bottom:12px}
.footer-brand p{margin:0 0 12px;color:#6a7280;font-size:14px;line-height:1.55;max-width:230px}
.socials{display:flex;gap:8px;color:#888f9a;font-size:13px}
.site-footer h4{margin:0 0 12px;font-size:14px}
.site-footer a{display:block;color:#6a7280;font-size:14px;line-height:1.7;margin-bottom:4px}
.footer-bottom{border-top:1px solid #eceff3;margin-top:18px;padding-top:16px;display:flex;justify-content:space-between;gap:12px;color:#7a8390;font-size:13px}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}

.pdf-image{ width: 300px;}
.agenda-mes{ width: 200px;}
.play-badge img {
    width: 210px;
}


@media (max-width: 1180px){
  .hero-grid,.feature-panel,.feature-panel.reverse{grid-template-columns:1fr}
  .hero-visual{justify-content:center}
  .four-cols{grid-template-columns:repeat(2,minmax(0,1fr))}
  .six-cols{grid-template-columns:repeat(3,minmax(0,1fr))}
  .flow-grid{grid-template-columns:repeat(7,minmax(0,1fr));gap:18px}
  .flow-line{display:none}
  .footer-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width: 860px){
  .container{width:min(100% - 24px,1280px)}
  .menu-toggle{display:block}
  .main-nav{display:none;position:absolute;top:92px;left:0;right:0;background:#fff;padding:18px 24px;border-bottom:1px solid var(--line);flex-direction:column;align-items:flex-start;gap:14px}
  .main-nav.open{display:flex}
  .hero{padding-top:26px}
  .hero-copy h1{font-size:48px}
  .hero-copy p{font-size:16px}
  .hero-phones{max-width:100%;height:400px;transform:scale(.86);transform-origin:top center}
  .four-cols,.six-cols,.footer-grid{grid-template-columns:1fr}
  .docs-layout,.sales-layout{flex-direction:column}
  .cta-box,.footer-bottom{flex-direction:column;align-items:flex-start}
}

@media (max-width: 760px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
    margin-inline: auto;
  }

  .hero {
    padding: 28px 0 44px;
    overflow: hidden;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .hero-copy {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-note {
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .hero-phones {
    position: relative;
    width: 340px;
    height: 320px;
    margin-inline: auto;
    transform: none;
  }

  .phone {
    width: 128px;
    border-width: 3px;
    padding: 4px;
    border-radius: 22px;
  }

  .phone-screen {
    border-radius: 17px;
  }

  .phone::before {
    top: 4px;
    height: 10px;
  }

  .phone-a {
    left: 0;
    top: 52px;
    z-index: 1;
    transform: rotate(-7deg);
  }

  .phone-b {
    left: 50%;
    top: 0;
    z-index: 4;
    transform: translateX(-50%);
  }

  .phone-c {
    right: 0;
    left: auto;
    top: 52px;
    z-index: 2;
    transform: rotate(7deg);
  }

  .phone-d {
    display: none;
  }

  .hero-glow {
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 100px;
  }

  .cards {
    width: 100%;
  }

  .four-cols,
  .six-cols {
    grid-template-columns: 1fr;
  }

  .mini-card,
  .segment-card {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .section-title {
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    text-align: left;
    align-items: center;
  }

  .flow-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .flow-step strong,
  .flow-step small {
    text-align: left;
  }

  .flow-line {
    display: none;
  }

  .feature-panel,
  .feature-panel.reverse {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    padding: 20px;
  }

  .feature-copy {
    text-align: left;
  }

  .docs-layout,
  .sales-layout {
    width: 100%;
    justify-content: center;
  }

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

.feature-title-row {
  align-items: center;
  gap: 12px;
}

.feature-title-row .feature-head {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
}

.feature-title-row h3 {
  font-size: 20px;
}

}
