:root{
    --brand:#0ab5c6;
    --brand-dark:#078c9d;
    --brand-deep:#055f6d;

    --navy:#0b1830;
    --navy-2:#101f3b;

    --ink:#15233b;
    --muted:#6f7e93;

    --line:#e4eaf1;
    --soft:#f5f9fc;
    --mint:#eafcfe;

    --white:#ffffff;

    --success:#13a66d;

    --shadow:
        0 18px 55px rgba(20,43,67,.09);

    --shadow-soft:
        0 10px 30px rgba(20,43,67,.06);
}


*{
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{
    margin:0;

    font-family:
        "Manrope",
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;

    color:var(--ink);

    background:#fff;

    -webkit-font-smoothing:antialiased;

    font-size:15px;

    line-height:1.6;
}


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


button,
input,
select,
textarea{
    font:inherit;
}


button{
    cursor:pointer;
}


.landing-container{
    width:min(
        1180px,
        calc(100% - 36px)
    );

    margin:0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header{
    position:sticky;

    top:0;

    z-index:1000;

    background:
        rgba(255,255,255,.96);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid rgba(225,233,240,.92);
}


.header-inner{
    min-height:76px;

    display:flex;

    align-items:center;

    gap:28px;
}


.brand{
    display:flex;

    align-items:center;

    gap:11px;

    min-width:max-content;
}


.brand-mark{
    width:60px;

    height:60px;

    border-radius:14px;

    /* background:#08182b; */

    display:grid;

    place-items:center;

    overflow:hidden;
}


.brand-mark img{
    width:39px;

    height:39px;

    object-fit:contain;
}


.brand-copy{
    display:flex;

    flex-direction:column;
}


.brand-copy strong{
    font-size:18px;

    line-height:1.05;

    font-weight:800;

    color:#0d1d33;
}


.brand-copy small{
    font-size:10px;

    color:#8491a3;

    margin-top:4px;
}


.desktop-nav{
    margin-left:auto;

    display:flex;

    align-items:center;

    gap:26px;
}


.desktop-nav a{
    font-size:13px;

    font-weight:700;

    color:#506078;

    transition:.2s ease;
}


.desktop-nav a:hover{
    color:var(--brand-dark);
}


.header-actions{
    display:flex;

    align-items:center;

    gap:9px;
}


.header-phone{
    display:flex;

    align-items:center;

    gap:7px;

    color:#45566f;

    font-size:12px;

    font-weight:700;

    margin-right:4px;

    white-space:nowrap;
}


.header-phone i{
    color:var(--brand-dark);
}


.btn{
    border:0;

    border-radius:11px;

    min-height:42px;

    padding:0 17px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    font-size:12.5px;

    font-weight:800;

    transition:.2s ease;

    cursor:pointer;
}


.btn:hover{
    transform:translateY(-1px);
}


.btn-primary{
    background:
        linear-gradient(
            135deg,
            var(--brand),
            #08a0b2
        );

    color:#fff;

    box-shadow:
        0 10px 24px
        rgba(8,181,198,.22);
}


.btn-primary:hover{
    color:#fff;
}


.btn-outline{
    background:#fff;

    border:1px solid #dfe7ee;

    color:#24334b;
}


.btn-light{
    background:#fff;

    color:#24334b;

    box-shadow:
        0 10px 26px
        rgba(29,50,72,.09);
}


.btn-lg{
    min-height:52px;

    padding:0 22px;

    font-size:13.5px;

    border-radius:13px;
}


.w-full{
    width:100%;
}


.menu-toggle{
    display:none;

    margin-left:auto;

    width:42px;

    height:42px;

    border:1px solid var(--line);

    border-radius:12px;

    background:#fff;

    color:#24344b;

    font-size:20px;
}


/* IMPORTANT:
   keeps the mobile menu hidden on desktop
   until hamburger is clicked.
*/

.mobile-nav{
    display:none;

    padding:0 18px 18px;

    flex-direction:column;

    gap:4px;

    background:#fff;

    border-top:1px solid #edf1f5;
}


.mobile-nav[hidden]{
    display:none !important;
}


.mobile-nav:not([hidden]){
    display:flex;
}


.mobile-nav a{
    padding:11px 12px;

    border-radius:9px;

    font-size:13px;

    font-weight:700;

    color:#495a72;
}


.mobile-nav a:hover{
    background:#f2f8fa;

    color:var(--brand-dark);
}


/* =========================================================
   HERO
========================================================= */

.hero-section{
    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #f9fcfe 0%,
            #ffffff 100%
        );

    padding:86px 0 80px;
}


.hero-glow{
    position:absolute;

    border-radius:50%;

    filter:blur(2px);

    pointer-events:none;
}


.hero-glow-one{
    width:600px;

    height:600px;

    right:-180px;

    top:-260px;

    background:
        radial-gradient(
            circle,
            rgba(10,181,198,.13),
            transparent 68%
        );
}


.hero-glow-two{
    width:420px;

    height:420px;

    left:-230px;

    bottom:-220px;

    background:
        radial-gradient(
            circle,
            rgba(50,100,230,.07),
            transparent 70%
        );
}


.hero-grid{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
        minmax(0,1.05fr)
        minmax(420px,.95fr);

    align-items:center;

    gap:70px;
}


.eyebrow,
.section-kicker{
    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--brand-dark);

    font-size:10px;

    letter-spacing:.11em;

    text-transform:uppercase;

    font-weight:800;
}


