:root{
  --bg:#fdfdfd;
  --fg:#1c1c1c;
  --muted:#7a7a7a;
  --card:#ffffff;
  --surface:#f7f7f7;
  --hairline:#e6e6e6;
  --border:#ececec;
  --radius:20px;
  --shadow-soft:0 1px 2px rgba(0,0,0,.04),0 8px 24px rgba(0,0,0,.04);
  --shadow-lift:0 1px 2px rgba(0,0,0,.03),0 20px 60px rgba(0,0,0,.06);
  --font:"Inter",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;border-color:var(--border);}
html{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;}
body{margin:0;background:var(--bg);color:var(--fg);font-family:var(--font);letter-spacing:-.011em;font-feature-settings:"cv11","ss01","ss03";}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:var(--font);letter-spacing:-.03em;margin:0;}
p{margin:0;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit;}

.container{width:100%;max-width:1240px;margin-inline:auto;padding-inline:1.5rem;}
.muted{color:var(--muted);}
.icon{width:16px;height:16px;display:inline-block;vertical-align:middle;}
.icon-sm{width:14px;height:14px;display:inline-block;vertical-align:middle;margin-right:6px;}

/* Header */
.header{position:sticky;top:0;z-index:50;background:rgba(253,253,253,.7);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid transparent;}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px;}
.logo{display:flex;align-items:center;gap:8px;}
.logo-mark{display:grid;place-items:center;width:28px;height:28px;border-radius:8px;background:var(--fg);color:var(--bg);font-size:13px;font-weight:600;}
.logo-text{font-size:15px;font-weight:600;letter-spacing:-.02em;}
.logo img{
  max-width: 140px
}
.logo-rodape img{
  max-width: 140px
}
.nav{display:none;gap:32px;align-items:center;}
.nav a{font-size:13.5px;color:var(--muted);transition:color .2s;}
.nav a:hover{color:var(--fg);}
@media (min-width:768px){.nav{display:flex;}}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:8px;border-radius:999px;font-weight:500;font-size:14px;padding:12px 20px;transition:all .2s;line-height:1;}
.btn-sm{padding:8px 16px;font-size:13px;}
.btn-lg{padding:14px 24px;font-size:14px;}
.btn-primary{background:var(--fg);color:var(--bg);}
.btn-primary:hover{opacity:.9;}
.btn-outline{border:1px solid var(--hairline);background:var(--bg);color:var(--fg);}
.btn-outline:hover{background:var(--surface);}


