/* =======================================================================
   FirmBeam Lernnavigator – Industrial Modern Theme CSS 
   Author: Senior CSS Developer & UI Designer
   All layouts: flexbox ONLY. No grid/columns! Responsive Mobile-First.
   Brand: Modern, trusted, urban & industrial with metallic accents.
========================================================================== */

/* 0. CSS RESET & BASELINE NORMALIZATION ---------------------------- */
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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
    background: #181A1B;
    color: #FAFAFA;
    min-height: 100vh;
    font-family: 'Roboto', Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #F4D06F;
    text-decoration: none;
    transition: color 0.2s;
}
a:focus, a:hover {
    color: #FAFAFA;
    outline: none;
}
ul, ol {
    margin-left: 1.4em;
    margin-bottom: 20px;
}
li {
    margin-bottom: 6px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #F4D06F;
    margin-bottom: 12px;
    line-height: 1.2;
}
h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #FAFAFA;
}
@media (max-width: 768px) {
    h1 {
        font-size: 1.9rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}
strong, b {
    color: #F4D06F;
    font-weight: 700;
}

/* 1. LAYOUT CONTAINERS --------------------------------------------- */
.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #1b1d20;
    border-radius: 12px;
    box-shadow: 0 6px 24px 0 rgba(20, 93, 160, 0.13);
}

/* 2. HEADER & NAVIGATION ------------------------------------------- */
header {
    width: 100%;
    background: #181A1B;
    border-bottom: 2px solid #31343A;
    box-shadow: 0 2px 8px rgba(20,93,160,0.10);
    z-index: 1000;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px 18px;
}
header img[alt="FirmBeam Lernnavigator"] {
    width: 162px;
    height: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 500;
    color: #FAFAFA;
    font-size: 1.07rem;
    letter-spacing: 0.04em;
    padding: 9px 0;
    position: relative;
    transition: color .18s;
}
.main-nav a:after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background: #F4D06F;
    transition: width .22s;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 1px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
    width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
    color: #F4D06F;
}

.btn-primary {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1.1rem;
    background: #145DA0;
    color: #FAFAFA;
    border: none;
    border-radius: 8px;
    padding: 11px 30px;
    margin-left: 8px;
    font-weight: 600;
    box-shadow: 0 1.5px 0 #484B51, 0 4px 16px #145da029;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.11s;
    outline: none;
    border-bottom: 3px solid #31343A;
}
.btn-primary:hover, .btn-primary:focus {
    background: #0e3d63;
    color: #F4D06F;
    box-shadow: 0 2.5px 0 #F4D06F, 0 4px 32px #31343A55;
    transform: translateY(-2px) scale(1.035);
}

@media (max-width: 1000px) {
    .main-nav {
        gap: 13px;
    }
}

