:root{
    --lt-purple:#684964;
    --lt-purple-dark:#493447;
    --lt-purple-deep:#342333;
    --lt-lavender:#a962a1;
    --lt-lavender-soft:#f3ebf2;
    --lt-red:#cf2637;
    --lt-red-dark:#ad1d2b;
    --lt-ink:#28242a;
    --lt-muted:#716a72;
    --lt-border:#e9e4e9;
    --lt-soft:#f8f6f8;
    --lt-soft-2:#f2eef2;
    --lt-white:#ffffff;
    --lt-width:1180px;
    --lt-radius:22px;
    --lt-shadow:0 20px 55px rgba(57,39,56,.09);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--lt-white);
    color:var(--lt-ink);
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
}

img{
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
}

.lt-container{
    width:min(calc(100% - 40px), var(--lt-width));
    margin-inline:auto;
}

/* =========================================================
   HEADER / TOP BAR
   ========================================================= */

.site-header{
    position:relative;
    z-index:20;
    background:#fff;
    border-bottom:1px solid var(--lt-border);
}

.site-topbar{
    background:var(--lt-purple-deep);
    color:#fff;
}

.site-topbar-inner{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.topbar-contact-group{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.82);
    font-size:12px;
    font-weight:700;
}

.topbar-contact-group a{
    color:#fff;
    text-decoration:none;
}

.topbar-contact-group a:hover{
    color:#efb0b9;
}

.topbar-divider{
    color:rgba(255,255,255,.42);
}

.header-inner{
    min-height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:34px;
}

.site-logo{
    display:block;
    width:min(290px, 31vw);
}

.site-logo img{
    display:block;
    width:100%;
}

.primary-nav ul{
    display:flex;
    align-items:center;
    gap:27px;
    margin:0;
    padding:0;
    list-style:none;
}

.primary-nav a{
    position:relative;
    color:var(--lt-ink);
    font-size:14px;
    font-weight:700;
    text-decoration:none;
}

.primary-nav a::after{
    content:"";
    position:absolute;
    left:0;
    right:100%;
    bottom:-8px;
    height:2px;
    background:var(--lt-red);
    transition:right .2s ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a{
    color:var(--lt-purple);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after{
    right:0;
}

/* =========================================================
   GLOBAL TYPOGRAPHY / BUTTONS
   ========================================================= */

.lt-eyebrow{
    margin:0 0 14px;
    color:var(--lt-red);
    font-size:12px;
    font-weight:800;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.lt-section{
    padding:92px 0;
}

.lt-section-soft{
    background:var(--lt-soft);
}

.lt-section-title{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:clamp(34px,4.5vw,54px);
    line-height:1.08;
    letter-spacing:-.038em;
}

.lt-large-copy{
    margin:24px 0 0;
    color:#4f4850;
    font-size:20px;
    line-height:1.7;
}

.lt-body-copy{
    margin:20px 0 0;
    color:var(--lt-muted);
    font-size:16px;
    line-height:1.8;
}

.lt-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 25px;
    border:1px solid transparent;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.lt-button:hover{
    transform:translateY(-2px);
}

.lt-button-primary{
    background:var(--lt-purple);
    color:#fff;
}

.lt-button-primary:hover{
    background:var(--lt-purple-dark);
}

.lt-button-light{
    border-color:var(--lt-border);
    background:rgba(255,255,255,.94);
    color:var(--lt-purple-dark);
}

.lt-button-light:hover{
    border-color:var(--lt-purple);
}

.lt-button-white{
    background:#fff;
    color:var(--lt-purple-dark);
}

.lt-button-outline-white{
    border-color:rgba(255,255,255,.5);
    color:#fff;
}

.lt-button-outline-white:hover{
    border-color:#fff;
}

.lt-text-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-top:28px;
    color:var(--lt-purple);
    font-size:14px;
    font-weight:800;
    text-decoration:none;
}

.lt-text-link span{
    color:var(--lt-red);
    font-size:18px;
    transition:transform .2s ease;
}

.lt-text-link:hover span{
    transform:translateX(4px);
}

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

.lt-hero{
    position:relative;
    min-height:625px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.99) 0%,
            rgba(255,255,255,.97) 31%,
            rgba(255,255,255,.80) 48%,
            rgba(255,255,255,.17) 72%,
            rgba(255,255,255,.02) 100%
        ),
        url('https://lantechcomps.com/wp-content/uploads/2026/08/img-1.jpg')
        center center / cover no-repeat;
}

.lt-hero::after{
    content:"";
    position:absolute;
    inset:auto auto 0 0;
    width:40%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--lt-purple),
        var(--lt-lavender),
        var(--lt-red)
    );
}

.lt-hero-inner{
    /* inherits the shared .lt-container width so hero content
       aligns with the rest of the site blocks */
}

.lt-hero-copy{
    position:relative;
    z-index:2;
    max-width:660px;
    padding:90px 0 96px;
}

.lt-hero h1{
    margin:0;
    max-width:650px;
    color:var(--lt-purple-dark);
    font-size:clamp(46px,6.2vw,76px);
    line-height:.98;
    letter-spacing:-.05em;
}

.lt-hero-lead{
    max-width:610px;
    margin:25px 0 0;
    color:#554e56;
    font-size:19px;
    line-height:1.72;
}

.lt-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:32px;
}

/* =========================================================
   QUICK SERVICE STRIP
   ========================================================= */

.lt-service-strip{
    border-bottom:1px solid var(--lt-border);
    background:#fff;
}

.lt-service-strip-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.lt-service-strip-item{
    min-height:105px;
    display:flex;
    align-items:center;
    gap:15px;
    padding:22px 24px;
    border-right:1px solid var(--lt-border);
}

.lt-service-strip-item:first-child{
    border-left:1px solid var(--lt-border);
}

.lt-service-icon{
    flex:0 0 38px;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--lt-lavender-soft);
    color:var(--lt-purple);
    font-size:11px;
    font-weight:900;
}

