:root {
    --biays-primary: #00a8cc;
    --biays-secondary: #20c997;
    --biays-dark: #004d40;
    --biays-light: #eefbfc;
    --biays-ink: #15343a;
    --biays-gradient: linear-gradient(135deg, #00a8cc 0%, #20c997 100%);
    --biays-gradient-dark: linear-gradient(135deg, rgba(0, 77, 64, 0.96) 0%, rgba(0, 168, 204, 0.94) 100%);
    --shadow-soft: 0 20px 50px rgba(0, 77, 64, 0.12);
    --shadow-strong: 0 30px 80px rgba(0, 77, 64, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--biays-ink);
    background:
        radial-gradient(circle at top left, rgba(0, 168, 204, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(32, 201, 151, 0.14), transparent 30%),
        #f8fcfd;
    overflow-x: hidden;
}

a {
    transition: all 0.3s ease;
}

.main-nav {
    padding: 1rem 0;
    background: rgba(0, 61, 64, 0.45);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand-badge {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #c5fff0 100%);
    color: var(--biays-primary);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(0, 168, 204, 0.24);
}

.site-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 255, 249, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 8px;
    box-shadow: 0 14px 30px rgba(0, 77, 64, 0.22);
}

.footer-logo {
    width: 56px;
    height: 56px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.navbar .nav-link.active {
    color: #ffffff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ffffff;
}

.btn-primary {
    background: var(--biays-gradient);
    border: none;
    box-shadow: 0 14px 35px rgba(0, 168, 204, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--biays-gradient);
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(0, 168, 204, 0.35);
}

.btn-outline-primary {
    color: var(--biays-primary);
    border-color: rgba(0, 168, 204, 0.28);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff;
    background: var(--biays-gradient);
    border-color: transparent;
}

.hero-section {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--biays-gradient-dark);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 45%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 0 35%),
        radial-gradient(circle at 80% 30%, rgba(32, 201, 151, 0.28), transparent 0 28%);
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-tag,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-tag {
    color: var(--biays-primary);
    background: rgba(0, 168, 204, 0.10);
}

.section-tag-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.hero-section h1 {
    line-height: 1.1;
    color: #fff;
}

.hero-section h1 span {
    color: #b8fff2;
}

.hero-text {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-stats .stat-card {
    height: 100%;
    padding: 1.25rem 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-stats strong {
    display: block;
    font-size: 1.4rem;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero-showcase {
    position: relative;
    min-height: 540px;
}

.dashboard-window {
    position: relative;
    border-radius: 1.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-strong);
}

.floating-card {
    animation: floatCard 6s ease-in-out infinite;
}

.window-top {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.window-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c6d8dc;
}

.window-top span:nth-child(1) {
    background: #ff716d;
}

.window-top span:nth-child(2) {
    background: #ffd56d;
}

.window-top span:nth-child(3) {
    background: #74e2a1;
}

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

.mini-panel {
    padding: 1.2rem;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 168, 204, 0.12);
    box-shadow: 0 14px 30px rgba(19, 52, 58, 0.08);
}

.mini-panel small,
.admin-widget small {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--biays-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mini-panel strong,
.admin-widget strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.08rem;
}

.mini-panel p,
.admin-widget p {
    margin: 0;
    color: #5d777c;
    line-height: 1.6;
}

.panel-highlight {
    background: var(--biays-gradient);
    color: #fff;
}

.panel-highlight small,
.panel-highlight p {
    color: rgba(255, 255, 255, 0.86);
}

.floating-note {
    position: absolute;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    color: var(--biays-dark);
    font-weight: 700;
}

.floating-note i {
    color: var(--biays-primary);
    margin-right: 0.45rem;
}

.note-top {
    top: 4%;
    right: -2%;
    animation: floatNote 4s ease-in-out infinite;
}

.note-bottom {
    left: -2%;
    bottom: -6%;
    animation: floatNote 5s ease-in-out infinite reverse;
}

.section-space {
    padding: 6rem 0;
    position: relative;
}

.page-hero {
    padding: 11rem 0 4rem;
    background:
        linear-gradient(180deg, rgba(0, 77, 64, 0.95), rgba(0, 168, 204, 0.90)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 45%);
    color: #fff;
}

.page-hero h1 {
    max-width: 820px;
    margin: 1rem 0 1rem;
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    font-weight: 800;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
    font-size: 1.06rem;
}

.section-soft {
    background: linear-gradient(180deg, rgba(0, 168, 204, 0.04), rgba(32, 201, 151, 0.06));
}

.section-gradient {
    background: var(--biays-gradient-dark);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 3rem;
}

.section-heading h2,
.contact-box h2,
.stack-card h3,
.board-card h3 {
    color: #123136;
    font-weight: 800;
}

.section-heading p,
.content-board p,
.contact-box p,
.stack-card li,
.content-line {
    color: #5b757b;
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 168, 204, 0.10);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(0, 77, 64, 0.16);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 1.25rem;
    background: rgba(0, 168, 204, 0.10);
    color: var(--biays-primary);
    font-size: 1.4rem;
}

.feature-card h3,
.board-card h3,
.stack-card h3,
.admin-shell strong {
    font-size: 1.25rem;
}

.content-list {
    display: grid;
    gap: 1rem;
}

.content-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(0, 77, 64, 0.08);
}

.content-line i {
    color: var(--biays-secondary);
}

.content-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.board-card,
.stack-card,
.contact-box,
.admin-shell,
.custom-modal,
.solution-card,
.form-shell,
.legal-shell {
    border: 1px solid rgba(0, 168, 204, 0.10);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.board-card {
    padding: 1.5rem;
}

.solution-card,
.form-shell,
.legal-shell {
    padding: 2rem;
}

.pill {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(32, 201, 151, 0.12);
    color: var(--biays-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-shell {
    padding: 1.5rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 168, 204, 0.12);
}

.admin-topbar p {
    margin: 0.35rem 0 0;
    color: #5b757b;
}

.admin-widget {
    height: 100%;
    padding: 1.25rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4fcfd 100%);
    border: 1px solid rgba(0, 168, 204, 0.08);
}

.stack-card {
    height: 100%;
    padding: 1.8rem;
}

.stack-card-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.stack-card-dark h3,
.stack-card-dark li {
    color: #fff;
}

.stack-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
}

.stack-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-start;
}

