/*==============================================================
UNIVERSE YACHTING FRAMEWORK v2
Production CSS Framework
Part 1
---------------------------------------------------------------
01. Root Variables
02. Reset
03. Base Elements
04. Typography
05. Layout
06. Utilities
07. Buttons
08. Cards
09. Animations
==============================================================*/


/*==============================================================
1. ROOT VARIABLES
==============================================================*/

:root{

    /* Brand */

    --color-primary:#01708F;
    --color-primary-light:#18A9CC;
    --color-primary-dark:#0B3556;

    --color-navy:#071827;

    --color-gold:#D4B05F;

    /* Backgrounds */

    --color-background:#F5F8FA;
    --color-surface:#FFFFFF;
    --color-surface-alt:#F7F9FB;

    /* Text */

    --color-text:#2E3A45;
    --color-text-light:#64748B;
    --color-white:#FFFFFF;

    /* Borders */

    --color-border:#E5ECF2;

    /* Status */

    --color-success:#0FA968;
    --color-warning:#E6A400;
    --color-danger:#D63939;

    /* Radius */

    --radius-xs:8px;
    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:24px;
    --radius-xl:32px;
    --radius-round:999px;

    /* Shadows */

    --shadow-sm:0 8px 20px rgba(0,0,0,.05);

    --shadow-md:0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    /* Width */

    --container:1320px;

    /* Typography */

    --fs-xs:.82rem;
    --fs-sm:.95rem;
    --fs-base:1rem;
    --fs-lg:1.125rem;
    --fs-xl:1.3rem;
    --fs-2xl:1.8rem;
    --fs-3xl:2.5rem;
    --fs-4xl:clamp(2.8rem,5vw,4.8rem);

    /* Spacing */

    --space-xs:.5rem;
    --space-sm:1rem;
    --space-md:1.5rem;
    --space-lg:2rem;
    --space-xl:3rem;
    --space-2xl:5rem;
    --space-3xl:7rem;

    /* Animation */

    --transition:.35s ease;

}


/*==============================================================
2. RESET
==============================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    font-size:17px;

    line-height:1.75;

    color:var(--color-text);

    background:var(--color-background);

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    overflow-x:hidden;

}

img,
picture{

    display:block;

    max-width:100%;

}

svg{

    display:block;

}

button{

    font:inherit;

    border:none;

    background:none;

    cursor:pointer;

}

input,
textarea,
select{

    font:inherit;

}

ul{

    list-style:none;

}

a{

    color:inherit;

    text-decoration:none;

}


/*==============================================================
3. TYPOGRAPHY
==============================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:"Poppins",sans-serif;

    color:var(--color-navy);

    line-height:1.15;

    font-weight:700;

}

h1{

    font-size:var(--fs-4xl);

}

h2{

    font-size:clamp(2rem,3vw,3rem);

}

h3{

    font-size:1.4rem;

}

h4{

    font-size:1.1rem;

}

p{

    color:var(--color-text-light);

    margin-bottom:1rem;

}

strong{

    color:var(--color-navy);

}

small{

    font-size:.85rem;

}


/*==============================================================
4. LAYOUT
==============================================================*/

.container{

    width:min(var(--container),92%);

    margin-inline:auto;

}

.container-sm{

    width:min(900px,92%);

    margin-inline:auto;

}

.container-lg{

    width:min(1500px,94%);

    margin-inline:auto;

}

section{

    padding:120px 0;

}

.section-light{

    background:var(--color-surface);

}

.section-grey{

    background:var(--color-surface-alt);

}

.section-dark{

    background:var(--color-navy);

    color:#fff;

}

.section-dark h2,
.section-dark h3{

    color:#fff;

}


/*==============================================================
5. SECTION TITLES
==============================================================*/

.section-title{

    max-width:820px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    margin-bottom:18px;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.85rem;

    font-weight:700;

    color:var(--color-primary-light);

}

.section-title h2{

    margin-bottom:24px;

}

.section-title p{

    font-size:1.08rem;

}


/*==============================================================
6. BUTTONS
==============================================================*/

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.7rem;
    padding:18px 34px;
    border-radius:var(--radius-round);
    transition:var(--transition);
    font-weight:600;

}

.btn-primary{

    background:var(--color-primary-light);

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.25);

    color:#fff;

}

.btn-secondary:hover{

    background:#fff;

    color:var(--color-navy);

}

.btn-outline{

    border:2px solid var(--color-primary);

    color:var(--color-primary);

}

.btn-outline:hover{

    background:var(--color-primary);

    color:#fff;

}


/*==============================================================
7. UNIVERSAL CARDS
==============================================================*/

