﻿*{

    box-sizing: border-box;
    padding: 0%;
    margin: 0%;
    scroll-behavior: smooth;
    font-family: 'Arial Narrow Bold', sans-serif;

}

:root {
    --nav-scroll-offset: 108px;
}

html {
    scroll-padding-top: var(--nav-scroll-offset);
}

#home,
#service,
#about,
#machine,
#pricing,
#ref,
#contact {
    scroll-margin-top: var(--nav-scroll-offset);
}



.hambi{

    display: none;
    text-align: center;
    cursor: pointer;
    color:#aece20 ;
    font-size: 1.6rem;

}

nav {
  
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  top: 12px;
  z-index: 10;
  opacity: 0;
}


@keyframes fadedown{

    0%{
        opacity: 0;
        transform: translateY(-50%);
    }

    100%{

        opacity: 1;
        transform: translateY(0%);
    }
}

nav ul{

    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(96%, 1240px);
    height: 80px;
    list-style: none;
    padding: 0 28px;
    gap: 18px;
    background-color: rgba(255, 255, 255, 0.356);
}

nav ul li{
    display: flex;
    align-items: center;
}

nav ul a{

    color: rgb(96, 96, 96);
    text-decoration: none;
    white-space: nowrap;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    font-weight: 700;
}

nav ul li:hover{

    color:#aece20;
    transform: scale(1.1);
    transition: ease-in-out 0.2s;
}

nav ul a:hover{

    color:#aece20;
    transition: ease-in-out 0.2s;
}

nav img{

    width: clamp(54px, 4vw, 72px);
}

@media screen and (min-width: 1600px){

    :root {
        --nav-scroll-offset: 124px;
    }

    nav {
        top: 18px;
    }

    nav ul{
        width: min(94%, 1500px);
        height: 94px;
        padding: 0 38px;
        gap: 28px;
    }

    nav ul a{
        font-size: 1.22rem;
    }

    nav img{
        width: 86px;
    }
}

@media screen and (min-width: 2200px){

    :root {
        --nav-scroll-offset: 154px;
    }

    nav {
        top: 24px;
    }

    nav ul{
        width: min(94%, 2000px);
        height: 118px;
        padding: 0 54px;
        gap: 42px;
    }

    nav ul a{
        font-size: 1.65rem;
    }

    nav img{
        width: 112px;
    }

}

@media screen and (max-width: 1180px){

    nav ul{
        width: 96%;
        gap: 14px;
        padding: 0 20px;
    }

    nav ul a{
        font-size: 1rem;
    }

    nav img{
        width: 68px;
    }
}

@media screen and (max-width: 940px){

    nav ul{
        gap: 12px;
    }

    nav ul a{
        font-size: 0.95rem;
    }
}


