/*
Theme Name: Canopy
Author: Seibel365
Version: 1.0
*/

/* ==================================================
   FONTS
================================================== */

@font-face{
    font-family:'Open Sans';
    src:url('fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Open Sans';
    src:url('fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight:600;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Open Sans';
    src:url('fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight:600;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

/* ==================================================
   ROOT
================================================== */

:root{
    --blue:#005baa;
	--blue-light:#019fe4;
    --red:#d10a10;
    --red-dark:#b3000f;
    --white:#ffffff;
    --gray:#f5f7f8;
    --gray-dark:#64748b;
    --dark:#1e293b;
    --radius:18px;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --container:1200px;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

:root{

    /* Headlines */

    --hero-title: clamp(52px,7vw,92px);
    --section-title: clamp(38px,4vw,58px);

    /* Boxen */

    --card-title: 26px;

    /* Texte */

    --text-large: 21px;
    --text-normal: 16px;
    --text-small: 15px;
	--text-line-height:1.6;
    --card-line-height:1.75;

}

/* ==================================================
   RESET / BASIS
================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    font-family:'Open Sans',sans-serif;
    color:var(--dark);
    background:var(--white);
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin:0 0 20px;
    line-height:1.1;
    font-weight:700;
}

h1,
h2,
h3,
h4{
    font-family:'Poppins',sans-serif;
    font-weight:600;
}

p{
    margin:0 0 20px;
}

/* ==================================================
   ADMIN BAR
================================================== */

body.admin-bar .site-header{
    top:32px;
}

@media (max-width:782px){
    body.admin-bar .site-header{
        top:46px;
    }
}

/* ==================================================
   CONTAINER
================================================== */

.container{
    width:min(var(--container),90%);
    margin:auto;
}

/* ==================================================
   HEADER
================================================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#fff;
    border-bottom:1px solid rgba(0,91,170,.10);
    box-shadow:0 8px 30px rgba(15,23,42,.06);
}

.header-inner{
    width:min(var(--container),90%);
    height:88px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:38px;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    height:58px;
    width:auto;
}

/* ==================================================
   NAVIGATION
================================================== */

.menu{
    display:flex;
    align-items:center;
    gap:30px;
}

.menu li{
    list-style:none;
}

.menu a{
    position:relative;
    display:block;
    padding:10px 0;
    color:#1d2939;
    font-family:'Open Sans',sans-serif;
    font-size:15px;
    font-weight:600;
    letter-spacing:.01em;
    transition:color .22s ease;
}

.menu a::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:var(--red);
    border-radius:999px;
    transform:translateX(-50%);
    transition:width .25s ease;
}

.menu a::after{
    display:none;
}

.menu a:hover{
    color:var(--blue);
}

.menu a:hover::before,
.menu .current-menu-item > a::before,
.menu .current_page_item > a::before{
    width:26px;
}

.menu .current-menu-item > a,
.menu .current_page_item > a{
    color:var(--blue);
    background:none;
    box-shadow:none;
}

/* Hamburger */

.menu-toggle{
    display:none;
}

/* Mobile Navigation */

@media (max-width:760px){

    .header-inner{
        position:relative;
    }

    .menu-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        width:42px;
        height:42px;
        margin-left:auto;
        background:none;
        border:0;
        cursor:pointer;
        z-index:10006;
    }

    .menu-toggle span{
        display:block;
        width:24px;
        height:2px;
        background:var(--blue);
        border-radius:999px;
        transition:.25s ease;
    }

    .main-nav{
        position:fixed;
        top:0;
        right:-320px;
        width:300px;
        height:100vh;
        background:#fff;
        z-index:10005;
        padding:115px 34px 40px;
        box-shadow:-10px 0 30px rgba(0,0,0,.12);
        transition:right .3s ease;
    }

    .main-nav.open{
        right:0;
    }

    .main-nav .menu{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .main-nav .menu li{
        width:100%;
        border-bottom:1px solid rgba(0,91,170,.08);
    }

    .main-nav .menu a{
        display:flex;
        align-items:center;
        justify-content:space-between;
        width:100%;
        padding:18px 0;
        color:#1e293b;
        font-size:18px;
        font-weight:600;
    }

    .main-nav .menu a::before{
        display:none;
    }

    .main-nav .menu a::after{
        content:"→";
        display:block;
        position:static;
        width:auto;
        height:auto;
        background:none;
        color:var(--blue);
        opacity:.45;
        transition:.2s ease;
    }

    .main-nav .menu a:hover{
        color:var(--blue);
    }

    .main-nav .menu a:hover::after{
        transform:translateX(4px);
        opacity:1;
    }

    .mobile-overlay{
        position:fixed;
        inset:0;
        background:rgba(15,23,42,.45);
        z-index:10000;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition:.25s ease;
    }

    .mobile-overlay.open{
        opacity:1;
        visibility:visible;
        pointer-events:none;
    }

    .phone{
        display:none;
    }
}

/* ==================================================
   PHONE
================================================== */

.phone{
    flex-shrink:0;
    background:var(--blue);
    color:#fff;
    padding:12px 22px;
    border-radius:999px;
    font-weight:700;
    transition:.2s ease;
}

.phone:hover{
    background:#00498a;
    color:#fff;
}

/* ==================================================
   HERO
================================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:190px 0 120px;
    background:url('images/hero-fallback.png') center center / cover no-repeat;
}

.hero-video,
.hero video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            90deg,
            rgba(0,20,45,.92) 0%,
            rgba(0,55,105,.80) 44%,
            rgba(0,20,40,.65) 100%
        ),
        rgba(0,0,0,.25);
}

.hero-content{
    position:relative;
    z-index:2;
    width:min(var(--container),90%);
    margin:auto;
    color:#fff;
}


.kicker{
    display:inline-block;

    font-size:11px;
    font-weight:700;

    letter-spacing:3px;
    text-transform:uppercase;

    color:rgba(255,255,255,.75);

    margin-bottom:26px;
}

.kicker::before{
    content:"■";
    color:var(--red);
    margin-right:8px;
    display:inline-block;
    transform:translateY(-3px);
}

.hero h1{
    max-width:800px;
    font-family:'Poppins',sans-serif;
    font-size:var(--hero-title);
    font-weight:600;
    letter-spacing:-0.04em;
    line-height:1.05;
    margin-bottom:28px;
}

.hero p{
    max-width:720px;
    font-size:22px;
    line-height:1.7;
    margin-top:0;
}

/* ==================================================
   HERO CARDS
================================================== */

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-top:60px;
    max-width:920px;
}

.card{
    position:relative;
    padding:38px;
    border-radius:24px;
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(14px);
    box-shadow:
        0 20px 50px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.10);
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.card::before{
    content:"";
    position:absolute;
    left:24px;
    top:38px;
    width:3px;
    height:36px;
    background:var(--red);
    border-radius:999px;
}

.card::after{
    content:"→";
    position:absolute;
    right:28px;
    bottom:24px;
    font-size:18px;
    opacity:.35;
    transition:.25s ease;
}

.card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.28);
}

.card:hover::after{
    transform:translateX(4px);
    opacity:1;
}

.card strong{
    font-size:var(--card-title);
    font-weight:600;
    line-height:1.2;
    margin-bottom:16px;
}

.card span{
    display:block;
    margin-top:16px;
    opacity:.92;
}

/* Mobile */

@media (max-width:760px){

    .cards{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:45px;
    }

    .card{
        padding:30px;
    }

}

/* ==================================================
   BUTTONS
================================================== */

.button{
    display:inline-block;
    padding:16px 32px;
    border-radius:999px;
    font-weight:700;
    transition:.2s ease;
    margin:6px;
}

.button-primary{
    background:var(--blue);
    color:#fff;
}

.button-primary:hover{
    background:#00498a;
    color:#fff;
}

.button-secondary{
    background:var(--red);
    color:#fff;
}

.button-secondary:hover{
    background:var(--red-dark);
    color:#fff;
}

/* ==================================================
   CONTENT
================================================== */

section{
    padding:90px 0;
}

.section-light{
    background:#fff;
}

.section-gray{
    background:var(--gray);
}

.section-title{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.section-title p{
    max-width:780px;
    margin-left:auto;
    margin-right:auto;
    color:#475569;
    font-size:var(--text-large);
    line-height:var(--text-line-height);
}

.section-title h2{
    font-size:var(--section-title);
    line-height:1.1;
    letter-spacing:-0.035em;
    margin-bottom:26px;
}

.company-content p,
.cta p{
    max-width:780px;
    color:#475569;
    font-size:var(--text-large);
    line-height:var(--text-line-height);
}

.card span,
.company-box p,
.process-box p{
    font-size:var(--text-normal);
    line-height:var(--card-line-height);
}

/* ==================================================
   PAGE TEMPLATE
================================================== */

.page-hero{
	padding:165px 0 85px;
	background:
		linear-gradient(
			135deg,
			rgba(0,91,170,.08),
			rgba(227,6,19,.04)
		),
		#fff;
}

.page-kicker{
	margin:0 0 18px;
	color:var(--red);
	font-size:.85rem;
	font-weight:800;
	letter-spacing:.14em;
	text-transform:uppercase;
}

.page-hero h1{
	max-width:920px;
	margin:0;
	font-size:clamp(42px,6vw,76px);
	line-height:1.05;
	letter-spacing:-.045em;
	color:var(--dark);
}

.page-main-section{
	padding:90px 0;
}

.main-content p,
.main-content li{
	color:#475569;
	font-size:1.05rem;
	line-height:1.85;
}

.main-content h2{
	margin-bottom:32px;
	color:var(--red);
}

.main-content h3{
	margin-top:38px;
	color:var(--blue);
}

.page-hero{
	position:relative;
	padding:220px 0 120px;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	overflow:hidden;
}

.page-overlay{
	position:absolute;
	inset:0;

	background:
		linear-gradient(
			90deg,
			rgba(0,20,45,.85) 0%,
			rgba(0,55,105,.65) 55%,
			rgba(0,20,45,.45) 100%
		);
}

.page-hero .container{
	position:relative;
	z-index:2;
}

.page-kicker{
	color:rgba(255,255,255,.75);
}

.page-hero h1{
	color:#fff;
	max-width:900px;
}

.page-main-section{
	padding:90px 0;
}

/* ==================================================
   COMPANY SECTION
================================================== */

.company-section{
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            rgba(255,255,255,.68),
            rgba(255,255,255,.68)
        ),
        url('images/company-bg.png')
        center center / cover no-repeat;
}

.company-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:90px;
    align-items:center;
}