.lt-service-strip-item strong,
.lt-service-strip-item span{
    display:block;
}

.lt-service-strip-item strong{
    color:var(--lt-purple-dark);
    font-size:14px;
}

.lt-service-strip-item div span{
    margin-top:2px;
    color:var(--lt-muted);
    font-size:12px;
    line-height:1.45;
}

/* =========================================================
   INTRO
   ========================================================= */

.lt-intro-grid{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
    gap:80px;
    align-items:center;
}

.lt-principles-card{
    position:relative;
    padding:38px;
    overflow:hidden;
    border:1px solid var(--lt-border);
    border-radius:var(--lt-radius);
    background:
        linear-gradient(145deg, #fff 0%, #faf7fa 100%);
    box-shadow:var(--lt-shadow);
}

.lt-principles-card::before{
    content:"";
    position:absolute;
    width:170px;
    height:170px;
    right:-65px;
    top:-65px;
    border-radius:40px;
    transform:rotate(45deg);
    background:linear-gradient(
        135deg,
        rgba(105,72,101,.14),
        rgba(204,38,55,.10)
    );
}

.lt-card-kicker{
    position:relative;
    margin:0 0 9px;
    color:var(--lt-red);
    font-size:11px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.lt-principles-card h3{
    position:relative;
    margin:0;
    max-width:360px;
    color:var(--lt-purple-dark);
    font-size:28px;
    line-height:1.2;
}

.lt-check-list{
    position:relative;
    margin:29px 0 0;
    padding:0;
    list-style:none;
}

.lt-check-list li{
    display:flex;
    gap:12px;
    padding:13px 0;
    border-top:1px solid var(--lt-border);
    color:#554e56;
    font-size:14px;
}

.lt-check-list li span{
    color:var(--lt-red);
    font-weight:900;
}

/* =========================================================
   SERVICES
   ========================================================= */

.lt-section-heading{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(280px,.7fr);
    gap:70px;
    align-items:end;
    margin-bottom:46px;
}

.lt-section-heading > p{
    margin:0 0 4px;
    color:var(--lt-muted);
    font-size:16px;
    line-height:1.75;
}

.lt-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.lt-service-card{
    min-height:255px;
    padding:31px;
    border:1px solid var(--lt-border);
    border-radius:18px;
    background:#fff;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.lt-service-card:hover{
    transform:translateY(-5px);
    border-color:#d9cdd8;
    box-shadow:0 18px 38px rgba(63,44,62,.08);
}

.lt-card-number{
    display:block;
    margin-bottom:34px;
    color:var(--lt-red);
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
}

.lt-service-card h3{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:21px;
    line-height:1.25;
}

.lt-service-card p{
    margin:15px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.75;
}

.lt-service-card-featured{
    border-color:transparent;
    background:var(--lt-purple);
}

.lt-service-card-featured .lt-card-number{
    color:#f2b9c0;
}

.lt-service-card-featured h3{
    color:#fff;
}

.lt-service-card-featured p{
    color:rgba(255,255,255,.77);
}

.lt-section-action{
    margin-top:34px;
    text-align:center;
}

/* =========================================================
   FEATURE / SOLUTIONS
   ========================================================= */

.lt-feature-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:68px;
    align-items:center;
}

.lt-feature-image{
    position:relative;
}

.lt-feature-image::before{
    content:"";
    position:absolute;
    left:-14px;
    bottom:-14px;
    width:68%;
    height:68%;
    border-radius:22px;
    background:var(--lt-lavender-soft);
}

.lt-feature-image img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    aspect-ratio:1.22/1;
    object-fit:cover;
    border-radius:22px;
    box-shadow:var(--lt-shadow);
}

.lt-mini-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:29px;
}

.lt-mini-grid > div{
    padding:18px;
    border-left:3px solid var(--lt-lavender);
    background:var(--lt-soft);
}

.lt-mini-grid strong,
.lt-mini-grid span{
    display:block;
}

.lt-mini-grid strong{
    color:var(--lt-purple-dark);
    font-size:14px;
}

.lt-mini-grid span{
    margin-top:4px;
    color:var(--lt-muted);
    font-size:12px;
    line-height:1.5;
}

/* =========================================================
   WHY
   ========================================================= */

.lt-why-section{
    background:
        linear-gradient(
            135deg,
            rgba(105,72,101,.04),
            transparent 42%
        ),
        #fff;
}

.lt-center-heading{
    max-width:730px;
    margin:0 auto 46px;
    text-align:center;
}

.lt-center-heading .lt-eyebrow{
    text-align:center;
}

.lt-center-heading > p:last-child{
    max-width:650px;
    margin:20px auto 0;
    color:var(--lt-muted);
    font-size:16px;
    line-height:1.75;
}

.lt-values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.lt-value-card{
    padding:29px;
    border:1px solid var(--lt-border);
    border-radius:18px;
    background:#fff;
}

.lt-value-mark{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    margin-bottom:24px;
    border-radius:14px;
    background:var(--lt-lavender-soft);
    color:var(--lt-purple);
    font-weight:900;
}

.lt-value-card:nth-child(4) .lt-value-mark{
    background:#f9e8ea;
    color:var(--lt-red);
}

.lt-value-card h3{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:19px;
}

.lt-value-card p{
    margin:12px 0 0;
    color:var(--lt-muted);
    font-size:13px;
    line-height:1.7;
}

/* =========================================================
   CLIENT TYPES
   ========================================================= */

.lt-clients-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.lt-clients-grid article{
    padding:31px;
    border-top:3px solid var(--lt-purple);
    background:var(--lt-soft);
}

.lt-clients-grid article:nth-child(2){
    border-top-color:var(--lt-lavender);
}

.lt-clients-grid article:nth-child(3){
    border-top-color:var(--lt-red);
}

.lt-clients-grid article > span{
    color:var(--lt-muted);
    font-size:11px;
    font-weight:900;
    letter-spacing:.1em;
}

