/* =========================================================
   RESET
========================================================= */
.integration-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.integration-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 180px;
    height: auto;
    display: block;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.social-icons a {
    color: #0099b8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #f5a06f;
    transform: translateY(-2px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #667180;

    background: #ffffff;
}

a {
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1100px, calc(100% - 40px));

    margin: auto;
}


/* =========================================================
   COLORS
========================================================= */

:root {

    --navy: #344d7b;

    --navy-dark: #293f69;

    --cyan: #5fe1ec;

    --cyan-light: #e9fbfb;

    --peach: #f5a06f;

    --peach-dark: #ee8d58;

    --text: #667180;

    --line: #e6e9ed;

    --soft: #f8fbfb;

    --white: #ffffff;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    height: 36px;

    background: #e4f9fa;

    font-size: 13px;
}

.top-bar-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.top-contact,
.top-social {

    display: flex;

    align-items: center;

    gap: 28px;
}

.top-contact span {
    color: #159ec1;
}

.top-social {

    font-weight: bold;

    color: #159ec1;
}


/* =========================================================
   HEADER
========================================================= */

.header {

    height: 92px;

    background: #ffffff;

    border-bottom: 1px solid #f0f1f2;
}

.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Logo */

.logo {

    color: var(--navy);

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -1px;
}

.logo span {
    color: var(--peach);
}


/* Navigation */

.navigation {

    display: flex;

    align-items: center;

    gap: 28px;
}

.navigation a {

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}

.navigation .nav-button {

    color: #ffffff;

    background: var(--peach);

    padding: 13px 25px;

    border-radius: 25px;
}

.mobile-menu {

    display: none;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    padding: 75px 0 90px;

    background: #ffffff;
}

.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 410px;

    gap: 70px;

    align-items: center;
}


/* Hero content */

.eyebrow {

    color: var(--peach-dark);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}

.hero h1 {

    color: var(--navy);

    font-size: clamp(45px, 5vw, 65px);

    line-height: 1.08;

    letter-spacing: -2.8px;

    margin: 12px 0 22px;

    font-weight: 800;
}

.underline {

    position: relative;

    display: inline-block;
}

.underline::after {

    content: "";

    position: absolute;

    left: -2px;

    right: -3px;

    bottom: -8px;

    height: 12px;

    border-top: 3px solid var(--cyan);

    border-radius: 50%;

    transform: rotate(-1deg);
}

.hero-content>p {

    max-width: 610px;

    font-size: 17px;

    line-height: 1.6;

    margin-bottom: 28px;
}


/* Hero buttons */

.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.primary-button {

    display: inline-block;

    background: var(--peach);

    color: #ffffff;

    padding: 14px 25px;

    border-radius: 28px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.2s;
}

.primary-button:hover {

    background: var(--peach-dark);

    transform: translateY(-1px);
}

.secondary-button {

    display: inline-block;

    color: var(--navy);

    border: 1px solid var(--line);

    padding: 13px 25px;

    border-radius: 28px;

    font-size: 13px;

    font-weight: 800;
}

.hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   DEMO FORM
========================================================= */

.demo-card {

    background: #ffffff;

    border: 1px solid #e5e7ea;

    border-radius: 18px;

    padding: 27px;

    box-shadow:
        0 20px 55px rgba(52, 77, 123, 0.13);
}

.demo-card-header {

    display: flex;

    gap: 13px;

    margin-bottom: 20px;
}

.demo-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cyan-light);

    color: #159ec1;

    border-radius: 10px;

    flex-shrink: 0;
}

.demo-card h2 {

    margin: 0 0 5px;

    color: var(--navy);

    font-size: 24px;

    letter-spacing: -0.6px;
}

.demo-card-header p {

    margin: 0;

    color: #7a838d;

    font-size: 12px;

    line-height: 1.5;
}

.form-group {

    margin-bottom: 13px;
}

.form-group label {

    display: block;

    margin-bottom: 6px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;
}

.form-group label span {
    color: var(--peach-dark);
}