.company-cards{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.company-box{
    position:relative;
    padding:34px 34px 34px 58px;
    background:rgba(255,255,255,.90);
    border:1px solid rgba(0,91,170,.08);
    border-radius:24px;
    box-shadow:0 18px 55px rgba(15,23,42,.07);
    transition:.25s ease;
}

.company-box::before{
    content:"";
    position:absolute;
    left:24px;
    top:32px;
    width:3px;
    height:36px;
    background:var(--red);
    border-radius:999px;
}

.company-box:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 70px rgba(15,23,42,.10);
}

.company-box h3{
    margin-bottom:14px;
    color:var(--blue);
    font-family:'Poppins',sans-serif;
    font-size:var(--card-title);
    font-weight:600;
    letter-spacing:-0.025em;
}

.company-content h2{
    max-width:800px;
    margin-bottom:30px;
    font-family:'Poppins',sans-serif;
    font-size:var(--section-title);
    font-weight:600;
    line-height:1.05;
    letter-spacing:-0.04em;
    color:var(--dark);
}

.company-section{
	position:relative;
	overflow:hidden;
}

.company-video-bg{
	position:absolute;
	inset:0;
	z-index:0;
}

.company-bg-video{
	width:100%;
	height:100%;
	object-fit:cover;
	opacity:.55;
}