/* HAMBURGER MOBILE MENU -------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #F4D06F;
    cursor: pointer;
    margin-left: 7px;
    padding: 7px 14px 7px 7px;
    line-height: 1;
    border-radius: 7px;
    transition: background 0.16s, color 0.16s;
    z-index: 1201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
    background: #232438;
    color: #FAFAFA;
}

@media (max-width: 880px) {
    .main-nav, header .btn-primary {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block !important;
    }
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #191d22cc;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 1200;
    transition: transform .35s cubic-bezier(.45,1.29,.44,.97), opacity .24s;
}
.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.mobile-menu-close {
    align-self: flex-end;
    margin: 18px 22px 10px 0;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #F4D06F;
    cursor: pointer;
    border-radius: 7px;
    padding: 9px 16px 7px 7px;
    transition: background 0.16s, color 0.16s;
    z-index: 1202;
}
.mobile-menu-close:focus, .mobile-menu-close:hover{
    background: #232438;
    color: #FAFAFA;
}
.mobile-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 12px 27px;
    margin-top: 5px;
}
.mobile-nav a {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.20rem;
    color: #FAFAFA;
    font-weight:600;
    padding: 18px 14px 12px 7px;
    border-radius: 7px;
    background: none;
    transition: background 0.16s, color 0.16s;
    margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #145DA0aa;
    color: #F4D06F;
}
@media (min-width: 881px) {
    .mobile-menu { display: none !important; }
    .mobile-menu-toggle { display: none !important; }
}

/* 3. HERO & PRIMARY PAGES ------------------------------------------ */
.hero {
    display: flex;
    background: linear-gradient(110deg, #181A1B 80%, #283340 100%);
    min-height: 340px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 38px #181A1B08;
    border-radius: 0 0 48px 48px;
    margin-bottom: 60px;
    padding: 52px 0 38px 0;
}
.hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.hero .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding: 0;
}
.hero h1 {
    color: #F4D06F;
    text-shadow: 0 3px 0 #222640, 0 2px 16px #145da077;
}
.hero p {
    max-width: 600px;
    color: #FAFAFA;
    font-size: 1.17rem;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.hero .btn-primary {
    margin-top: 18px;
}
@media (max-width: 700px) {
    .hero {
        padding: 32px 0 26px 0;
        border-radius: 0 0 22px 22px;
        min-height: 180px;
    }
}

/* 4. FEATURES/USP CARDS -------------------------------------------- */
.features {
    background: #232438;
    box-shadow: 0 6px 32px 0 #191d2266;
    margin-bottom: 60px;
    border-radius: 22px;
}
.features .feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
    justify-content: center;
}
.feature-card {
    background: #191d22;
    flex: 1 1 220px;
    max-width: 285px;
    min-width: 200px;
    border-radius: 14px;
    box-shadow:  0 2.5px 0 #484B51, 0 6px 30px #181A1B16;
    padding: 32px 20px 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
    border: 1.5px solid #2b2e35;
    transition: box-shadow 0.18s, border 0.18s, transform 0.12s;
    position: relative;
}
.feature-card img {
    width: 38px;height: 38px; filter: grayscale(0.2) brightness(1.08);
    margin-bottom: 7px;
}
.feature-card h3{
    font-size: 1.21rem;
    color: #F4D06F;
    font-weight: 600;
    margin-bottom: 4px;
}
.feature-card p {
    font-size: 1.02rem;
    color: #FAFAFA;
    margin-bottom: 4px;
}
.feature-card .feature-price {
    margin-top: 6px;
    font-size: 1.04rem;
    color: #9AD8FF;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 500;
}
.feature-card:hover, .feature-card:focus {
    box-shadow: 0 5px 0 #F4D06F, 0 12px 40px #145da050;
    border-color: #145DA0;
    transform: translateY(-3px) scale(1.02);
    cursor: pointer;
    z-index: 2;
}

/* 5. USP, WHY, ETC. ------------------------------------------------ */
.why, .about-mission {
    background: #202126;
    box-shadow: 0 2px 8px #191d223a;
    border-radius: 18px;
    margin-bottom: 60px;
}
.why .usp-grid,
.about-mission .value-icon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 20px;
    align-items: flex-start;
}
.why .usp-item, .about-mission .usp-item {
    background: #232438;
    padding: 22px 26px 18px 20px;
    border-radius: 11px;
    box-shadow: 0 2px 16px #181A1B28;
    min-width: 170px;
    flex: 1 1 190px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    border-left: 3px solid #145DA0;
}
.why .usp-item img, .about-mission .usp-item img {
    width: 27px; height: 27px; margin-right: 9px; filter: grayscale(0.1) brightness(1.09);
}
.why .usp-item p, .about-mission .usp-item span, .about-mission .usp-item p {
    color: #FAFAFA;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
}

/* About grid for team (about page) */
.team-bio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    margin-top: 16px;
}
.team-member {
    background: #181A1B;
    border-radius: 10px;
    box-shadow: 0 2.5px 0 #484B51, 0 3px 12px #181A1B28;
    padding: 22px 18px 18px 18px;
    min-width: 210px;
    flex: 1 1 280px;
    max-width: 340px;
    margin-bottom: 20px;
    border-bottom: 4px solid #F4D06F;
    text-align: left;
}
.team-member h3 {
    font-size: 1.18rem;
    color: #9AD8FF;
    margin-bottom: 6px;
    font-weight: 700;
}
.team-member ul li {
    color: #FAFAFA;
    list-style: disc inside;
    font-size: 0.98rem;
    margin-left: 8px;
}