.card{

    background:#fff;

    border-radius:var(--radius-md);

    padding:40px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    border:1px solid var(--color-border);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.card h3{

    margin-bottom:18px;

}

.card p:last-child{

    margin-bottom:0;

}


/*==============================================================
8. ICON CIRCLES
==============================================================*/

.icon-circle{

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

    font-size:2rem;

    background:linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-light)
    );

    color:#fff;

}


/*==============================================================
9. ANIMATIONS
==============================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}

.fade-in{

    animation:fadeIn .8s ease forwards;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==============================================================
PART 2A.1
HEADER • NAVIGATION • MOBILE MENU
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
HEADER
==============================================================*/

.header{

    position:fixed;

    inset:0 0 auto 0;

    height:92px;

    z-index:1000;

    transition:
        background .35s ease,
        height .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    background:rgba(7,24,39,.18);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.header.scrolled{

    height:82px;

    background:rgba(7,24,39,.96);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 10px 35px rgba(0,0,0,.22);

}

.header .container{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}


/*==============================================================
LOGO
==============================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-family:"Poppins",sans-serif;

    font-weight:700;

    font-size:1.75rem;

    color:#fff;

    white-space:nowrap;

    transition:var(--transition);

}

.logo:hover{

    opacity:.95;

}

.logo span{

    color:var(--color-primary-light);

}


/*==============================================================
DESKTOP NAVIGATION
==============================================================*/

.navigation{

    margin-left:auto;

}

.navigation ul{

    display:flex;

    align-items:center;

    gap:42px;

}

.navigation li{

    position:relative;

}

.navigation a{

    position:relative;

    display:inline-flex;

    align-items:center;

    height:92px;

    color:#fff;

    font-size:.97rem;

    font-weight:500;

    transition:var(--transition);

}

.header.scrolled .navigation a{

    height:82px;

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:24px;

    width:0;

    height:2px;

    background:var(--color-primary-light);

    transition:width .3s ease;

}

.navigation a:hover{

    color:#fff;

}

.navigation a:hover::after{

    width:100%;

}


/*==============================================================
ACTIVE NAVIGATION
==============================================================*/

.navigation a.active{

    color:#fff;

    font-weight:600;

}

.navigation a.active::after{

    width:100%;

}


/*==============================================================
NAV CTA
==============================================================*/

.btn-nav{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    margin-left:36px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-light)
    );

    color:#fff;

    font-weight:600;

    white-space:nowrap;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(24,169,204,.25);

}

.btn-nav:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(24,169,204,.35);

}


/*==============================================================
MOBILE TOGGLE
==============================================================*/

.mobile-toggle{

    display:none;

    width:46px;

    height:46px;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

    border-radius:10px;

    transition:var(--transition);

}

.mobile-toggle span{

    width:28px;

    height:3px;

    border-radius:20px;

    background:#fff;

    transition:all .35s ease;

}


/*==============================================================
HAMBURGER ANIMATION
==============================================================*/

.mobile-toggle.active span:nth-child(1){

    transform:
        translateY(9px)
        rotate(45deg);

}

.mobile-toggle.active span:nth-child(2){

    opacity:0;

    transform:scaleX(0);

}

.mobile-toggle.active span:nth-child(3){

    transform:
        translateY(-9px)
        rotate(-45deg);

}


/*==============================================================
MOBILE NAVIGATION
==============================================================*/

@media (max-width:1100px){

    .navigation{

        position:fixed;

        top:92px;

        left:0;

        width:100%;

        background:var(--color-navy);

        padding:40px;

        transform:translateY(-120%);

        opacity:0;

        visibility:hidden;

        transition:.35s ease;

        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .navigation.open{

        transform:translateY(0);

        opacity:1;

        visibility:visible;

    }

    .navigation ul{

        flex-direction:column;

        align-items:flex-start;

        gap:0;

    }

    .navigation li{

        width:100%;

    }

    .navigation a{

        width:100%;

        height:auto;

        padding:18px 0;

        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .navigation a::after{

        display:none;

    }

    .btn-nav{

        display:none;

    }

    .mobile-toggle{

        display:flex;

        margin-left:auto;

    }

}


/*==============================================================
SMALL MOBILE
==============================================================*/

@media (max-width:576px){

    .header{

        height:82px;

    }

    .header.scrolled{

        height:74px;

    }

    .navigation{

        top:82px;

        padding:30px 24px;

    }

    .logo{

        font-size:1.45rem;

    }

}

/*==============================================================
PART 2A.2.1
STANDARD HERO + SPLIT HERO
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
STANDARD HERO
==============================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background-color:var(--color-navy);

    background-position:center center;

    background-repeat:no-repeat;

    background-size:cover;

    isolation:isolate;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(7,24,39,.88),
            rgba(11,53,86,.72)
        );

    z-index:0;

}

.hero>.container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:760px;

    color:#fff;

    padding-top:100px;

    padding-bottom:60px;

}

.hero-content>*{

    position:relative;

    z-index:2;

}


/*==============================================================
SPLIT HERO
==============================================================*/

.hero-split{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:stretch;

    min-height:100vh;

    background:var(--color-navy);

    overflow:hidden;

    padding-top:92px;

}

.hero-left{

    display:flex;

    align-items:center;

    justify-content:flex-end;

    background:
        linear-gradient(
            135deg,
            var(--color-navy),
            var(--color-primary-dark)
        );

}

.hero-panel{

    width:min(720px,88%);

    color:#fff;

    padding:90px 0;

}

.hero-right{

    position:relative;

    overflow:hidden;

}

.hero-right img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform 8s ease;

}

.hero-split:hover .hero-right img{

    transform:scale(1.05);

}

.hero-right::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(7,24,39,.18),
            rgba(7,24,39,0)
        );

}