.btn2{display:inline-flex;align-items:center;gap:8px;border-radius:999px;font-weight:500;font-size:14px;padding:12px 20px;transition:all .2s;line-height:1;}
.btn-sm2{padding:8px 16px;font-size:13px;}
.btn-primary2{   background:#fff;
    color:#000;
    border:1px solid #000;}
    .btn-primary2:hover{
    background:#000;
    color:#fff;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

/* Hero */
.hero{padding-top:96px;padding-bottom:32px;}
@media(min-width:768px){.hero{padding-top:128px;}}
.hero-grid{display:grid;gap:64px;align-items:center;}
@media(min-width:1024px){.hero-grid{grid-template-columns:1.05fr 1fr;gap:80px;}}
.badge{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--hairline);background:var(--surface);border-radius:999px;padding:4px 12px;font-size:12px;color:var(--muted);}
.badge .dot{width:6px;height:6px;border-radius:999px;background:var(--fg);}
.h1{margin-top:24px;font-size:44px;font-weight:600;line-height:1.05;letter-spacing:-.035em;}
@media(min-width:768px){.h1{font-size:64px;}}
.lead{margin-top:24px;max-width:28rem;font-size:16px;line-height:1.6;color:var(--muted);}
.lead-sm{font-size:15px;}
.hero-actions{margin-top:36px;display:flex;flex-wrap:wrap;gap:12px;align-items:center;}
.hero-checks{margin-top:32px;display:flex;flex-wrap:wrap;gap:8px 24px;font-size:13px;color:var(--muted);}
.hero-checks span{display:inline-flex;align-items:center;gap:6px;}

/* Video Player */
.video-player{margin:0 auto;width:100%;max-width:440px;border-radius:16px;border:1px solid var(--hairline);background:var(--card);box-shadow:var(--shadow-lift);overflow:hidden;}
.video-bar{display:flex;align-items:center;gap:6px;padding:8px 12px;border-bottom:1px solid var(--hairline);}
.video-bar span{width:8px;height:8px;border-radius:999px;background:#e5e5e5;}
.video-frame{position:relative;aspect-ratio:16/10;background:var(--surface);overflow:hidden;}
.video-frame img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.9;}
.play-btn{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:56px;height:56px;border-radius:999px;background:rgba(255,255,255,.95);color:var(--fg);display:grid;place-items:center;box-shadow:var(--shadow-soft);transition:transform .2s;}
.play-btn:hover{transform:translate(-50%,-50%) scale(1.05);}
.play-btn svg{width:20px;height:20px;transform:translateX(1px);}

/* Sections */
.section{padding-top:128px;padding-bottom:128px;}
@media(min-width:768px){.section{padding-top:176px;padding-bottom:176px;}}
.section-xl{padding-top:140px;padding-bottom:140px;}
@media(min-width:768px){.section-xl{padding-top:180px;padding-bottom:180px;}}
.section-head{max-width:42rem;margin-inline:auto;text-align:center;}
.section-head.narrow{max-width:48rem;}
.eyebrow{font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:.18em;color:var(--muted);}
.eyebrow-wide{letter-spacing:.25em;color:#8A8A8A;}
.h2{margin-top:20px;font-size:36px;font-weight:600;line-height:1.1;letter-spacing:-.03em;}
@media(min-width:768px){.h2{font-size:48px;}}
.section-head .h2{margin-top:24px;}

/* Flow */
.flow-grid{margin-top:96px;display:grid;grid-template-columns:1fr;gap:56px;}
@media(min-width:640px){.flow-grid{grid-template-columns:1fr 1fr;}}
@media(min-width:768px){.flow-grid{margin-top:128px;grid-template-columns:repeat(5,1fr);gap:40px;}}
@media(min-width:1024px){.flow-grid{gap:64px;}}
.flow-item{display:flex;flex-direction:column;}
.flow-num{font-size:48px;font-weight:300;line-height:1;letter-spacing:-.02em;color:var(--muted);transition:color .25s;}
.flow-line{display:block;margin-top:24px;height:1px;width:40px;background:var(--hairline);transition:all .25s;}
.flow-title{margin-top:24px;display:flex;align-items:center;gap:8px;font-size:20px;font-weight:600;letter-spacing:-.01em;color:var(--fg);transition:color .25s;}
.flow-arrow{opacity:0;transform:translateX(-4px);transition:all .25s;}
.flow-desc{margin-top:12px;font-size:15px;line-height:1.6;color:var(--muted);}
.flow-item:hover .flow-num{color:var(--fg);}
.flow-item:hover .flow-line{width:100%;background:var(--fg);}
.flow-item:hover .flow-title{color:#000;}
.flow-item:hover .flow-arrow{opacity:1;transform:translateX(0);}

/* Editorial */
.editorial-grid{display:grid;gap:64px;}
@media(min-width:1024px){.editorial-grid{grid-template-columns:1fr 1fr;gap:96px;}}
.editorial-copy{display:flex;flex-direction:column;justify-content:center;}
.editorial-copy .h2{margin-top:20px;font-size:40px;}
@media(min-width:768px){.editorial-copy .h2{font-size:56px;line-height:1.05;}}
.bento{display:grid;grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(6,1fr);gap:16px;}
@media(min-width:768px){.bento{height:560px;}}
.bento>*{border-radius:28px;overflow:hidden;}
.bento img{width:100%;height:100%;object-fit:cover;display:block;}
.bento-a{grid-column:span 4;grid-row:span 4;background:var(--surface);}
.bento-b{grid-column:span 2;grid-row:span 2;border:1px solid var(--hairline);background:var(--card);padding:20px;display:flex;flex-direction:column;justify-content:space-between;}
.bento-c{grid-column:span 2;grid-row:span 2;}
.bento-d{grid-column:span 3;grid-row:span 2;border:1px solid var(--hairline);background:var(--card);padding:20px;display:flex;flex-direction:column;justify-content:space-between;}
.bento-e{grid-column:span 3;grid-row:span 2;}
.stat-label{font-size:11px;text-transform:uppercase;letter-spacing:.15em;color:var(--muted);}
.stat-value{font-size:40px;font-weight:600;line-height:1;letter-spacing:-.03em;}

/* Testimonials */
.testimonials{margin-top:80px;display:grid;gap:20px;}
@media(min-width:768px){.testimonials{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.testimonials{grid-template-columns:repeat(4,1fr);}}
.testimonial{margin:0;display:flex;flex-direction:column;justify-content:space-between;border:1px solid var(--hairline);background:var(--card);border-radius:28px;padding:32px;}
.testimonial blockquote{margin:0;font-size:15px;line-height:1.6;color:var(--fg);}
.testimonial figcaption{margin-top:40px;display:flex;align-items:center;gap:12px;}
.testimonial figcaption img{width:36px;height:36px;border-radius:999px;object-fit:cover;filter:grayscale(1);}
.t-name{font-size:13px;font-weight:500;}
.t-role{font-size:12px;color:var(--muted);}

/* Pricing */
.toggle{margin-top:40px;display:inline-flex;align-items:center;gap:4px;border:1px solid var(--hairline);background:var(--surface);border-radius:999px;padding:4px;}
.toggle-btn{border-radius:999px;padding:6px 16px;font-size:13px;font-weight:500;color:var(--muted);display:inline-flex;align-items:center;gap:8px;transition:all .2s;}
.toggle-btn.active{background:var(--fg);color:var(--bg);}
.toggle-chip{border-radius:999px;padding:2px 6px;font-size:10px;font-weight:600;background:rgba(28,28,28,.1);color:var(--fg);}
.toggle-btn.active .toggle-chip{background:rgba(253,253,253,.15);color:var(--bg);}

.pricing-grid{max-width:64rem;margin:64px auto 0;display:grid;gap:20px;align-items:stretch;}
@media(min-width:1024px){.pricing-grid{grid-template-columns:repeat(3,1fr);}}
.plan{display:flex;flex-direction:column;border:1px solid var(--hairline);background:var(--card);border-radius:28px;padding:32px;transition:box-shadow .2s;}
.plan.featured{border-color:var(--fg);background:var(--fg);color:var(--bg);box-shadow:var(--shadow-lift);}
.plan-head{display:flex;align-items:center;justify-content:space-between;}
.plan-name{font-size:16px;font-weight:600;}
.plan-badge{border-radius:999px;background:rgba(253,253,253,.15);padding:2px 8px;font-size:10px;font-weight:500;}
.plan-desc{margin-top:8px;font-size:13px;color:var(--muted);}
.plan.featured .plan-desc{color:rgba(253,253,253,.7);}
.plan-price{margin-top:32px;display:flex;align-items:baseline;gap:4px;}
.plan-price .value{font-size:44px;font-weight:600;letter-spacing:-.03em;}
.plan-price .per{font-size:13px;color:var(--muted);}
.plan.featured .plan-price .per{color:rgba(253,253,253,.7);}
.plan-annual{margin-top:8px;min-height:18px;font-size:12.5px;color:var(--muted);}
.plan.featured .plan-annual{color:rgba(253,253,253,.6);}
.plan-cta{margin-top:24px;display:inline-flex;justify-content:center;align-items:center;border-radius:999px;padding:10px 16px;font-size:13px;font-weight:500;transition:all .2s;}
.plan .plan-cta{border:1px solid var(--fg);color:var(--fg);background:transparent;}
.plan .plan-cta:hover{background:var(--fg);color:var(--bg);}
.plan.featured .plan-cta{background:var(--bg);color:var(--fg);border:1px solid var(--bg);}
.plan.featured .plan-cta:hover{opacity:.9;}
.plan-groups{margin-top:32px;display:flex;flex-direction:column;gap:24px;}
.plan-group h4{font-size:11px;font-weight:500;text-transform:uppercase;letter-spacing:.15em;color:var(--muted);margin:0;}
.plan.featured .plan-group h4{color:rgba(253,253,253,.7);}
.plan-group ul{margin-top:12px;display:flex;flex-direction:column;gap:12px;}
.plan-group li{display:flex;align-items:flex-start;gap:8px;font-size:13.5px;line-height:1.4;}
.plan-group li svg{margin-top:2px;flex-shrink:0;width:16px;height:16px;color:var(--fg);}
.plan.featured .plan-group li{color:rgba(253,253,253,.9);}
.plan.featured .plan-group li svg{color:var(--bg);}

/* CTA Banner */
.cta-banner{border:1px solid var(--hairline);background:var(--card);border-radius:36px;padding:80px 32px;box-shadow:var(--shadow-soft);display:grid;gap:40px;align-items:center;}
@media(min-width:768px){.cta-banner{padding:80px;grid-template-columns:auto 1fr auto;}}
.cta-icon{width:56px;height:56px;border-radius:16px;display:grid;place-items:center;}
.cta-icon svg {
    position: absolute;
    margin-top: 0px;
    margin-left: 0px;
    width: 60px;
    height: 60px;
}
.cta-title{font-size:30px;font-weight:600;line-height:1.1;letter-spacing:-.03em;}
@media(min-width:768px){.cta-title{font-size:40px;}}

/* Footer */
.footer{padding-top:64px;padding-bottom:48px;}
.footer-grid{display:grid;gap:48px;}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(4,1fr);}}
.footer-tag{margin-top:16px;font-size:13px;color:var(--muted);}
.footer-grid h4{font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:.15em;color:var(--muted);}
.footer-grid ul{margin-top:20px;display:flex;flex-direction:column;gap:12px;}
.footer-grid li a{font-size:14px;color:var(--fg);transition:opacity .2s;}
.footer-grid li a:hover{opacity:.6;}
.footer-bottom{margin-top:64px;padding-top:24px;border-top:1px solid var(--hairline);display:flex;flex-direction:column;gap:16px;align-items:flex-start;justify-content:space-between;}
@media(min-width:768px){.footer-bottom{flex-direction:row;align-items:center;}}
.footer-bottom p{font-size:12.5px;color:var(--muted);}
.socials{display:flex;gap:8px;}
.socials a{display:grid;place-items:center;width:36px;height:36px;border-radius:999px;color:var(--muted);transition:all .2s;}
.socials a svg{width:16px;height:16px;}
.socials a:hover{background:var(--surface);color:var(--fg);}



/* Animations */
@keyframes lx-fade-up{from{opacity:0;transform:translateY(12px);}to{opacity:1;transform:translateY(0);}}
.fade-up{animation:lx-fade-up .8s cubic-bezier(.22,1,.36,1) both;}


.plan-includes {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #222;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.plan-includes svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.plan.featured .plan-includes {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}


.enterprise-plan {
  width: 100%;
  max-width: 1040px;
  margin: 64px auto 0;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) 1px minmax(420px, 1.7fr) auto;
  align-items: center;
  gap: 30px;

  background: #ffffff;
  border: 1px solid rgba(15, 15, 15, 0.12);
  border-radius: 22px;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02);
}

.enterprise-plan__intro {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.enterprise-plan__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #111111;
  border-radius: 16px;
}

.enterprise-plan__icon svg {
  width: 27px;
  height: 27px;
}

.enterprise-plan__copy {
  min-width: 0;
}

.enterprise-plan__eyebrow {
  display: block;
  margin-bottom: 8px;

  color: #5f6368;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.enterprise-plan__copy h2 {
  max-width: 360px;
  margin: 0;

  color: #111111;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.enterprise-plan__copy p {
  max-width: 390px;
  margin: 14px 0 0;

  color: #6c6c6c;
  font-size: 13px;
  line-height: 1.5;
}

.enterprise-plan__divider {
  width: 1px;
  height: 132px;
  background: rgba(15, 15, 15, 0.1);
}

.enterprise-plan__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px 28px;
}

