/* RESET & BASE ------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin:0; padding:0; border:0; font-size:100%; vertical-align:baseline; box-sizing:border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }
body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #e2f6fa;
    background: linear-gradient(135deg, #131933 0%, #23636D 100%);
    min-height: 100vh;
    line-height: 1.6;
    letter-spacing: 0.01em;
}
img {max-width:100%; height:auto; display: block;}
a { color: #F9C846; text-decoration: none; transition: color 0.25s; }
a:hover, a:focus { color: #ffffff; text-shadow: 0 0 6px #F9C846; }
ul,ol { margin-left: 28px; }
strong,b { font-weight: 700; }

/* FONTS ------------------------- */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    color: #F9C846;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
h1 {font-size: 2.5rem; line-height:1.15; margin-bottom: 24px;}
h2 {font-size: 2rem; line-height:1.18;}
h3 {font-size: 1.32rem; line-height:1.25;}
h4 {font-size:1.14rem;}

@media (max-width: 600px){
    h1 {font-size:2rem;}
    h2 {font-size:1.4rem;}
    h3 {font-size:1.08rem;}
}

p,li {
    font-size: 1rem;
    font-weight: 400;
    color: #e2f6fa;
    margin-bottom: 12px;
}

/* CONTAINER & LAYOUT ---------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: rgba(26,38,60,0.92);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(60,180,255,0.21), 0 0px 0px 1px rgba(35,99,109,0.05);
    position: relative;
}
@media (max-width: 768px) {
    .section {
        margin-bottom: 36px;
        padding: 22px 7px;
    }
    .content-wrapper {gap:12px;}
}

/* HEADER & NAVBAR ------------------------- */
header {
    background: rgba(19, 25, 51, 0.95);
    box-shadow: 0 6px 28px 0 rgba(35,99,109,0.08);
    backdrop-filter: blur(2px);
    z-index: 20;
    position: relative;
}
header .container {
    min-height: 72px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 18px;
}
.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}
.main-nav a {
    color: #eee;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 6px 2px;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a.active {
    color: #232331;
    background: #F9C846;
    box-shadow: 0 0 10px 1px #F9C84688;
}

.cta-button {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.07rem;
    color: #232331;
    background: #F9C846;
    border: none;
    border-radius: 32px;
    padding: 13px 36px;
    margin-left: 6px;
    box-shadow: 0px 4px 20px 0px #F9C84633,0 0 0 1.5px #F9C84633;
    text-shadow: none;
    transition: background 0.18s, color 0.18s, transform 0.27s, box-shadow 0.27s;
    cursor: pointer;
    position: relative;
}
.cta-button:hover, .cta-button:focus {
    background: #FFF2A6;
    color: #23636D;
    box-shadow: 0 0 24px 4px #F9C846AA;
    transform: scale(1.045);
}

.mobile-menu-toggle {
    background: none;
    color: #F9C846;
    font-size: 2rem;
    border: none;
    margin-left: 20px;
    cursor: pointer;
    display: none;
    z-index: 51;
    border-radius: 12px;
    padding: 2px 8px;
    transition: background 0.14s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
    background: #e2f6fa11;
}

@media (max-width: 1040px) {
    .main-nav { gap: 13px; }
    header .container { gap:12px; }
}
@media (max-width: 940px){
    .cta-button { padding:12px 20px; font-size:1rem; }
    header .container { flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .main-nav, .cta-button { display: none !important; }
    .mobile-menu-toggle { display: block; }
    header .container { min-height:48px; }
}

/* MOBILE NAVIGATION --------------------- */
.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 100vw; height: 100vh;
    background: linear-gradient(135deg,#232a42 80%, #23636D 100%);
    box-shadow: -12px 0 28px #181b38aa;
    z-index: 1003;
    transition: transform 0.42s cubic-bezier(.55,1.4,.35,.94);
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
    background: none;
    color: #F9C846;
    font-size: 2.3rem;
    border: none;
    margin: 22px 18px 5px auto;
    cursor: pointer;
    border-radius: 10px;
    padding: 2px 10px;
    z-index: 1015;
    transition: background 0.18s;
    align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #e2f6fa18;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
    justify-content: flex-start;
    margin: 40px 40px;
    flex: 1 1;
}
.mobile-nav a {
    color:#FFF;
    font-family:'Montserrat', Arial,sans-serif;
    font-size:1.18rem;
    font-weight:600;
    padding:18px 8px;
    border-radius:16px;
    transition: background 0.2s, color 0.2s, box-shadow 0.25s;
    text-align: left;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}
.mobile-nav a:hover,.mobile-nav a:focus {
    background: #F9C846;
    color:#23636D;
    box-shadow: 0 0 12px 4px #F9C84655;
}
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-toggle {display:none!important;}
}
@media (max-width:600px){
    .mobile-nav{margin:30px 10px;gap:16px;}
    .mobile-menu-close{margin:16px 4px; font-size:2rem;}
}