/*==============================================================
EYEBROW
==============================================================*/

.eyebrow{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-bottom:24px;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.82rem;

    font-weight:700;

    color:var(--color-gold);

}

.eyebrow::before{

    content:"";

    width:46px;

    height:2px;

    background:var(--color-primary-light);

}


/*==============================================================
HERO HEADINGS
==============================================================*/

.hero h1,
.hero-panel h1{

    color:#fff;

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.02;

    margin-bottom:24px;

}

.hero h2,
.hero-panel h2{

    color:rgba(255,255,255,.92);

    font-size:clamp(1.35rem,2vw,2rem);

    font-weight:500;

    margin-bottom:28px;

    line-height:1.35;

}

.hero p,
.hero-panel p{

    color:rgba(255,255,255,.82);

    font-size:1.08rem;

    max-width:680px;

    margin-bottom:38px;

}


/*==============================================================
HERO BUTTONS
==============================================================*/

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:15px;

    margin-bottom:60px;

}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{

    min-width:220px;

    justify-content:center;

}


/*==============================================================
STANDARD HERO IMAGE (OPTIONAL)
==============================================================*/

.hero-image{

    position:absolute;

    inset:0;

    z-index:-2;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/*==============================================================
DECORATIVE SHAPES
==============================================================*/

.hero-decoration{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

    opacity:.22;

    pointer-events:none;

}

.hero-decoration.one{

    width:320px;

    height:320px;

    top:-120px;

    right:-80px;

    background:var(--color-primary-light);

}

.hero-decoration.two{

    width:260px;

    height:260px;

    bottom:-120px;

    left:-80px;

    background:var(--color-primary);

}


/*==============================================================
HERO FADE-IN
==============================================================*/

.hero-content>*,
.hero-panel>*{

    animation:heroFade .8s ease both;

}

.hero-content>*:nth-child(1),
.hero-panel>*:nth-child(1){

    animation-delay:.05s;

}

.hero-content>*:nth-child(2),
.hero-panel>*:nth-child(2){

    animation-delay:.15s;

}

.hero-content>*:nth-child(3),
.hero-panel>*:nth-child(3){

    animation-delay:.25s;

}

.hero-content>*:nth-child(4),
.hero-panel>*:nth-child(4){

    animation-delay:.35s;

}

.hero-content>*:nth-child(5),
.hero-panel>*:nth-child(5){

    animation-delay:.45s;

}

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(24px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/*==============================================================
PART 2A.2.2
HERO STATISTICS • HERO RESPONSIVE
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
HERO STATISTICS
==============================================================*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    width:100%;

    max-width:900px;

}

.hero-stats > div{

    position:relative;

    overflow:hidden;

    padding:34px 28px;

    border-radius:var(--radius-md);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    transition:var(--transition);

}

.hero-stats > div::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,0)
        );

    pointer-events:none;

}

.hero-stats > div:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.11);

    box-shadow:0 18px 45px rgba(0,0,0,.22);

}

.hero-stats h2,
.hero-stats h3{

    color:#fff;

    font-family:"Poppins",sans-serif;

    font-size:2.5rem;

    line-height:1;

    margin-bottom:12px;

}

.hero-stats span{

    display:block;

    color:rgba(255,255,255,.82);

    font-size:.92rem;

    line-height:1.5;

    letter-spacing:.5px;

}


/*==============================================================
COUNTERS
==============================================================*/

.counter{

    display:inline-block;

    font-variant-numeric:tabular-nums;

}


/*==============================================================
SCROLL INDICATOR
==============================================================*/

.hero-scroll{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    color:rgba(255,255,255,.75);

    font-size:.82rem;

    letter-spacing:2px;

    text-transform:uppercase;

    z-index:5;

}

.hero-scroll::after{

    content:"";

    width:2px;

    height:40px;

    background:rgba(255,255,255,.45);

    animation:scrollLine 2s infinite;

}

@keyframes scrollLine{

    0%{

        opacity:0;

        transform:translateY(-12px);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(12px);

    }

}


/*==============================================================
OPTIONAL HERO BADGE
==============================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:10px 18px;

    margin-bottom:28px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:#fff;

    backdrop-filter:blur(12px);

}

.hero-badge i{

    color:var(--color-gold);

}


/*==============================================================
DESKTOP IMPROVEMENTS
==============================================================*/

@media (min-width:1400px){

    .hero-content{

        max-width:820px;

    }

    .hero-panel{

        width:min(760px,88%);

    }

    .hero h1,
    .hero-panel h1{

        max-width:12ch;

    }

}


/*==============================================================
LARGE TABLETS
==============================================================*/

@media (max-width:1200px){

    .hero-split{

        grid-template-columns:1fr;

    }

    .hero-left{

        justify-content:center;

    }

    .hero-panel{

        width:min(900px,90%);

        margin:auto;

        padding:90px 0 70px;

    }

    .hero-right{

        height:520px;

        order:-1;

    }

}


/*==============================================================
TABLETS
==============================================================*/

@media (max-width:992px){

    .hero{

        min-height:auto;

        padding:170px 0 120px;

    }

    .hero-content{

        max-width:100%;

        text-align:center;

        margin:auto;

    }

    .hero-panel{

        text-align:center;

    }

    .hero-panel p{

        margin-inline:auto;

    }

    .eyebrow{

        justify-content:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        grid-template-columns:repeat(2,1fr);

        max-width:650px;

        margin-inline:auto;

    }

}


/*==============================================================
MOBILE
==============================================================*/

@media (max-width:768px){

    .hero{

        padding:150px 0 90px;

    }

    .hero-content{

        padding-top:0;

        padding-bottom:0;

    }

    .hero-panel{

        width:92%;

        padding:70px 0;

    }

    .hero-right{

        height:360px;

    }

    .hero h1,
    .hero-panel h1{

        font-size:clamp(2.4rem,10vw,3.2rem);

    }

    .hero h2,
    .hero-panel h2{

        font-size:1.25rem;

    }

    .hero p,
    .hero-panel p{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:stretch;

        margin-bottom:45px;

    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary{

        width:100%;

        min-width:unset;

    }

    .hero-stats{

        grid-template-columns:1fr;

        gap:18px;

    }

    .hero-stats > div{

        padding:28px;

    }

    .hero-scroll{

        display:none;

    }

}


/*==============================================================
SMALL MOBILE
==============================================================*/

@media (max-width:480px){

    .hero{

        padding:135px 0 80px;

    }

    .hero-panel{

        width:94%;

    }

    .hero-right{

        height:280px;

    }

    .hero h1,
    .hero-panel h1{

        line-height:1.08;

    }

    .hero-stats h2,
    .hero-stats h3{

        font-size:2rem;

    }

    .hero-stats span{

        font-size:.88rem;

    }

}

/*==============================================================
PART 2B.1
UNIVERSAL GRIDS • FEATURE CARDS • SERVICE CARDS
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
UNIVERSAL GRID SYSTEM
==============================================================*/

.grid{

    display:grid;

    gap:32px;

}

.grid-2{

    grid-template-columns:repeat(2,minmax(0,1fr));

}

.grid-3{

    grid-template-columns:repeat(3,minmax(0,1fr));

}

.grid-4{

    grid-template-columns:repeat(4,minmax(0,1fr));

}

.grid-auto{

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

}

.grid-center{

    align-items:center;

}

.grid-start{

    align-items:flex-start;

}

.grid-end{

    align-items:end;

}


/*==============================================================
FEATURE GRID
==============================================================*/

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:32px;

}


/*==============================================================
SERVICE GRID
==============================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:32px;

}


/*==============================================================
UNIVERSAL FEATURE CARD
==============================================================*/

.feature-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    padding:42px;

    background:#fff;

    border-radius:var(--radius-md);

    border:1px solid var(--color-border);

    box-shadow:var(--shadow-sm);

    overflow:hidden;

    transition:var(--transition);

}

.feature-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:
        linear-gradient(
            180deg,
            var(--color-primary-light),
            var(--color-primary)
        );

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.feature-card:hover::before{

    transform:scaleY(1);

}

.feature-card .icon,
.feature-card .icon-circle{

    margin-bottom:26px;

}

.feature-card h3{

    margin-bottom:18px;

    color:var(--color-navy);

}

.feature-card p{

    flex:1;

    margin-bottom:0;

}


/*==============================================================
FEATURE CARD LINK
==============================================================*/

.feature-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:28px;

    color:var(--color-primary);

    font-weight:600;

    transition:var(--transition);

}