.eyebrow span{
    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--brand);

    box-shadow:
        0 0 0 5px
        rgba(10,181,198,.12);
}


.hero-copy h1{
    margin:18px 0 22px;

    font-size:62px;

    line-height:1.02;

    letter-spacing:-.055em;

    color:#0e1d34;

    font-weight:800;
}


.hero-copy h1 em{
    font-style:normal;

    color:var(--brand);
}


.hero-lead{
    max-width:660px;

    font-size:17px;

    line-height:1.8;

    color:#65748a;

    margin:0;
}


.hero-actions{
    display:flex;

    align-items:center;

    gap:12px;

    margin-top:30px;
}


.hero-points{
    display:flex;

    flex-wrap:wrap;

    gap:16px 22px;

    margin-top:27px;
}


.hero-points span{
    display:flex;

    align-items:center;

    gap:7px;

    color:#607089;

    font-size:11.5px;

    font-weight:700;
}


.hero-points i{
    color:#17aa70;
}


/* =========================================================
   VCARD HERO PREVIEW
========================================================= */

.hero-visual{
    position:relative;

    min-height:565px;

    display:flex;

    align-items:center;

    justify-content:center;
}


.vcard-preview{
    position:absolute;

    left:50%;

    top:50%;

    width:285px;

    transform:
        translate(-50%,-50%)
        rotate(-1.5deg);

    border-radius:26px;

    background:#fff;

    box-shadow:
        0 30px 75px
        rgba(21,49,76,.18);

    overflow:hidden;

    border:1px solid #e3ebf1;

    z-index:3;
}


.preview-top{
    height:72px;

    padding:15px 16px;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    background:#dff6fb;
}


.preview-company{
    display:flex;

    align-items:center;

    gap:7px;
}


.mini-logo{
    width:30px;

    height:30px;

    border-radius:9px;

    background:#0aabbc;

    color:#fff;

    display:grid;

    place-items:center;

    font-weight:800;
}


.preview-company strong{
    font-size:12px;
}


.preview-share{
    width:30px;

    height:30px;

    border-radius:50%;

    background:#fff;

    color:#0aa8b9;

    display:grid;

    place-items:center;

    box-shadow:
        0 6px 15px
        rgba(24,64,87,.08);
}


.preview-photo{
    height:166px;

    background:
        linear-gradient(
            180deg,
            #dff6fb,
            #ecfbfd
        );

    position:relative;

    display:flex;

    align-items:flex-end;

    justify-content:center;
}


