* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #17202a;
    background: #ffffff;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    height: 82px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e9edf1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-name {
    font-size: 21px;
}

.brand-product {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 1.2px;
}

.brand-name {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 31px;
    margin-left: auto;
}

.main-nav a,
.login-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover,
.login-link:hover {
    color: #fa555b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}


/* BUTTONS */

.btn,
.btn-outline,
.btn-light {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.2s ease;
}

.btn {
    background: #fa555b;
    color: #ffffff;
}

.btn:hover {
    background:#df454d;
    transform: translateY(-1px);
}

.btn-small {
    padding: 11px 18px;
    font-size: 14px;
}

.btn-large {
    min-height: 52px;
    padding: 0 26px;
}

.btn-outline {
    border: 1px solid #aeb8c4;
    background: transparent;
}

.btn-outline:hover {
    border-color: #fa555b;
    color: #fa555b;
}

.btn-light {
    background: #ffffff;
    color: #df454d;
}

.btn-light:hover {
    transform: translateY(-1px);
}


/* HERO */

.hero {
    background:
        linear-gradient(
            120deg,
            #f7faff 0%,
            #ffffff 58%,
            #fff4f4 100%
        );
    padding: 105px 0 115px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.eyebrow,
.section-label {
    color: #fa555b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
}

.eyebrow span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fa555b;
}

.hero h1 {
    max-width: 700px;
    margin: 22px 0;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: #fa555b;
}

.hero-copy {
    max-width: 650px;
    margin: 0;
    color: #536273;
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 34px;
}

.hero-note {
    margin-top: 22px;
    color: #788491;
    font-size: 13px;
}


/* HERO CARD */

.hero-visual {
    display: flex;
    justify-content: center;
}

.product-card {
    width: min(390px, 100%);
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dce5ee;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(29, 57, 89, 0.14);
    transform: rotate(2deg);
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-brand {
    font-size: 18px;
    font-weight: 700;
}

.secure-label {
    padding: 6px 9px;
    background: #fff0f0;
    color: #fa555b;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-icon {
    width: 76px;
    height: 76px;
    margin: 34px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card h3 {
    margin: 0;
    text-align: center;
    font-size: 22px;
}

.product-card p {
    max-width: 270px;
    margin: 12px auto 25px;
    color: #6b7785;
    text-align: center;
    line-height: 1.5;
}

.pin-demo {
    padding: 17px;
    border: 1px dashed #9ba9b7;
    background: #f8fafc;
    text-align: center;
    font-size: 20px;
    letter-spacing: 4px;
}

.verification-line {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #edf0f3;
    font-size: 13px;
    color: #596776;
}

.check {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 50%;
    background: #e5f8ed;
    color: #168346;
    font-weight: 800;
}


/* FEATURES */

.features {
    padding: 105px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading h2,
.business h2,
.cta h2 {
    margin: 13px 0 15px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.section-heading > p {
    color: #657382;
    font-size: 17px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 35px;
    border: 1px solid #e1e7ed;
    border-radius: 10px;
    background: #ffffff;
}

.feature-number {
    color: #fa555b;
    font-size: 13px;
    font-weight: 800;
}

.feature-card h3 {
    margin: 35px 0 12px;
    font-size: 24px;
}

.feature-card p {
    margin: 0;
    color: #667482;
    line-height: 1.7;
}


/* HOW */

.how {
    padding: 105px 0;
    background: #101c2b;
    color: #ffffff;
}

.section-heading.light {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.light .section-label {
    color: #ff969a;
}

.steps {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    align-items: start;
    margin-top: 65px;
}

.step {
    text-align: center;
}

.step-number {
    width: 54px;
    height: 54px;
    margin: 0 auto 23px;
    display: grid;
    place-items: center;
    border: 1px solid #4f6b8b;
    border-radius: 50%;
    color: #ff969a;
    font-size: 18px;
    font-weight: 700;
}

.step h3 {
    margin: 0 0 11px;
    font-size: 20px;
}

.step p {
    margin: 0 auto;
    max-width: 240px;
    color: #aebdcd;
    line-height: 1.6;
}

.step-line {
    height: 1px;
    margin-top: 27px;
    background: #35485e;
}

.how-action {
    margin-top: 55px;
    text-align: center;
}


/* BUSINESS */

.business {
    padding: 105px 0;
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.business h2 {
    max-width: 520px;
}

.business-copy {
    padding-top: 20px;
}

.business-copy p {
    color: #647282;
    font-size: 17px;
    line-height: 1.75;
}

.text-link {
    display: inline-block;
    margin-top: 14px;
    color: #fa555b;
    text-decoration: none;
    font-weight: 700;
}


/* CTA */

.cta {
    padding: 75px 0;
    background: #fa555b;
    color: #ffffff;
}

.cta .section-label {
    color: #ffe2e3;
}

.cta h2 {
    margin-bottom: 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}


/* FOOTER */

.site-footer {
    padding: 35px 0;
    background: #0c1724;
    color: #8494a5;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-links a {
    color: #8494a5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

/* CONTACT PAGE */

.contact-page {
    padding: 100px 0 110px;
    background:
        linear-gradient(
            120deg,
            #f7faff 0%,
            #ffffff 58%,
            #fff4f4 100%
        );
    min-height: calc(100vh - 160px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.contact-intro {
    padding-top: 25px;
}

.contact-intro h1 {
    margin: 15px 0 24px;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.contact-intro h1 span {
    display: block;
    color: #fa555b;
}

.contact-intro > p {
    max-width: 500px;
    margin: 0;
    color: #5f6e7d;
    font-size: 17px;
    line-height: 1.75;
}

.contact-detail {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e0e5ea;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.contact-detail a {
    color: #fa555b;
    text-decoration: none;
    font-weight: 700;
}

.contact-form-card {
    padding: 42px;
    background: #ffffff;
    border: 1px solid #dfe5eb;
    border-radius: 14px;
    box-shadow: 0 20px 55px rgba(29, 57, 89, 0.08);
}

.contact-form-card h2 {
    margin: 0;
    font-size: 28px;
}

.form-intro {
    margin: 9px 0 30px;
    color: #6b7785;
}

.contact-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}

.form-group label span {
    color: #fa555b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #bdc7d1;
    border-radius: 5px;
    background: #ffffff;
    color: #17202a;
    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fa555b;
    box-shadow: 0 0 0 3px rgba(250, 85, 91, 0.10);
}

.form-group textarea {
    resize: vertical;
}

.contact-submit {
    min-height: 50px;
    padding: 0 28px;
    border: 0;
    cursor: pointer;
    font-size: 15px;
}

.form-errors {
    margin-bottom: 25px;
    padding: 16px 18px;
    background: #fff1f1;
    border: 1px solid #ffc8ca;
    border-radius: 6px;
    color: #8c2e32;
    font-size: 14px;
}

.form-errors ul {
    margin: 9px 0 0;
    padding-left: 20px;
}

.form-success {
    padding: 25px 5px;
}

.form-success h2 {
    margin-bottom: 12px;
}

.form-success p {
    color: #5f6e7d;
    line-height: 1.7;
}

.website-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* LEGAL PAGES */

.legal-page {
    padding: 90px 0 110px;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
}

.legal-heading {
    padding-bottom: 35px;
    margin-bottom: 45px;
    border-bottom: 1px solid #e2e7ec;
}

.legal-heading h1 {
    margin: 12px 0 10px;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.legal-updated {
    margin: 0;
    color: #7a8794;
    font-size: 13px;
}

.legal-content {
    color: #4f5f6e;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content h2 {
    margin: 45px 0 12px;
    color: #17202a;
    font-size: 23px;
    line-height: 1.3;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content ul {
    margin: 0 0 24px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #fa555b;
    font-weight: 700;
}

/* MOBILE */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .hero {
        padding: 75px 0;
    }

    .hero-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 60px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-line {
        display: none;
    }

    .business-grid {
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .contact-intro {
        padding-top: 0;
    }

}


@media (max-width: 620px) {

    .container {
        width: min(100% - 30px, 1180px);
    }

    .site-header {
        height: 70px;
    }

    .header-actions .login-link {
        display: none;
    }

    .brand-name {
        font-size: 21px;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -1.5px;
    }

    .eyebrow {
        font-size: 10px;
        line-height: 1.5;
        letter-spacing: 1.3px;
        gap: 8px;
    }
    
    .eyebrow span {
        flex: 0 0 4px;
    }
    
    .hero-copy {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .features,
    .how,
    .business {
        padding: 75px 0;
    }

    .cta-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
    
    .contact-page {
        padding: 55px 0 70px;
    }
    
    .contact-intro h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .legal-page {
        padding: 55px 0 75px;
    }
    
    .legal-heading {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .legal-heading h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }
    
    .legal-content {
        font-size: 15px;
    }
    
    .legal-content h2 {
        margin-top: 36px;
        font-size: 21px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-submit {
        width: 100%;
    }

}