.form-group input,
.form-group select {

    width: 100%;

    height: 45px;

    border: 1px solid #d8dde2;

    border-radius: 7px;

    padding: 0 12px;

    outline: none;

    background: #ffffff;

    color: #69727d;

    font-size: 13px;
}

.form-group input:focus,
.form-group select:focus {

    border-color: var(--cyan);

    box-shadow:
        0 0 0 3px var(--cyan-light);
}

.submit-button {

    width: 100%;

    height: 49px;

    border: 0;

    border-radius: 27px;

    background: var(--peach);

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.2s;
}

.submit-button:hover {
    background: var(--peach-dark);
}

.submit-button:disabled {

    opacity: 0.7;

    cursor: not-allowed;
}

.privacy-text {

    text-align: center;

    color: #969da5;

    font-size: 10px;

    margin: 10px 0 0;
}


/* Honeypot */

.hidden-field {

    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    overflow: hidden;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    padding: 85px 0;
}

.section:nth-of-type(even) {

    background: var(--soft);
}

.section-heading {

    max-width: 720px;

    margin: 0 auto 45px;

    text-align: center;
}

.section-heading h2,
.feature-content h2 {

    color: var(--navy);

    font-size: clamp(35px, 4.5vw, 51px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin: 8px 0 14px;
}

.section-heading p {

    margin: 0;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   PROCESS
========================================================= */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 13px;
}

.process-card {

    min-height: 195px;

    background: #ffffff;

    border: 1px solid var(--line);

    border-radius: 17px;

    padding: 23px 17px;
}

.process-card>span {

    color: var(--cyan);

    font-size: 12px;

    font-weight: 800;
}

.process-card h3 {

    color: var(--navy);

    font-size: 16px;

    line-height: 1.3;

    margin: 18px 0 9px;
}

.process-card p {

    color: #77818d;

    font-size: 12px;

    line-height: 1.55;

    margin: 0;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-section {
    background: var(--soft);
}

.feature-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;
}

.feature-content>p {

    margin: 0;

    font-size: 15px;

    line-height: 1.65;
}

.feature-list {

    list-style: none;

    padding: 0;

    margin: 25px 0 0;
}

.feature-list li {

    display: flex;

    align-items: center;

    gap: 9px;

    margin: 12px 0;

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}

.feature-list li span {

    width: 21px;

    height: 21px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--cyan-light);

    color: #159ec1;

    font-size: 10px;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-card {

    background: #ffffff;

    border: 1px solid var(--line);

    border-radius: 22px;

    padding: 18px;

    box-shadow:
        0 20px 48px rgba(52, 77, 123, 0.09);
}

.dashboard-header {

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--navy);

    font-size: 15px;
}

.dashboard-header span {

    background: #fff1e8;

    color: var(--peach-dark);

    padding: 7px 10px;

    border-radius: 16px;

    font-size: 10px;
}

.metrics {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin: 14px 0;
}

.metric {

    border: 1px solid var(--line);

    border-radius: 10px;

    padding: 12px;
}

.metric small {

    color: #8d969f;

    font-size: 9px;
}

.metric strong {

    display: block;

    color: var(--navy);

    font-size: 21px;

    margin-top: 4px;
}

.lead-table {

    border: 1px solid var(--line);

    border-radius: 10px;

    overflow: hidden;
}

.table-row {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    padding: 11px 12px;

    border-bottom: 1px solid var(--line);

    font-size: 9px;
}

.table-row:last-child {
    border-bottom: 0;
}

.table-heading {

    color: #999;

    background: #fafafa;
}

.status {

    color: var(--peach-dark);

    font-weight: 800;
}


/* =========================================================
   INTEGRATIONS
========================================================= */

.integration-grid {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}

.integration-grid div {

    border: 1px solid var(--line);

    border-radius: 8px;

    padding: 13px 21px;

    color: #6d7781;

    background: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    padding: 75px 0;

    background: var(--navy);

    color: #ffffff;
}