.preview-photo::before{
    content:"";

    position:absolute;

    width:155px;

    height:155px;

    border:
        1px solid
        rgba(8,181,198,.18);

    border-radius:50%;

    bottom:3px;
}


.preview-person{
    width:112px;

    height:135px;

    border-radius:
        54px
        54px
        20px
        20px;

    background:
        linear-gradient(
            180deg,
            #0c243f,
            #0f4053
        );

    display:grid;

    place-items:center;

    color:#fff;

    font-size:74px;

    z-index:1;
}


.preview-body{
    padding:16px 17px 19px;

    text-align:center;
}


.preview-body h3{
    margin:0;

    font-size:21px;

    letter-spacing:-.03em;
}


.preview-body p{
    margin:3px 0 0;

    color:#748198;

    font-size:10px;
}


.preview-actions{
    display:flex;

    justify-content:center;

    gap:10px;

    margin:16px 0;
}


.preview-actions span{
    width:36px;

    height:36px;

    border-radius:50%;

    background:var(--brand);

    color:#fff;

    display:grid;

    place-items:center;

    font-size:14px;

    box-shadow:
        0 7px 15px
        rgba(8,181,198,.22);
}


.preview-row{
    height:40px;

    border:1px solid #e5ebf1;

    border-radius:11px;

    margin-top:7px;

    display:flex;

    align-items:center;

    gap:9px;

    padding:0 11px;

    text-align:left;
}


.preview-row i{
    color:var(--brand-dark);
}


.preview-row strong{
    font-size:9px;
}


.floating-badge{
    position:absolute;

    z-index:4;

    display:flex;

    align-items:center;

    gap:10px;

    padding:11px 13px;

    background:#fff;

    border:1px solid #e3eaf0;

    border-radius:14px;

    box-shadow:
        0 14px 32px
        rgba(20,43,67,.11);
}


.floating-badge > i{
    width:34px;

    height:34px;

    border-radius:10px;

    background:var(--mint);

    display:grid;

    place-items:center;

    color:var(--brand-dark);

    font-size:16px;
}


.floating-badge div{
    display:flex;

    flex-direction:column;
}


.floating-badge strong{
    font-size:10.5px;
}


.floating-badge span{
    font-size:8px;

    color:#8a96a7;
}


.floating-badge-left{
    left:5px;

    top:100px;
}


