/* ===============================
   Base Styles
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

/* Base styles = mobile */
body {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Satoshi Black", sans-serif;
    background-color: #f7fbfe;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    text-decoration-color: initial;
}

[hidden] {
    display: none !important;
}

/* ===============================
   Navbar
=================================*/
.navbar {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.navbar ul {
    padding-inline-start: 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
}

.navbar-tablet {
    display: none;
}

.navbar-mobile {
    display: none;
}

.navbar-small {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 10;
}

.nav-toggle {
    display: none;
    background-color: rgb(231, 235, 242);
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    font-size: 2rem;
    cursor: pointer;
    color: rgb(0, 2, 24);
}

.nav-menu {
    position: fixed;
    top: 71px;
    left: 0;
    width: 100%;
    background-color: #f7fbfe;
    flex-direction: column;
    padding: 2rem;
    opacity: 0;
    transform: translateY(0);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.navbar-small .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.1);
    z-index: 4;
    display: none;
}

.navbar-small.open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar-small.open .menu-overlay {
    display: block;
}

a.logo:hover {
    opacity: 0.4;
}

a.logo img {
    width: 155px;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1rem;
    flex-grow: 1;
}

.nav-menu .nav-links {

}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a,
.nav-actions a {
    text-transform: uppercase;
    font-family: "Satoshi Black", sans-serif;
    font-weight: 600;
    letter-spacing: 0.72px;
    white-space: nowrap;
    color: rgba(0, 2, 24, 0.48);
    padding: 0.9rem 1rem;
    border-radius: 4px;
    border: 1px solid #f7fbfe;
    transition: all 0.2s ease-in-out;
}

.nav-links a:hover,
.nav-actions a:hover {
    color: rgb(0, 2, 24);
    border: 1px solid rgb(230, 234, 242);
    background-color: rgba(231, 235, 242, 0);
}

.nav-links a.active,
.nav-actions a.active {
    color: rgb(0, 2, 24);
    border: 1px solid rgb(230, 234, 242);
    background-color: rgba(231, 235, 242, 0);
}

.nav-links a:focus {
    background-color: rgba(231, 235, 242);
}

/* ===============================
   Animated Menu Icon (Hamburger)
=================================*/
.menu-icon {
    stroke: rgba(0, 2, 24, 0.9);
    stroke-width: 2.5;
    stroke-linecap: round;
}

.bar {
    transform-origin: center;
    transition: transform 0.5s ease;
}

/* Open state */
.navbar-small.open .bar-top {
    transform: translateY(3px) rotate(45deg);
}

.navbar-small.open .bar-bottom {
    transform: translateY(-3px) rotate(-45deg);
}

.navbar-small.open svg {
    margin-left: -3px;
    margin-right: 3px;
}

/* ===============================
   Buttons (CTA & Login)
=================================*/
a.btn-primary {
    background-color: #093c6d;
    color: #fff;
    border: 1px solid #093c6d;
}

a.btn-primary:hover {
    background-color: rgba(231, 235, 242, 0);
    color: rgb(0, 2, 24);
}

a.btn-primary:active {
    background-color: rgba(231, 235, 242, 0);
    color: rgb(0, 2, 24);
}

/* Outline Button (Login) */
a.btn-outline {
    color: rgb(0, 2, 24);
}

a.btn-outline:hover {
    color: rgba(0, 2, 24, 0.48);
}

/* ===============================
   LanguageSwitcher
=================================*/
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .arrow {
    font-size: 0.8rem;
    vertical-align: middle;
    transition: transform 0.15s ease-in-out;
}

.language-dropdown .dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    min-width: calc(100% - 2px);
    white-space: nowrap;
    right: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f7fbfe;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 100;
}

.language-dropdown .dropdown-list li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #111827;
    border-radius: 0;
    transition: background 0.15s ease-in-out;
}

.language-dropdown .dropdown-list li a:hover {
    background-color: #f3f4f6;
}

/* ===============================
   Footer
=================================*/
footer {
    margin-top: auto;
}

.site-footer {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    background: rgb(9, 60, 109);
    color: rgb(231, 235, 242);
    font-family: "Satoshi Medium", sans-serif;
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
}

/* CTA inside Footer */
.site-footer .cta-section {
    text-align: center;
}

