@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600;700&display=swap');

/* =====================================
   01. VARIABLES
===================================== */

:root{
    --bg:#f7f4ef;
    --paper:#fffdf9;
    --dark:#15171b;
    --text:#22252b;
    --muted:#676d75;
    --gold:#a8874f;
    --line:#ddd6cc;
    --shadow:0 28px 80px rgba(16,18,22,.08);

    --serif:'Cormorant Garamond',serif;
    --sans:'Inter',sans-serif;
}

/* =====================================
   02. RESET / BASE
===================================== */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:var(--sans);
}

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

img{
    display:block;
    max-width:100%;
}

/* =====================================
   03. HEADER
===================================== */

.site-header{
    position:fixed;
    z-index:50;
    top:0;
    left:0;
    right:0;

    height:96px;
    padding:0 5.2vw;

    display:flex;
    align-items:center;

    background:rgba(247,244,239,.76);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid transparent;
    transition:
        height .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.brand{
    margin-right:auto;

    display:flex;
    align-items:center;
    gap:20px;

    font-size:15px;
    font-weight:600;
    line-height:1.2;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.header-right{
    display:flex;
    align-items:center;
    gap:42px;
}

.site-header.scrolled{
    height:76px;
    background:rgba(248,246,242,.86);
    border-color:var(--line);
    box-shadow:0 12px 40px rgba(20,20,20,.06);
}

.brand{
    display:flex;
    align-items:center;
    gap:20px;

    font-size:15px;
    font-weight:600;
    line-height:1.2;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.brand img{
    width:64px;
    height:64px;
    object-fit:contain;
    mix-blend-mode:multiply;
    flex-shrink:0;
}

.brand span{
    display:block;
}

.nav{
    display:flex;
    gap:58px;

    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.nav a{
    position:relative;
}

.nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:1px;

    background:var(--gold);
    transition:.25s ease;
}

.nav a:hover::after{
    width:100%;
}

.lang{
    display:flex;
    align-items:center;
    gap:14px;

    font-size:14px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.lang strong{
    color:var(--gold);
}

.lang span{
    color:#aaa;
}

.nav-toggle{
    display:none;
    background:transparent;
    border:0;
    font-size:28px;
}
.header-right{
    display:flex;
    align-items:center;
    gap:42px;
}
.header-contact{
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    transition:.25s;
}

.header-contact:hover{
    color:var(--gold);
}
.nav,
.nav-toggle{
    display:none;
}
.header-right{
    display:flex;
    align-items:center;
    gap:28px;
}

.header-contact{
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    transition:.25s;
}

.header-contact:hover{
    color:var(--gold);
}

@media(max-width:620px){
    .header-contact{
        font-size:12px;
    }

    .header-right{
        gap:18px;
    }
}

/* =====================================
   04. SHARED ELEMENTS
===================================== */

.section-label{
    display:block;
    margin:0 0 24px;

    font-size:13px;
    font-weight:600;
    letter-spacing:.20em;
    text-transform:uppercase;

    color:var(--gold);
}

.section-intro{
    max-width:760px;
    margin:0 auto 34px;
    text-align:center;
}

.section-intro h2{
    max-width:720px;
    margin:0 auto 24px;

    font-family:var(--serif);
    font-size:clamp(54px,4.4vw,82px);
    font-weight:500;
    line-height:.95;
    letter-spacing:-.045em;

    color:var(--text);
}

.section-intro h2 span,
.hero h1 span,
h2 span{
    color:var(--gold);
}

.section-intro p{
    max-width:640px;
    margin:0 auto;

    font-size:18px;
    line-height:1.75;
    color:var(--muted);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:26px;

    width:260px;
    height:58px;

    border:1px solid var(--gold);
    background:transparent;

    font-size:13px;
    font-weight:600;
    letter-spacing:.13em;
    text-transform:uppercase;

    color:var(--gold);
    transition:background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 14px 34px rgba(0,0,0,.08);
}

/* =====================================
   05. HERO
===================================== */

.hero{
    min-height:820px;
    padding-top:88px;

    display:grid;
    grid-template-columns:39% 61%;

    overflow:hidden;
    background:linear-gradient(90deg,var(--paper),var(--bg));
}

.hero-copy{
    padding:80px 70px 60px 7vw;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero h1{
    margin:0;

    font-family:var(--serif);
    font-size:clamp(66px,5.6vw,104px);
    font-weight:600;
    line-height:.9;
    letter-spacing:-.055em;

    color:#101215;
    animation:heroTitle .9s ease forwards;
}

.hero h1 span{
    color:var(--gold);
    font-weight:400;
}

.pl-site .hero h1{
    font-size:clamp(54px,4.9vw,88px);
    line-height:1.02;
    letter-spacing:-.035em;
}

.gold-line{
    width:0;
    height:2px;
    margin:26px 0 34px;

    background:var(--gold);
    animation:lineReveal 1.2s ease forwards .45s;
}

.lead{
    max-width:420px;
    margin:0 0 24px;

    font-size:20px;
    line-height:1.65;
    color:var(--muted);

    animation:heroText .9s ease forwards .25s;
}

.hero-highlights{
    display:flex;
    gap:48px;
    margin:42px 0 46px;
}

.hero-item{
    display:flex;
    flex-direction:column;
}

.hero-item strong{
    font-family:var(--serif);
    font-size:42px;
    font-weight:500;
    color:var(--gold);
    line-height:1;
}

.hero-item span{
    margin-top:8px;

    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;

    color:var(--muted);
}

.hero-image{
    min-height:680px;

    background:
        linear-gradient(90deg,rgba(247,244,239,.08),rgba(247,244,239,0) 18%),
        url("assets/images/hero.jpg");

    background-size:108%;
    background-position:center;
    background-repeat:no-repeat;

    clip-path:polygon(8% 0,100% 0,100% 100%,0 100%);
    box-shadow:var(--shadow);

    transform:scale(1.03);
    animation:heroZoom 20s ease-in-out infinite alternate;
}

/* =====================================
   06. NETWORK SECTION
===================================== */

.network-section{
    min-height:100vh;
    padding:50px 7vw 70px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:#f8f6f2;
}

.network-grid{
    max-width:1120px;
    width:100%;
    margin:0 auto;

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

.network-card{
    position:relative;
    min-height:260px;
    padding:44px;

    background:rgba(255,255,255,.42);
    border:1px solid rgba(168,135,79,.16);

    transition:transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
}

.network-card::before{
    content:"";
    position:absolute;
    top:0;
    left:40px;
    right:40px;

    height:2px;

    background:var(--gold);
    opacity:.35;

    transition:opacity .32s ease, left .32s ease, right .32s ease;
}

.network-card:hover{
    z-index:2;
    transform:translateY(-8px);
    background:#fffdf9;
    border-color:rgba(168,135,79,.34);
    box-shadow:0 34px 90px rgba(20,20,20,.08);
}

.network-card:hover::before{
    left:0;
    right:0;
    opacity:1;
}

.network-card > span{
    display:none;
}

.network-card h3{
    margin:50px 0 14px;

    font-family:var(--serif);
    font-size:32px;
    font-weight:500;
    line-height:1;

    color:var(--text);
}

.network-card p{
    max-width:330px;
    margin:0 0 55px;

    font-size:15px;
    line-height:1.75;
    color:var(--muted);
}

.card-link{
    position:absolute;
    left:40px;
    bottom:36px;

    font-size:12px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;

    color:var(--gold);
    transition:transform .25s ease, opacity .25s ease;
}

.network-card:hover .card-link{
    transform:translateX(7px);
    opacity:.82;
}

/* =====================================
   07. BENEFITS
===================================== */

.benefits-section{
    min-height:88vh;

    display:grid;
    grid-template-columns:54% 46%;

    background:#fff;
}

.benefits-image{
    min-height:88vh;

    background:url("assets/images/benefits.jpg") center center / cover no-repeat;
}

.benefits-content{
    padding:46px 5vw;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.benefits-content h2{
    max-width:460px;
    margin:10px 0 18px;

    font-family:var(--serif);
    font-size:clamp(42px,3.8vw,68px);
    line-height:.96;
    letter-spacing:-.04em;

    color:var(--text);
}

.benefits-text{
    max-width:460px;
    margin:0 0 22px;

    font-size:16px;
    line-height:1.7;
    color:var(--muted);
}

.benefits-list{
    list-style:none;
    padding:0;
    margin:0 0 22px;

    display:grid;
    gap:8px;
}

.benefits-list li{
    position:relative;
    padding-left:28px;

    font-size:15px;
    line-height:1.4;
    color:var(--text);
}

.benefits-list li::before{
    content:"✓";
    position:absolute;
    top:0;
    left:0;

    color:var(--gold);
    font-weight:700;
}

.benefits-content .btn{
    width:260px;
    margin-top:0;
}

/* =====================================
   08. GLOBAL REACH
===================================== */

.global-reach{
    min-height:100vh;

    display:grid;
    grid-template-columns:54% 46%;
    align-items:center;

    background:#fff;
    overflow:hidden;
}

.global-map{
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.ngi-world-map{
    width:88%;
    max-width:820px;
    height:540px;
    margin:auto;
}

.ngi-world-map svg{
    width:118%;
    height:100%;
    overflow:visible;
}

.global-stats{
    padding:0 8vw 0 6vw;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.global-stats h2{
    margin:14px 0 26px;

    font-family:var(--serif);
    font-size:clamp(62px,4.8vw,88px);
    font-weight:500;
    line-height:.93;
    letter-spacing:-.04em;

    color:var(--text);
}

.global-intro{
    max-width:460px;
    margin:0 0 40px;

    font-size:18px;
    line-height:1.75;
    color:var(--muted);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:36px 56px;

    margin:42px 0;
}

.stat strong{
    display:block;

    font-family:var(--serif);
    font-size:52px;
    font-weight:500;
    line-height:1;

    color:var(--gold);
}

.stat span{
    display:block;
    margin-top:10px;

    font-size:12px;
    font-weight:600;
    line-height:1.35;
    letter-spacing:.14em;
    text-transform:uppercase;

    color:var(--text);
}

.global-stats .btn{
    width:fit-content;
    min-width:260px;
    margin-top:8px;
}

/* MAP */

.map-land{
    fill:#f1ece4;
    stroke:rgba(168,135,79,.28);
    stroke-width:.55;
}

.map-arc{
    fill:none;
    stroke:#b08b49;
    stroke-width:2;
    stroke-linecap:round;
    stroke-dasharray:900;
    stroke-dashoffset:900;
    animation:drawArc 2.8s ease forwards;
}

.map-dot{
    fill:#fff;
    stroke:var(--gold);
    stroke-width:3;
    filter:drop-shadow(0 0 12px rgba(168,135,79,.45));
    transition:.25s;
}

.map-label{
    font-size:11px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    fill:#222;
}

.market-point:hover .map-dot{
    r:10;
    filter:drop-shadow(0 0 18px rgba(168,135,79,.8));
}

.market-point:hover .map-label{
    fill:var(--gold);
}

/* =====================================
   09. TRUST STRIP
===================================== */

.trust-strip{
    height:135px;

    display:flex;
    align-items:center;
    overflow:hidden;

    background:#f8f6f2;

    border-top:1px solid rgba(0,0,0,.05);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.trust-track{
    display:flex;
    align-items:center;
    gap:72px;

    white-space:nowrap;
    animation:trustMarquee 38s linear infinite;
}

.trust-track span{
    font-family:var(--serif);
    font-size:clamp(24px,2vw,34px);
    font-weight:500;
    color:rgba(34,37,43,.38);

    transition:.3s ease;
}

.trust-track span:hover{
    color:var(--gold);
}

/* =====================================
   10. CONTACT
===================================== */

.contact-section{
    min-height:620px;

    display:grid;
    grid-template-columns:46% 54%;

    background:#f8f6f2;
    color:var(--text);
    border-top:1px solid var(--line);
}

.contact-copy{
    padding:90px 6vw 105px 7vw;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-copy h2{
    max-width:520px;
    margin:0 0 34px;

    font-family:var(--serif);
    font-size:clamp(56px,6vw,104px);
    font-weight:500;
    line-height:.95;
    letter-spacing:-.05em;

    color:var(--text);
}

.pl-site .contact-copy h2{
    max-width:620px;
    font-size:clamp(58px,5vw,86px);
}

.contact-copy p{
    max-width:470px;
    margin:28px 0 56px;

    font-size:18px;
    line-height:1.8;
    color:var(--muted);
}

.pl-site .contact-copy p{
    max-width:560px;
}

.contact-details{
    margin-top:10px;
}

.contact-details a,
.footer a{
    color:var(--gold);
    font-weight:600;
    letter-spacing:.04em;
    transition:.3s ease;
}

.contact-details a:hover,
.footer a:hover{
    opacity:.7;
}

.contact-section .contact-form{
    padding:110px 7vw 105px 5vw;

    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:22px;

    background:#fffdf9;
    color:var(--text);
    border-left:1px solid var(--line);
}

.contact-form label{
    display:flex;
    flex-direction:column;
    gap:10px;

    margin-bottom:30px;

    font-size:12px;
    font-weight:700;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:16px 0;

    border:0;
    border-bottom:1px solid rgba(20,20,20,.18);
    background:transparent;

    font:inherit;
    font-size:16px;
    color:var(--text);

    outline:none;
    transition:.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
    border-bottom-color:var(--gold);
}

.contact-form .btn{
    width:260px;
    height:58px;
}
.contact-section{
    min-height:400px;   /* było ok. 620px */
}

.contact-copy{
    padding:70px 6vw 70px 7vw;
}

.contact-section .contact-form{
    padding:70px 7vw 70px 5vw;
}
.contact-section{
    display:grid;
    grid-template-columns:46% 54%;
    min-height:auto;
}

/* =====================================
   11. FOOTER
===================================== */

.footer{
    padding:80px 7vw 28px;

    background:var(--paper);
    color:var(--text);

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

.footer-top{
    display:grid;
    grid-template-columns:52% 48%;
    gap:80px;

    padding-bottom:58px;
    border-bottom:1px solid var(--line);
}

.footer-brand h3{
    margin:0 0 22px;

    font-family:var(--serif);
    font-size:clamp(38px,3.4vw,50px);
    font-weight:500;
    line-height:1.05;
}

.footer-brand p{
    max-width:420px;
    margin:0 0 28px;

    color:var(--muted);
    font-size:17px;
    line-height:1.75;
}

.footer-cta{
    display:inline-block;

    font-size:12px;
    font-weight:700;
    letter-spacing:.15em;
    text-transform:uppercase;

    color:var(--gold);
    transition:.25s ease;
}

.footer-cta:hover{
    transform:translateX(6px);
    opacity:.75;
}

.footer-links{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:70px;
}

.footer-links h4{
    margin:0 0 22px;

    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.16em;

    color:var(--gold);
}

.footer-links a,
.footer-links span{
    display:block;
    margin-bottom:9px;

    color:var(--muted);
    transition:.25s;
}

.footer-links a:hover{
    color:var(--gold);
}

.footer-bottom{
    margin-top:28px;
    text-align:center;

    color:rgba(34,37,43,.48);
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.footer-links:last-child a{
    color:var(--gold);
    font-weight:600;
}

.footer-links:last-child a:hover{
    opacity:.75;
}
.footer{
    margin-top:70px;
}
.footer-top{
    display:grid;
    grid-template-columns:52% 48%;
    gap:80px;
    align-items:start;
}
.floating-contact{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:60;

    display:none;

    padding:14px 20px;

    background:var(--gold);
    color:#fff;

    border:1px solid var(--gold);
    border-radius:999px;

    font-size:11px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;

    box-shadow:0 16px 36px rgba(20,20,20,.16);

    transition:.25s ease;
}

.floating-contact:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 46px rgba(20,20,20,.22);
}

@media(max-width:620px){
    .floating-contact{
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }
}


/* =====================================
   12. ANIMATIONS
===================================== */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:opacity .9s ease, transform .9s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

@keyframes lineReveal{
    to{
        width:70px;
    }
}

@keyframes heroTitle{
    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:none;
    }
}

@keyframes heroText{
    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:none;
    }
}

@keyframes heroZoom{
    from{
        transform:scale(1.03);
    }

    to{
        transform:scale(1.08);
    }
}

@keyframes drawArc{
    to{
        stroke-dashoffset:0;
    }
}

@keyframes trustMarquee{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* =====================================
   13. RESPONSIVE
===================================== */

@media(max-width:1200px){

    .network-grid{
        max-width:1000px;
    }

    .global-reach{
        grid-template-columns:52% 48%;
    }

    .global-stats{
        padding-right:6vw;
    }

}

@media(max-width:980px){

    .site-header{
        height:78px;
        padding:0 24px;
    }

    .brand{
        gap:14px;
        font-size:13px;
    }

    .brand img{
        width:46px;
        height:46px;
    }

    .nav-toggle{
        display:block;
        order:3;
    }

    .nav{
        position:fixed;
        top:78px;
        left:0;
        right:0;

        display:none;
        flex-direction:column;
        gap:24px;

        padding:28px 24px;
        background:var(--paper);
        border-bottom:1px solid var(--line);
    }

    .nav.open{
        display:flex;
    }

    .lang{
        font-size:12px;
    }

    .hero,
    .benefits-section,
    .global-reach,
    .contact-section{
        grid-template-columns:1fr;
    }

    .hero{
        min-height:auto;
        padding-top:78px;
    }

    .hero-copy{
        padding:50px 30px 40px;
    }

    .hero h1,
    .pl-site .hero h1{
        font-size:56px;
        line-height:.95;
        letter-spacing:-.04em;
    }

    .lead{
        max-width:100%;
        font-size:18px;
        line-height:1.6;
    }

    .hero-highlights{
        justify-content:space-between;
        gap:16px;
        margin:34px 0 36px;
    }

    .hero-item{
        flex:1;
    }

    .hero-item strong{
        font-size:34px;
    }

    .hero-item span{
        font-size:10px;
    }

    .hero-image{
        min-height:320px;
        clip-path:none;
        background-size:cover;
        background-position:center;
    }

    .network-section{
        min-height:auto;
        padding:95px 24px;
    }

    .network-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .network-card{
        min-height:280px;
        padding:34px;
    }

    .network-card::before{
        left:34px;
        right:34px;
    }

    .network-card h3{
        margin-top:54px;
    }

    .card-link{
        left:34px;
        bottom:32px;
    }

    .benefits-section{
        min-height:auto;
    }

    .benefits-image{
        min-height:340px;
        order:2;
    }

    .benefits-content{
        order:1;
        padding:70px 24px;
    }

    .benefits-content h2{
        font-size:52px;
    }

    .benefits-text{
        font-size:17px;
    }

    .benefits-list{
        gap:14px;
    }

    .global-reach{
        min-height:auto;
    }

    .global-map{
        height:420px;
        order:2;
    }

    .ngi-world-map{
        width:100%;
        height:420px;
        transform:translateX(-8%);
    }

    .global-stats{
        order:1;
        padding:80px 24px 50px;
    }

    .global-stats h2{
        font-size:52px;
    }

    .stats-grid{
        gap:28px 24px;
    }

    .trust-strip{
        height:110px;
    }

    .trust-track{
        gap:48px;
    }

    .trust-track span{
        font-size:24px;
    }

    .contact-copy,
    .contact-section .contact-form{
        padding:90px 7vw;
    }

    .contact-section .contact-form{
        border-left:0;
        border-top:1px solid var(--line);
    }

    .pl-site .contact-copy h2{
        font-size:52px;
    }

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

    .footer-links{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}

@media(max-width:620px){

    .site-header{
        padding:0 18px;
    }

    .brand{
        gap:10px;
        letter-spacing:.12em;
    }

    .brand img{
        width:42px;
        height:42px;
    }

    .header-right{
    gap:12px;
}

.header-contact{
    display:none;
}

.lang{
    display:flex;
    gap:8px;
    font-size:11px;
    letter-spacing:.10em;
}

    .section-intro h2,
    .global-stats h2,
    .contact-copy h2{
        font-size:44px;
    }

    .hero-copy,
    .network-section,
    .benefits-content,
    .global-stats,
    .contact-copy,
    .contact-section .contact-form{
        padding-left:20px;
        padding-right:20px;
    }

    .btn,
    .contact-form .btn{
        width:100%;
        min-width:0;
    }

    .hero-image{
        min-height:340px;
    }

    .benefits-image{
        min-height:320px;
    }

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

    .footer{
        padding-left:20px;
        padding-right:20px;
    }
.footer-top{
    grid-template-columns:1fr;
    gap:44px;
    padding-bottom:42px;
}

.footer-links{
    grid-template-columns:1fr;
    gap:34px;
}

.footer-brand h3{
    font-size:42px;
}

.footer-bottom{
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.footer-bottom div{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}
@media(max-width:620px){
    .trust-strip{
        display:none;
    }
}
@media(max-width:620px){
    .contact-copy,
    .contact-section .contact-form{
        padding-top:55px;
        padding-bottom:55px;
    }
}
}