.company-overlay{
	position:absolute;
	inset:0;
	z-index:1;
	background:rgba(255,255,255,.45);
}

.company-section .container{
	position:relative;
	z-index:2;
}

/* ==================================================
   ARTICLE / SIDEBAR SECTION
================================================== */

.content-sidebar-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:50px;
    align-items:start;
}

.main-content{
    max-width:760px;
}

.main-content h2{
    font-size:42px;
    line-height:1.12;
    letter-spacing:-0.03em;
    margin-bottom:32px;
}

.sticky-sidebar{
    position:sticky;
    top:130px;
}

body.admin-bar .sticky-sidebar{
    top:162px;
}

/* ==================================================
   SIDEBAR CARD
================================================== */

.sidebar-card{
	position:relative;
	background:#fff;
	border-radius:28px;
	padding:32px;
	border:1px solid #eef1f5;
}

.sidebar-card h3{
    color:var(--blue);
    margin-bottom:16px;
}

.sidebar-card p{
    color:#475569;
    line-height:1.75;
    margin-bottom:26px;
}

.sidebar-list{
    border-top:1px solid rgba(0,91,170,.10);
    margin-bottom:28px;
}

.sidebar-list div{
    padding:18px 0;
    border-bottom:1px solid rgba(0,91,170,.10);
}