.feature-card a:hover{

    color:var(--color-primary-light);

    transform:translateX(5px);

}


/*==============================================================
SERVICE CARD
==============================================================*/

.service-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    padding:44px;

    background:#fff;

    border-radius:var(--radius-lg);

    border:1px solid var(--color-border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-card h3{

    margin-bottom:18px;

    color:var(--color-navy);

}

.service-card p{

    flex:1;

    margin-bottom:30px;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:auto;

    color:var(--color-primary);

    font-weight:600;

    transition:var(--transition);

}

.service-card a:hover{

    color:var(--color-primary-light);

    transform:translateX(6px);

}


/*==============================================================
FEATURED SERVICE CARD
==============================================================*/

.service-card.featured{

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );

    color:#fff;

    border:none;

}

.service-card.featured h3{

    color:#fff;

}

.service-card.featured p{

    color:rgba(255,255,255,.88);

}

.service-card.featured a{

    color:#fff;

}


/*==============================================================
SERVICE ICON
==============================================================*/

.service-icon{

    width:74px;

    height:74px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );

    color:#fff;

    font-size:2rem;

}


/*==============================================================
CARD HOVER IMAGE
==============================================================*/

.card-image{

    overflow:hidden;

    border-radius:18px;

    margin-bottom:24px;

}