/* 6. SERVICES / PRICES / LISTS ------------------------------------- */
.services .service-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin: 15px 0 22px 0;
}
.service-item {
    background: #22232a;
    border-radius: 10px;
    box-shadow: 0 2.5px 0 #484B51, 0 4px 12px #181A1B14;
    flex: 1 1 260px;
    min-width: 210px;
    max-width: 340px;
    padding: 20px 18px 19px 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    border-left: 4px solid #145DA0;
    border-bottom: 1px solid #232438;
    transition: box-shadow 0.18s, border 0.18s, transform 0.10s;
}
.service-item .service-price {
    color: #F4D06F;
    font-weight: 500;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.05rem;
    margin-top: 11px;
}
.service-item:hover {
    box-shadow: 0 6px 22px #145DA068;
    transform: translateY(-3px) scale(1.02);
    border-left: 4px solid #F4D06F;
}

.price-summary,
.preisübersicht {
    background: #181A1B;
    color: #FAFAFA;
    border-radius: 8px;
    padding: 13px 18px;
    margin-top: 6px;
    box-shadow: 0 2px 6px #181A1B13;
    font-size: 1rem;
}
.beratung-info {
    background: #22232a;
    padding: 13px 18px;
    border-radius: 8px;
    margin-bottom: 12px;
    color: #FAFAFA;
    font-size: 1rem;
    box-shadow: 0 2.5px 0 #484B51;
}

.supported-languages .language-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 13px 0 18px 0;
}
.modality-list ul {
    margin-bottom: 0;
}

/* 7. TESTIMONIALS -------------------------------------------------- */
.testimonials {
    background: #232438;
    box-shadow: 0 6px 32px 0 #191d2220;
    border-radius: 22px;
    margin-bottom: 60px;
    padding: 40px 20px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 30px 18px 22px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #FAFAFA;
    color: #181A1B;
    box-shadow: 0 5px 22px #2324382b, 0 2.5px 0 #484B51;
    border-left: 5px solid #145DA0;
    font-size: 1.05rem;
    font-family: 'Roboto', Arial, sans-serif;
    transition: box-shadow .14s, border .16s, transform .12s;
    min-width: 240px;
    max-width: 720px;
}
.testimonial-card:hover, .testimonial-card:focus {
    box-shadow: 0 8px 38px #145DA079, 0 4px 0 #F4D06F;
    border-left: 5px solid #F4D06F;
    transform: translateY(-2px) scale(1.02);
}
.testimonial-card p {
    color: #232438;
    font-size: 1.08rem;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 6px;
}
.testimonial-card .user-info {
    color: #145DA0;
    font-weight:600;
    font-size:1.01rem;
}

/* 8. CONTACT SECTIONS ---------------------------------------------- */
.contact-details .text-section ul,
.contact-details .text-section ul li {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #FAFAFA;
}
.contact-details .text-section ul li img {
    width: 20px; height: 20px;
    margin-right: 8px;
    filter: grayscale(0.1) brightness(1.19);
}

/* 9. GENERIC FLEX CONTAINERS --------------------------------------- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #232438;
    border-radius: 9px;
    box-shadow: 0 2.5px 0 #484B51, 0 4px 12px #181A1B18;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* 10. FOOTER ------------------------------------------------------- */
footer {
    background: #16171a;
    border-top: 2px solid #232438;
    color: #A9B2BA;
    font-size: 0.99rem;
    padding: 34px 0 26px 0;
    margin-top: 60px;
    box-shadow: 0 -2px 26px #181A1B0A;
}
footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}
.footer-brand img {
    width: 46px; height: 46px;
    border-radius: 7px;
    box-shadow: 0 2px 14px #2324380b;
}
.footer-brand span {
    color: #FAFAFA;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 500;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
}
.footer-nav a {
    color: #9AD8FF;
    font-size: 0.97rem;
    padding: 3px 0;
    position: relative;
    transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #F4D06F;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-contact span {
    color: #FAFAFA;
}
@media (max-width: 900px) {
    footer .container { flex-direction: column; align-items: flex-start; gap: 25px; }
}

/* 11. UTILITY CLASSES ---------------------------------------------- */
.text-section {
    margin-bottom: 17px;
    color: #FAFAFA;
    font-size: 1.08rem;
}
/* Ordered list styling for how-it-works */
.how-it-works ol {
    padding-left: 20px;
    color: #FAFAFA;
    font-size: 1.11rem;
    margin-bottom: 0;
}
.how-it-works li {
    margin-bottom: 10px;
}