.sidebar-list span{
    display:block;
    color:#64748b;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
    margin-bottom:6px;
}

.sidebar-list strong,
.sidebar-list a{
    display:block;
    color:var(--dark);
    font-size:var(--text-normal);
    font-weight:600;
    line-height:1.55;
}

.sidebar-list a{
    color:var(--blue);
}

.sidebar-button{
	display:block;
	text-align:center;
	background:var(--blue);
	color:#fff;
	padding:14px 22px;
	border-radius:8px;
	font-weight:700;
	text-decoration:none;
	border:1px solid transparent;
	transition:all .25s ease;
}

.sidebar-button:hover{
	background:#fff;
	color:var(--blue);
	border-color:var(--blue);
}

/* ==================================================
   CONTENT RESPONSIVE
================================================== */

@media (max-width:1000px){
	
    :root{
        --text-large:19px;
    }


    .company-layout{
        grid-template-columns:1fr;
        gap:55px;
    }

    .company-content h2{
        font-size:clamp(40px,7vw,64px);
    }

}

@media (max-width:900px){

    .content-sidebar-grid{
        grid-template-columns:1fr;
    }

    .sticky-sidebar{
        position:static;
    }
}

@media (max-width:760px){
	
	:root{
        --text-large:17px;
    }

    .company-section{
        padding:80px 0;
    }

    .company-content h2{
        font-size:38px;
        line-height:1.08;
    }
	
	.company-box h3{
        margin-bottom:12px;
    }


       .company-box{
        padding:30px 28px 30px 54px;
    }

     .company-box::before {
    left: 14px;
    top: 24px;
    width: 3px;
    height: 32px;
  }	

.card::before{
    left:14px;
    top:24px;
}
  
}


/* ==================================================
   PROCESS SECTION
================================================== */

.process-section{
    position:relative;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.process-box{
    position:relative;
    padding:38px 30px 34px;
    background:#fff;
    border:1px solid rgba(0,91,170,.08);
    border-radius:24px;
    box-shadow:0 16px 46px rgba(15,23,42,.06);
    transition:.25s ease;
}

.process-box:hover{
    transform:translateY(-5px);
    box-shadow:0 24px 65px rgba(15,23,42,.10);
}

.process-number{
    position:relative;
    display:inline-block;
    margin-bottom:34px;
    font-family:'Poppins',sans-serif;
    font-size:46px;
    font-weight:600;
    line-height:1;
    color:rgba(0,91,170,.20);
}

.process-number::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-14px;
    width:34px;
    height:3px;
    background:var(--red);
    border-radius:999px;
}

.process-box h3{
    color:var(--blue);
    font-family:'Poppins',sans-serif;
    font-size:var(--card-title);
    font-weight:600;
    line-height:1.25;
    margin-bottom:16px;
}

/* TABLET */