.sector-tags span {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-box {
    padding: 2.2rem;
}

.home-bottom-cta {
    position: relative;
    overflow: hidden;
    padding: 3.2rem;
    border-radius: 2rem;
    background: var(--biays-gradient-dark);
    box-shadow: var(--shadow-strong);
}

.home-bottom-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 0 28%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 42%);
    pointer-events: none;
}

.home-bottom-cta > .row {
    position: relative;
    z-index: 1;
    --bs-gutter-x: 2.75rem;
}

.home-bottom-cta h2 {
    margin: 1rem 0;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
}

.home-bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    max-width: 720px;
}

.home-bottom-payment-trust {
    margin-top: 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.home-bottom-payment-trust strong {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
}

.home-bottom-payment-cards {
    display: grid;
    grid-template-columns: minmax(280px, 1.55fr) minmax(180px, 0.95fr) minmax(220px, 1fr);
    gap: 0.95rem;
    width: 100%;
    max-width: 860px;
}

.payment-card {
    min-height: 98px;
    border-radius: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    overflow: hidden;
}

.payment-card-light {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.payment-card-glass {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.payment-card img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.payment-card-iyzico {
    justify-content: flex-start;
    padding: 1rem 1.2rem;
}

.payment-card-visa {
    padding-inline: 1.6rem;
}

.payment-card-mastercard {
    padding-inline: 1rem;
}

.payment-card-iyzico img {
    width: 286px;
    max-width: 100%;
}

.payment-card-visa img {
    width: 150px;
    max-width: 100%;
}

.payment-card-mastercard img {
    width: 176px;
    max-width: 100%;
}

.home-bottom-payment-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.home-bottom-payment-badges .payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 56px;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-bottom-payment-badges .payment-badge i {
    font-size: 1rem;
    color: #d9f8ff;
}

.home-bottom-payment-badges .payment-badge-secure {
    min-width: 160px;
}

.home-bottom-payment-badges .payment-badge-ssl {
    min-width: 182px;
}

.home-bottom-cta-card {
    padding: 1.6rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.content-line-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.content-line-light span {
    color: rgba(255, 255, 255, 0.88);
}

.content-line-light i {
    color: #b8fff2;
}

.home-bottom-contracts {
    margin-top: 1.5rem;
}

.home-bottom-contracts strong {
    display: block;
    margin-bottom: 0.9rem;
    color: #fff;
    font-size: 1rem;
}

.home-bottom-contract-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.home-bottom-contract-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.68rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.94rem;
    letter-spacing: 0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-bottom-contract-list a:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-1px);
}

.legal-modal .modal-content,
.modal-content.legal-modal {
    border: none;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.legal-modal .modal-header {
    padding: 1.2rem 1.6rem;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.96), rgba(0, 168, 204, 0.92));
    color: #fff;
    border-bottom: none;
}

.legal-modal .modal-title {
    font-weight: 700;
}

.legal-modal .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

.legal-modal .modal-body {
    padding: 1.6rem;
    background: #f9fcfd;
}

.legal-shell-modal p {
    margin-bottom: 1rem;
}

.legal-shell-modal p:last-child {
    margin-bottom: 0;
}

.legal-modal .modal-footer {
    padding: 1rem 1.6rem 1.4rem;
    background: #f9fcfd;
    border-top: none;
    gap: 0.8rem;
}

.home-bottom-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.35rem;
    margin-top: 1.85rem;
}