.lt-clients-grid h3{
    margin:18px 0 0;
    color:var(--lt-purple-dark);
    font-size:21px;
}

.lt-clients-grid p{
    margin:10px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.7;
}

/* =========================================================
   CTA
   ========================================================= */

.lt-cta-section{
    position:relative;
    overflow:hidden;
    padding:70px 0;
    background:
        linear-gradient(
            112deg,
            var(--lt-purple-deep),
            var(--lt-purple) 68%,
            #754a69
        );
    color:#fff;
}

.lt-cta-section::after{
    content:"";
    position:absolute;
    width:330px;
    height:330px;
    right:-110px;
    top:-145px;
    border-radius:65px;
    transform:rotate(45deg);
    background:rgba(255,255,255,.05);
}

.lt-cta-inner{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:60px;
    align-items:center;
}

.lt-cta-kicker{
    margin:0 0 8px;
    color:#efb0b9;
    font-size:12px;
    font-weight:900;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.lt-cta-inner h2{
    margin:0;
    font-size:clamp(34px,4vw,50px);
    line-height:1.05;
    letter-spacing:-.035em;
}

.lt-cta-inner p:not(.lt-cta-kicker){
    max-width:690px;
    margin:17px 0 0;
    color:rgba(255,255,255,.77);
    font-size:16px;
    line-height:1.7;
}

.lt-cta-actions{
    display:flex;
    flex-wrap:wrap;
    gap:11px;
}

/* =========================================================
   LOCATION
   ========================================================= */

.lt-location-strip{
    padding:41px 0;
    border-bottom:1px solid var(--lt-border);
    background:var(--lt-soft);
}

.lt-location-grid{
    display:grid;
    grid-template-columns:1.5fr .65fr 1fr;
    gap:40px;
}

.lt-location-grid > div{
    padding-right:30px;
    border-right:1px solid var(--lt-border);
}

.lt-location-grid > div:last-child{
    padding-right:0;
    border-right:0;
}

.lt-location-grid span,
.lt-location-grid strong,
.lt-location-grid p{
    display:block;
}

.lt-location-grid span{
    color:var(--lt-red);
    font-size:10px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.lt-location-grid strong{
    margin-top:7px;
    color:var(--lt-purple-dark);
    font-size:16px;
}

.lt-location-grid p{
    margin:5px 0 0;
    color:var(--lt-muted);
    font-size:13px;
    line-height:1.6;
}

.lt-location-grid a{
    text-decoration:none;
}

.lt-location-grid a:hover{
    color:var(--lt-red);
}

/* =========================================================
   GENERIC PAGE
   ========================================================= */

.page-shell{
    padding:78px 0 90px;
}

.page-shell h1{
    margin-top:0;
    color:var(--lt-purple-dark);
    font-size:clamp(36px,5vw,58px);
    letter-spacing:-.035em;
}

.entry-content{
    max-width:820px;
    font-size:17px;
}

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

.site-footer{
    margin-top:auto;
    background:#262128;
    color:#fff;
}

.footer-main{
    display:grid;
    grid-template-columns:1.25fr 1fr 1fr;
    gap:42px;
    padding:52px 0;
}

.footer-logo{
    width:min(320px,100%);
    padding:12px;
    background:#fff;
    border-radius:8px;
}

.footer-title{
    margin:0 0 13px;
    color:#fff;
    font-size:14px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.footer-copy,
.footer-links{
    color:#cfc8d1;
    font-size:14px;
    line-height:1.8;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

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

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:18px 0;
    color:#aaa1ad;
    font-size:13px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1020px){

    .lt-service-strip-grid{
        grid-template-columns:1fr 1fr;
    }

    .lt-service-strip-item:nth-child(3){
        border-left:1px solid var(--lt-border);
    }

    .lt-services-grid{
        grid-template-columns:1fr 1fr;
    }

    .lt-values-grid{
        grid-template-columns:1fr 1fr;
    }

    .lt-feature-grid,
    .lt-intro-grid{
        gap:45px;
    }

    .lt-cta-inner{
        grid-template-columns:1fr;
        gap:28px;
    }
}

@media(max-width:860px){

    .site-topbar-inner{
        min-height:auto;
        padding:10px 0;
        align-items:flex-start;
        flex-direction:column;
    }

    .header-inner{
        min-height:auto;
        padding:16px 0 18px;
        align-items:flex-start;
        flex-direction:column;
    }

    .site-logo{
        width:min(280px,85vw);
    }

    .primary-nav ul{
        flex-wrap:wrap;
        gap:13px 22px;
    }

    .primary-nav a::after{
        display:none;
    }

    .lt-hero{
        min-height:585px;
        background-position:66% center;
    }

    .lt-hero::before{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(255,255,255,.42);
    }

    .lt-intro-grid,
    .lt-feature-grid,
    .lt-section-heading,
    .lt-location-grid{
        grid-template-columns:1fr;
    }

    .lt-section-heading{
        gap:22px;
    }

    .lt-feature-image{
        max-width:680px;
    }

    .lt-location-grid{
        gap:0;
    }

    .lt-location-grid > div{
        padding:20px 0;
        border-right:0;
        border-bottom:1px solid var(--lt-border);
    }

    .lt-location-grid > div:last-child{
        border-bottom:0;
    }

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

@media(max-width:620px){

    .lt-container{
        width:min(calc(100% - 28px), var(--lt-width));
    }

    .lt-section{
        padding:70px 0;
    }

    .site-topbar-inner{
        gap:6px;
    }

    .topbar-contact-group{
        gap:8px;
        font-size:11px;
    }

    .lt-hero{
        min-height:590px;
        background-position:70% center;
    }

    .lt-hero::before{
        background:rgba(255,255,255,.62);
    }

    .lt-hero-copy{
        padding:65px 0 72px;
    }

    .lt-hero h1{
        font-size:clamp(43px,13vw,59px);
    }

    .lt-hero-lead{
        font-size:17px;
    }

    .lt-hero-actions{
        display:grid;
    }

    .lt-button{
        width:100%;
    }

    .lt-service-strip-grid,
    .lt-services-grid,
    .lt-values-grid,
    .lt-clients-grid,
    .lt-mini-grid{
        grid-template-columns:1fr;
    }

    .lt-service-strip-item,
    .lt-service-strip-item:first-child,
    .lt-service-strip-item:nth-child(3){
        border-left:1px solid var(--lt-border);
        border-right:1px solid var(--lt-border);
        border-bottom:1px solid var(--lt-border);
    }

    .lt-service-strip-item:last-child{
        border-bottom:0;
    }

    .lt-principles-card{
        padding:29px;
    }

    .lt-cta-actions{
        display:grid;
    }
}


/* =========================================================
   ABOUT PAGE — 0.3.0
   ========================================================= */

.lt-page-hero{
    position:relative;
    min-height:450px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.lt-about-hero{
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.99) 0%,
            rgba(255,255,255,.96) 35%,
            rgba(255,255,255,.75) 53%,
            rgba(255,255,255,.08) 100%
        ),
        url('https://lantechcomps.com/wp-content/uploads/2026/08/img-2.jpg')
        center center / cover no-repeat;
}

.lt-about-hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:34%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--lt-purple),
        var(--lt-lavender),
        var(--lt-red)
    );
}

