@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --green: #21bf62;
    --green-dark: #07934a;
    --green-soft: #eefcf5;
    --green-soft-2: #f4fffa;
    --blue: #1685ee;
    --dark: #07142f;
    --text: #263247;
    --muted: #6f7b8e;
    --line: #e5edf3;
    --red: #ff7a73;
    --red-soft: #fff1f0;
    --white: #fff;
    --shadow: 0 22px 60px rgba(23, 38, 56, .10);
    --shadow-soft: 0 16px 44px rgba(23, 38, 56, .07);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

.container {
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
}

.btWhats{
    background: #0cc042;
    display: block;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: fixed;
    font-size: 30px;
    padding: 1px 13px 2px 15px;
    color: #fff;
    bottom: 50px;
    z-index: 999;
    right: 30px;
    text-align: center;
    animation: animate 3s linear infinite;
    transition: 0.3s;
}

@keyframes animate{
    
    0%{
        box-shadow: 0 0 0 0 rgba(12,192,66,.7); 
    }
    
    40%{
        box-shadow: 0 0 0 10px rgba(12,192,66,0); 
    }
    
    80%{
        box-shadow: 0 0 0 10px rgba(12,192,66,0); 
    }
    
    100%{
        box-shadow: 0 0 0 0 rgba(12,192,66,0); 
    }
}


/* HEADER */
.header {
    height: 66px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__content {
    height: 66px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.logo__icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 8px 18px rgba(33, 191, 98, .24);
}

.logo__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.logo strong {
    color: #0c1833;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.logo strong span {
    color: var(--green);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 0 auto;
}

.menu a {
    color: #647084;
    font-weight: 700;
    font-size: 13px;
    transition: color .2s ease;
}

.menu a:hover {
    color: var(--green-dark);
}

.header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.login {
    font-weight: 800;
    color: #162033;
}

.btn {
    min-height: 44px;
    padding: 0 24px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(135deg, #12a954, #28d06e);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 13px 28px rgba(33, 191, 98, .26);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(33, 191, 98, .32);
}

.btn--small {
    min-height: 38px;
    padding: 0 19px;
    border-radius: 13px;
    font-size: 13px;
}

.btn--ghost {
    background: #f2fbf6;
    color: var(--green-dark);
    border: 1px solid #d7efe1;
    box-shadow: none;
}

.btn--full {
    padding: 17px;
    font-size: 1rem;
    width: 100%;
}

.btn--white {
    background: #fff;
    color: var(--green-dark);
    box-shadow: none;
}

.menuButton {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.menuButton span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--dark);
    border-radius: 999px;
}

/* HERO */
.hero {
    min-height: 690px;
    padding: 80px 0 95px;
    background:
        radial-gradient(circle at 75% 17%, rgba(33, 191, 98, .16), transparent 31%),
        linear-gradient(90deg, #fff 0%, #fff 48%, #f2fff8 100%);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.02fr;
    align-items: center;
    gap: 74px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 17px;
    border: 1px solid #c9ecdc;
    background: #f1fbf6;
    color: #148346;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
}

.pill i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(33, 191, 98, .12);
}

.hero h1 {
    max-width: 720px;
    color: var(--dark);
    font-size: clamp(42px, 5vw, 60px);
    line-height: .96;
    letter-spacing: -1px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--green);
}

.hero__text > p {
    max-width: 650px;
    color: #707b8d;
    font-size: 20px;
    margin: 28px 0 28px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 40px;
}

.hero .btn {
    min-width: 185px;
    min-height: 60px;
    border-radius: 13px;
    font-size: 16px;
}

.play {
    color: var(--green-dark);
    font-size: 18px;
}

.checks {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px 31px;
    color: #717d8e;
    font-size: 15px;
}

.checks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checks li::before {
    content: "✓";
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border: 2px solid #62bd91;
    color: #0c9850;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.hero__visual {
    display: grid;
    place-items: center;
}

.appMock {
        position: relative;
    width: min(100%, 570px);
    height: auto;
    background: #f4f8ff;
    border-radius: 20px;
    padding: 24px 24px;
    box-shadow: 0 34px 84px rgba(16, 64, 42, .16), 0 0 95px rgba(33, 191, 98, .28);
}

.appMock--hero::after {
    content: "";
    position: absolute;
    inset: -35px;
    z-index: -1;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(33, 191, 98, .18), transparent 65%);
}

.browserBar {
    height: 27px;
    background: #202938;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.browserBar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.browserBar span:nth-child(2) {
    background: #f59e0b;
}

.browserBar span:nth-child(3) {
    background: #22c55e;
}

.browserBar div {
    height: 10px;
    width: 170px;
    border-radius: 99px;
    background: #4b5563;
    margin-left: 20px;
}