.card-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:transform .8s ease;

}

.feature-card:hover .card-image img,
.service-card:hover .card-image img{

    transform:scale(1.08);

}


/*==============================================================
CARD BADGE
==============================================================*/

.card-badge{

    display:inline-flex;

    align-items:center;

    padding:8px 14px;

    margin-bottom:18px;

    border-radius:999px;

    background:#eef8fb;

    color:var(--color-primary);

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;

}


/*==============================================================
LISTS INSIDE CARDS
==============================================================*/

.card-list{

    display:grid;

    gap:12px;

    margin-top:24px;

}

.card-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:var(--color-text-light);

}

.card-list li::before{

    content:"✓";

    color:var(--color-primary);

    font-weight:700;

}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:1200px){

    .features-grid,
    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .grid-2,
    .grid-3,
    .grid-4,

    .features-grid,
    .services-grid{

        grid-template-columns:1fr;

    }

    .feature-card,
    .service-card{

        padding:34px;

    }

}

@media (max-width:480px){

    .feature-card,
    .service-card{

        padding:28px;

    }

    .service-icon,
    .icon-circle{

        width:64px;

        height:64px;

        font-size:1.6rem;

    }

}

/*==============================================================
PART 2B.2.1
TIMELINE • PROCESS COMPONENT
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
PROCESS SECTION
==============================================================*/

.process{

    position:relative;

    padding:120px 0;

    background:var(--color-surface);

    overflow:hidden;

}

.process::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(24,169,204,.05);

    filter:blur(40px);

    pointer-events:none;

}

.process::after{

    content:"";

    position:absolute;

    bottom:-200px;

    left:-180px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(1,112,143,.04);

    filter:blur(50px);

    pointer-events:none;

}


/*==============================================================
TIMELINE GRID
==============================================================*/

.timeline{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:40px;

}


/*==============================================================
TIMELINE ITEM
==============================================================*/

.timeline-item{

    position:relative;

    background:#fff;

    padding:42px;

    border-radius:var(--radius-lg);

    border:1px solid var(--color-border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    overflow:hidden;

}

.timeline-item:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


/*==============================================================
LEFT ACCENT
==============================================================*/

.timeline-item::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:
        linear-gradient(
            180deg,
            var(--color-primary-light),
            var(--color-primary)
        );

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;

}

.timeline-item:hover::before{

    transform:scaleY(1);

}


/*==============================================================
STEP NUMBER
==============================================================*/

.number{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    border-radius:50%;

    font-family:"Poppins",sans-serif;

    font-size:1.6rem;

    font-weight:700;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );

    box-shadow:
        0 15px 30px rgba(24,169,204,.25);

    transition:var(--transition);

}

.timeline-item:hover .number{

    transform:rotate(6deg) scale(1.05);

}