/* Cards for footer-section pages (Policy, GDPR, etc) */
.footer-section .container {
    padding: 40px 15px;
}
.footer-section .content-wrapper {
    max-width: 820px;
}
.footer-section {
    background: #232438;
    border-radius: 22px;
    margin-bottom: 60px;
    box-shadow: 0 6px 32px 0 #191d2220;
}

/* 12. BUTTONS & FORMS ---------------------------------------------- */
button, .btn-primary {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    outline: none;
}
button:focus-visible {
    outline: 2px solid #F4D06F;
    outline-offset: 2px;
}
/* Secondary buttons for forms, cookie, etc */
.btn-secondary, .btn-secondary:visited {
    background: #2b2d33;
    color: #FAFAFA;
    border: 1.5px solid #31343A;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0 8px 0 0;
    transition: background .16s, border .13s;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #31343A;
    color: #F4D06F;
    border-color: #F4D06F;
}
.btn-tertiary {
    background: none;
    color: #F4D06F;
    border: 1px dashed #F4D06F;
    border-radius: 6px;
    padding: 10px 19px;
    font-size: .97rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .13s, border .13s, color .12s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
    background: #232438a8;
    color: #FAFAFA;
}

/* 13. COOKIE CONSENT BANNER ---------------------------------------- */
.cookie-consent-banner {
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    background: #232438fb;
    color: #FAFAFA;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px 22px 26px;
    box-shadow: 0 -9px 40px #181A1B40;
    gap: 30px;
    z-index: 1500;
    font-size: 1.06rem;
    border-top: 2.5px solid #145DA0;
    animation: cookie-slide-in .44s cubic-bezier(.33,.92,.41,1.07) 1;
}
.cookie-consent-banner.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.19s;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0;}
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
    margin: 0; max-width: 562px; color: #FAFAFA;
}
.cookie-consent-actions {
    display: flex; flex-direction: row; gap: 14px;
}
.cookie-consent-banner .btn-primary {
    padding: 10px 24px;
    font-size: 1.01rem;
    border-radius: 8px;
}
.cookie-consent-banner .btn-secondary, .cookie-consent-banner .btn-tertiary {
    padding: 10px 22px;
    font-size: 0.98rem;
    min-width: 121px;
}
@media (max-width: 700px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 14px 10px 14px 14px;
    }
    .cookie-consent-actions { justify-content: stretch; gap:10px; }
}

/* Cookie Modal Preferences Dialog */
.cookie-modal-backdrop {
    position: fixed;
    top: 0; left:0; right:0; bottom:0;
    background: #181A1Bcc;
    z-index: 1600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modal-fade-in .21s;
}
@keyframes modal-fade-in { from{ opacity:0;} to{opacity:1;} }
.cookie-modal {
    background: #191d22;
    color: #FAFAFA;
    border-radius: 17px;
    box-shadow: 0 6px 40px #181A1Bcc;
    padding: 36px 26px 28px 26px;
    max-width: 440px;
    min-width: 290px;
    position: relative;
    z-index: 1700;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: modal-in 0.23s cubic-bezier(.33,.92,.41,1.07) 1;
}
@keyframes modal-in {from {transform: translateY(32px); opacity: .5;} to {transform: translateY(0); opacity: 1;} }
.cookie-modal h2 {
    font-size: 1.23rem;
    color: #F4D06F;
    margin-bottom: 8px;
}
.cookie-modal-close {
    position: absolute;
    right: 13px; top: 13px;
    font-size: 1.33rem;
    color: #F4D06F;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 9px;
    border-radius: 7px;
    transition: background 0.12s, color 0.12s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
    background: #2b2d33;
    color: #FAFAFA;
}
.cookie-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    margin: 10px 0;
}
.cookie-category label {
    font-size: 1.08rem;
    color: #FAFAFA;
    font-weight: 500;
}
.cookie-toggle {
    appearance: none;
    width: 38px;
    height: 22px;
    background: #2b2d33;
    border-radius: 12px;
    position: relative;
    outline: none;
    border: 1.5px solid #31343A;
    transition: background 0.16s, border .12s;
}
.cookie-toggle:checked {
    background: #145DA0;
    border-color: #F4D06F;
}
.cookie-toggle:before {
    content: '';
    position: absolute;
    left: 4px; top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #FAFAFA;
    transition: left 0.15s cubic-bezier(.3,.7,.4,1), background .13s;
}
.cookie-toggle:checked:before{
    left: 20px;
    background: #F4D06F;
}
.cookie-category .cookie-required {
    color: #F4D06F;
    font-weight: 600;
    margin-left: 8px;
    font-size: 0.92rem;
    opacity: 0.9;
}
.cookie-modal-bottom {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}
@media (max-width: 410px) {
    .cookie-modal { padding: 19px 1vw 13px 1vw; min-width: 0; }
}