.lt-page-hero-grid{
    /* Uses the shared .lt-container width so the About hero
       aligns with the header and all other content blocks. */
}

.lt-page-hero-copy{
    position:relative;
    z-index:2;
    max-width:670px;
    padding:75px 0;
}

.lt-page-hero-copy h1{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:clamp(44px,5.8vw,68px);
    line-height:1;
    letter-spacing:-.048em;
}

.lt-page-hero-copy > p:last-child{
    max-width:610px;
    margin:23px 0 0;
    color:#554e56;
    font-size:18px;
    line-height:1.72;
}

.lt-about-intro{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:82px;
    align-items:start;
}

.lt-about-intro-copy .lt-large-copy{
    margin-top:0;
}

.lt-direction-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:44px;
}

.lt-direction-card{
    min-height:290px;
    padding:32px;
    border:1px solid var(--lt-border);
    border-radius:18px;
    background:#fff;
}

.lt-direction-card > span{
    display:block;
    margin-bottom:45px;
    color:var(--lt-red);
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
}

.lt-direction-card h3{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:24px;
}

.lt-direction-card p{
    margin:15px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.75;
}

.lt-direction-featured{
    border-color:transparent;
    background:var(--lt-purple);
}

.lt-direction-featured > span{
    color:#efb0b9;
}

.lt-direction-featured h3{
    color:#fff;
}

.lt-direction-featured p{
    color:rgba(255,255,255,.78);
}

.lt-about-feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.lt-about-feature-image{
    position:relative;
}

.lt-about-feature-image::before{
    content:"";
    position:absolute;
    left:-14px;
    bottom:-14px;
    width:68%;
    height:68%;
    border-radius:22px;
    background:var(--lt-lavender-soft);
}

.lt-about-feature-image img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    aspect-ratio:1.15/1;
    object-fit:cover;
    border-radius:22px;
    box-shadow:var(--lt-shadow);
}

.lt-about-point{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:18px;
    margin-top:27px;
    padding-top:23px;
    border-top:1px solid var(--lt-border);
}

.lt-about-point > span{
    width:43px;
    height:43px;
    display:grid;
    place-items:center;
    border-radius:13px;
    background:var(--lt-lavender-soft);
    color:var(--lt-purple);
    font-size:13px;
    font-weight:900;
}

.lt-about-point:nth-of-type(3) > span{
    background:#f9e8ea;
    color:var(--lt-red);
}

.lt-about-point h3{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:18px;
}

.lt-about-point p{
    margin:5px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.7;
}

.lt-about-dark{
    background:
        linear-gradient(
            120deg,
            var(--lt-purple-deep),
            var(--lt-purple) 72%
        );
    color:#fff;
}

.lt-about-dark .lt-eyebrow{
    color:#efb0b9;
}

.lt-about-dark-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:82px;
    align-items:start;
}

.lt-about-dark h2{
    margin:0;
    max-width:510px;
    font-size:clamp(36px,4.5vw,54px);
    line-height:1.08;
    letter-spacing:-.04em;
}

.lt-about-dark-grid > div:first-child > p:last-child{
    max-width:520px;
    margin:20px 0 0;
    color:rgba(255,255,255,.73);
    font-size:16px;
    line-height:1.75;
}

.lt-about-process article{
    display:grid;
    grid-template-columns:45px 1fr;
    gap:18px;
    padding:23px 0;
    border-top:1px solid rgba(255,255,255,.16);
}

.lt-about-process article:first-child{
    padding-top:0;
    border-top:0;
}

.lt-about-process article > span{
    color:#efb0b9;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
}

.lt-about-process h3{
    margin:0;
    color:#fff;
    font-size:19px;
}

.lt-about-process p{
    margin:6px 0 0;
    color:rgba(255,255,255,.68);
    font-size:14px;
    line-height:1.65;
}

.lt-about-values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.lt-about-values-grid article{
    padding:31px;
    border:1px solid var(--lt-border);
    border-radius:18px;
    background:#fff;
}

.lt-about-values-grid article > span{
    color:var(--lt-red);
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
}

.lt-about-values-grid h3{
    margin:23px 0 0;
    color:var(--lt-purple-dark);
    font-size:21px;
}

.lt-about-values-grid p{
    margin:11px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.7;
}

.lt-about-client-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:43px;
}

.lt-about-client-grid article{
    padding:31px;
    border-top:3px solid var(--lt-purple);
    background:#fff;
}

.lt-about-client-grid article:nth-child(2){
    border-top-color:var(--lt-lavender);
}