/*==============================================================
HEADINGS
==============================================================*/

.timeline-item h3{

    margin-bottom:18px;

    color:var(--color-navy);

}

.timeline-item p{

    margin-bottom:0;

    color:var(--color-text-light);

}


/*==============================================================
OPTIONAL STEP LABEL
==============================================================*/

.timeline-label{

    display:inline-block;

    margin-bottom:16px;

    padding:6px 12px;

    border-radius:999px;

    background:#eef8fb;

    color:var(--color-primary);

    font-size:.75rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}


/*==============================================================
CONNECTOR LINE (DESKTOP)
==============================================================*/

.timeline.desktop-connectors{

    gap:70px;

}

.timeline.desktop-connectors .timeline-item:not(:last-child)::after{

    content:"";

    position:absolute;

    top:72px;

    right:-70px;

    width:70px;

    height:2px;

    background:
        linear-gradient(
            90deg,
            var(--color-primary-light),
            rgba(24,169,204,.15)
        );

}


/*==============================================================
OPTIONAL ICON
==============================================================*/

.timeline-icon{

    width:64px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

    border-radius:50%;

    background:#eef8fb;

    color:var(--color-primary);

    font-size:1.8rem;

}


/*==============================================================
COMPLETED STEP
==============================================================*/

.timeline-item.completed{

    border-color:rgba(24,169,204,.35);

}

.timeline-item.completed .number{

    background:
        linear-gradient(
            135deg,
            #0FA968,
            #30C77B
        );

}


/*==============================================================
ACTIVE STEP
==============================================================*/

.timeline-item.active{

    border-color:var(--color-primary-light);

    box-shadow:0 20px 45px rgba(24,169,204,.18);

}


/*==============================================================
TABLET
==============================================================*/

@media (max-width:992px){

    .timeline{

        grid-template-columns:repeat(2,1fr);

    }

    .timeline.desktop-connectors .timeline-item::after{

        display:none;

    }

}


/*==============================================================
MOBILE
==============================================================*/

@media (max-width:768px){

    .process{

        padding:90px 0;

    }

    .timeline{

        grid-template-columns:1fr;

        gap:28px;

    }

    .timeline-item{

        padding:34px;

    }

    .number{

        width:64px;

        height:64px;

        font-size:1.35rem;

    }

}


/*==============================================================
SMALL MOBILE
==============================================================*/

@media (max-width:480px){

    .timeline-item{

        padding:28px;

    }

    .number{

        width:58px;

        height:58px;

        font-size:1.2rem;

    }

}

/*==============================================================
PART 2B.2.2
INDUSTRY CARDS • COVERAGE SECTION
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
INDUSTRIES SECTION
==============================================================*/

.industries{

    position:relative;

    padding:120px 0;

    background:var(--color-surface-alt);

    overflow:hidden;

}

.industries::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-220px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(24,169,204,.05);

    filter:blur(60px);

}


/*==============================================================
INDUSTRY GRID
==============================================================*/

.industry-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:32px;

}


/*==============================================================
INDUSTRY CARD
==============================================================*/

.industry-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:48px 40px;

    background:#fff;

    border-radius:var(--radius-lg);

    border:1px solid var(--color-border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.industry-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-primary-light)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.industry-card:hover::before{

    transform:scaleX(1);

}


/*==============================================================
INDUSTRY ICON
==============================================================*/

.industry-card{

    font-size:3.2rem;

}

.industry-card h3{

    margin-top:24px;

    margin-bottom:16px;

    color:var(--color-navy);

}

.industry-card p{

    margin-bottom:0;

}


/*==============================================================
OPTIONAL LOGO
==============================================================*/

.industry-logo{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

}

.industry-logo img{

    max-width:100%;

    max-height:100%;

    object-fit:contain;

}


/*==============================================================
COVERAGE SECTION
==============================================================*/

.coverage{

    position:relative;

    padding:140px 0;

    background:
        linear-gradient(
            135deg,
            var(--color-navy),
            var(--color-primary-dark)
        );

    color:#fff;

    overflow:hidden;

}

.coverage::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at top right,
            rgba(24,169,204,.16),
            transparent 45%),

        radial-gradient(circle at bottom left,
            rgba(255,255,255,.05),
            transparent 40%);

}


/*==============================================================
COVERAGE PANEL
==============================================================*/

.coverage-box{

    position:relative;

    z-index:2;

    max-width:1100px;

    margin:auto;

    padding:70px;

    border-radius:32px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    text-align:center;

}

.coverage-box h2{

    color:#fff;

    margin-bottom:24px;

}