.home-bottom-cta-actions .btn {
    min-width: 210px;
}

.site-footer {
    padding: 4rem 0 2.2rem;
    background: #0f262b;
    color: rgba(255, 255, 255, 0.70);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand-link small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
}

.footer-brand p,
.footer-text {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.site-footer h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.05rem;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a,
.footer-link-cta {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.footer-list a:hover,
.footer-link-cta:hover {
    color: #fff;
}

.footer-contact-list span {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact-list strong,
.footer-contact-list a {
    color: #fff;
    font-weight: 600;
}

.compact-contact span {
    color: #5b757b;
}

.compact-contact strong,
.compact-contact a {
    color: #123136;
}

.footer-bottom {
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-links a {
    color: #527278;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--biays-primary);
}

.custom-modal {
    overflow: hidden;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: var(--biays-primary);
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover {
    color: var(--biays-dark);
}

.custom-modal .modal-header,
.custom-modal .modal-body {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

.demo-form .form-control {
    border-radius: 1rem;
    border-color: rgba(0, 168, 204, 0.16);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.demo-form .form-control:focus {
    border-color: rgba(0, 168, 204, 0.40);
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 204, 0.12);
}

.demo-form textarea.form-control {
    min-height: 140px;
}

.compact-contact li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 168, 204, 0.10);
}

.compact-contact li:last-child {
    border-bottom: none;
}

.legal-shell h2 {
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    font-size: 1.25rem;
    color: #123136;
}

.legal-shell h2:first-child {
    margin-top: 0;
}

.legal-shell p {
    margin-bottom: 0;
    color: #5b757b;
    line-height: 1.8;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

.orb-1 {
    top: 7%;
    left: -4rem;
    width: 180px;
    height: 180px;
    background: rgba(0, 168, 204, 0.18);
    animation: orbMove 12s ease-in-out infinite;
}

.orb-2 {
    top: 48%;
    right: -4rem;
    width: 240px;
    height: 240px;
    background: rgba(32, 201, 151, 0.16);
    animation: orbMove 15s ease-in-out infinite reverse;
}

.orb-3 {
    bottom: 10%;
    left: 16%;
    width: 120px;
    height: 120px;
    background: rgba(0, 77, 64, 0.14);
    animation: orbMove 10s ease-in-out infinite;
}

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes orbMove {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(30px, -20px, 0) scale(1.08);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 8.5rem;
        min-height: auto;
    }

    .hero-showcase {
        min-height: auto;
    }

    .note-top,
    .note-bottom {
        position: static;
        display: inline-flex;
        margin-top: 1rem;
    }

    .content-board,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-bottom-cta {
        padding: 2.4rem;
    }

    .home-bottom-payment-cards {
        grid-template-columns: 1fr 1fr;
    }

    .payment-card-mastercard {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 4.5rem 0;
    }

    .hero-section h1 {
        font-size: 2.35rem;
    }

    .contact-box,
    .stack-card,
    .admin-shell,
    .feature-card,
    .form-shell,
    .legal-shell,
    .solution-card {
        padding: 1.4rem;
    }

    .brand-badge {
        width: 40px;
        height: 40px;
    }

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

    .home-bottom-payment-cards {
        grid-template-columns: 1fr;
    }

    .payment-card-mastercard {
        grid-column: auto;
    }

    .home-bottom-payment-badges .payment-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .home-bottom-cta-actions .btn {
        width: 100%;
        min-width: 0;
    }
}