.lt-about-client-grid article:nth-child(3){
    border-top-color:var(--lt-red);
}

.lt-about-client-grid div{
    color:var(--lt-purple-dark);
    font-size:18px;
    font-weight:800;
}

.lt-about-client-grid p{
    margin:12px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.7;
}

@media(max-width:900px){

    .lt-about-intro,
    .lt-about-feature-grid,
    .lt-about-dark-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .lt-direction-grid,
    .lt-about-values-grid,
    .lt-about-client-grid{
        grid-template-columns:1fr 1fr;
    }

    .lt-about-hero{
        background-position:67% center;
    }

    .lt-about-hero::before{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(255,255,255,.38);
    }
}

@media(max-width:620px){

    .lt-page-hero{
        min-height:470px;
    }

    .lt-about-hero{
        background-position:72% center;
    }

    .lt-about-hero::before{
        background:rgba(255,255,255,.62);
    }

    .lt-page-hero-copy{
        padding:64px 0;
    }

    .lt-page-hero-copy h1{
        font-size:clamp(42px,12vw,57px);
    }

    .lt-direction-grid,
    .lt-about-values-grid,
    .lt-about-client-grid{
        grid-template-columns:1fr;
    }

    .lt-direction-card{
        min-height:auto;
    }
}


/* =========================================================
   PRODUCTS & SERVICES — 0.4.0
   ========================================================= */

.lt-products-hero{
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.99) 0%,
            rgba(255,255,255,.97) 34%,
            rgba(255,255,255,.77) 52%,
            rgba(255,255,255,.08) 100%
        ),
        url('https://lantechcomps.com/wp-content/uploads/2026/08/img-3.jpg')
        center center / cover no-repeat;
}

.lt-products-hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:34%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--lt-purple),
        var(--lt-lavender),
        var(--lt-red)
    );
}

.lt-products-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.lt-products-intro{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:82px;
    align-items:start;
}

.lt-products-intro .lt-large-copy{
    margin-top:0;
}


/* SERVICE CARDS */

.lt-product-service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.lt-product-service-card{
    display:grid;
    grid-template-columns:64px 1fr;
    gap:22px;
    min-height:350px;
    padding:34px;
    border:1px solid var(--lt-border);
    border-radius:20px;
    background:#fff;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.lt-product-service-card:hover{
    transform:translateY(-4px);
    border-color:#d8ccd7;
    box-shadow:0 17px 38px rgba(63,44,62,.07);
}

.lt-product-service-number{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--lt-lavender-soft);
    color:var(--lt-purple);
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
}

.lt-service-type{
    margin:2px 0 9px;
    color:var(--lt-red);
    font-size:10px;
    font-weight:900;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.lt-product-service-content h3{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:25px;
    line-height:1.18;
}

.lt-product-service-content > p:not(.lt-service-type){
    margin:14px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.72;
}

.lt-product-service-content ul{
    margin:22px 0 0;
    padding:18px 0 0;
    border-top:1px solid var(--lt-border);
    list-style:none;
}

.lt-product-service-content li{
    position:relative;
    margin:7px 0;
    padding-left:17px;
    color:#5e5760;
    font-size:13px;
}

.lt-product-service-content li::before{
    content:"";
    position:absolute;
    left:0;
    top:.72em;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--lt-red);
}

.lt-product-service-card-wide{
    grid-column:1 / -1;
    min-height:auto;
    background:
        linear-gradient(
            120deg,
            var(--lt-purple-deep),
            var(--lt-purple)
        );
    border-color:transparent;
}

.lt-product-service-card-wide .lt-product-service-number{
    background:rgba(255,255,255,.11);
    color:#fff;
}

.lt-product-service-card-wide .lt-service-type{
    color:#efb0b9;
}

.lt-product-service-card-wide h3{
    color:#fff;
}

.lt-product-service-card-wide .lt-product-service-content > p{
    max-width:760px;
    color:rgba(255,255,255,.76);
}

.lt-network-capabilities{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-top:24px;
}

.lt-network-capabilities span{
    display:inline-flex;
    min-height:36px;
    align-items:center;
    padding:0 14px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:999px;
    color:#fff;
    font-size:12px;
    font-weight:700;
}


/* VISUAL FEATURE */

.lt-products-feature{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.lt-products-feature-image{
    position:relative;
}

.lt-products-feature-image::before{
    content:"";
    position:absolute;
    left:-14px;
    bottom:-14px;
    width:70%;
    height:70%;
    border-radius:22px;
    background:var(--lt-lavender-soft);
}

.lt-products-feature-image img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    aspect-ratio:1.15/1;
    object-fit:cover;
    border-radius:22px;
    box-shadow:var(--lt-shadow);
}

.lt-products-feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:13px;
    margin-top:29px;
}

.lt-products-feature-list > div{
    padding:18px;
    border-left:3px solid var(--lt-lavender);
    background:var(--lt-soft);
}

.lt-products-feature-list > div:nth-child(even){
    border-left-color:var(--lt-red);
}

.lt-products-feature-list strong,
.lt-products-feature-list span{
    display:block;
}

.lt-products-feature-list strong{
    color:var(--lt-purple-dark);
    font-size:14px;
}

.lt-products-feature-list span{
    margin-top:4px;
    color:var(--lt-muted);
    font-size:12px;
    line-height:1.55;
}


/* CUSTOMER CONTEXT */

.lt-products-context-section{
    background:var(--lt-soft);
}

.lt-products-context-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:43px;
}

.lt-products-context-grid article{
    min-height:260px;
    padding:35px;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--lt-border);
}

.lt-products-context-grid article:first-child{
    border-top:4px solid var(--lt-purple);
}

.lt-products-context-grid article:last-child{
    border-top:4px solid var(--lt-red);
}

