@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
    --ink: #143c32;
    --lime: #d1f57a;
    --paper: #f7f8f0;
    --muted: #64766d;
    --line: #dce3d9;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-synthesis: none;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}
body {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:focus-visible,
summary:focus-visible {
    outline: 3px solid #538000;
    outline-offset: 6px;
}
h1,
h2,
h3,
p {
    margin: 0;
}
h1,
h2,
h3 {
    font-family: Manrope, Arial, sans-serif;
}
img {
    max-width: 100%;
}
.wrap {
    width: min(1260px, calc(100% - 96px));
    margin-inline: auto;
}
.header {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.logo {
    width: 240px;
    display: block;
}
.header nav {
    display: flex;
    gap: 32px;
    font-size: 14px;
}
.header nav a:hover,
.text-link:hover {
    color: #648b27;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    padding: 15px 22px;
    font-weight: 600;
    font-size: 14px;
    transition:
        transform 0.2s,
        background 0.2s;
}
.button:hover {
    transform: translateY(-2px);
    background: #e6edda;
}
.button span {
    font-size: 20px;
}
.primary {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
}
.primary:hover {
    background: #bce65f;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 95px;
}
.eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6d963a;
}
.hero h1 {
    font-size: clamp(44px, 4.7vw, 68px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -3px;
    margin: 26px 0;
}
.hero h1 em {
    font-style: normal;
    white-space: nowrap;
    position: relative;
}
.hero h1 em:after {
    content: "";
    display: block;
    height: 7px;
    background: var(--lime);
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    z-index: -1;
}
.hero-copy > p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 470px;
}
.hero-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.text-link {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    gap: 14px;
    align-items: center;
}
.hero-note {
    margin-top: 35px;
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
    align-items: center;
}
.mini-icon {
    font-size: 21px;
}
.preview-area {
    position: relative;
    padding: 25px 0 15px;
    min-width: 0;
}
.orbit {
    position: absolute;
    border: 1px solid #dbe3d2;
    border-radius: 50%;
    z-index: -1;
    inset: -30px 35px;
}
.orbit-two {
    transform: rotate(25deg);
    inset: 0 -18px;
}
.preview {
    background: #fff;
    border: 1px solid #dfe6dc;
    border-radius: 13px;
    box-shadow: 0 25px 60px #173b3210;
    overflow: hidden;
    transform: rotate(-2deg);
}
.preview-top {
    padding: 17px 22px;
    background: #f2f5ed;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid #e8ece4;
}
.preview-top small {
    display: block;
    font-size: 7px;
    letter-spacing: 1px;
    margin-top: 3px;
    color: var(--muted);
}
.avatar {
    margin-left: auto;
    background: #e1e9da;
    border-radius: 50%;
    padding: 9px;
    font-size: 9px;
}
.preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 24px 24px 20px;
}
.overline {
    font-size: 8px;
    letter-spacing: 1px;
    color: var(--muted);
}
.preview-heading h2 {
    font-size: 22px;
    letter-spacing: -0.7px;
    margin-top: 6px;
}
.pill {
    border: 1px solid #dfe6d7;
    border-radius: 30px;
    padding: 7px 10px;
    font-size: 8px;
    white-space: nowrap;
}
.stats {
    margin: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.stats > div {
    background: #f5f7f1;
    padding: 15px 10px;
    border-radius: 6px;
}
.stats strong {
    display: block;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -1px;
}
.stats > div > span {
    display: block;
    font-size: 8px;
    margin-top: 7px;
    color: var(--muted);
}
.small-check {
    font-size: 12px;
    margin-left: 7px;
    color: #4f7b27;
}
.table-title {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    padding: 24px 24px 12px;
}
.table-title > span {
    color: var(--muted);
    font-size: 9px;
}
.exhibitor-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0 24px;
    padding: 15px 0;
    border-top: 1px solid #edf0e9;
}
.exhibitor-name {
    width: 38%;
}
.exhibitor-name b {
    display: block;
    font-size: 11px;
}
.exhibitor-name small,
.progress-group small {
    display: block;
    font-size: 8px;
    color: var(--muted);
    margin-top: 5px;
}
.progress-group {
    flex: 1;
}
.progress-track {
    height: 5px;
    background: #e8eee0;
    border-radius: 10px;
    overflow: hidden;
}
.progress-track > span {
    display: block;
    background: #82ad48;
    height: 100%;
    border-radius: 10px;
}
.percentage {
    font-size: 10px;
    width: 30px;
    text-align: right;
}
.preview-bottom {
    padding: 13px 24px;
    display: flex;
    justify-content: space-between;
    background: #f9faf6;
    font-size: 9px;
    color: var(--muted);
}
.preview-bottom .dot {
    width: 5px;
    height: 5px;
    margin-right: 5px;
}
.approval {
    position: relative;
    margin: -8px -10px 0 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: white;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 14px 30px #173b321f;
}
.approval-icon {
    padding: 7px 10px;
    background: var(--lime);
    color: var(--ink);
    border-radius: 50%;
}
.approval strong {
    display: block;
    font-size: 11px;
}
.approval div > span {
    display: block;
    font-size: 10px;
    color: #bed0c5;
    margin-top: 6px;
}
.approval > span:last-child {
    margin-left: auto;
}
.example-label {
    text-align: right;
    font-size: 9px;
    color: var(--muted);
    margin: 15px 0;
}
.principles {
    border-block: 1px solid var(--line);
}
.principles-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding-block: 27px;
}
.principles-inner > span {
    font-size: 9px;
    letter-spacing: 1.4px;
    color: var(--muted);
}
.principles strong {
    font-size: 17px;
    font-weight: 500;
}
.principles i {
    font-style: normal;
    color: #8ca774;
}
.section {
    padding-block: 100px;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 45px;
}
.section h2,
.journey h2,
.contact h2 {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1.8px;
    margin-top: 19px;
}
.section-heading > p {
    max-width: 380px;
    line-height: 1.8;
    font-size: 15px;
    color: var(--muted);
}
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 45px;
}
.feature {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fcfdf9;
}
.feature-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 10px;
}
.feature-icon {
    display: grid;
    place-items: center;
    background: #edf2e4;
    border-radius: 10px;
    width: 43px;
    height: 43px;
    color: var(--ink);
    font-size: 23px;
}
.feature h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.6px;
    line-height: 1.4;
    margin: 34px 0 16px;
}
.feature p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--muted);
}
.featured {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}
.featured .feature-top,
.featured p {
    color: #c0d0c7;
}
.featured .feature-icon {
    background: var(--lime);
}
.journey {
    background: #eaf0e1;
    padding-block: 80px;
}
.journey-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.journey p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
    margin-top: 22px;
    max-width: 370px;
}
.journey .text-link {
    margin-top: 28px;
}
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
}
.steps li {
    display: flex;
    gap: 25px;
    padding: 24px 0;
    border-bottom: 1px solid #cfdbc7;
}
.steps li:first-child {
    padding-top: 0;
}
.steps li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.steps li > span {
    font-size: 12px;
    padding-top: 6px;
    color: #729056;
}
.steps h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.steps p {
    margin-top: 8px;
    font-size: 14px;
}
.faq {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}
details {
    border-bottom: 1px solid var(--line);
    padding: 23px 0;
}
details:first-child {
    padding-top: 0;
}
summary {
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
summary::-webkit-details-marker {
    display: none;
}
summary:after {
    content: "+";
    font-size: 22px;
    line-height: 1;
    color: #668448;
}
details[open] summary:after {
    content: "−";
}
details p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    margin-top: 17px;
}
.contact {
    background: var(--ink);
    color: #f6f9ee;
    border-radius: 16px;
    padding: 60px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}