/* 14. RESPONSIVE & MOBILE MEDIA QUERIES ---------------------------- */
@media (max-width: 1040px) {
    .feature-grid, .team-bio-grid, .usp-grid, .about-mission .value-icon-grid, .card-container, .content-grid, .services .service-list {
        gap: 18px;
    }
}
@media (max-width: 860px) {
    .feature-card, .service-item, .team-member {
        flex: 1 1 45vw;
        max-width: 100%;
        min-width: 190px;
    }
    .team-bio-grid, .feature-grid, .usp-grid, .about-mission .value-icon-grid{
        gap: 14px;
    }
}
@media (max-width: 700px) {
    .container {
        max-width: 97vw;
        padding: 0 7px;
    }
    .section, .features, .testimonials, .why, .about-mission, .footer-section {
        padding: 23px 7px;
        border-radius: 10px;
        margin-bottom: 31px;
    }
    .testimonials, .footer-section {
        padding: 19px 2px;
    }
}
@media (max-width: 700px) {
    .feature-card, .service-item {
        min-width: 97vw;
        max-width: 99vw;
        flex: 1 1 100%;
        padding: 22px 6vw 18px 6vw;
    }
    .testimonial-card {
        min-width: 97vw;
        max-width: 99vw;
        padding: 14px 6vw 13px 6vw;
        flex-direction: column;
        gap: 8px;
    }
    .usp-item, .about-mission .usp-item {
        flex: 1 1 47vw;
        min-width: 140px;
        padding: 16px 6vw 12px 4vw;
        border-radius: 7px;
    }
}

/* All text-image/feature/usp sections vertical on mobile */
@media (max-width: 768px) {
    .text-image-section, .content-grid, .feature-grid, .usp-grid, .about-mission .value-icon-grid, .services .service-list, .team-bio-grid, .card-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

/* 15. MICRO-INTERACTIONS & TRANSITIONS ----------------------------- */
.card, .feature-card, .service-item, .testimonial-card, .btn-primary, .btn-secondary, .btn-tertiary {
    transition: box-shadow 0.14s, transform 0.12s, border 0.13s, color 0.16s, background 0.16s;
}
button:active, .btn-primary:active, .btn-secondary:active {
    transform: translateY(1.5px) scale(0.98);
}

/* 16. TYPOGRAPHY SCALE --------------------------------------------- */
p, li, ul, ol, span, td, th {
    font-size: 1.02rem;
    color: #FAFAFA;
    font-family: 'Roboto', Arial, sans-serif;
}

@media (max-width: 600px) {
    html { font-size: 15px; }
    h1 { font-size: 1.45rem; }
    h2 { font-size: 1.12rem; }
    h3 { font-size: 1.06rem; }
}

/* 17. METALLIC-INSPIRED/URBAN EFFECTS (INDUSTRIAL FEEL) ----------- */
.section, .features, .feature-card, .usp-item, .about-mission .usp-item, .testimonial-card, .team-member, .service-item, .footer-section {
    border: 1.5px solid #232A32;
    box-shadow: 0 1.5px 0 #484B51, 0 8px 42px #181A1B14;
}
.card, .feature-card, .testimonial-card, .service-item, .usp-item {
    /* Subtle metallic border lines: */
    border-image: linear-gradient(117deg,#494C52 10%,#232A32 60%, #145DA0 90%) 1;
}

/* ============== END OF STYLE.CSS ================================= */