.coverage-box p{

    max-width:760px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.82);

}


/*==============================================================
COUNTRY TAGS
==============================================================*/

.countries{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:16px;

}

.countries span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:.92rem;

    transition:var(--transition);

}

.countries span:hover{

    background:var(--color-primary-light);

    transform:translateY(-4px);

}


/*==============================================================
COVERAGE STATS
==============================================================*/

.coverage-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:60px;

}

.coverage-stat{

    padding:28px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

}

.coverage-stat h3{

    color:#fff;

    font-size:2rem;

    margin-bottom:10px;

}

.coverage-stat p{

    margin:0;

    color:rgba(255,255,255,.78);

}


/*==============================================================
MOBILE
==============================================================*/

@media (max-width:992px){

    .industry-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .coverage-box{

        padding:50px;

    }

    .coverage-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .industry-grid{

        grid-template-columns:1fr;

    }

    .coverage{

        padding:90px 0;

    }

    .coverage-box{

        padding:36px;

        border-radius:24px;

    }

    .countries{

        gap:12px;

    }

    .countries span{

        width:100%;

    }

    .coverage-stats{

        grid-template-columns:1fr;

    }

}

@media (max-width:480px){

    .industry-card{

        padding:36px 28px;

    }

    .industry-card{

        font-size:2.6rem;

    }

}

/*==============================================================
PART 2B.3
PROJECTS • STATISTICS • TESTIMONIALS • FAQ
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
PROJECTS
==============================================================*/

.projects{

    position:relative;

    background:var(--color-surface);

    overflow:hidden;

}

.project-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:36px;

}

.project-card{

    background:#fff;

    border-radius:var(--radius-lg);

    overflow:hidden;

    border:1px solid var(--color-border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.project-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:transform .8s ease;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:34px;

}

.project-content h3{

    margin-bottom:16px;

}

.project-content p{

    margin-bottom:0;

}

.project-meta{

    display:flex;

    justify-content:space-between;

    margin-top:25px;

    font-size:.9rem;

    color:var(--color-text-light);

}


/*==============================================================
STATISTICS
==============================================================*/

.numbers{

    position:relative;

    background:
        linear-gradient(
            135deg,
            var(--color-navy),
            var(--color-primary-dark)
        );

    color:#fff;

    overflow:hidden;

}

.numbers::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(24,169,204,.15),
        transparent 45%);

}

.numbers .container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.number-box{

    text-align:center;

    padding:40px 25px;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:var(--transition);

}

.number-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.number-box h2{

    color:#fff;

    font-size:3.8rem;

    margin-bottom:12px;

}

.number-box p{

    color:rgba(255,255,255,.82);

    margin:0;

}


/*==============================================================
TESTIMONIALS
==============================================================*/

.testimonials{

    background:var(--color-surface-alt);

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:34px;

}

.testimonial{

    position:relative;

    background:#fff;

    border-radius:var(--radius-lg);

    padding:42px;

    border:1px solid var(--color-border);

    box-shadow:var(--shadow-sm);

}

.testimonial::before{

    content:"“";

    position:absolute;

    top:25px;

    left:25px;

    font-size:5rem;

    color:rgba(24,169,204,.12);

    font-family:Georgia,serif;

    line-height:1;

}

.testimonial p{

    position:relative;

    z-index:2;

    margin-bottom:30px;

}

.testimonial h4{

    margin-bottom:4px;

}

.testimonial small{

    color:var(--color-text-light);

}

.testimonial:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}


/*==============================================================
FAQ
==============================================================*/

.faq{

    background:#fff;

}

.faq-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:30px;

}

.faq-card{

    padding:34px;

    border-radius:20px;

    border:1px solid var(--color-border);

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.faq-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.faq-card h3{

    position:relative;

    padding-left:36px;

    margin-bottom:18px;

}

.faq-card h3::before{

    content:"+";

    position:absolute;

    left:0;

    top:0;

    color:var(--color-primary);

    font-size:1.5rem;

    font-weight:700;

}

.faq-card p{

    margin-bottom:0;

}


/*==============================================================
STAR RATING
==============================================================*/

.rating{

    display:flex;

    gap:4px;

    margin-bottom:22px;

    color:var(--color-gold);

}


/*==============================================================
CLIENT AVATAR
==============================================================*/

.client{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:30px;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.client-info h4{

    margin-bottom:4px;

}

.client-info span{

    color:var(--color-text-light);

    font-size:.9rem;

}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:1200px){

    .project-grid,

    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:992px){

    .numbers .container{

        grid-template-columns:repeat(2,1fr);

    }

    .faq-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .project-grid,

    .testimonial-grid,

    .numbers .container{

        grid-template-columns:1fr;

    }

    .project-card img{

        height:240px;

    }

    .number-box h2{

        font-size:3rem;

    }

}

@media (max-width:480px){

    .project-content,

    .testimonial,

    .faq-card{

        padding:28px;

    }

}

/*==============================================================
PART 2B.4
CTA • CONTACT • FOOTER • UTILITIES
Universe Yachting Framework v2
==============================================================*/


/*==============================================================
CALL TO ACTION
==============================================================*/

.cta{

    position:relative;

    overflow:hidden;

    text-align:center;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--color-navy),
            var(--color-primary-dark)
        );

}

.cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(24,169,204,.18),
        transparent 45%),

        radial-gradient(circle at bottom left,
        rgba(255,255,255,.05),
        transparent 40%);

}

.cta .container{

    position:relative;

    z-index:2;

}

.cta h2{

    color:#fff;

    max-width:900px;

    margin:0 auto 24px;

}

.cta p{

    max-width:760px;

    margin:0 auto 42px;

    color:rgba(255,255,255,.82);

}

.cta .btn{

    margin:8px;

}


/*==============================================================
CONTACT BANNER
==============================================================*/

.contact-banner{

    background:var(--color-surface);

    text-align:center;

}

.contact-banner h2{

    margin-bottom:18px;

}

.contact-banner p{

    max-width:720px;

    margin:0 auto 36px;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}


/*==============================================================
FOOTER
==============================================================*/

footer{

    background:var(--color-navy);

    color:#dbe5ee;

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

footer h3,
footer h4{

    color:#fff;

    margin-bottom:22px;

}

footer p{

    color:#c5d2dc;

}

footer ul{

    list-style:none;

}

footer li{

    margin-bottom:14px;

}

footer a{

    color:#dbe5ee;

    transition:var(--transition);

}

footer a:hover{

    color:#fff;

    padding-left:6px;

}

footer address{

    font-style:normal;

    line-height:1.8;

}

footer .social{

    display:flex;

    gap:14px;

    margin-top:20px;

}

footer .social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

footer .social a:hover{

    background:var(--color-primary);

    padding-left:0;

}


/*==============================================================
COPYRIGHT
==============================================================*/

.copyright{

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    font-size:.9rem;

    color:#b8c7d3;

}


/*==============================================================
BACK TO TOP
==============================================================*/

.back-to-top{

    position:fixed;

    right:28px;

    bottom:28px;

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--color-primary);

    color:#fff;

    box-shadow:var(--shadow-lg);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:var(--transition);

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:none;

}

.back-to-top:hover{

    background:var(--color-primary-light);

}


/*==============================================================
FOCUS STATES
==============================================================*/

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{

    outline:3px solid var(--color-primary-light);

    outline-offset:3px;

}


/*==============================================================
TEXT SELECTION
==============================================================*/

::selection{

    background:var(--color-primary-light);

    color:#fff;

}


/*==============================================================
SCROLLBAR
==============================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#edf3f7;

}

::-webkit-scrollbar-thumb{

    background:var(--color-primary);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--color-primary-light);

}


/*==============================================================
UTILITY CLASSES
==============================================================*/

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}

.mb-0{margin-bottom:0!important;}
.mb-1{margin-bottom:1rem!important;}
.mb-2{margin-bottom:2rem!important;}
.mb-3{margin-bottom:3rem!important;}

.mt-0{margin-top:0!important;}
.mt-1{margin-top:1rem!important;}
.mt-2{margin-top:2rem!important;}
.mt-3{margin-top:3rem!important;}

.hidden{

    display:none!important;

}

.w-100{

    width:100%;

}


/*==============================================================
REDUCED MOTION
==============================================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none!important;

        transition:none!important;

        scroll-behavior:auto!important;

    }

}


/*==============================================================
PRINT
==============================================================*/

@media print{

    .header,
    .mobile-toggle,
    .btn,
    .cta,
    .contact-banner,
    .back-to-top,
    footer{

        display:none!important;

    }

    body{

        background:#fff;

        color:#000;

    }

    section{

        padding:20px 0;

    }

    a{

        color:#000;

        text-decoration:underline;

    }

}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:992px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .contact-buttons{

        flex-direction:column;

        align-items:stretch;

    }

    .contact-buttons .btn{

        width:100%;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:36px;

    }

    .back-to-top{

        right:18px;

        bottom:18px;

    }

}

@media (max-width:480px){

    footer{

        padding:70px 0 30px;

    }

    .back-to-top{

        width:46px;

        height:46px;

    }

}