.lt-products-context-grid article > span{
    color:var(--lt-red);
    font-size:10px;
    font-weight:900;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.lt-products-context-grid h3{
    margin:23px 0 0;
    color:var(--lt-purple-dark);
    font-size:25px;
}

.lt-products-context-grid p{
    margin:13px 0 0;
    max-width:470px;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.75;
}


/* SERVICE PRINCIPLES */

.lt-service-principles-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.lt-service-principles-grid article{
    padding:29px;
    border:1px solid var(--lt-border);
    border-radius:18px;
    background:#fff;
}

.lt-service-principles-grid article > div{
    width:45px;
    height:45px;
    display:grid;
    place-items:center;
    margin-bottom:23px;
    border-radius:14px;
    background:var(--lt-lavender-soft);
    color:var(--lt-purple);
    font-size:13px;
    font-weight:900;
}

.lt-service-principles-grid article:nth-child(3) > div{
    background:#f9e8ea;
    color:var(--lt-red);
}

.lt-service-principles-grid h3{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:19px;
}

.lt-service-principles-grid p{
    margin:11px 0 0;
    color:var(--lt-muted);
    font-size:13px;
    line-height:1.7;
}


/* RESPONSIVE */

@media(max-width:950px){

    .lt-products-intro,
    .lt-products-feature{
        grid-template-columns:1fr;
        gap:45px;
    }

    .lt-service-principles-grid{
        grid-template-columns:1fr 1fr;
    }

    .lt-products-hero{
        background-position:67% center;
    }

    .lt-products-hero::before{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(255,255,255,.38);
    }
}

@media(max-width:720px){

    .lt-product-service-grid,
    .lt-products-context-grid{
        grid-template-columns:1fr;
    }

    .lt-product-service-card-wide{
        grid-column:auto;
    }

    .lt-product-service-card{
        grid-template-columns:1fr;
        min-height:auto;
    }
}

@media(max-width:620px){

    .lt-products-hero{
        background-position:72% center;
    }

    .lt-products-hero::before{
        background:rgba(255,255,255,.62);
    }

    .lt-products-hero-actions{
        display:grid;
    }

    .lt-products-feature-list,
    .lt-service-principles-grid{
        grid-template-columns:1fr;
    }
}


/* =========================================================
   SOLUTIONS PAGE — 0.5.0
   ========================================================= */

.lt-solutions-hero{
    position:relative;
    overflow:hidden;
    min-height:510px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(
            125deg,
            #faf8fa 0%,
            #f5f0f5 56%,
            #eee6ee 100%
        );
}

.lt-solutions-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-150px;
    top:-170px;
    border-radius:110px;
    transform:rotate(42deg);
    background:
        linear-gradient(
            135deg,
            rgba(105,72,101,.16),
            rgba(169,98,161,.11),
            rgba(207,38,55,.08)
        );
}

.lt-solutions-hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:34%;
    height:4px;
    background:
        linear-gradient(
            90deg,
            var(--lt-purple),
            var(--lt-lavender),
            var(--lt-red)
        );
}

.lt-solutions-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:70px;
    align-items:center;
}

.lt-solutions-hero-copy{
    padding:80px 0;
}

.lt-solutions-hero-copy h1{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:clamp(46px,6vw,70px);
    line-height:.99;
    letter-spacing:-.048em;
}

.lt-solutions-hero-copy > p:last-of-type{
    max-width:620px;
    margin:23px 0 0;
    color:#575058;
    font-size:18px;
    line-height:1.72;
}

.lt-solutions-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}


/* ABSTRACT NETWORK VISUAL */

.lt-solutions-hero-visual{
    position:relative;
    width:430px;
    max-width:100%;
    aspect-ratio:1/1;
    margin-left:auto;
}

.lt-solution-orbit{
    position:absolute;
    z-index:2;
    display:grid;
    place-items:center;
    border-radius:50%;
    border:1px solid rgba(105,72,101,.15);
    background:#fff;
    box-shadow:0 15px 35px rgba(57,39,56,.08);
    color:var(--lt-purple-dark);
    font-weight:800;
}

.lt-orbit-main{
    width:145px;
    height:145px;
    left:143px;
    top:142px;
    background:var(--lt-purple);
    color:#fff;
    font-size:29px;
}

.lt-orbit-a{
    width:94px;
    height:94px;
    left:22px;
    top:64px;
    font-size:12px;
}

.lt-orbit-b{
    width:96px;
    height:96px;
    right:18px;
    top:44px;
    font-size:12px;
}

.lt-orbit-c{
    width:96px;
    height:96px;
    left:30px;
    bottom:42px;
    font-size:12px;
}

.lt-orbit-d{
    width:100px;
    height:100px;
    right:15px;
    bottom:40px;
    border-color:#f0d5d8;
    color:var(--lt-red);
    font-size:12px;
}

.lt-solution-line{
    position:absolute;
    z-index:1;
    height:1px;
    background:rgba(105,72,101,.25);
    transform-origin:left center;
}

.lt-line-a{
    width:135px;
    left:92px;
    top:135px;
    transform:rotate(31deg);
}

.lt-line-b{
    width:135px;
    left:245px;
    top:175px;
    transform:rotate(-36deg);
}

.lt-line-c{
    width:135px;
    left:92px;
    bottom:132px;
    transform:rotate(-29deg);
}

.lt-line-d{
    width:137px;
    left:245px;
    bottom:175px;
    transform:rotate(34deg);
}


/* INTRO */

.lt-solutions-intro{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:82px;
    align-items:start;
}

.lt-solutions-intro .lt-large-copy{
    margin-top:0;
}


/* SOLUTION CARDS */

.lt-solutions-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.lt-solution-card{
    position:relative;
    min-height:365px;
    padding:34px;
    border:1px solid var(--lt-border);
    border-radius:20px;
    background:#fff;
}

.lt-solution-index{
    position:absolute;
    top:28px;
    right:28px;
    color:#aaa1aa;
    font-size:10px;
    font-weight:900;
    letter-spacing:.12em;
}