.final-grid {

    display: grid;

    grid-template-columns:
        1fr 390px;

    gap: 60px;

    align-items: center;
}

.final-cta .eyebrow {
    color: var(--cyan);
}

.final-cta h2 {

    margin: 8px 0 17px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 56px);

    line-height: 1;

    letter-spacing: -2.5px;
}

.final-cta p {

    max-width: 560px;

    color: #c7d0da;

    font-size: 15px;

    line-height: 1.65;
}

.final-card {

    background: #ffffff;

    color: var(--text);

    padding: 27px;

    border-radius: 17px;
}

.final-card h3 {

    color: var(--navy);

    margin: 0 0 7px;

    font-size: 22px;
}

.final-card p {

    color: #77818d;

    font-size: 12px;

    margin: 0 0 18px;
}

.final-card .primary-button {

    width: 100%;

    text-align: center;
}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding: 25px 0;

    color: #7e8790;

    font-size: 11px;
}

.footer-inner {

    display: flex;

    justify-content: space-between;
}


/* =========================================================
   SUCCESS PAGE
========================================================= */

.success-container,
.error-container {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background: var(--soft);
}

.success-card,
.error-card {

    width: 100%;

    max-width: 500px;

    padding: 50px 40px;

    text-align: center;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 20px 55px rgba(52, 77, 123, 0.12);
}

.success-icon,
.error-icon {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    font-size: 35px;

    font-weight: bold;
}

.success-icon {

    background: var(--cyan-light);

    color: #159ec1;
}

.error-icon {

    background: #fff1e8;

    color: var(--peach-dark);
}

.success-card h1,
.error-card h1 {

    margin: 0 0 15px;

    color: var(--navy);

    font-size: 38px;
}

.success-card p,
.error-card p {

    font-size: 15px;

    line-height: 1.6;
}

.success-main-text {
    font-weight: 700;
}

.success-card .primary-button,
.error-card .primary-button {

    margin-top: 20px;
}

.debug-error {

    margin-top: 25px;

    padding: 15px;

    background: #fff7f2;

    color: #9b6040;

    border-radius: 8px;

    text-align: left;

    font-size: 12px;

    word-break: break-word;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .container {
        width: min(100% - 28px, 620px);
    }


    .top-bar {
        display: none;
    }


    .header {
        height: 70px;
    }


    .navigation {
        display: none;
    }


    .mobile-menu {
        display: block;
    }


    .hero {

        padding: 40px 0 65px;
    }


    .hero-grid {

        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    .hero-content {

        text-align: center;
    }


    .hero h1 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .hero-content>p {

        font-size: 15px;
    }


    .hero-buttons {

        justify-content: center;
    }


    .hero-points {

        justify-content: center;
    }


    .demo-card {

        width: 100%;
    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .feature-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .final-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }


    .final-cta p {

        margin-left: auto;

        margin-right: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .container {

        width: calc(100% - 24px);
    }


    .hero {

        padding-top: 30px;
    }


    .hero h1 {

        font-size: 38px;

        letter-spacing: -1.8px;
    }


    .demo-card {

        padding: 20px;

        border-radius: 15px;
    }


    .demo-card h2 {

        font-size: 21px;
    }


    .process-grid {

        grid-template-columns: 1fr;
    }


    .section {

        padding: 60px 0;
    }


    .section-heading h2,
    .feature-content h2 {

        font-size: 36px;
    }


    .metrics {

        gap: 6px;
    }


    .metric {

        padding: 10px;
    }


    .metric strong {

        font-size: 18px;
    }


    .table-row {

        grid-template-columns: 2fr 1fr;

        font-size: 8px;
    }


    .table-row span:last-child {

        display: none;
    }


    .footer-inner {

        display: block;
    }


    .footer-inner div+div {

        margin-top: 8px;
    }


    .success-card,
    .error-card {

        padding: 40px 25px;
    }

}
@media (max-width: 600px) {
    .integration-image {
        margin-top: 25px;
    }

    .integration-image img {
        width: 100%;
    }
}