/* SECTIONS & FLEX PATTERNS --------------- */
.feature-grid, .testimonial-list, .card-container, .content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.content-grid {gap:20px; justify-content:space-between;}
.card-container {gap:24px;}
.card {background: #212740; border-radius: 18px; margin-bottom:20px; box-shadow:0 2px 12px #23636D33; position:relative;}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .feature-grid, .testimonial-list, .card-container, .content-grid, .text-image-section {
        flex-direction: column;
        gap: 20px;
        justify-content:flex-start;
    }
    .text-image-section{flex-direction:column; gap:18px;}
}

.feature {
    background: #17212d;
    border-radius: 16px;
    box-shadow: 0 2px 10px 0 #23636D33;
    padding: 24px 18px 18px 18px;
    width: 100%;
    min-width: 240px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    border: 1.5px solid #1e2b41;
    transition: box-shadow 0.2s, border 0.2s;
}
.feature img {
    margin-bottom: 8px;
    width: 2.8rem; height: 2.8rem;
    filter: drop-shadow(0 2px 7px #23636Daa) brightness(1.4);
}
.feature:hover, .feature:focus-within {
    box-shadow: 0 4px 26px 2px #23636D99;
    border: 1.5px solid #367b87;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 6px;
}

/* TESTIMONIALS -------------------------- */
.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 26px;
    background: #fbfaf4;
    color: #232331;
    border-radius: 18px;
    box-shadow: 0 4px 26px #23636D22, 0 0 4px #23636D22;
    margin-bottom:20px;
    min-width: 240px;
    max-width: 420px;
    flex: 1 1 280px;
    border-left: 5px solid #23636d;
    font-size: 1rem;
    position: relative;
    transition: box-shadow 0.2s, border 0.2s, transform 0.17s;
}
.testimonial-card strong, .testimonial-card b{
    color: #23636D;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight:700;
    font-size:1rem;
    margin-top:8px;
    letter-spacing:0.005em;
}
.testimonial-card p {
    color: #232331;
    font-size: 1.09rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    box-shadow: 0 8px 36px 6px #F9C84677;
    transform: scale(1.018);
    border-left: 5px solid #F9C846;
}
@media(max-width: 900px){
    .testimonial-list{flex-direction:column;gap:20px;}
    .testimonial-card{max-width:100%;}
}

/* FOOTER --------------------------------- */
footer {
    background: #182031;
    border-top: 3px solid #F9C84633;
    color: #eee;
    padding: 36px 0 12px 0;
    position: relative;
    box-shadow: 0 -8px 18px 0 #23636d22;
    font-size: 1rem;
    z-index: 11;
}
footer .container {
    flex-direction: column;
    gap: 20px;
}
.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
}
.footer-nav a {
    color: #F9C846;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size:1.01rem;
    border-radius:6px;
    padding: 4px 10px;
    transition: background 0.15s, color 0.2s, box-shadow 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: #23636D;
    color: #FFF;
    box-shadow: 0 0 10px #23636DBB;
}
footer .text-section p {
    color: #e2f6fa;
    margin-bottom: 6px;
    font-size: 0.98rem;
}
@media (max-width: 600px){
    .footer-nav { gap: 15px; flex-direction:column; align-items:flex-start;}
    footer .container{padding:0 7px;}
}

/* ICONS ------------------------- */
.text-section img, ul img {
    width: 1.2em;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 3px;
    filter: drop-shadow(0 1px 3px #23636d88);
}

/* UTILITIES, BUTTONS, LISTS --------------- */
ul {
    margin-bottom: 14px;
    padding-left: 16px;
    list-style-type: disc;
}
ul li {
    font-size: 1rem;
    color: #e2f6fa;
    margin-bottom: 8px;
    padding-left: 2px;
}
.text-section ul li {
    color: #e2f6fa;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.text-section ul li img {
    min-width: 20px;
}

button, .button {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 600;
    background: #23636D;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.13s;
    font-size: 1rem;
    margin: 0 0 0 8px;
}
.button:hover, button:hover, button:focus, .button:focus {
    background: #F9C846;
    color: #232331;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 400px) {
    .cta-button, button, .button {padding:10px 14px;font-size:0.99rem;}
}

/* CARDS, MISCELLANEOUS FLEX CARDS ------------------ */
.card {
    background: #202634;
    border-radius: 18px;
    margin-bottom: 20px;
    padding: 18px 20px;
    color: #e2f6fa;
    box-shadow: 0 4px 16px #23636D38;
    min-width: 220px;
    max-width: 480px;
    flex: 1 1 240px;
    
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:16px;
}

/* COOKIE BANNER & MODAL -------------------------- */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: #152333ef;
    color: #fff;
    padding: 16px 16px 12px 16px;
    box-shadow: 0 -6px 16px #23636D33;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    z-index: 1050;
    animation: cookie-slide-up 0.65s cubic-bezier(.33,1.12,.34,1) both;
}
@keyframes cookie-slide-up {
  0% {transform:translateY(100%);opacity:0;}
  100% {transform:translateY(0);opacity:1;}
}
.cookie-banner__message {
    font-size: 1.04rem;
    color: #fff;
    flex: 1 1 220px;
    line-height: 1.5;
    margin-right: 8px;
}
.cookie-banner__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.cookie-banner__button {
    background: #F9C846;
    color: #232331;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 18px;
    padding: 9px 24px;
    font-size: 1.01rem;
    margin: 0;
    transition: background 0.17s, color 0.17s, transform 0.13s;
    box-shadow: 0 1px 8px #F9C84622;
    cursor: pointer;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
    background: #FFF2A6;
    color: #23636D;
}
.cookie-banner__button--secondary {
    background: #23636D;
    color: #fff;
}
.cookie-banner__button--secondary:hover,.cookie-banner__button--secondary:focus {
    background: #1a283a;
    color: #F9C846;
}
.cookie-banner__button--ghost {
    background: none;
    border: 1.5px solid #e2f6fa66;
    color: #e2f6fa;
}
.cookie-banner__button--ghost:hover,.cookie-banner__button--ghost:focus {
    background: #263248;
    color: #F9C846;
}