.lt-solution-symbol{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    margin-bottom:29px;
    border-radius:15px;
    background:var(--lt-lavender-soft);
    color:var(--lt-purple);
    font-size:14px;
    font-weight:900;
}

.lt-solution-card:nth-child(2) .lt-solution-symbol,
.lt-solution-card:nth-child(4) .lt-solution-symbol{
    background:#f9e8ea;
    color:var(--lt-red);
}

.lt-solution-card h3{
    margin:0;
    color:var(--lt-purple-dark);
    font-size:24px;
    line-height:1.2;
}

.lt-solution-card > p{
    margin:14px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.72;
}

.lt-solution-card ul{
    margin:22px 0 0;
    padding:18px 0 0;
    border-top:1px solid var(--lt-border);
    list-style:none;
}

.lt-solution-card li{
    position:relative;
    margin:7px 0;
    padding-left:17px;
    color:#5d565e;
    font-size:13px;
}

.lt-solution-card li::before{
    content:"";
    position:absolute;
    left:0;
    top:.72em;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--lt-red);
}

.lt-solution-card-wide{
    grid-column:1 / -1;
    min-height:auto;
    display:grid;
    grid-template-columns:55px 1fr;
    gap:23px;
    border-color:transparent;
    background:
        linear-gradient(
            115deg,
            var(--lt-purple-deep),
            var(--lt-purple)
        );
}

.lt-solution-card-wide .lt-solution-index{
    color:rgba(255,255,255,.45);
}

.lt-solution-card-wide .lt-solution-symbol{
    margin:0;
    background:rgba(255,255,255,.12);
    color:#fff;
}

.lt-solution-card-wide h3{
    color:#fff;
}

.lt-solution-wide-copy p{
    max-width:800px;
    margin:11px 0 0;
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.7;
}


/* PROCESS */

.lt-solution-process{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.lt-solution-process article{
    position:relative;
    padding:30px;
    border-top:3px solid var(--lt-purple);
    background:var(--lt-soft);
}

.lt-solution-process article:nth-child(2){
    border-top-color:var(--lt-lavender);
}

.lt-solution-process article:nth-child(3){
    border-top-color:#8d657f;
}

.lt-solution-process article:nth-child(4){
    border-top-color:var(--lt-red);
}

.lt-solution-process article > span{
    color:#9e949e;
    font-size:10px;
    font-weight:900;
    letter-spacing:.12em;
}

.lt-solution-process h3{
    margin:20px 0 0;
    color:var(--lt-purple-dark);
    font-size:20px;
}

.lt-solution-process p{
    margin:10px 0 0;
    color:var(--lt-muted);
    font-size:13px;
    line-height:1.7;
}


/* BUSINESS VALUE */

.lt-solutions-value{
    padding:88px 0;
    background:
        linear-gradient(
            120deg,
            var(--lt-purple-deep),
            var(--lt-purple)
        );
    color:#fff;
}

.lt-solutions-value-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:80px;
    align-items:start;
}

.lt-solutions-value .lt-eyebrow{
    color:#efb0b9;
}

.lt-solutions-value h2{
    margin:0;
    max-width:520px;
    font-size:clamp(37px,4.7vw,55px);
    line-height:1.06;
    letter-spacing:-.04em;
}

.lt-solutions-value-grid > div:first-child > p:last-child{
    max-width:540px;
    margin:20px 0 0;
    color:rgba(255,255,255,.72);
    line-height:1.75;
}

.lt-solutions-value-list > div{
    display:grid;
    grid-template-columns:45px 1fr;
    gap:17px;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.16);
}

.lt-solutions-value-list > div:first-child{
    padding-top:0;
    border-top:0;
}

.lt-solutions-value-list span{
    color:#efb0b9;
    font-size:10px;
    font-weight:900;
    letter-spacing:.1em;
}

.lt-solutions-value-list strong{
    display:block;
    color:#fff;
    font-size:16px;
}

.lt-solutions-value-list p{
    margin:4px 0 0;
    color:rgba(255,255,255,.66);
    font-size:13px;
}


/* AUDIENCE */

.lt-solutions-audience{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.lt-solutions-audience article{
    padding:31px;
    border:1px solid var(--lt-border);
    border-radius:18px;
    background:#fff;
}

.lt-solutions-audience article > span{
    color:var(--lt-red);
    font-size:10px;
    font-weight:900;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.lt-solutions-audience h3{
    margin:22px 0 0;
    color:var(--lt-purple-dark);
    font-size:22px;
}

.lt-solutions-audience p{
    margin:11px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.7;
}


/* RESPONSIVE */

@media(max-width:950px){

    .lt-solutions-hero-grid,
    .lt-solutions-intro,
    .lt-solutions-value-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .lt-solutions-hero-visual{
        display:none;
    }

    .lt-solution-process{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:720px){

    .lt-solutions-grid{
        grid-template-columns:1fr;
    }

    .lt-solution-card-wide{
        grid-column:auto;
    }

    .lt-solutions-audience{
        grid-template-columns:1fr;
    }
}

@media(max-width:620px){

    .lt-solutions-hero{
        min-height:490px;
    }

    .lt-solutions-hero-copy{
        padding:65px 0;
    }

    .lt-solutions-actions{
        display:grid;
    }

    .lt-solution-process{
        grid-template-columns:1fr;
    }

    .lt-solution-card-wide{
        grid-template-columns:1fr;
    }
}


/* =========================================================
   CONTACT PAGE — 0.6.0
   ========================================================= */

.lt-contact-hero{
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.99) 0%,
            rgba(255,255,255,.97) 34%,
            rgba(255,255,255,.77) 53%,
            rgba(255,255,255,.08) 100%
        ),
        url('https://lantechcomps.com/wp-content/uploads/2026/08/img-4.jpg')
        center center / cover no-repeat;
}

.lt-contact-hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:34%;
    height:4px;
    background:
        linear-gradient(
            90deg,
            var(--lt-purple),
            var(--lt-lavender),
            var(--lt-red)
        );
}