.appShell {
    display: grid;
    grid-template-columns: 34px 128px 1fr 118px;
    height: 230px;
    background: #fff;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 25px 38px rgba(7, 20, 47, .20);
}

.appSidebar {
    background: #0869ca;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 17px;
    padding-top: 20px;
}

.appSidebar b {
    width: 13px;
    height: 13px;
    border-radius: 4px;
    background: rgba(255,255,255,.65);
}

.contactList {
    background: #f5f8fc;
    padding: 16px 9px;
    border-right: 1px solid #e3eaf4;
}

.contactList small {
    display: block;
    height: 20px;
    background: #e3eaf4;
    border-radius: 20px;
    color: transparent;
    margin-bottom: 13px;
}

.contactList article {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.contactList i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e4a26f, #9e6b43);
    flex: none;
}

.contactList b {
    display: block;
    width: 68px;
    height: 7px;
    background: #475569;
    border-radius: 99px;
    color: transparent;
    margin-bottom: 5px;
}

.contactList span {
    display: block;
    width: 82px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 99px;
    color: transparent;
}

.chatArea {
    padding: 17px 18px;
    background: #fff;
}

.chatArea h4,
.clientInfo h4 {
    width: 118px;
    height: 10px;
    background: #1f2937;
    border-radius: 99px;
    color: transparent;
    margin-bottom: 18px;
}

.bubble {
    max-width: 120px;
    height: 28px;
    border-radius: 8px;
    background: #eef2f7;
    margin-bottom: 11px;
    color: transparent;
}

.bubble--out {
    margin-left: auto;
    background: #1685ee;
}

.clientInfo {
    background: #fbfdff;
    border-left: 1px solid #e3eaf4;
    padding: 18px 12px;
}

.clientInfo p {
    width: 86px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 99px;
    color: transparent;
    margin-bottom: 17px;
}

/* SECTIONS */
.section {
    padding: 70px 0;
}

.section--white {
    background: #fff;
}

.section--green {
    background:
        radial-gradient(circle at 50% 0%, rgba(33, 191, 98, .10), transparent 34%),
        #f3fff9;
}

.section--soft {
    background:
        radial-gradient(circle at 50% 0%, rgba(33, 191, 98, .08), transparent 32%),
        #f7fffb;
}

.section--green2 {
    background:
        radial-gradient(circle at 50% 10%, rgba(33, 191, 98, .12), transparent 40%),
        #f1fff8;
}

.sectionTitle {
    max-width: 720px;
    margin: 0 auto 43px;
    text-align: center;
}

.sectionTitle span {
    display: block;
    margin-bottom: 7px;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .07em;
}

.sectionTitle h2 {
    color: var(--dark);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 600;
}

.sectionTitle p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 15px;
}

/* CARDS */
.grid {
    display: grid;
    gap: 18px;
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    min-height: 150px;
    padding: 27px 24px 24px;
    border: 1px solid #e3eaf4;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(8, 25, 54, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover,
.testimonial:hover,
.priceCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.card i {
    width: 46px;
    height: 46px;
    margin-bottom: 21px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--green);
    color: #fff;
    font-style: normal;
    font-size: 14px;
    font-weight: 900;
}

.card--danger i {
    background: var(--red-soft);
    color: var(--red);
}

.card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -.025em;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    font-size: 13px;
}