@media (max-width: 670px) {
    .cookie-banner{ flex-direction: column; align-items: flex-start; padding:14px 8px 12px 8px; }
    .cookie-banner__actions{ gap:8px; }
}

/* Cookie Modal Popup */
.cookie-modal {
    position:fixed; left:0;top:0;width:100vw;height:100vh;
    background: rgba(26,40,60,.87);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    animation: fade-in-cookie 0.28s cubic-bezier(.46,1,.46,.99) both;
}
@keyframes fade-in-cookie {
    0% {opacity:0;}
    100% {opacity:1;}
}
.cookie-modal__box {
    background:#f6fbfa;
    color: #232331;
    border-radius: 18px;
    box-shadow:0 8px 40px #23636D55;
    width: 98%;
    max-width: 440px;
    padding:35px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position:relative;
}
.cookie-modal__close {
    position:absolute;
    right:16px;top:15px;
    background: none;
    color: #23636D;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
    padding: 1px 6px;
    border-radius:6px;
    transition: background 0.17s, color 0.17s;
}
.cookie-modal__close:hover,.cookie-modal__close:focus{
    background: #23636D11;
    color: #234a67;
}
.cookie-modal__title{
    font-family:'Montserrat',Arial,sans-serif;
    font-size:1.4rem;
    font-weight:700;
    color:#23636D;
    margin-bottom:6px;
}
.cookie-modal__category{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:8px;
}
.cookie-modal__category input[type="checkbox"] {
    accent-color: #23636D;
    width:22px;height:22px;
}
.cookie-modal__category label{
    font-size:1rem;
    color:#232331;
    cursor:pointer;
    font-weight: 500;
}
.cookie-modal__category--locked label {
    color:#b3bab2;
    cursor:not-allowed;
}
.cookie-modal__category--locked input[type="checkbox"]:disabled {
    accent-color: #e2c678;
    filter: grayscale(0.6) opacity(0.63);
}
.cookie-modal__actions{
    display:flex;gap:14px;justify-content:flex-end;margin-top:12px;
}
@media (max-width: 440px){
    .cookie-modal__box{padding:21px 6px 12px 6px;}
    .cookie-modal__actions{flex-direction:column;gap: 7px;}
}

/* ANIMATION UTILITIES ----------------- */
.fade-in-up {
    animation: fade-in-up 0.84s cubic-bezier(.18,1.2,.24,.98) both;
}
@keyframes fade-in-up {
  0%{opacity:0;transform:translateY(30px);}
  100%{opacity:1;transform:translateY(0);}
}

/* SCROLLBAR STYLING ------------------- */
::-webkit-scrollbar{width:11px;background:#1a283a;}
::-webkit-scrollbar-thumb{background:#23636DCC;border-radius:8px;}

/* FOCUS STATES ------------------------ */
:focus-visible {
    outline: 3px solid #F9C846;
    outline-offset: 2px;
    z-index:1;
}

/* RESPONSIVE ADAPTIONS ------------------ */
@media (max-width:600px){
    .feature, .testimonial-card, .card{min-width:100%;max-width:100%;}
    .container{padding:0 7px;}
    h1 {font-size:1.46rem;}
    h2 {font-size:1.1rem;}
}

/* MICRO-INTERACTIONS ------------------- */
.cta-button, .button, button,.feature,.testimonial-card,.card{
    transition: box-shadow 0.18s, transform 0.12s, color 0.20s, background 0.20s, border 0.15s;
}

/* Z-INDEX MANAGEMENT (Menus/Cookie) ------- */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 100; }

/* END OF CSS */