/* CONTACT CARDS */

.lt-contact-cards{
    display:grid;
    grid-template-columns:1.15fr .85fr 1fr;
    gap:18px;
}

.lt-contact-cards article{
    min-height:235px;
    padding:30px;
    border:1px solid var(--lt-border);
    border-radius:18px;
    background:#fff;
}

.lt-contact-cards article:first-child{
    border-top:3px solid var(--lt-purple);
}

.lt-contact-cards article:nth-child(2){
    border-top:3px solid var(--lt-lavender);
}

.lt-contact-cards article:nth-child(3){
    border-top:3px solid var(--lt-red);
}

.lt-contact-card-label{
    color:var(--lt-red);
    font-size:10px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.lt-contact-cards h3{
    margin:20px 0 0;
    color:var(--lt-purple-dark);
    font-size:21px;
    line-height:1.25;
}

.lt-contact-cards p{
    margin:12px 0 0;
    color:var(--lt-muted);
    font-size:14px;
    line-height:1.75;
}

.lt-contact-links a{
    display:block;
    width:max-content;
    max-width:100%;
    margin:5px 0;
    color:var(--lt-purple);
    font-weight:700;
    text-decoration:none;
}

.lt-contact-links a:hover{
    color:var(--lt-red);
}


/* FORM LAYOUT */

.lt-contact-layout{
    display:grid;
    grid-template-columns:.78fr 1.22fr;
    gap:70px;
    align-items:start;
}

.lt-contact-help{
    margin-top:32px;
}

.lt-contact-help > div{
    padding:17px 0;
    border-top:1px solid var(--lt-border);
}

.lt-contact-help strong,
.lt-contact-help span{
    display:block;
}

.lt-contact-help strong{
    color:var(--lt-purple-dark);
    font-size:14px;
}

.lt-contact-help span{
    margin-top:4px;
    color:var(--lt-muted);
    font-size:12px;
    line-height:1.6;
}

.lt-contact-form-card{
    padding:38px;
    border:1px solid var(--lt-border);
    border-radius:22px;
    background:#fff;
    box-shadow:var(--lt-shadow);
}

.lt-contact-form{
    margin:0;
}

.lt-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.lt-contact-form label{
    display:block;
    margin-bottom:18px;
}

.lt-contact-form label > span{
    display:block;
    margin-bottom:7px;
    color:var(--lt-purple-dark);
    font-size:12px;
    font-weight:800;
}

.lt-contact-form input,
.lt-contact-form select,
.lt-contact-form textarea{
    display:block;
    width:100%;
    min-height:48px;
    padding:11px 13px;
    border:1px solid #dcd5dc;
    border-radius:10px;
    outline:none;
    background:#fff;
    color:var(--lt-ink);
    font:inherit;
    font-size:14px;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.lt-contact-form textarea{
    min-height:155px;
    resize:vertical;
}

.lt-contact-form input:focus,
.lt-contact-form select:focus,
.lt-contact-form textarea:focus{
    border-color:var(--lt-lavender);
    box-shadow:0 0 0 3px rgba(169,98,161,.12);
}

.lt-form-message{
    margin-top:1px;
}

.lt-form-privacy{
    margin:2px 0 18px;
    color:var(--lt-muted);
    font-size:12px;
    line-height:1.6;
}

.lt-captcha-wrap{
    margin:18px 0 22px;
    overflow:auto;
}

.lt-submit-button{
    border:0;
    cursor:pointer;
}

.lt-honeypot{
    position:absolute !important;
    left:-10000px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
}

.lt-form-notice{
    margin:0 0 24px;
    padding:14px 16px;
    border-radius:10px;
    font-size:13px;
    line-height:1.6;
}

.lt-form-success{
    border:1px solid #cce5d4;
    background:#f1faf4;
    color:#275c37;
}

.lt-form-error{
    border:1px solid #eed0d4;
    background:#fff4f5;
    color:#8f2631;
}


/* BOTTOM CTA */

.lt-contact-bottom{
    padding:70px 0;
    overflow:hidden;
    background:
        linear-gradient(
            115deg,
            var(--lt-purple-deep),
            var(--lt-purple)
        );
    color:#fff;
}

.lt-contact-bottom-grid{
    display:grid;
    grid-template-columns:1fr auto;
    gap:55px;
    align-items:center;
}

.lt-contact-bottom .lt-eyebrow{
    color:#efb0b9;
}

.lt-contact-bottom h2{
    margin:0;
    font-size:clamp(35px,4.4vw,50px);
    line-height:1.05;
    letter-spacing:-.04em;
}

.lt-contact-bottom p:not(.lt-eyebrow){
    max-width:680px;
    margin:16px 0 0;
    color:rgba(255,255,255,.72);
    font-size:15px;
    line-height:1.7;
}

.lt-contact-bottom-actions{
    display:flex;
    flex-wrap:wrap;
    gap:11px;
}


/* RESPONSIVE */

@media(max-width:950px){

    .lt-contact-layout{
        grid-template-columns:1fr;
        gap:45px;
    }

    .lt-contact-cards{
        grid-template-columns:1fr 1fr;
    }

    .lt-contact-cards article:first-child{
        grid-column:1 / -1;
    }

    .lt-contact-bottom-grid{
        grid-template-columns:1fr;
        gap:27px;
    }

    .lt-contact-hero{
        background-position:67% center;
    }

    .lt-contact-hero::before{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(255,255,255,.38);
    }
}

@media(max-width:620px){

    .lt-contact-hero{
        background-position:72% center;
    }

    .lt-contact-hero::before{
        background:rgba(255,255,255,.62);
    }

    .lt-contact-cards,
    .lt-form-row{
        grid-template-columns:1fr;
    }

    .lt-contact-cards article:first-child{
        grid-column:auto;
    }

    .lt-contact-form-card{
        padding:25px;
    }

    .lt-contact-bottom-actions{
        display:grid;
    }
}