.card em {
    float: right;
    margin-top: -62px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eef7ff;
    color: #2873c4;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

/* FEATURE BLOCKS */
.features {
    margin-top: 85px;
    display: grid;
    gap: 68px;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 74px;
}

.feature__text {
    max-width: 420px;
}

.feature__text span {
    display: block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.feature__text h3 {
    color: var(--dark);
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.04em;
    font-weight: 900;
    margin-bottom: 9px;
}

.feature__text p {
    color: var(--muted);
    font-size: 15px;
}

.mockBlock {
    height: auto;
    border-radius: 16px;
    background: #f4f8ff;
    box-shadow: 0 20px 52px rgba(14, 40, 64, .10);
    display: grid;
    place-items: center;
    padding: 30px;
}

.mockBlock--blue {
    background: #359bec;
}

.miniChatMock {
    width: 330px;
    height: 160px;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(8, 25, 54, .20);
    position: relative;
    overflow: hidden;
}

.miniChatMock::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 100%;
    background: #0869ca;
}

.miniChatMock::after {
    content: "";
    position: absolute;
    left: 48px;
    top: 24px;
    width: 86px;
    height: 112px;
    background: repeating-linear-gradient(#dbe4ef 0 11px, transparent 11px 23px);
}

.miniChatMock div {
    position: absolute;
    right: 44px;
    height: 22px;
    border-radius: 8px;
    background: #1685ee;
}

.miniChatMock div:nth-child(1) {
    top: 42px;
    width: 120px;
}

.miniChatMock div:nth-child(2) {
    top: 76px;
    width: 88px;
    background: #edf2f7;
    right: 88px;
}

.miniChatMock div:nth-child(3) {
    top: 112px;
    width: 145px;
}

.kanbanMock {
    width: 330px;
    min-height: 150px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(8, 25, 54, .16);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.kanbanMock section {
    background: #f4f7fb;
    border-radius: 6px;
    padding: 8px;
}

.kanbanMock b {
    display: block;
    height: 8px;
    background: #1685ee;
    border-radius: 99px;
    color: transparent;
    margin-bottom: 10px;
}

.kanbanMock i {
    display: block;
    height: 22px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 7px;
    border: 1px solid #e5edf3;
}

.dashboardMock {
    width: 330px;
    min-height: 150px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(8, 25, 54, .16);
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 78px;
    gap: 18px;
}

.lineChart {
    height: 92px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, transparent 47%, #3b82f6 48%, #3b82f6 52%, transparent 53%),
        linear-gradient(180deg, #f6f9fe, #fff);
    border: 1px solid #e7edf5;
}

.donut {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(#1e88ff 0 72%, #d8e8ff 72% 100%);
    align-self: center;
}

.dashboardMock footer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dashboardMock footer b {
    height: 27px;
    border-radius: 5px;
    background: #f3f7fb;
    color: #1f2937;
    display: flex;
    align-items: center;
    padding-left: 9px;
    font-size: 10px;
}

/* TESTIMONIAL */
.testimonial {
    padding: 24px;
    background: #fff;
    border: 1px solid #e3eaf4;
    border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.testimonial div {
    color: var(--green);
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial p {
    color: #334155;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial footer {
    position: relative;
    padding-left: 38px;
}

.testimonial footer::before {
    content: "C";
    position: absolute;
    left: 0;
    top: -1px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 12px;
}

.testimonial:nth-child(2) footer::before {
    content: "J";
}

.testimonial:nth-child(3) footer::before {
    content: "R";
}

.testimonial b {
    display: block;
    color: var(--dark);
    font-size: 13px;
}

.testimonial small {
    color: var(--muted);
    font-size: 11px;
}

/* PRICE */
.priceCard {
    width: min(100%, 620px);
    margin: 0 auto;
    padding: 30px 34px;
    border: 1px solid #dfe8f1;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.priceCard__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.priceCard h3 {
    color: var(--dark);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.priceCard__top strong {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: .02em;
}

.price {
    color: var(--dark);
    font-size: 3.8rem;
    line-height: 1;
    letter-spacing: -.07em;
    font-weight: 600;
    margin: 14px 0 24px;
}

.price small {
    font-size: 16px;
    letter-spacing: -.02em;
    color: #344054;
}

.priceCard ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 22px;
}

.priceCard li {
    font-size: 0.9rem;
    color: #344054;
    display: flex;
    align-items: center;
    gap: 7px;
}

.priceCard li::before {
    content: "✓";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.priceCard > p {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 12px;
}

/* EVOLUTION */
.highlight {
    width: min(100%, 690px);
    margin: 0 auto 30px;
    padding: 23px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #20bd62, #063954);
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    box-shadow: 0 24px 48px rgba(16, 130, 83, .18);
}

.grid--evolution {
    width: min(100%, 860px);
    margin: 0 auto;
}

/* FAQ */
.faq {
    width: min(100%, 640px);
    margin: 0 auto;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(8, 25, 54, .07);
    overflow: hidden;
    border: 1px solid #e3eaf4;
}

.faq__item + .faq__item {
    border-top: 1px solid #edf2f7;
}

.faq__item button {
    width: 100%;
    min-height: 45px;
    padding: 0 20px;
    background: #fff;
    border: 0;
    color: #263247;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.faq__item button::after {
    content: "⌄";
    color: #667085;
    font-size: 15px;
    transition: transform .2s ease;
}

.faq__item.active button::after {
    transform: rotate(180deg);
}

.faq__item div {
    display: none;
    padding: 0 20px 17px;
}

.faq__item.active div {
    display: block;
}

.faq__item p {
    color: var(--muted);
    font-size: 13px;
}

.helpBox {
    width: min(100%, 640px);
    margin: 22px auto 0;
    min-height: 70px;
    background: #fff;
    border: 1px solid #e3eaf4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    box-shadow: 0 14px 36px rgba(8, 25, 54, .06);
}

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

.helpBox b {
    color: var(--dark);
}

/* BOTTOM CTA */
.bottomCta {
    background: linear-gradient(135deg, #23bf66, #21bf62);
    color: #fff;
    padding: 22px 0;
}

.bottomCta__content {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 22px;
}

.whatsIcon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: #fff;
    color: var(--green);
    display: grid;
    place-items: center;
}

.whatsIcon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.bottomCta h2 {
    max-width: 700px;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 900;
}

.bottomCta p {
    opacity: .86;
    margin-top: 4px;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1060px) {
    .hero__grid,
    .feature {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 75px;
    }

    .hero__visual {
        margin-top: 20px;
    }

    .feature--imageRight .feature__text {
        order: 2;
    }

    .feature--imageRight .mockBlock {
        order: 1;
    }

    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottomCta__content {
        grid-template-columns: 60px 1fr;
    }

    .bottomCta .btn {
        grid-column: 2;
        width: fit-content;
    }
}

@media (max-width: 860px) {
    .menuButton {
        display: block;
    }

    .menu,
    .header__actions {
        display: none;
    }

    body.menu-open .menu,
    body.menu-open .header__actions {
        display: flex;
        position: absolute;
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
    }

    body.menu-open .menu {
        top: 78px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: 16px 16px 0 0;
        padding: 10px;
        border-bottom: 0;
    }

    body.menu-open .menu a {
        padding: 12px;
    }

    body.menu-open .header__actions {
        top: 264px;
        border-radius: 0 0 16px 16px;
        border-top: 0;
        padding: 14px;
        align-items: center;
        justify-content: space-between;
    }

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

    .appMock {
        height: auto;
        padding: 45px 28px;
    }

    .appShell {
        grid-template-columns: 28px 95px 1fr;
    }

    .clientInfo {
        display: none;
    }

    .browserBar div {
        width: 110px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1280px);
    }

    .header,
    .header__content {
        height: 62px;
    }

    .logo strong {
        font-size: 19px;
    }

    .logo__icon {
        width: 34px;
        height: 34px;
    }

    .hero {
        min-height: initial;
        padding: 50px 0 64px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero__text > p {
        font-size: 16px;
    }

    .hero__buttons,
    .hero .btn {
        width: 100%;
    }

    .checks {
        display: grid;
        gap: 12px;
    }

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

    .section {
        padding: 58px 0;
    }

    .sectionTitle {
        margin-bottom: 30px;
    }

    .appMock {
        width: 100%;
        padding: 32px 15px;
    }

    .appShell {
        grid-template-columns: 30px 1fr;
        height: 220px;
    }

    .contactList {
        display: none;
    }

    .browserBar {
        width: 100%;
    }

    .chatArea {
        padding: 18px;
    }

    .mockBlock {
        height: auto;
        min-height: 205px;
        padding: 18px;
    }

    .miniChatMock,
    .kanbanMock,
    .dashboardMock {
        width: 100%;
    }

    .kanbanMock {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .priceCard {
        padding: 26px 22px;
    }

    .priceCard ul {
        grid-template-columns: 1fr;
    }

    .helpBox {
        align-items: stretch;
        flex-direction: column;
    }

    .helpBox .btn {
        width: 100%;
    }

    .bottomCta__content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .bottomCta .btn {
        grid-column: auto;
        width: 100%;
    }
}

.formRegistration{
    border: solid 1px #ededed;
    box-shadow: 0px 0px 13px rgba(0, 0, 0, .1);
    width: 500px;
    background: #fff;
    border-radius: 13px;
    padding: 20px;
    position: absolute;
    z-index: 99;
    top: 10%;
    left: 50%;
    margin-left: -250px;
}

#registrationForm .field{
    position: relative;
    border: solid 1px #e2e2e2;
    border-radius: 4px;
    padding: 0;
    background: #fff;
    box-shadow: inset 0px 0px 7px rgba(0, 0, 0, .1);
    height: 3.2rem;
    width: 100%;
    margin-bottom: 0.60rem;
}

#registrationForm .field > label {
    padding: 0.30rem 0.30rem 0.30rem 0.40rem;
    font-weight: 500;
    font-size: 0.90rem;
    margin-bottom: 0;
    color: #707070;
    position: relative;
    letter-spacing: -0.3px;
}

#registrationForm .field input[type="text"], form .field input[type="email"], form .field input[type="tel"], form .field input[type="password"], form .field input[type="number"], form .field textarea {
    border-radius: 0;
    padding: 0 0.4rem 0.3rem 0.5rem;
    background: none;
    box-shadow: none;
    height: 1.3rem;
    width: 100%;
    border: 0;
    font-size: 0.96rem;
}

#registrationForm  button {
    display: flex;
    height: 3rem;
    padding: 0 0.80rem;
    border: 1px solid transparent;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    background: none;
    position: relative;
    width: max-content;
    font-size: 1.0rem;
    font-weight: 600;
}