.enterprise-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}

.enterprise-feature__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #202020;
  background: #f4f4f4;
  border-radius: 50%;
}

.enterprise-feature__icon svg {
  width: 20px;
  height: 20px;
}

.enterprise-feature h3 {
  margin: 1px 0 5px;

  color: #151515;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
}

.enterprise-feature p {
  margin: 0;

  color: #717171;
  font-size: 11px;
  line-height: 1.45;
}

.enterprise-plan__action {
  min-width: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
}

.enterprise-plan__button {
  width: 100%;
  min-height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #111111;
  border: 1px solid #111111;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.enterprise-plan__button:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.enterprise-plan__action span {
  max-width: 165px;
  color: #777777;
  font-size: 10px;
  line-height: 1.35;
}

/* Tablet */
@media (max-width: 980px) {
  .enterprise-plan {
    max-width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }

  .enterprise-plan__divider {
    width: 100%;
    height: 1px;
  }

  .enterprise-plan__action {
    align-items: flex-start;
    text-align: left;
  }

  .enterprise-plan__button {
    width: auto;
  }

  .enterprise-plan__action span {
    max-width: none;
  }
}

/* Celular */
@media (max-width: 640px) {
  .enterprise-plan {
    max-width: calc(100% - 28px);
    margin-top: 42px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .enterprise-plan__intro {
    flex-direction: column;
  }

  .enterprise-plan__copy h2 {
    font-size: 21px;
  }

  .enterprise-plan__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .enterprise-plan__action,
  .enterprise-plan__button {
    width: 100%;
  }

  .enterprise-plan__action {
    align-items: stretch;
    text-align: center;
  }
}

/* ============================================================
   LANDING — três seções adaptadas do conceito Lovable
   Mantém HTML/CSS/JS nativos do projeto original
   ============================================================ */
.modules-head{max-width:48rem;margin-inline:auto;text-align:center}.modules-lead{margin:20px auto 0}.modules-tabs{margin-top:44px;display:flex;flex-wrap:wrap;justify-content:center;gap:8px}.modules-tab{appearance:none;display:inline-flex;align-items:center;border:1px solid var(--hairline);background:var(--card);color:var(--fg);border-radius:999px;padding:10px 18px;font:inherit;font-size:13px;font-weight:500;line-height:1;cursor:pointer;transition:background .2s,color .2s,border-color .2s,transform .2s}.modules-tab:hover{background:var(--surface);transform:translateY(-1px)}.modules-tab.active{background:var(--fg);color:var(--bg);border-color:var(--fg)}.modules-window{margin:40px auto 0;width:85%;border:1px solid var(--hairline);background:var(--card);border-radius:16px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,.03),0 10px 30px rgba(0,0,0,.04)}.modules-bar{display:flex;align-items:center;gap:6px;padding:11px 14px;border-bottom:1px solid var(--hairline);background:#fafafa}.modules-bar span{display:block;width:10px;height:10px;border-radius:50%;border:1px solid #171717}.modules-bar span:first-child{background:#171717}.modules-bar span:nth-child(2){background:#a7a7a7;border-color:#a7a7a7}.modules-bar span:last-child{background:#fff}.modules-frame{display:grid;place-items:center;height:340px;background:#f5f5f3;color:var(--muted);font-size:14px;letter-spacing:.02em}@media(min-width:768px){.modules-window{width:72%}.modules-frame{height:390px}}@media(max-width:640px){.modules-window{width:100%}.modules-tabs{justify-content:flex-start;flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px}.modules-tab{flex:0 0 auto}.modules-frame{height:230px}}

.pricing-grid-4{max-width:1240px;margin:58px auto 0;display:grid;grid-template-columns:1fr;gap:18px;align-items:stretch}.plan4{position:relative;display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--hairline);background:var(--card);border-radius:24px;padding:32px 26px;min-height:590px;transition:transform .25s ease,box-shadow .25s ease}.plan4:hover{transform:translateY(-2px);box-shadow:var(--shadow-lift)}.plan4.featured{border-color:#171717;box-shadow:0 1px 2px rgba(0,0,0,.04),0 22px 54px rgba(0,0,0,.075)}.plan4-eyebrow{display:inline-flex;width:fit-content;padding:7px 10px;border-radius:8px;background:var(--surface);font-size:10.5px;font-weight:600;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}.plan4-name{margin-top:16px;font-size:22px;font-weight:600;letter-spacing:-.02em;color:var(--fg)}.plan4-desc{margin-top:10px;min-height:58px;font-size:13.5px;line-height:1.5;color:var(--muted)}.plan4-price{margin-top:24px;display:flex;align-items:baseline;gap:6px}.plan4-price .value{font-size:38px;font-weight:600;letter-spacing:-.035em;color:var(--fg);line-height:1}.plan4-price .per{font-size:13px;color:var(--muted)}.plan4-price .custom{font-size:25px;font-weight:600;letter-spacing:-.02em}.plan4-annual{margin-top:7px;min-height:17px;font-size:12px;color:var(--muted)}.plan4-ctas{margin-top:20px;display:flex;flex-direction:column;gap:8px}.plan4-btn{display:inline-flex;align-items:center;justify-content:center;min-height:42px;border-radius:999px;padding:10px 16px;font-size:13px;font-weight:500;transition:.2s}.plan4-btn.primary{background:var(--fg);color:var(--bg);border:1px solid var(--fg)}.plan4-btn.ghost{background:transparent;color:var(--fg);border:1px solid var(--hairline)}.plan4-btn:hover{transform:translateY(-1px)}.plan4-list{margin-top:24px;display:flex;flex-direction:column;gap:12px}.plan4-list li{display:flex;align-items:flex-start;gap:9px;font-size:13px;line-height:1.42;color:var(--fg)}.plan4-list svg{width:15px;height:15px;margin-top:2px;flex:none}.plan4-ribbon{position:absolute;top:17px;right:-43px;transform:rotate(35deg);background:var(--fg);color:var(--bg);font-size:9.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:6px 48px}.compare{max-width:1120px;margin:72px auto 0;border:1px solid var(--hairline);border-radius:22px;background:var(--card);overflow:hidden}.compare-head,.compare-row{display:grid;grid-template-columns:1.45fr repeat(4,1fr);align-items:center}.compare-head{padding:17px 20px;background:#fafafa;border-bottom:1px solid var(--hairline);font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}.compare-head .col,.compare-row .cell{text-align:center}.compare-head .col-featured{color:var(--fg);background:rgba(0,0,0,.035);border-radius:7px;padding:6px}.compare-row{padding:14px 20px;border-bottom:1px solid var(--hairline)}.compare-row:last-child{border-bottom:0}.compare-row .label{font-size:13px;font-weight:500;color:var(--fg)}.compare-row .cell{font-size:12.5px;color:var(--muted)}.compare-row .cell.featured{padding:6px;background:rgba(0,0,0,.025);border-radius:7px;color:var(--fg);font-weight:500}@media(min-width:650px){.pricing-grid-4{grid-template-columns:repeat(2,1fr)}}@media(min-width:1120px){.pricing-grid-4{grid-template-columns:repeat(4,1fr)}}@media(max-width:800px){.compare{overflow-x:auto}.compare-head,.compare-row{min-width:760px}}

.cta-card{position:relative;display:grid;grid-template-columns:1fr;align-items:center;gap:28px;overflow:hidden;border:1px solid var(--hairline);background:var(--card);border-radius:30px;padding:50px 36px;box-shadow:0 1px 2px rgba(0,0,0,.03),0 20px 55px rgba(0,0,0,.045)}.cta-card__content{position:relative;z-index:2}.cta-badge{display:inline-flex;align-items:center;gap:8px;width:fit-content;border:1px solid var(--hairline);background:var(--surface);color:var(--fg);border-radius:999px;padding:7px 12px;font-size:12px;font-weight:500}.cta-badge svg{width:13px;height:13px}.cta-card h3{margin-top:22px;max-width:780px;font-size:34px;line-height:1.08;letter-spacing:-.035em;font-weight:600;color:var(--fg)}.cta-card h3 .soft{color:#9a9a9a}.cta-lead{margin-top:18px;max-width:560px;font-size:15px;line-height:1.55;color:var(--muted)}.cta-actions{margin-top:30px;display:flex;flex-wrap:wrap;gap:10px}.cta-visual{display:flex;align-items:center;justify-content:center;min-height:150px}.cta-visual svg{width:min(300px,80%);height:auto;color:var(--fg);opacity:.075}@media(min-width:900px){.cta-card{grid-template-columns:1.45fr .75fr;padding:66px 62px;gap:44px}.cta-card h3{font-size:43px}}@media(max-width:899px){.cta-visual{position:absolute;right:-30px;bottom:-40px;width:230px;opacity:.7}.cta-visual svg{width:220px}.cta-card{padding-right:45px}}@media(max-width:560px){.cta-card{padding:38px 24px}.cta-card h3{font-size:29px}.cta-actions .btn{width:100%}.cta-visual{display:none}}