.site-footer .cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.site-footer .cta-heading h2 {
    font-family: "Satoshi Black", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.site-footer .cta-paragraph p {
    font-family: "Satoshi Medium", sans-serif;
    font-size: 1.25rem;
    color: rgb(101, 132, 188);
    margin-bottom: 2rem;
}

.site-footer .cta-button-wrap {
    display: flex;
    justify-content: center;
}

.site-footer .cta-button {
    background-color: rgb(231, 235, 242);
    color: #093c6d;
    border: 1px solid rgb(231, 235, 242);
    font-family: "Satoshi Black", sans-serif;
    font-weight: 600;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.site-footer .cta-button:hover {
    background-color: #093c6d;
    color: rgb(231, 235, 242);
}

.site-footer .cta-button:active {
    background-color: #093c6d;
}

.footer-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.footer-columns {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
}

.footer-col h4 {
    color: #e6eaf2;
    font-size: 16px;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 2rem 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #e6eaf2;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.site-bottom-section {
    color: rgb(101, 132, 188);
    border-top: 2px solid rgb(101, 132, 188, 0.3);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.9;
    font-size: 12px;
    width: 100%;
}

/* ===============================
   Main content
=================================*/
main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    font-size: 18px;
}

/* ===============================
   Home
=================================*/
.home-container {
    text-align: center;
}

.home-container header, .home-container section {
    padding: 2rem 0;
}

.home-container h1 {
    white-space: nowrap;
    font-size: 5rem;
    margin-bottom: 1rem;
}

.home-container h2 {
    font-size: 2.5rem;
}

.home-container h3 {
    font-size: 2rem;
    color: rgb(101, 132, 188);
    margin-bottom: 1rem;
}

.home-container .title-section .title-question {
    color: rgb(101, 132, 188);
}

.home-container .title-section .title-brand {
    color: rgb(8, 60, 109);
}

.home-container .intro-section h2 {
}

.home-container .intro-section p {
    margin-bottom: 1rem;
}

.home-container .intro-section a {
    color: #333;
}

.home-container .features-section h3 {
    color: rgb(8, 60, 109);
}

.home-container .features-section .features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.home-container .features-section .feature {
    color: #333;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.home-container .features-section .feature svg {
    color: #6584bc;
}

.home-container .features-section .feature:hover {
    transform: translateY(-5px);
}

.home-container .features-section .feature i {
    font-size: 3rem;
    color: #0077cc;
    margin-bottom: 15px;
}

.home-container .features-section .feature img {
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
}

.home-container .offer-section a {
    color: #333;
}

.home-container .cta-section p {
    margin-bottom: 2rem;
}

.home-container .cta-section a {
    text-transform: uppercase;
    font-family: "Satoshi Black", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.72px;
    white-space: nowrap;
    padding: 0.9rem 1rem;
    border-radius: 4px;
    background-color: #093c6d;
    color: #fff;
    border: 1px solid #093c6d;
    transition: all 0.2s ease-in-out;
}

.home-container .cta-section a:hover {
    color: rgb(0, 2, 24);
    border: 1px solid rgb(230, 234, 242);
    background-color: rgba(231, 235, 242, 0);
}

.home-container .cta-section a.active {
    color: rgb(0, 2, 24);
    border: 1px solid rgb(230, 234, 242);
    background-color: rgba(231, 235, 242, 0);
}

.home-container .cta-section a:focus {
    background-color: rgba(231, 235, 242);
}

/* ===============================
   Features
=================================*/
.features-list {
    margin: 2rem auto;
}

.features-list h1 {
    text-align: center;
    color: rgb(8, 60, 109);
    font-size: 5rem;
    margin-bottom: 1rem;
}

.features-list h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.features-list .features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.features-list .features-inner .feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list .features-inner .feature.reverse {
    direction: rtl;
}

.features-list .features-inner .feature.reverse > * {
    direction: ltr;
}

.features-list .features-inner .feature .feature-image img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 100%;
    height: auto;
}

.features-list .features-inner .feature .feature-content h2 {
    font-family: "Satoshi Black", sans-serif;
    font-size: 2.5rem;
    margin: 0;
    text-align: left;
}

.features-list .features-inner .feature .feature-content h3 {
    font-size: 2.5rem;
    color: rgb(101, 132, 188);
    margin: 0 0 1.5rem;
}

.features-list .features-inner .feature .feature-content p {
    font-size: 1.25rem;
    color: rgb(133, 134, 148);
    line-height: 1.6;
}

.features-list .features-inner .feature .feature-content a {
    display: block;
    margin-top: 1rem;
    color: rgb(101, 132, 188);
    font-weight: bold;
    text-decoration: none;
}

.feature .feature-header {
    margin: 2rem auto;
}

.feature .feature-header h1 {
    text-align: center;
    color: rgb(8, 60, 109);
    font-size: 5rem;
    margin-bottom: 1rem;
}

.feature .feature-header h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.feature .feature-header a {
    font-size: 1rem;
}