@media screen and (max-width: 980px){

    :root {
        --nav-scroll-offset: 80px;
    }

    .hambi{
        display: block;
        position: relative;
        z-index: 12;
    }

    .hambidiv{
        width: min(92%, 720px);
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .hambidiv i{
        width: 52px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 12px 30px rgba(0, 34, 99, 0.16);
        backdrop-filter: blur(10px);
        transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    }

    .hambidiv.is-open i{
        background: #002263;
        color: #ffffff;
        transform: rotate(90deg);
    }

    .navlinks{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        text-align: center;
        width: min(92%, 720px);
        height: auto;
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        padding: 0 20px;
        gap: 0;
        background: rgba(255, 255, 255, 0.94);
        border-radius: 24px;
        box-shadow: 0 24px 48px rgba(0, 34, 99, 0.16);
        backdrop-filter: blur(12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, padding 0.35s ease;
    }

    .navlinks.active{
        max-height: 520px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 16px 20px;
    }

    nav ul li:hover{
        transform: none;
    }

    nav ul a{
        color: rgb(96, 96, 96);
        font-size: 1.08rem;
        display: block;
        width: 100%;
        padding: 14px 18px;
        border-radius: 16px;
    }

    nav img{
        width: 58px;
        margin-bottom: 10px;
        align-self: center;
    }

    .navlinks li{
        width: 100%;
        justify-content: center;
    }

    .navlinks li:first-child{
        margin-bottom: 10px;
    }

    .navlinks li:not(:first-child) a:hover{
        background: rgba(205, 223, 255, 0.78);
        color: #002263;
    }
}



.home{

    width: 100%;
    height: 70vh;
    min-height: 560px;
    max-height: 760px;
    display: flex;
    background-image: url(pic/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 5vw 0;
    overflow: visible;
}

.hometext{

    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 1.6rem;
    color:whitesmoke;
    letter-spacing: 2px;
    opacity: 0;
    max-width: 560px;
    margin-left: auto;
    padding-right: 4%;
    z-index: 2;
}

@keyframes faderight{

    0%{
        opacity: 0;
    }

    100%{

        opacity: 1;
    }
}

.homeimg{

    width: 50%;
    position: absolute;
    left: 5vw;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    opacity: 0;
    z-index: 2;
}

body.page-ready nav{
    animation: fadedown 1s ease-in-out forwards;
}

body.page-ready .hometext{
    animation: faderight 1.8s ease-in-out forwards;
}

body.page-ready .homeimg{
    animation: faderight 1.4s ease-in-out forwards;
}

body.page-loading{
    overflow: hidden;
}

.page-loader{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(0, 34, 99, 0.92) 0%, rgba(0, 34, 99, 0.82) 54%, rgba(174, 206, 32, 0.34) 100%),
        url(pic/2.jpg) center/cover no-repeat;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 52%);
}

.page-loader.is-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner{
    position: relative;
    z-index: 1;
    min-width: min(88vw, 360px);
    padding: 34px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.page-loader-logo-wrap{
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08);
    animation: loaderPulse 1.7s ease-in-out infinite;
}

.page-loader-logo{
    width: 74px;
    height: auto;
}

.page-loader-title{
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: whitesmoke;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.page-loader-text{
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes loaderPulse{
    0%{
        transform: scale(0.96);
        box-shadow: 0 0 0 0 rgba(174, 206, 32, 0.28);
    }

    50%{
        transform: scale(1);
        box-shadow: 0 0 0 18px rgba(174, 206, 32, 0);
    }

    100%{
        transform: scale(0.96);
        box-shadow: 0 0 0 0 rgba(174, 206, 32, 0);
    }
}

.homeimg img{

    width: min(42vw, 620px);
    max-width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    object-fit: cover;
    object-position: center;
    transform: translateY(32%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}


.home button{

	background: none;
    border: 3px solid whitesmoke;
	cursor:pointer;
	color:whitesmoke;
	font-family:Arial;
	font-size:18px;
	font-weight:bold;
	padding:13px 32px;
    margin-top: 3%;
}

.home button a{

    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    color:whitesmoke;
    letter-spacing: 3px;

}

.home button:hover{

    background-color: #aece20;
    border-color: #aece20;
    transform: scale(1.1);
    transition: ease-in-out 0.2s;
}

@media screen and (min-width: 1600px) {

    .home{
        min-height: 680px;
        max-height: 900px;
        padding: 150px 6vw 0;
    }

    .hometext{
        max-width: 760px;
        font-size: 2.1rem;
        padding-right: 6%;
    }

    .hometext h1{
        font-size: clamp(3.4rem, 4.2vw, 5rem);
        line-height: 1.1;
    }

    .homeimg{
        left: 6vw;
    }

    .homeimg img{
        width: min(46vw, 860px);
        transform: translateY(28%);
    }

    .home button{
        padding: 18px 42px;
        border-width: 4px;
    }

    .home button a{
        font-size: 1.55rem;
        letter-spacing: 4px;
    }

    .service{
        padding-top: 240px;
    }
}

@media screen and (min-width: 2200px) {

    .home{
        height: 76vh;
        min-height: 900px;
        max-height: 1180px;
        padding: 190px 7vw 0;
        background-position: center center;
    }

    .hometext{
        max-width: 980px;
        font-size: 2.8rem;
        padding-right: 7%;
    }

    .hometext h1{
        font-size: clamp(4.8rem, 4.7vw, 7rem);
        line-height: 1.06;
    }

    .homeimg{
        left: 7vw;
    }

    .homeimg img{
        width: min(46vw, 1080px);
        transform: translateY(24%);
        box-shadow: 0 42px 90px rgba(0, 0, 0, 0.2);
    }

    .home button{
        padding: 22px 56px;
        border-width: 5px;
        margin-top: 4%;
    }

    .home button a{
        font-size: 2rem;
        letter-spacing: 5px;
    }

    .service{
        padding-top: 300px;
    }
}



@media screen and (max-width: 900px) {

    .home {
        display: flex;
        flex-direction: column; /* egymás alá */
        height: auto;
        min-height: auto;
        text-align: center;
        padding: 40px 0;
        background-image: linear-gradient(rgba(0, 35, 99, 0.72), rgba(0, 35, 99, 0.72)), url(pic/2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    .homeimg {
        display: none;
    }

    .homeimg img {
        width: 90%;
        height: auto;
        border-radius: 10px;
        transform: none;
        box-shadow: none;
    }

    .hometext {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin: 0;
        align-items: center;
        justify-content: center;
        padding: 20px;
        padding-right: 20px;
        font-size: 1.2rem;
        order: 2; /* szöveg a kép után */
    }

    .hometext h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .home button {
        font-size: 1rem;
        padding: 10px 24px;
        border-width: 2px;
    }

    .home button a {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 500px) {
    .hometext h1 {
        font-size: 1.4rem;
    }

    .home button {
        padding: 8px 20px;
    }
}








.service {
  width: 100%;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 180px;
  background-color: #cddfff;
}

@media screen and (max-width: 1200px) {
  .service {
    padding-top: 160px;
  }
}

.tudj{

    margin-top: 15%;
}

/* Kártyák konténere */
.card-container {
  display: flex;
  flex-wrap: wrap;             /* sortörés ha nem fér ki */
  justify-content: center;     /* középre igazítás */
  align-items: center;
  gap: 20px;                   /* térköz a kártyák között */
  width: 90%;
  max-width: 1000px;
}

/* Flip kártyák */
.flip-card {
  width: 300px;
  height: 250px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 10px;
  color: whitesmoke;
  text-align: center;
  top: 20%;
}


.fixing{

    transform: translateY(-50px);
    font-size: 5rem;
    position:absolute;
    top: 0%;
    color: #aece20;
}





.flip-card-front {
  background: #002363;

}

.flip-card-back {
  background: #002263;

  transform: rotateY(180deg);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Mobil nézet: egymás alá kerülnek */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    gap: 25px;
  }

  .flip-card {
    width: 90%;
    max-width: 300px;
  }
}

@media screen and (max-width: 900px) {
  .service {
    padding-top: 10%;
  }
}



.about{

    width: 100%;
    min-height: 100vh;
    position: relative;
    background-color: #cddfff;
    display: flex;

}

.videodiv{

    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: right;
}

.about video{

    width: 90%;
    height: 100%;
}

.about video source{

    width: 100%;
    height: 100%;
}

.abouttext{

    position: absolute;
    left: 0;
    top:0;
    width: 52%;
    height: 100vh;
    text-align: justify;
    padding: 1%;
    color: whitesmoke;
    font-size: 1.2rem;
    background-color: rgba(0, 50, 107, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.abouttext p{

    margin-bottom: 5%;
    width: 90%;
}


.about button{

	background-color: #aece20;
    border: none;
	cursor:pointer;
	color:whitesmoke;
	font-family:Arial;
	font-size:18px;
	font-weight:bold;
	padding:13px 32px;
    margin-top: 3%;
}

.about button a{

    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    color:whitesmoke;
    letter-spacing: 3px;

}

.about button:hover{

    background: none;
    border:3px solid whitesmoke;
    transform: scale(1.1);
    transition: ease-in-out 0.2s;
}

.line-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 5%;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  background-color: #aece20; /* módosítható szín */
  border-radius: 2px;
}

.line-center {
  width: 100px;
  height: 4px;
  background-color: #aece20;
  border-radius: 2px;
}



@media screen and (max-width: 900px) {

  .about {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    position: relative;
    padding: 0;
  }

  .abouttext {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgba(0, 50, 107, 0.8);
    backdrop-filter: blur(6px);
    color: whitesmoke;
    padding: 8% 5%;
    text-align: center;
    align-items: center;
  }

  .abouttext p {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 8%;
  }

  .videodiv {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    bottom: 0;
  }

  .about video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .line-decor {
    margin: 20px 0;
  }

  .about button {
    padding: 10px 24px;
    font-size: 1rem;
  }

  .about button a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 500px) {
  .abouttext p {
    font-size: 0.95rem;
  }
}










.machine {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    background-color: #cddfff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.machine h2 {
    font-size: 2.5rem;
    color: rgb(96, 96, 96);
    margin-bottom: 60px;
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

.machine h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(96, 96, 96);;
    border-radius: 2px;
}

.machine-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Vue kártya stílusok */
.card-wrap {
    margin: 10px;
    transform: perspective(800px);
    transform-style: preserve-3d;
    cursor: pointer;
    width: 300px;
    height: 400px;
    
    &:hover {
        .card-info {
            transform: translateY(0);
        }
        .card-info p {
            opacity: 1;
        }
        .card-info, .card-info p {
            transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .card-info:after {
            transition: 5s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 1;
            transform: translateY(0);
        }
        .card-bg {
            transition: 
                0.6s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 5s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0.8;
        }
        .card {
            transition:
                0.6s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 2s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow:
                rgba(255, 255, 255, 0.2) 0 0 40px 5px,
                rgba(255, 255, 255, 1) 0 0 0 1px,
                rgba(0, 0, 0, 0.66) 0 30px 60px 0,
                inset #333 0 0 0 5px,
                inset white 0 0 0 6px;
        }
    }
}

.card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow:
        rgba(0, 0, 0, 0.66) 0 30px 60px 0,
        inset #002263 0 0 0 2px,
        inset rgba(255, 255, 255, 0.8) 0 0 0 3px;
    transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.card-bg {
    opacity: 0.7;
    position: absolute;
    top: -20px; 
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition:
        1s cubic-bezier(0.445, 0.05, 0.55, 0.95),
        opacity 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    pointer-events: none;
}

.card-info {
    padding: 25px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #002263;
    transform: translateY(40%);
    transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    text-align: left;
    
    p {
        opacity: 0;
        text-shadow: rgba(255, 255, 255, 0.8) 0 2px 3px;
        transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        color: #002263;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    

    
    &:after {
        content: '';
        position: absolute;
        top: 0; 
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to bottom, transparent 0%, rgba(205, 223, 255, 0.9) 100%);
        background-blend-mode: overlay;
        opacity: 0;
        transform: translateY(100%);
        transition: 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
        border-radius: 0 0 15px 15px;
    }
}

.card-info h3 {
    font-family: "Segoe UI", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: rgba(255, 255, 255, 0.8) 0 2px 4px;
    margin-bottom: 10px;
    color: #002263;
}

/* Reszponzív design */
@media (max-width: 1200px) {
    .machine-container {
        gap: 25px;
    }
    
    .card-wrap {
        width: 280px;
        height: 380px;
    }

    .flip-card{

        margin-bottom: 2%;
    }
}

@media (max-width: 992px) {
    .machine-container {
        gap: 20px;
    }
    
    .card-wrap {
        width: 250px;
        height: 350px;
    }
    
    .card-info {
        padding: 20px;
    }
    
    .card-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .machine {
        padding: 60px 15px;
        min-height: 100vh;
    }
    
    .machine h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .machine-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .card-wrap {
        width: 100%;
        max-width: 400px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .machine {
        padding: 40px 15px;
    }
    
    .machine h2 {
        font-size: 1.8rem;
    }
    
    .card-info {
        padding: 20px;
    }
    
    .card-info h3 {
        font-size: 1.1rem;
    }
    
    .card-info p {
        font-size: 0.9rem;
    }
}



.pricing {
    width: 100%;
    padding: 40px 20px 90px;
    background-color: #cddfff;
    display: flex;
    justify-content: center;
}

.pricing-inner {
    width: 100%;
    max-width: 1200px;
}

.pricing-heading {
    text-align: center;
    color: rgb(96, 96, 96);
    margin-bottom: 40px;
}

.pricing-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.pricing-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(96, 96, 96);
    border-radius: 2px;
}

.pricing-heading p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    align-items: stretch;
}

.pricing-main,
.pricing-details {
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 34, 99, 0.12);
}

.pricing-main {
    background: linear-gradient(160deg, #002263 0%, #0d4a8f 100%);
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pricing-label {
    display: inline-block;
    width: fit-content;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background-color: rgba(174, 206, 32, 0.18);
    border: 1px solid rgba(174, 206, 32, 0.45);
    color: #dff17e;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-main h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    white-space: nowrap;
    font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.pricing-amount {
    font-size: 2.6rem;
    font-weight: 700;
    color: #aece20;
    margin-bottom: 15px;
}

.pricing-note {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.9);
}

.pricing-rotator h3,
.pricing-rotator .pricing-amount,
.pricing-rotator .pricing-note {
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        filter 0.55s ease;
    will-change: opacity, transform, filter;
}

.pricing-rotator.is-changing h3,
.pricing-rotator.is-changing .pricing-amount,
.pricing-rotator.is-changing .pricing-note {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(6px);
}

@media (prefers-reduced-motion: reduce) {
    .pricing-rotator h3,
    .pricing-rotator .pricing-amount,
    .pricing-rotator .pricing-note {
        transition: none;
    }
}

.pricing-details {
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.52);
}

.pricing-item i {
    color: #aece20;
    font-size: 1rem;
    margin-top: 4px;
}

.pricing-item p {
    color: rgb(96, 96, 96);
    line-height: 1.6;
}

.pricing-footnote {
    margin-top: 22px;
    color: #002263;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 34, 99, 0.15);
}

@media (max-width: 992px) {
    .pricing-card {
        grid-template-columns: 1fr;
    }

    .pricing-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 20px 15px 70px;
    }

    .pricing-heading h2 {
        font-size: 2rem;
    }

    .pricing-main,
    .pricing-details {
        padding: 24px;
    }

    .pricing-main h3 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    .pricing-amount {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-heading h2 {
        font-size: 1.8rem;
    }

    .pricing-heading p,
    .pricing-item p,
    .pricing-note,
    .pricing-footnote {
        font-size: 0.95rem;
    }
}



.contact{

    width: 100%;
    min-height: 100vh;
    background-color: #cddfff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactdiv{

    width: 80%;
    height: 60vh;
    display: flex;
}

.form{

    background-color: rgba(255, 255, 255, 0.356);
    backdrop-filter: blur(10px);
    width: 70%;
}

form{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: center;
    padding: 5%;

}

form h3{

    margin-bottom: 5%;
    font-size: 1.6rem;
    color: rgb(96, 96, 96);
}

form input{

    width: 60%;
    padding: 2% 0 2% 0;
    margin-bottom: 3%;
    background:none;
    border: none;
    border-bottom:3px solid rgb(96, 96, 96) ;
    color: rgb(96, 96, 96);

}

::placeholder {
  color:rgb(96, 96, 96); 
}

input:focus::placeholder {
  color: #aece20;
}


input:focus {
  outline: none;
  border: none; 
  background:none;
  border-bottom:3px solid #aece20 ;
  transform: scale(1.1);
  transition: ease-in-out 0.2s;
}

form textarea{

    width: 60%;
    padding: 2% 0 2% 0;
    margin-bottom: 3%;
    background:none;
    border: none;
    border-bottom:3px solid rgb(96, 96, 96) ;
    color: rgb(96, 96, 96);
    resize: none;

}

textarea:focus {
  outline: none;
  border: none; 
  background:none;
  border-bottom:3px solid #aece20 ;
  transform: scale(1.1);
  transition: ease-in-out 0.2s;
}

textarea:focus::placeholder {
  color: #aece20;
}



form button{

	background: none;
    border: 3px solid rgb(96, 96, 96);
	cursor:pointer;
	color:rgb(96, 96, 96);
	font-family:Arial;
	font-size:18px;
	font-weight:bold;
	padding:13px 32px;
    margin-top: 3%;
}

form button a{

    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    color:rgb(96, 96, 96);
    letter-spacing: 3px;

}

form button:hover{

    background-color: #aece20;
    border-color: #aece20;
    transform: scale(1.1);
    transition: ease-in-out 0.2s;
}

.contacts{

    background-color: rgba(255, 255, 255, 0.714);
    width: 40%;
    display:flex;
    flex-direction: column;
    padding: 3%;
    position: relative;
    
}

.contacts h3{

    font-size: 1.6rem;
    color: rgb(96, 96, 96);
}

.telmail{

    display:flex ;
    flex-direction: column;
    margin-top: 30%;
}

.telmail a{

    margin-bottom: 5%;
    font-size: 1.4rem;
    text-decoration: none;
    color: rgb(96, 96, 96);
}

.telmail a:hover{

    color: #aece20;
    transform: scale(1.1);
    transition: ease-in-out 0.2s;
}

@media screen and (max-width: 900px) {

    .contact {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
    }

    .contactdiv {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .form, .contacts {
        width: 100%;
        height: auto;
        padding: 8% 5%;
        margin: 0;
    }

    .form {
        border-bottom: 3px solid #cddfff; /* finom elválasztóvonal, ha akarod */
        border-radius: 0;
    }

    .contacts {
        border-top: none;
        border-radius: 0;
        margin-top: -3px; /* így érik össze a két rész */
    }

    form input, form textarea {
        width: 100%;
    }

    .telmail {
        margin-top: 10%;
    }

    .telmail a {
        font-size: 1.2rem;
    }

    form h3, .contacts h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    form button {
        align-self: center;
    }
}

@media screen and (max-width: 500px) {
    .telmail a {
        font-size: 1rem;
    }

    form h3, .contacts h3 {
        font-size: 1.2rem;
    }
}



footer{

    text-align:center;
    padding:20px 16px; 
    color:rgb(96, 96, 96); 
    background:#cddfff; font-size:14px;
}

.footer-content{
    width: min(100%, 1180px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-link{
    color: rgb(96, 96, 96);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-link:hover{
    color: #002263;
}

.footer-separator{
    color: rgba(96, 96, 96, 0.7);
}

.legal-page{
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.94) 32%, rgba(205,223,255,1) 100%),
        url(pic/2.jpg) center/cover no-repeat;
    color: rgb(96, 96, 96);
    display: flex;
    flex-direction: column;
}

.legal-main{
    width: min(92%, 1080px);
    margin: 0 auto;
    padding: 44px 0 72px;
    flex: 1;
}

.legal-card{
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 34, 99, 0.08);
    box-shadow: 0 18px 45px rgba(0, 34, 99, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    overflow: hidden;
}

.legal-header{
    padding: 42px 42px 28px;
    background: linear-gradient(135deg, rgba(0, 34, 99, 0.92), rgba(0, 34, 99, 0.72));
    color: whitesmoke;
}

.legal-logo{
    width: 86px;
    height: auto;
    margin-bottom: 22px;
}

.legal-header h1{
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
}

.legal-header p{
    max-width: 720px;
    line-height: 1.7;
    font-size: 1.02rem;
    color: rgba(245, 245, 245, 0.9);
}

.legal-body{
    padding: 40px 42px 46px;
    display: grid;
    gap: 24px;
}

.legal-section{
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0, 34, 99, 0.08);
    border-radius: 22px;
    padding: 28px;
}

.legal-section h2{
    color: #002263;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    margin-bottom: 16px;
}

.legal-section p,
.legal-section li{
    font-size: 1rem;
    line-height: 1.75;
}

.legal-section ul{
    list-style: none;
    display: grid;
    gap: 10px;
}

.legal-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.legal-item{
    background: rgba(205, 223, 255, 0.38);
    border-radius: 18px;
    padding: 18px 20px;
}

.legal-item strong{
    display: block;
    color: #002263;
    margin-bottom: 6px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-item a{
    color: inherit;
    text-decoration: none;
}

.legal-item a:hover{
    color: #002263;
}

.legal-actions{
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.legal-back{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: #aece20;
    color: whitesmoke;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #aece20;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-back:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(174, 206, 32, 0.28);
}

.legal-note{
    font-size: 0.95rem;
    color: rgba(96, 96, 96, 0.9);
}

.legal-plain-list{
    display: grid;
    gap: 12px;
}

.legal-plain-list li{
    background: rgba(205, 223, 255, 0.28);
    border-radius: 14px;
    padding: 14px 16px;
}

.thankyou-page{
    position: relative;
}

.thankyou-page::before{
    content: "";
    position: fixed;
    inset: auto -140px -140px auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 206, 32, 0.32) 0%, rgba(174, 206, 32, 0) 70%);
    pointer-events: none;
}

.thankyou-card{
    position: relative;
}

.thankyou-header{
    position: relative;
    overflow: hidden;
}

.thankyou-header::after{
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 206, 32, 0.22) 0%, rgba(174, 206, 32, 0) 72%);
}

.thankyou-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(174, 206, 32, 0.18);
    border: 1px solid rgba(174, 206, 32, 0.4);
    color: whitesmoke;
    font-weight: 700;
    margin-bottom: 18px;
}

.thankyou-highlight{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
}

.thankyou-highlight-icon{
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002263, #2d4f96);
    color: whitesmoke;
    font-size: 1.8rem;
    box-shadow: 0 14px 28px rgba(0, 34, 99, 0.16);
}

.thankyou-steps{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.thankyou-step{
    background: rgba(205, 223, 255, 0.34);
    border-radius: 18px;
    padding: 22px 18px;
}

.thankyou-step span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #aece20;
    color: #002263;
    font-weight: 800;
    margin-bottom: 14px;
}

.thankyou-step p{
    margin: 0;
}

.thankyou-actions{
    gap: 14px;
    flex-wrap: wrap;
}

.thankyou-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: transparent;
    color: #002263;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid rgba(0, 34, 99, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.thankyou-secondary:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 34, 99, 0.1);
    border-color: rgba(0, 34, 99, 0.35);
}



.ref{

    width: 100%;
    min-height: 100vh;
    background-color:#cddfff ;
    text-align: center;
    padding: 3%;
    padding-top: 7%;
    color: rgb(96, 96, 96);
}

.ref h2{

   font-size: 2.5rem;
}

.ref h3{

    font-size: 1.6rem;
    margin-top: 2%;
    margin-bottom: 2%;
}

.refer{

    width: 100%;
    min-height: 50vh;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex: 1 1 100px;
    flex-wrap: wrap;

}

.refer img{

    width: 300px;
    height:250px;
    object-fit: cover;
    transition: ease 0.4s;
}

.refer img:hover{

    transform: scale(1.1);
}


.refh2 {
    font-size: 2.5rem;
    color: rgb(96, 96, 96);
    margin-bottom: 60px;
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

.refh2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(96, 96, 96);;
    border-radius: 2px;
}





















/* --- Cookie banner styles (Jégbázis Klíma stílus) --- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  font-family: inherit;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.cookie-banner[aria-hidden="true"] {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* belső doboz */
.cookie-inner {
  width: 100%;
  max-width: 1100px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 2px solid rgba(0,34,99,0.08);
}

/* szöveg */
.cookie-text h3 {
  margin: 0 0 6px 0;
  color: #002263;
  font-size: 1.1rem;
}
.cookie-text p {
  margin: 0;
  color: rgb(96,96,96);
  font-size: 0.95rem;
}
.cookie-small a {
  color: #002263;
  text-decoration: underline;
  font-size: 0.85rem;
}

/* gombok */
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}
.cookie-essential {
  background: none;
  color: rgb(96,96,96);
  border-color: rgb(96,96,96);
}
.cookie-accept {
  background: #aece20;
  color: whitesmoke;
}
.cookie-settings {
  background: none;
  color: #002263;
  border: 2px solid transparent;
}

/* settings modal */
.cookie-settings {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 420px;
  max-width: calc(100% - 40px);
  background: whitesmoke;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  padding: 18px;
  z-index: 10000;
  display: none;
}
.cookie-settings[aria-hidden="false"] {
  display: block;
}
.settings-inner h4 {
  margin: 0 0 8px 0;
  color: #002263;
}
.setting-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: rgb(60,60,60);
}
.setting-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* settings actions */
.settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

/* mobil */
@media screen and (max-width: 780px){
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-actions {
    justify-content: center;
  }
}

@media screen and (max-width: 860px){
    .legal-main{
        width: min(94%, 1080px);
        padding: 28px 0 48px;
    }

    .legal-header,
    .legal-body{
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .thankyou-highlight{
        grid-template-columns: 1fr;
    }

    .thankyou-steps{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 560px){
    .footer-content{
        gap: 8px;
        flex-direction: column;
    }

    .footer-separator{
        display: none;
    }

    .legal-card{
        border-radius: 22px;
    }

    .legal-header{
        padding: 28px 20px 22px;
    }

    .legal-body{
        padding: 24px 20px 30px;
    }

    .legal-section{
        padding: 22px 18px;
        border-radius: 18px;
    }

    .legal-item{
        padding: 16px;
    }

    .legal-back{
        width: 100%;
        text-align: center;
    }

    .thankyou-badge,
    .thankyou-secondary{
        width: 100%;
        justify-content: center;
    }

    .thankyou-highlight-icon{
        width: 68px;
        height: 68px;
        border-radius: 20px;
    }
}

@media screen and (min-width: 1600px) {

  .card-container {
    max-width: 1400px;
    gap: 36px;
  }

  .flip-card {
    width: 360px;
    height: 300px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.4rem;
  }

  .flip-card-front h3,
  .flip-card-back strong {
    font-size: 1.7rem;
  }

  .flip-card-front p,
  .flip-card-back p {
    font-size: 1.1rem;
  }

  .fixing {
    font-size: 6rem;
    transform: translateY(-58px);
  }

  .about {
    min-height: 110vh;
  }

  .abouttext {
    width: 50%;
    font-size: 1.45rem;
    padding: 3%;
  }

  .abouttext h2 {
    font-size: 3.2rem;
  }

  .abouttext p {
    width: 86%;
    line-height: 1.8;
  }

  .about button {
    padding: 18px 42px;
    font-size: 1.3rem;
  }

  .about button a {
    font-size: 1.35rem;
  }

  .videodiv {
    width: 52%;
  }

  .machine {
    padding: 120px 30px;
  }

  .machine h2,
  .pricing-heading h2,
  .refh2 {
    font-size: 3.4rem;
  }

  .machine h2::after,
  .pricing-heading h2::after,
  .refh2::after {
    width: 110px;
    height: 5px;
  }

  .machine-container,
  .pricing-inner {
    max-width: 1500px;
  }

  .card-wrap {
    width: 360px;
    height: 470px;
  }

  .card-info {
    padding: 30px;
  }

  .card-info h3 {
    font-size: 1.8rem;
  }

  .card-info p {
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .pricing {
    padding: 70px 30px 120px;
  }

  .pricing-heading {
    margin-bottom: 56px;
  }

  .pricing-heading p {
    max-width: 980px;
    font-size: 1.28rem;
  }

  .pricing-card {
    grid-template-columns: 440px 1fr;
    gap: 36px;
  }

  .pricing-main,
  .pricing-details {
    padding: 40px;
    border-radius: 22px;
  }

  .pricing-main h3 {
    font-size: 2.5rem;
  }

  .pricing-amount {
    font-size: 3.4rem;
  }

  .pricing-note,
  .pricing-item p,
  .pricing-footnote {
    font-size: 1.12rem;
  }

  .pricing-item {
    padding: 24px;
    gap: 18px;
  }

  .pricing-item i {
    font-size: 1.15rem;
  }

  .contact {
    padding: 80px 30px;
  }

  .contactdiv {
    width: min(88%, 1500px);
    height: 68vh;
    max-height: 760px;
  }

  .form,
  .contacts {
    padding: 4%;
  }

  form h3,
  .contacts h3 {
    font-size: 2.1rem;
  }

  form input,
  form textarea {
    width: 70%;
    font-size: 1.08rem;
  }

  form button {
    padding: 18px 40px;
    font-size: 1.2rem;
  }

  .telmail a {
    font-size: 1.7rem;
  }

  .ref {
    padding: 5% 3% 6%;
  }

  .ref h3 {
    font-size: 2.1rem;
    margin-top: 3%;
    margin-bottom: 2.5%;
  }

  .refer {
    gap: 28px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .refer img {
    width: 360px;
    height: 290px;
  }

  footer {
    padding: 28px 0;
    font-size: 1rem;
  }

  .footer-content {
    width: min(100%, 1400px);
    gap: 18px;
  }

  .cookie-inner {
    max-width: 1400px;
    padding: 24px 28px;
    border-radius: 14px;
  }

  .cookie-text h3 {
    font-size: 1.35rem;
  }

  .cookie-text p,
  .cookie-btn {
    font-size: 1.05rem;
  }
}

@media screen and (min-width: 2200px) {

  .service {
    min-height: 82vh;
  }

  .card-container {
    max-width: 1800px;
    gap: 48px;
  }

  .flip-card {
    width: 430px;
    height: 350px;
  }

  .flip-card-front h3,
  .flip-card-back strong {
    font-size: 2rem;
  }

  .flip-card-front p,
  .flip-card-back p {
    font-size: 1.28rem;
  }

  .fixing {
    font-size: 7rem;
    transform: translateY(-68px);
  }

  .about {
    min-height: 120vh;
  }

  .abouttext {
    font-size: 1.75rem;
    padding: 4%;
  }

  .abouttext h2 {
    font-size: 4rem;
  }

  .about button {
    padding: 22px 56px;
  }

  .about button a {
    font-size: 1.75rem;
  }

  .machine {
    padding: 150px 40px;
  }

  .machine h2,
  .pricing-heading h2,
  .refh2 {
    font-size: 4.3rem;
  }

  .machine-container,
  .pricing-inner {
    max-width: 1900px;
  }

  .card-wrap {
    width: 430px;
    height: 560px;
  }

  .card-info {
    padding: 36px;
  }

  .card-info h3 {
    font-size: 2.15rem;
  }

  .card-info p {
    font-size: 1.22rem;
  }

  .pricing {
    padding: 100px 40px 150px;
  }

  .pricing-heading p {
    max-width: 1180px;
    font-size: 1.5rem;
  }

  .pricing-card {
    grid-template-columns: 560px 1fr;
    gap: 44px;
  }

  .pricing-main,
  .pricing-details {
    padding: 48px;
    border-radius: 26px;
  }

  .pricing-label {
    padding: 12px 20px;
    font-size: 1.08rem;
  }

  .pricing-main h3 {
    font-size: 3rem;
  }

  .pricing-amount {
    font-size: 4.3rem;
  }

  .pricing-note,
  .pricing-item p,
  .pricing-footnote {
    font-size: 1.28rem;
    line-height: 1.75;
  }

  .pricing-item {
    padding: 28px;
    border-radius: 18px;
  }

  .pricing-item i {
    font-size: 1.3rem;
  }

  .contact {
    padding: 100px 40px;
  }

  .contactdiv {
    width: min(88%, 1850px);
    height: 72vh;
    max-height: 920px;
  }

  form h3,
  .contacts h3 {
    font-size: 2.8rem;
  }

  form input,
  form textarea {
    width: 72%;
    font-size: 1.25rem;
    border-bottom-width: 4px;
  }

  form button {
    padding: 22px 54px;
    font-size: 1.4rem;
    border-width: 4px;
  }

  .telmail a {
    font-size: 2rem;
  }

  .ref {
    padding: 5% 4% 7%;
  }

  .ref h3 {
    font-size: 2.6rem;
  }

  .refer {
    gap: 36px;
    max-width: 2000px;
  }

  .refer img {
    width: 430px;
    height: 340px;
  }

  footer {
    font-size: 1.15rem;
    padding: 32px 0;
  }

  .footer-content {
    width: min(100%, 1800px);
    gap: 22px;
  }

  .cookie-inner {
    max-width: 1800px;
    padding: 30px 34px;
  }

  .cookie-text h3 {
    font-size: 1.6rem;
  }

  .cookie-text p,
  .cookie-btn {
    font-size: 1.18rem;
  }

  .cookie-btn {
    padding: 14px 18px;
  }
}