.floating-badge-right{
    right:5px;

    bottom:115px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip{
    border-top:1px solid #edf1f5;

    border-bottom:1px solid #edf1f5;

    background:#fff;
}


.trust-grid{
    display:grid;

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


.trust-grid > div{
    padding:24px;

    display:grid;

    grid-template-columns:
        40px 1fr;

    column-gap:11px;

    border-right:
        1px solid #edf1f5;
}


.trust-grid > div:last-child{
    border-right:0;
}


.trust-grid i{
    grid-row:1/3;

    width:40px;

    height:40px;

    border-radius:12px;

    background:#edfbfc;

    display:grid;

    place-items:center;

    color:var(--brand-dark);

    font-size:17px;
}


.trust-grid strong{
    font-size:11.5px;
}


.trust-grid span{
    font-size:9.5px;

    color:#8591a2;

    margin-top:2px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section{
    padding:94px 0;
}


.section-soft{
    background:#f7fafc;
}


.section-heading{
    max-width:760px;

    margin-bottom:44px;
}


.section-heading.centered{
    text-align:center;

    margin-left:auto;

    margin-right:auto;
}


.section-heading h2{
    font-size:39px;

    line-height:1.18;

    letter-spacing:-.04em;

    margin:12px 0 14px;

    color:#102039;
}


.section-heading p{
    margin:0;

    color:#718095;

    font-size:14px;

    line-height:1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-grid{
    display:grid;

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

    gap:17px;
}


.feature-card{
    position:relative;

    padding:24px;

    border:
        1px solid #e4ebf1;

    border-radius:19px;

    background:#fff;

    box-shadow:
        0 5px 18px
        rgba(24,45,67,.025);

    transition:.2s ease;
}


.feature-card:hover{
    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-soft);

    border-color:
        #d6e8ec;
}


.feature-card.featured{
    background:
        linear-gradient(
            145deg,
            #0a1a2f,
            #0e3446
        );

    color:#fff;

    border-color:
        transparent;
}


.feature-icon{
    width:46px;

    height:46px;

    border-radius:14px;

    display:grid;

    place-items:center;

    background:#eafafb;

    color:var(--brand-dark);

    font-size:20px;
}


.featured .feature-icon{
    background:
        rgba(27,220,229,.14);

    color:#69edf3;
}


.feature-card h3{
    font-size:16px;

    margin:17px 0 8px;
}


.feature-card p{
    font-size:11.5px;

    line-height:1.75;

    color:#718096;

    margin:0;
}


.featured p{
    color:#b5c3d2;
}


.feature-tag{
    display:inline-block;

    margin-top:16px;

    padding:6px 9px;

    border-radius:999px;

    background:
        rgba(255,255,255,.09);

    color:#8ff5f5;

    font-size:8.5px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.08em;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.workflow-section{
    background:
        linear-gradient(
            135deg,
            #09182c,
            #0c2d42 72%,
            #075c67
        );

    color:#fff;
}


.light-heading h2{
    color:#fff;
}


.light-heading p{
    color:#aebfcd;
}


.workflow-grid{
    display:grid;

    grid-template-columns:
        1fr
        62px
        1fr
        62px
        1fr
        62px
        1fr;

    align-items:start;
}


.workflow-item{
    text-align:center;

    position:relative;
}


.workflow-item > span{
    font-size:9px;

    font-weight:800;

    color:#6fdce6;

    letter-spacing:.12em;
}


.workflow-icon{
    width:66px;

    height:66px;

    border-radius:20px;

    margin:
        11px auto 16px;

    background:
        rgba(10,184,198,.12);

    border:
        1px solid
        rgba(71,224,232,.18);

    display:grid;

    place-items:center;

    color:#75edf3;

    font-size:25px;
}


.workflow-item h3{
    font-size:14px;

    margin:
        0 0 8px;
}


.workflow-item p{
    margin:0;

    color:#a9b8c7;

    font-size:10.5px;

    line-height:1.7;
}


.workflow-line{
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #2d7580,
            transparent
        );

    margin-top:54px;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-grid{
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:18px;

    align-items:stretch;
}


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


.price-card{
    position:relative;

    border:
        1px solid #e1e9ef;

    border-radius:21px;

    background:#fff;

    padding:25px;

    box-shadow:
        0 8px 26px
        rgba(22,45,67,.04);

    display:flex;

    flex-direction:column;
}


.price-card.popular{
    border-color:#87dbe3;

    box-shadow:
        0 18px 45px
        rgba(8,181,198,.11);

    transform:
        translateY(-5px);
}


.popular-badge{
    position:absolute;

    right:18px;

    top:18px;

    padding:5px 9px;

    border-radius:999px;

    background:#e8fbfc;

    color:#078c9d;

    font-size:8px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.08em;
}


.price-icon{
    width:46px;

    height:46px;

    border-radius:14px;

    background:#edfafa;

    color:var(--brand-dark);

    display:grid;

    place-items:center;

    font-size:20px;
}


.price-type{
    margin-top:17px;

    color:#8794a6;

    font-size:8.5px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.1em;
}


.price-card h3{
    font-size:17px;

    margin:4px 0 10px;
}


.price{
    min-height:45px;

    display:flex;

    align-items:baseline;

    color:#0f2038;

    font-size:31px;

    font-weight:800;

    letter-spacing:-.035em;
}


.price sup{
    font-size:15px;

    top:-.7em;

    margin-right:2px;
}


.price span{
    font-size:22px;
}


.price-card > p{
    font-size:10.5px;

    color:#7a8799;

    line-height:1.65;

    min-height:52px;
}


.price-card ul{
    list-style:none;

    padding:0;

    margin:
        17px 0 24px;

    flex:1;
}


.price-card li{
    display:flex;

    align-items:flex-start;

    gap:8px;

    font-size:10.5px;

    color:#4b5b72;

    margin:9px 0;
}


.price-card li i{
    color:#10a86d;

    margin-top:1px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-layout{
    display:grid;

    grid-template-columns:
        .75fr
        1.25fr;

    gap:70px;

    align-items:start;
}


.faq-intro h2{
    font-size:37px;

    line-height:1.2;

    letter-spacing:-.035em;

    margin:12px 0;
}


.faq-intro > p{
    color:#738197;

    font-size:12.5px;

    line-height:1.8;
}


.faq-contact{
    display:flex;

    align-items:center;

    gap:12px;

    margin-top:24px;

    padding:15px;

    border-radius:15px;

    background:#fff;

    border:
        1px solid #e2e9ef;
}


.faq-contact > i{
    width:43px;

    height:43px;

    border-radius:13px;

    background:#eafafb;

    color:var(--brand-dark);

    display:grid;

    place-items:center;

    font-size:20px;
}


.faq-contact div{
    display:flex;

    flex-direction:column;
}


.faq-contact small{
    font-size:8px;

    color:#8794a5;

    text-transform:uppercase;

    font-weight:800;

    letter-spacing:.08em;
}


.faq-contact a{
    font-size:11px;

    font-weight:700;

    color:#25354d;
}


.faq-list{
    display:grid;

    gap:10px;
}


.faq-list details{
    border:
        1px solid #e1e8ee;

    border-radius:15px;

    background:#fff;

    overflow:hidden;
}


.faq-list summary{
    list-style:none;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    padding:17px 18px;

    font-size:12px;

    font-weight:800;

    cursor:pointer;
}


.faq-list summary::-webkit-details-marker{
    display:none;
}


.faq-list summary i{
    color:var(--brand-dark);

    transition:.2s ease;
}


.faq-list details[open] summary i{
    transform:
        rotate(45deg);
}


.faq-list details p{
    margin:0;

    padding:
        0 18px 18px;

    font-size:11px;

    color:#718096;

    line-height:1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section{
    padding:94px 0;

    background:
        linear-gradient(
            135deg,
            #09182c,
            #0d3043
        );

    color:#fff;

    position:relative;

    overflow:hidden;
}


.contact-section::before{
    content:"";

    position:absolute;

    width:480px;

    height:480px;

    border-radius:50%;

    right:-190px;

    top:-240px;

    background:
        rgba(15,193,205,.11);
}


.contact-grid{
    position:relative;

    z-index:1;

    display:grid;

    grid-template-columns:
        .88fr
        1.12fr;

    gap:70px;

    align-items:center;
}


.contact-copy h2{
    font-size:42px;

    line-height:1.17;

    letter-spacing:-.04em;

    margin:13px 0 16px;
}


.contact-copy > p{
    color:#acbbc9;

    font-size:13px;

    line-height:1.8;
}


.contact-cards{
    display:grid;

    gap:10px;

    margin-top:28px;
}


.contact-card{
    min-height:70px;

    border-radius:15px;

    border:
        1px solid
        rgba(255,255,255,.11);

    background:
        rgba(255,255,255,.05);

    display:flex;

    align-items:center;

    gap:12px;

    padding:11px 13px;

    color:#fff;

    transition:.2s ease;
}


.contact-card:hover{
    background:
        rgba(255,255,255,.08);

    transform:
        translateX(3px);
}


.contact-card > span{
    width:40px;

    height:40px;

    border-radius:12px;

    background:
        rgba(12,190,202,.12);

    display:grid;

    place-items:center;

    color:#72edf4;
}


.contact-card > div{
    display:flex;

    flex-direction:column;

    flex:1;
}


.contact-card small{
    font-size:8px;

    color:#7f9aac;

    text-transform:uppercase;

    letter-spacing:.08em;
}


.contact-card strong{
    font-size:11px;

    margin-top:2px;
}


.contact-card > i{
    color:#7191a7;
}


/* =========================================================
   INQUIRY FORM
========================================================= */

.inquiry-card{
    background:#fff;

    color:var(--ink);

    border-radius:24px;

    padding:30px;

    box-shadow:
        0 30px 75px
        rgba(0,0,0,.18);
}


.inquiry-heading > span{
    font-size:8.5px;

    text-transform:uppercase;

    letter-spacing:.11em;

    color:var(--brand-dark);

    font-weight:800;
}


.inquiry-heading h3{
    font-size:25px;

    margin:5px 0 4px;
}


.inquiry-heading p{
    font-size:9.5px;

    color:#8c98a8;

    margin:
        0 0 20px;
}


.form-alert{
    display:flex;

    gap:9px;

    align-items:flex-start;

    padding:11px 12px;

    border-radius:12px;

    margin-bottom:16px;

    font-size:10.5px;

    font-weight:600;
}


.form-alert.success{
    background:#eaf9f2;

    color:#0e7d50;
}


.form-alert.error{
    background:#fff0f2;

    color:#b13c4c;
}


.inquiry-form{
    display:grid;

    gap:14px;
}


.form-row{
    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:12px;
}


.field{
    display:flex;

    flex-direction:column;
}


.field label{
    font-size:9.5px;

    font-weight:800;

    color:#283950;

    margin-bottom:6px;
}


.input-wrap{
    position:relative;
}


.input-wrap > i{
    position:absolute;

    left:12px;

    top:50%;

    transform:
        translateY(-50%);

    color:#8b99aa;

    font-size:12px;

    z-index:2;
}


.input-wrap input,
.input-wrap select,
.field textarea{
    width:100%;

    border:
        1px solid #dfe7ed;

    border-radius:11px;

    background:#fff;

    color:#203149;

    outline:0;

    transition:.2s ease;

    font-size:11px;
}


.input-wrap input,
.input-wrap select{
    height:46px;

    padding:
        0 12px 0 36px;
}


.field textarea{
    padding:12px;

    resize:vertical;

    min-height:112px;

    line-height:1.6;
}


.input-wrap input:focus,
.input-wrap select:focus,
.field textarea:focus{
    border-color:#80dbe3;

    box-shadow:
        0 0 0 3px
        rgba(10,181,198,.08);
}


.field-error{
    font-size:8.5px;

    color:#d54d61;

    margin-top:4px;
}


.select-wrap select{
    appearance:none;
}


.form-note{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    margin:0;

    color:#8a97a8;

    font-size:8.5px;

    text-align:center;

    flex-wrap:wrap;
}


.form-note i{
    color:#10a66b;
}


.honeypot{
    position:absolute !important;

    left:-9999px !important;

    width:1px !important;

    height:1px !important;

    opacity:0 !important;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    background:#071526;

    color:#9eb0c0;

    padding:54px 0 0;
}


.footer-main{
    display:grid;

    grid-template-columns:
        1.6fr
        .7fr
        .9fr;

    gap:55px;

    padding-bottom:38px;
}


.footer-brand .brand-copy strong{
    color:#fff;
}


.footer-brand p{
    max-width:330px;

    font-size:10.5px;

    line-height:1.7;

    margin:15px 0 0;
}


.footer-links{
    display:flex;

    flex-direction:column;

    gap:9px;
}


.footer-links strong{
    color:#fff;

    font-size:11px;

    margin-bottom:3px;
}


.footer-links a{
    font-size:10px;
}


.footer-links a:hover{
    color:#70e5ed;
}


.footer-bottom{
    min-height:64px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    font-size:9px;
}


.footer-bottom a{
    color:#69e1e9;

    font-weight:700;
}


/* =========================================================
   RESPONSIVE <= 1080
========================================================= */

@media(max-width:1080px){

    .desktop-nav{
        display:none;
    }


    .header-phone{
        display:none;
    }


    .menu-toggle{
        display:grid;

        place-items:center;
    }


    .header-actions{
        margin-left:auto;
    }


    .mobile-nav[hidden]{
        display:none !important;
    }


    .mobile-nav:not([hidden]){
        display:flex;
    }


    .hero-grid{
        grid-template-columns:1fr;

        gap:35px;
    }


    .hero-copy{
        text-align:center;

        max-width:780px;

        margin:0 auto;
    }


    .hero-lead{
        margin-left:auto;

        margin-right:auto;
    }


    .hero-actions,
    .hero-points{
        justify-content:center;
    }


    .hero-visual{
        max-width:610px;

        width:100%;

        margin:0 auto;
    }


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


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


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


    .trust-grid > div:nth-child(2){
        border-right:0;
    }


    .trust-grid > div:nth-child(-n+2){
        border-bottom:
            1px solid #edf1f5;
    }

}


/* =========================================================
   RESPONSIVE <= 820
========================================================= */

@media(max-width:820px){

    .section{
        padding:72px 0;
    }


    .header-actions .btn-outline{
        display:none;
    }


    .hero-copy h1{
        font-size:50px;
    }


    .workflow-grid{
        grid-template-columns:
            1fr 1fr;

        gap:28px;
    }


    .workflow-line{
        display:none;
    }


    .faq-layout,
    .contact-grid{
        grid-template-columns:1fr;
    }


    .contact-grid{
        gap:42px;
    }


    .contact-copy{
        text-align:center;
    }


    .contact-cards{
        max-width:500px;

        margin:
            28px auto 0;

        text-align:left;
    }


    .footer-main{
        grid-template-columns:
            1.2fr
            1fr
            1fr;

        gap:25px;
    }


    .footer-bottom{
        flex-direction:column;

        justify-content:center;

        padding:16px 0;

        text-align:center;
    }

}


/* =========================================================
   RESPONSIVE <= 640
========================================================= */

@media(max-width:640px){

    body{
        font-size:14px;
    }


    .landing-container{
        width:
            min(
                calc(100% - 24px),
                1180px
            );
    }


    .site-header .brand-copy small{
        display:none;
    }


    .header-actions .btn-primary{
        display:none;
    }


    .header-inner{
        min-height:68px;
    }


    .hero-section{
        padding:
            58px 0 52px;
    }


    .hero-copy h1{
        font-size:41px;
    }


    .hero-lead{
        font-size:14px;
    }


    .hero-actions{
        flex-direction:column;
    }


    .hero-actions .btn{
        width:100%;

        max-width:330px;
    }


    .hero-points{
        display:grid;

        justify-content:start;

        max-width:330px;

        margin:
            24px auto 0;

        text-align:left;
    }


    .hero-visual{
        min-height:510px;
    }


    .vcard-preview{
        width:250px;
    }


    .floating-badge{
        padding:9px;
    }


    .floating-badge-left{
        left:-10px;
    }


    .floating-badge-right{
        right:-8px;
    }


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


    .trust-grid > div{
        border-right:0 !important;

        border-bottom:
            1px solid #edf1f5 !important;
    }


    .trust-grid > div:last-child{
        border-bottom:0 !important;
    }


    .section-heading h2{
        font-size:31px;
    }


    .feature-grid,
    .pricing-grid,
    .pricing-grid-many{
        grid-template-columns:1fr;
    }


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


    .workflow-item{
        max-width:340px;

        margin:0 auto;
    }


    .contact-copy h2{
        font-size:31px;
    }


    .faq-intro h2{
        font-size:30px;
    }


    .form-row{
        grid-template-columns:1fr;
    }


    .inquiry-card{
        padding:
            22px 17px;

        border-radius:18px;
    }


    .footer-main{
        grid-template-columns:1fr;
    }


    .footer-bottom{
        font-size:8.5px;
    }

}


/* =========================================================
   RESPONSIVE <= 420
========================================================= */

@media(max-width:420px){

    .brand-copy strong{
        font-size:16px;
    }


    .hero-copy h1{
        font-size:36px;
    }


    .hero-visual{
        min-height:480px;
    }


    .vcard-preview{
        width:235px;
    }


    .floating-badge{
        display:none;
    }


    .section-heading h2{
        font-size:28px;
    }


    .contact-copy h2{
        font-size:29px;
    }

}
/* =========================================================
   GTECH VCARD - READABILITY UPDATE
   Increase description/footer typography by ~2-3px
========================================================= */


/* Hero supporting description */
.hero-lead{
    font-size:18px;
    line-height:1.8;
}


/* Small hero benefit lines */
.hero-points span{
    font-size:13.5px;
}


/* Trust strip */
.trust-grid strong{
    font-size:13.5px;
}

.trust-grid span{
    font-size:12px;
    line-height:1.5;
}


/* General section descriptions */
.section-heading p{
    font-size:16px;
    line-height:1.8;
}


/* Feature card descriptions */
.feature-card p{
    font-size:14px;
    line-height:1.75;
}


/* Feature card heading */
.feature-card h3{
    font-size:17px;
}


/* How it works descriptions */
.workflow-item p{
    font-size:13px;
    line-height:1.7;
}

.workflow-item h3{
    font-size:15.5px;
}


/* Plan description */
.price-card > p{
    font-size:13px;
    line-height:1.7;
}


/* Plan feature list */
.price-card li{
    font-size:12.5px;
}


/* FAQ intro */
.faq-intro > p{
    font-size:14.5px;
    line-height:1.8;
}


/* FAQ questions */
.faq-list summary{
    font-size:14px;
}


/* FAQ answers */
.faq-list details p{
    font-size:13px;
    line-height:1.75;
}


/* Contact section description */
.contact-copy > p{
    font-size:15px;
    line-height:1.8;
}


/* Contact cards */
.contact-card small{
    font-size:10px;
}

.contact-card strong{
    font-size:13px;
}


/* Inquiry heading supporting description */
.inquiry-heading p{
    font-size:11.5px;
}


/* Form labels */
.field label{
    font-size:11.5px;
}


/* Form inputs */
.input-wrap input,
.input-wrap select,
.field textarea{
    font-size:13px;
}


/* Form error */
.field-error{
    font-size:10.5px;
}


/* Form bottom security note */
.form-note{
    font-size:10.5px;
}


/* =========================================================
   FOOTER TYPOGRAPHY
========================================================= */

.footer-brand p{
    font-size:13px;
    line-height:1.75;
}


/* Footer column headings */
.footer-links strong{
    font-size:13px;
}


/* Footer navigation/contact links */
.footer-links a{
    font-size:12.5px;
    line-height:1.6;
}


/* Copyright + developer credit */
.footer-bottom{
    font-size:11.5px;
}


/* Make developer/company link slightly more visible */
.footer-bottom a{
    font-size:11.5px;
    font-weight:800;
}


/* Footer small brand subtitle */
.site-footer .brand-copy small{
    font-size:11px;
}


/* =========================================================
   MOBILE READABILITY
========================================================= */

@media(max-width:640px){

    .hero-lead{
        font-size:16px;
    }

    .hero-points span{
        font-size:12.5px;
    }

    .section-heading p{
        font-size:14.5px;
    }

    .feature-card p{
        font-size:13px;
    }

    .workflow-item p{
        font-size:12.5px;
    }

    .price-card > p{
        font-size:12.5px;
    }

    .price-card li{
        font-size:12px;
    }

    .faq-intro > p{
        font-size:13.5px;
    }

    .faq-list summary{
        font-size:13px;
    }

    .faq-list details p{
        font-size:12.5px;
    }

    .contact-copy > p{
        font-size:14px;
    }

    .footer-brand p{
        font-size:12.5px;
    }

    .footer-links strong{
        font-size:12.5px;
    }

    .footer-links a{
        font-size:12px;
    }

    .footer-bottom,
    .footer-bottom a{
        font-size:10.5px;
    }

}