.contact .eyebrow {
    color: var(--lime);
}
.contact p {
    margin: 22px 0 26px;
    line-height: 1.8;
    color: #c0d0c7;
    font-size: 15px;
    max-width: 410px;
}
.contact small {
    display: block;
    margin-top: 17px;
    font-size: 12px;
    color: #c0d0c7;
}
.contact-icon {
    width: 220px;
    height: 220px;
    transform: rotate(-9deg);
    border: 1px solid #517258;
    border-radius: 60px;
}
.footer {
    padding-block: 45px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 12px;
}
.footer img {
    margin-left: -12px;
}
.footer p {
    color: var(--muted);
    margin-top: 8px;
}
.footer > div:last-child {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}
.footer span,
.footer small {
    color: var(--muted);
    font-size: 11px;
}
.skip {
    position: absolute;
    left: 20px;
    top: -100px;
    background: var(--ink);
    color: white;
    padding: 15px;
    z-index: 10;
}
.skip:focus {
    top: 10px;
}
@media (min-width: 1500px) {
    .hero {
        padding-block: 95px 110px;
    }
    .hero h1 {
        font-size: 72px;
    }
}
@media (max-width: 1100px) {
    .wrap {
        width: calc(100% - 56px);
    }
    .header nav {
        gap: 18px;
    }
    .hero {
        gap: 25px;
    }
    .hero h1 {
        font-size: 49px;
    }
    .hero-actions {
        gap: 18px;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    .journey-inner,
    .faq {
        gap: 50px;
    }
    .approval {
        margin-left: 15px;
        margin-right: 0;
    }
    .preview-heading {
        padding-inline: 16px;
    }
    .preview-heading h2 {
        font-size: 19px;
    }
    .hero-copy > p {
        font-size: 15px;
    }
}
@media (max-width: 760px) {
    .wrap {
        width: calc(100% - 40px);
    }
    .header {
        height: 85px;
        gap: 10px;
    }
    .logo {
        width: 180px;
    }
    .header nav {
        display: none;
    }
    .login-link {
        font-size: 11px;
        padding: 10px 12px;
        gap: 8px;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-block: 35px 40px;
        gap: 30px;
    }
    .hero h1 {
        font-size: clamp(42px, 9vw, 65px);
        letter-spacing: -2px;
    }
    .hero-copy > p {
        max-width: 560px;
        font-size: 16px;
    }
    .eyebrow {
        font-size: 9px;
        letter-spacing: 1.2px;
    }
    .hero-actions {
        gap: 20px;
    }
    .hero-note {
        font-size: 11px;
        margin-top: 25px;
    }
    .preview-area {
        width: 100%;
        max-width: 520px;
        margin: auto;
        padding: 15px 6px;
    }
    .orbit {
        display: none;
    }
    .approval {
        margin-left: 25px;
        margin-right: -6px;
    }
    .principles-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding-block: 22px;
    }
    .principles-inner > span {
        width: 100%;
        text-align: center;
        margin-bottom: 6px;
    }
    .principles strong {
        font-size: 12px;
    }
    .principles i {
        font-size: 12px;
    }
    .section {
        padding-block: 60px;
    }
    .section-heading {
        display: block;
    }
    .section-heading > p {
        margin-top: 23px;
    }
    .section h2,
    .journey h2,
    .contact h2 {
        font-size: 35px;
        letter-spacing: -1.4px;
    }
    .features {
        gap: 12px;
        margin-top: 30px;
    }
    .feature {
        padding: 20px;
    }
    .feature h3 {
        font-size: 17px;
        margin-top: 24px;
    }
    .journey {
        padding-block: 55px;
    }
    .journey-inner,
    .faq {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .contact {
        padding: 35px 26px;
    }
    .contact-icon {
        display: none;
    }
    .contact p {
        font-size: 14px;
    }
    .footer {
        flex-direction: column;
        padding-block: 30px;
    }
    .footer > div:last-child {
        text-align: left;
    }
    .preview-heading h2 {
        font-size: 21px;
    }
}
@media (max-width: 420px) {
    .features {
        grid-template-columns: 1fr;
    }
    .logo {
        width: 151px;
    }
    .login-link {
        font-size: 10px;
        padding: 9px;
        gap: 4px;
    }
    .hero-actions > .primary {
        width: 100%;
    }
    .hero-actions > .text-link {
        margin: auto;
    }
    .hero-note {
        font-size: 10px;
    }
    .preview-heading h2 {
        font-size: 18px;
    }
    .preview-heading {
        padding: 20px 15px 15px;
    }
    .stats {
        margin-inline: 15px;
    }
    .table-title {
        padding-inline: 15px;
    }
    .exhibitor-row {
        margin-inline: 15px;
        gap: 10px;
    }
    .exhibitor-name b {
        font-size: 10px;
    }
    .approval {
        margin-left: 12px;
        padding: 13px;
        gap: 9px;
    }
    .approval strong {
        font-size: 10px;
    }
    .approval div > span {
        font-size: 9px;
    }
    .principles-inner {
        gap: 10px;
    }
    .principles strong {
        font-size: 11px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .button {
        transition: none;
    }
}

main {
    overflow-x: clip;
}

.whatsapp-shortcut{position:fixed;right:24px;bottom:calc(24px + env(safe-area-inset-bottom));z-index:20;display:flex;align-items:center;gap:10px;padding:15px 18px;border-radius:40px;background:#167343;color:#fff;box-shadow:0 5px 22px #143c3230;font-size:13px;font-weight:600;border:2px solid #fff}.whatsapp-shortcut svg{width:27px;height:27px;flex-shrink:0}.whatsapp-shortcut:hover{background:#115b35}.footer{padding-bottom:100px}@media(max-width:760px){.whatsapp-shortcut{right:16px;bottom:calc(16px + env(safe-area-inset-bottom));padding:14px}.whatsapp-shortcut span{display:none}}
