﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    /*background: url('/_images/bg-landing.png') no-repeat center top fixed !important;
    background-size: 100% auto !important;*/ /* keeps gradient smooth */
}



/* GLOBAL */
body {
    margin: 0;
    padding-top: 140px; /* ← FIXES THE CUT-OFF */
    padding-bottom: 160px;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #1A1A1A;
}

.header-left {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 5;
}

.gentext-logo {
    height: 140px;
    width: auto;
}

.tincans-img {
    height: 90px;
    width: auto;
}

.login-bar {
    position: absolute;
    top: 140px; /* BELOW the logo */
    right: 140px;
}

.gtx-header-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5 !important;
}


.gtx-logo {
    height: 140px;
    width: auto;
}

.gtx-tincans {
    height: 90px;
    width: auto;
}



h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 15px 0;
}


/* TOP BAR */


.top-bar {
    background: url('/_images/banner-dodgerblue.png') no-repeat center center;
    height: 140px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: fixed; /* anchored */
    top: 0; /* pinned to top */
    left: 0;
    z-index: 9999; /* stays above everything */
}

.gtx-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin-top: 8px;
    margin-bottom: 8px;
    flex-basis: 100%;
}


/* iPhone fix */
@supports (-webkit-overflow-scrolling: touch) {
    .top-bar {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
}




.top-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 40, 120, 0.55);
    backdrop-filter: blur(3px);
    z-index: 0 !important;
}


.login-bar {
    position: absolute;
    top: 45px;
    right: 140px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'IBM Plex Sans';
    display: flex;
    flex-wrap: wrap;
}

    .login-bar input {
        padding: 6px 10px;
        border-radius: 4px;
        border: 1px solid #ccc;
        width: 160px;
        background: #FFFFFF;
        color: #0B1F4A;
    }

    .login-bar button {
        padding: 6px 16px;
        background: #ffffff;
        color: #1877F2;
        border-radius: 4px;
        border: none;
        font-weight: 600;
        cursor: pointer;
    }

/* HERO */
.hero {
    background: #FFFFFF; /* PURE WHITE */
    padding: 40px 20px;
    text-align: center;
    color: #0B1F4A;
}

    .hero h1 {
        font-family: Outfit;
        font-size: 34px;
        letter-spacing: -0.4px;
    }


    .hero p {
        font-size: 18px;
        max-width: 720px;
        margin: 0 auto;
        line-height: 1.45;
    }

/* SECTIONS */
.section {
    background: #FFFFFF; /* PURE WHITE */
    padding: 0px 20px;
    max-width: 1100px;
    margin: auto;
}

    .section h2 {
        font-family: "Inter", sans-serif;
        font-weight: 900; /* heavy like Stripe logo */
        font-size: 40px; /* bold presence */
        letter-spacing: -0.3px; /* tight but not crushed */
        color: #0A2540; /* Stripe navy */
        text-align: center;
        margin-bottom: 40px;
        text-transform: lowercase; /* Stripe logo is lowercase */
    }

/* WHITE CARDS */
.three-col-item,
.feature-card {
    background: #FFFFFF;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

    .three-col-item h3,
    .feature-card h4 {
        color: #145FCC;
        font-size: 20px;
        font-weight: 600;
    }

@media (min-width: 800px) {
    .three-col {
        display: table;
        width: 100%;
    }

    .three-col-item {
        display: table-cell;
        width: 33%;
        margin-right: 20px;
    }

        .three-col-item:last-child {
            margin-right: 0;
        }
}

/* FINAL CTA */
.final-cta {
    background: #FFFFFF; /* PURE WHITE */
    text-align: center;
    padding: 90px 20px;
}

.cta-btn {
    background: #ffffff;
    color: #1877F2;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #1877F2;
    display: inline-block;
}

/* FIXED TRUSTED BY TEXT */
.trusted-by-fixed {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: left;
    color:darkslategrey;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 9998;
    pointer-events: none;
    padding-left: 20px;
}

/* BOTTOM BANNER */
.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #050B1F;
    padding: 12px 0;
    border-top: 1px solid #0F1E4D;
    z-index: 9999;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

/* LOGO SCROLLER */
@keyframes gentextLogoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gtx-logo-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: gentextLogoScroll 28s linear infinite;
    padding-left: 20px;
}

.gtx-logo-img {
    height: 24px;
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(63,169,255,0.35));
    transition: opacity .2s ease;
}



.gtx-contact-float {
    position: fixed;
    right: 20px;
    bottom: 70px; /* adjust if your bottom bar is taller */
    background: white;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 9999;
    font-family: Inter, sans-serif;
}

.gtx-contact-row {
    display: flex;
    gap: 40px; /* even spacing between the three columns */
}

.c-item {
    font-size: 14px;
    line-height: 1.3;
    color: #333;
}

    .c-item strong {
        font-weight: 700;
        display: inline-block;
        margin-bottom: 2px;
    }

    .c-item span {
        display: block;
        color: #555;
    }


.gtx-phones-float {
    position: fixed;
    right: 0;
    top: 120px;
    z-index: 99999;
    pointer-events: none; /* optional */
}

    .gtx-phones-float img {
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        transform: scale(1); /* full size */
        display: block;
    }