.feature  .feature-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #718096;
    margin: 2rem 0;
}

/* ===============================
   Pricing
=================================*/
.pricing {
    margin: 2rem auto;
}

.pricing h1 {
    text-align: center;
    color: rgb(8, 60, 109);
    font-size: 5rem;
    margin-bottom: 1rem;
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    max-width: 500px;
    margin: 3rem auto;
    color: rgb(8, 60, 109);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 3rem;
}

.pricing-card .price {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    line-height: 3rem;
    gap: 0.5rem;
    font-weight: 700;
}

.pricing-card .price .amount {
    white-space: nowrap;
    font-size: 3rem;
}

.pricing-card .price .period {
    white-space: nowrap;
    color: rgb(101, 132, 188);
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card .features li {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card .features li svg {
    color: rgb(101, 132, 188);
    height: 1.5rem;
    width: 1.5rem;
    min-height: 1.5rem;
    min-width: 1.5rem;
}

.pricing-card .promise {
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.pricing-card a {
    display: block;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.72px;
    padding: 0.9rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

/* ===============================
   Blog
=================================*/
.blog {
    margin: 2rem auto;
}

.blog h1 {
    text-align: center;
    color: rgb(8, 60, 109);
    font-size: 5rem;
    margin-bottom: 1rem;
}

.blog h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.blog .blog-grid .blog-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog .blog-grid .blog-card:hover {
    transform: translateY(-2px);
}

.blog .blog-grid .blog-card .blog-card-image {
    width: 100%;
    height: 250px;
}

.blog .blog-grid .blog-card .blog-card-content {
    padding: 20px;
}

.blog .blog-grid .blog-card .blog-card-title {
    margin: 0 0 0.5rem 0;
}

.blog .blog-grid .blog-card .blog-card-title {
    color: rgb(8, 60, 109);
}

.blog .blog-grid .blog-card .blog-card-description {
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.blog .blog-grid .blog-card .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.blog .blog-grid .blog-card .blog-card-readmore {
    font-weight: bold;
    color: rgb(101, 132, 188);
    text-decoration: none;
}

.blog .blog-grid .blog-card .blog-card-date {
    font-size: 0.875rem;
    color: #718096;
}

.blog-article {
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-article .blog-header {
    margin-bottom: 3rem;
}

.blog-article .blog-header h1 {
    text-align: center;
    color: rgb(8, 60, 109);
    font-size: 4rem;
    margin-bottom: 2rem;
}

.blog-article .blog-header .blog-image-container {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blog-article .blog-header .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* kein Verzerren */
    object-position: center;  /* sichtbarer Bildausschnitt */
}

.blog-article .blog-header .blog-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #718096;
    margin-bottom: 1rem;
}

.blog-article .blog-header .blog-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-article .blog-header .blog-tag {
    background: #edf2f7;
    color: #2d3748;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.blog-article .blog-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-article .blog-content h3 {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.blog-article .blog-content ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.blog-article .blog-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #718096;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ===============================
   FAQ
=================================*/
.faq {
    margin: 2rem auto;
    max-width: 800px;
}

.faq h1 {
    text-align: center;
    color: rgb(8, 60, 109);
    font-size: 5rem;
    margin-bottom: 1rem;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq .faq-item {
    background-color: rgb(231, 235, 242);
    border-radius: 4px;
    padding: 1rem;
    cursor: pointer;
}

.faq .faq-item .faq-item-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
}

.faq .faq-item .faq-item-toggle svg {
    stroke: rgba(0, 2, 24, 0.9);
    stroke-width: 2.5;
    stroke-linecap: round;
    vertical-align: middle;
}

.faq .faq-item .faq-item-toggle .bar {
    transform-origin: center;
    transition: transform 0.5s ease;
}

.faq .faq-item.open .faq-item-toggle .bar-vertical {
    transform: rotate(90deg);
}

.faq .faq-item .faq-item-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq .faq-item.open .faq-item-answer {
    max-height: 1200px;
    opacity: 1;
}

.faq .faq-item .faq-item-answer p {
    display: block;
    margin-top: 1rem;
}

/* ===============================
   GTC, Privacy, Imprint
=================================*/
.gtc, .privacy, .imprint {
    text-align: justify;
    margin: 2rem 0;
}

.gtc h1, .privacy h1, .imprint h1 {
    text-align: center;
}

.gtc .description, .privacy .description, .imprint .description {
    text-align: center;
    margin-bottom: 4rem;
}

.gtc h2, .privacy h2, .imprint h2 {
    margin-top: 2rem;
}

.gtc p, .privacy p, .imprint p {
    margin-bottom: 1rem;
}

.gtc ul, .privacy ul, .imprint ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

/* ===============================
   Cookie Banner
=================================*/
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #333;
    box-shadow: 0 32px 68px rgba(0,0,0,0.3);
    padding: 3rem 1rem 3rem 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
}

.consent-banner div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.consent-banner a {
    color: rgb(101, 132, 188);
    margin-bottom: 1rem;
}

.consent-banner a.btn {
    text-transform: uppercase;
    font-family: "Satoshi Black", sans-serif;
    font-weight: 600;
    letter-spacing: 0.72px;
    white-space: nowrap;
    color: #fff;
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 4px;
    border: 1px solid #f7fbfe;
    transition: all 0.2s ease-in-out;
}

.consent-banner a.btn:hover {
    color: rgb(0, 2, 24);
    border: 1px solid rgb(230, 234, 242);
    background-color: rgba(231, 235, 242, 0);
}

.consent-banner a.btn:active {
    color: rgb(0, 2, 24);
    border: 1px solid rgb(230, 234, 242);
    background-color: rgba(231, 235, 242, 0);
}

.consent-banner a.btn:focus {
    background-color: rgba(231, 235, 242);
}

.consent-banner a.btn-primary {
    background-color: #093c6d;
    color: #fff;
    border: 1px solid #093c6d;
}

.consent-banner a.btn-primary:hover {
    background-color: rgba(231, 235, 242, 0);
    color: rgb(0, 2, 24);
}

.consent-banner a.btn-primary:active {
    background-color: rgba(231, 235, 242, 0);
    color: rgb(0, 2, 24);
}

/* Outline Button (Login) */
.consent-banner a.btn-outline {
    color: rgb(0, 2, 24);
}

.consent-banner a.btn-outline:hover {
    color: rgba(0, 2, 24, 0.48);
}

.consent-banner input {
    transform: scale(1.7);
    margin: 10px;
    accent-color:#093c6d;
}

/* Large Desktop / Wide Screens */
@media (min-width: 1536px) {

}

/* Desktop (default styles you already have) */
@media (max-width: 1535px) {

}

/* Small Desktop / Laptop */
@media (max-width: 1279px) {
    .navbar {
        padding: 1.5rem 1rem;
    }
    .navbar-inner {
        gap: 1.9rem;
    }
    a.logo img {
        width: 120px;
    }
    .nav-links a,
    .nav-actions a {
        padding: 0.6rem 0.6rem;
    }
    .nav-links,
    .nav-actions {
        gap: 0.5rem;
    }

}

/* Tablet (Portrait & Landscape) */
@media (max-width: 1023px) {
    .navbar-inner {
        display: none;
    }
    .navbar-tablet {
        display: flex;
    }
    .navbar-tablet.open .nav-menu {
        display: flex;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }
    .home-container .title-section h1,
    .features-list h1,
    .feature .feature-header h1,
    .pricing h1,
    .faq h1,
    .blog h1 {
        font-size: 4rem;
    }

    .features-list .features-inner .feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-list .features-inner .feature.reverse {
        direction: initial;
    }

    .features-list .features-inner .feature.reverse > * {
        direction: initial;
    }
}

/* Large Mobile / Small Tablet */
@media (max-width: 767px) {
    .navbar-inner {
        display: none;
    }
    .navbar-tablet {
        display: flex;
    }
    .navbar-tablet.open .nav-menu {
        display: flex;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }
    .home-container .title-section h1,
    .features-list h1,
    .feature .feature-header h1,
    .pricing h1,
    .faq h1,
    .blog h1 {
        font-size: 3rem;
        white-space: initial;
    }
}

/* Mobile */
@media (max-width: 599px) {
    .navbar-inner {
        display: none;
    }
    .navbar-tablet {
        display: none;
    }
    .navbar-mobile {
        display: flex;
    }
    .navbar-mobile.open .nav-menu {
        display: flex;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-menu {
        gap: 1rem;
    }
    .nav-actions {
        border-bottom: 1px solid rgba(0, 2, 24, 0.48);
        padding-bottom: 1rem;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }
    .footer-columns {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0;
    }
    .home-container .title-section h1,
    .features-list h1,
    .feature .feature-header h1,
    .pricing h1,
    .faq h1,
    .blog h1 {
        font-size: 3rem;
    }
    .home-container .title-section h2,
    .features-list h2,
    .feature .feature-header h2,
    .pricing h2,
    .faq h2,
    .blog h2 {
        font-size: 2rem;
    }
    .blog-article .blog-header h1 {
        font-size: 3rem;
    }
    .pricing-card {
        padding: 1rem;
    }
}