@media (max-width:1000px){

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media (max-width:760px){

    .process-section{
        padding:70px 0;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .process-box{
        padding:32px 28px;
    }

}




/* ==================================================
   CUSTOMER SECTION
================================================== */

.customer-section{
	position:relative;
	overflow:hidden;
	background:#0f172a;
}

.customer-video-bg{
	position:absolute;
	inset:0;
	z-index:0;
	overflow:hidden;
}

.customer-bg-video{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	opacity:.9;
}

.customer-overlay{
	position:absolute;
	inset:0;
	z-index:1;

	background:
		linear-gradient(
			90deg,
			rgba(15,23,42,.78) 0%,
			rgba(15,23,42,.62) 45%,
			rgba(15,23,42,.35) 100%
		);
}

.customer-section .container{
	position:relative;
	z-index:2;
}

/* Text */

.customer-section .company-content h2{
	color:#fff;
}

.customer-section .company-content p{
	color:rgba(255,255,255,.85);
}

/* Karten */

.customer-section .company-box{
	background:rgba(255,255,255,.94);
	border:1px solid rgba(255,255,255,.25);
	box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.customer-section .company-box h3{
	color:var(--blue);
}

/* ==================================================
   PARTNER FAQ / INFO
================================================== */

.partner-bottom{

	margin:70px auto 0;
	padding:46px 52px;
	background:#fff;
	border-radius:24px;
    box-shadow: var(--shadow);
	display:flex;
	gap:60px;
	align-items:center;
}

.partner-bottom-faq{
	flex:1 1 58%;
}

.partner-bottom-text{
	flex:1 1 42%;
	padding-left:8px;
}

/* FAQ */

.partner-bottom-faq details{
	background:#f8fafc;
	border:1px solid #edf1f5;
	border-radius:14px;
	margin-bottom:14px;
	overflow:hidden;
	box-shadow:none;
}

.partner-bottom-faq details:last-child{
	margin-bottom:0;
}

.partner-bottom-faq summary{
	list-style:none;
	cursor:pointer;
	padding:19px 22px;
	padding-right:56px;
	font-weight:600;
	position:relative;
}

.partner-bottom-faq summary::-webkit-details-marker{
	display:none;
}

.partner-bottom-faq summary::after{
	content:"+";
	position:absolute;
	right:22px;
	top:50%;
	transform:translateY(-50%);
	color:var(--red);
	font-size:23px;
	font-weight:700;
	line-height:1;
}

.partner-bottom-faq details[open] summary::after{
	content:"−";
}

.partner-bottom-faq details p{
	margin:0;
	padding:0 22px 20px;
	line-height:1.7;
	color:var(--text);
}

/* Text rechts */

.partner-bottom-text .eyebrow{
	display:block;
	margin-bottom:12px;
	color:var(--red);
	font-size:.8rem;
	font-weight:800;
	letter-spacing:.12em;
	text-transform:uppercase;
}

.partner-bottom-text h3{
	margin:0 0 18px;
	font-size:2rem;
	line-height:1.12;
}

.partner-bottom-text p{
	margin:0;
	line-height:1.8;
}

.partner-button {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .25s ease;
  margin-top: 25px;
  max-width: 290px;
}

.partner-button:hover{
	background:#fff;
	color:var(--red);
	border-color:var(--red);
}

/* Mobil */

@media(max-width:900px){

	.partner-bottom{
		padding:30px;
		flex-direction:column;
		align-items:stretch;
		gap:34px;
	}

	.partner-bottom-faq,
	.partner-bottom-text{
		width:100%;
		flex:none;
	}

	.partner-bottom-text{
		padding-left:0;
	}

	.partner-bottom-text h3{
		font-size:1.65rem;
	}

}

/* ==================================================
   IDEA SECTION
================================================== */

.idea-section{
	background:#fff;
}

.idea-flow{
	display:flex;
	align-items:center;
	justify-content:center;
	margin-top:40px;
	flex-wrap:wrap;
}

.idea-step{
	text-align:center;
	min-width:140px;
}

.idea-circle{
	width:18px;
	height:18px;
	margin:0 auto 18px;
	border-radius:50%;
	background:var(--blue-light);
	box-shadow:0 0 0 8px rgba(227,6,19,.08);
}

.idea-step h3{
	margin:0;
	font-size:1rem;
	color:var(--dark);
}

.idea-line{
	width:80px;
	height:2px;
	background:#dbe4ee;
	margin:0 10px;
}

.idea-text{
	max-width:760px;
	margin:50px auto 0;
	text-align:center;
}

.idea-text p{
	margin:0;
	font-size:1.1rem;
	line-height:1.8;
	color:#475569;
}

@media(max-width:900px){

	.idea-flow{
		flex-direction:column;
		gap:20px;
	}

	.idea-line{
		width:2px;
		height:40px;
		margin:0;
	}

}

/* ==================================================
   GRID
================================================== */

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    align-items:center;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.reverse-layout{
	grid-template-columns:1fr 380px;
}

@media (max-width:900px){
	.reverse-layout{
		grid-template-columns:1fr;
	}
}

/* ==================================================
   BOXEN
================================================== */

.box{
    background:#fff;
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.box h3{
    color:var(--blue);
}

.company-cards-horizontal{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:24px;
}

@media (max-width: 900px){

	.company-cards-horizontal{
		grid-template-columns:1fr;
	}

}

/* ==================================================
   FOOTER
================================================== */

.site-footer{
	position:relative;
	overflow:hidden;
	background:#0f172a;
	color:#fff;
	padding:110px 0 38px;
}

.site-footer .container{
	position:relative;
	z-index:2;
}

.footer-bg-word{
	position:absolute;
	top:-35px;
	left:50%;
	transform:translateX(-50%);

	font-family:'Poppins',sans-serif;
	font-size:clamp(82px,14vw,190px);
	font-weight:700;
	line-height:.9;
	letter-spacing:-.07em;

	color:rgba(255,255,255,.045);
	white-space:nowrap;
	pointer-events:none;
}

.footer-claim{
	max-width:820px;
	margin-bottom:90px;
}

.footer-claim h2{
	margin:0 0 26px;
	color:#fff;
	font-size:clamp(48px,6vw,88px);
	line-height:1;
	letter-spacing:-.055em;
}

.footer-claim p{
	max-width:620px;
	margin:0;
	color:rgba(255,255,255,.72);
	font-size:1.25rem;
	line-height:1.7;
}

.footer-grid{
	display:grid;
	grid-template-columns:1fr 1fr 1.2fr;
	gap:70px;
	padding:54px 0;
	border-top:1px solid rgba(255,255,255,.12);
	border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-col h3{
	margin:0 0 22px;
	color:#fff;
	font-size:1.05rem;
	letter-spacing:.02em;
}

.footer-col ul{
	margin:0;
	padding:0;
	list-style:none;
}

.footer-col li{
	margin-bottom:12px;
}

.footer-col a{
	color:rgba(255,255,255,.70);
	text-decoration:none;
	transition:.25s ease;
}

.footer-col a:hover{
	color:#fff;
}

.footer-contact a{
	display:block;
	margin-bottom:14px;
	font-weight:600;
}

.footer-contact a:first-of-type{
	color:#fff;
	font-size:1.35rem;
}

.footer-bottom{
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:24px;
	padding-top:30px;

	color:rgba(255,255,255,.55);
	font-size:.92rem;
}

.footer-links{
	display:flex;
	gap:24px;
}

.footer-links a{
	color:rgba(255,255,255,.55);
	text-decoration:none;
}

.footer-links a:hover{
	color:#fff;
}

.footer-phone{
	display:block;
	margin-top:10px;

	font-size:2rem;
	font-weight:700;
	line-height:1.1;

	color:#fff;
}

.footer-link{
	display:inline-block;
	margin-top:18px;

	color:var(--blue-light);
	font-weight:600;
}

.footer-link:hover{
	color:#fff;
}

@media(max-width:900px){

	.site-footer{
		padding:85px 0 34px;
	}

	.footer-claim{
		margin-bottom:60px;
	}

	.footer-grid{
		grid-template-columns:1fr;
		gap:38px;
		padding:42px 0;
	}

	.footer-bottom{
		flex-direction:column;
		align-items:flex-start;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width:1000px){

    .header-inner{
        height:78px;
    }

    .logo img{
        height:48px;
    }

    .menu{
        gap:18px;
    }

    .menu a{
        padding:8px 0;
        font-size:14px;
    }

    .phone{
        display:none;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:760px){
    .hero{
        min-height:auto;
        padding:140px 0 70px;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:18px;
    }

    .cards,
    .grid-2,
    .grid-3{
        grid-template-columns:1fr;
    }

    section{
        padding:70px 0;
    }

    .card,
    .box{
        padding:26px;
    }
}