:root {
    --navy: #082740;
    --amber: #ffa801;
    --sky: #40b9eb;
    --red: #ff0143;
    --dark: #061e30;
    --light: #f0f6fb;
    --white: #ffffff;
    --gray: #6c7a89;
    --border: #e2eaf2;
    --qs-shadow: 0 12px 40px rgba(8, 39, 64, .22);
    --qs-easing: cubic-bezier(.34, 1.56, .64, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(8, 39, 64, 0.97);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1030;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(8, 39, 64, 0.3);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--white) !important;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-brand span {
    color: var(--amber);
}

.navbar-brand small {
    font-size: 0.5rem;
    font-weight: 400;
    display: block;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px !important;
    border-radius: 7px;
    transition: all 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--amber) !important;
    background: rgba(255, 168, 1, 0.08);
}

.dropdown-menu {
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    min-width: 230px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.845rem;
    padding: 9px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 168, 1, 0.12);
    color: var(--amber);
}

.btn-b2b {
    background: linear-gradient(135deg, var(--amber), #ff8c00);
    color: var(--navy) !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 20px !important;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-b2b:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 168, 1, 0.4);
    color: var(--navy) !important;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.82rem;
    padding: 6px 14px !important;
}

/* ── HAMBURGER (mobile) ── */
.navbar-toggler {
    border: none !important;
    padding: 4px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── OFFCANVAS (mobile menu) ── */
.offcanvas {
    width: 80% !important;
    max-width: 340px;
    background: var(--dark);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
}

.offcanvas-title {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
}

.offcanvas-title span {
    color: var(--amber);
}

.btn-close-white {
    filter: invert(1);
    opacity: 0.7;
}

.offcanvas-body {
    padding: 20px 16px;
    overflow-y: auto;
}

.offcanvas .nav-item-oc {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas .nav-link-oc {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
}

.offcanvas .nav-link-oc:hover {
    background: rgba(255, 168, 1, 0.08);
    color: var(--amber);
}

.offcanvas .nav-link-oc i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--sky);
}

.offcanvas .oc-submenu {
    padding: 4px 0 4px 44px;
}

.offcanvas .oc-submenu a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.845rem;
    padding: 7px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

.offcanvas .oc-submenu a:hover {
    color: var(--amber);
}

.offcanvas-footer {
    padding: 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.oc-lang-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.oc-lang-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.oc-lang-btn:hover,
.oc-lang-btn.active {
    background: rgba(255, 168, 1, 0.15);
    border-color: rgba(255, 168, 1, 0.3);
    color: var(--amber);
}

.oc-b2b {
    display: block;
    background: linear-gradient(135deg, var(--amber), #ff8c00);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
}

/* Support bar */
.support-bar {
    background: rgba(64, 185, 235, 0.08);
    border-bottom: 1px solid rgba(64, 185, 235, 0.15);
    padding: 7px 0;
    font-size: 0.78rem;
}

.support-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.support-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
}

.support-badge .dot {
    width: 7px;
    height: 7px;
    background: #40ff80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #0d4060 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(64, 185, 235, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 168, 1, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 168, 1, 0.15);
    border: 1px solid rgba(255, 168, 1, 0.3);
    color: var(--amber);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p.lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.btn-primary-at {
    background: linear-gradient(135deg, var(--amber), #ff8c00);
    color: var(--navy);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary-at:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 168, 1, 0.4);
    color: var(--navy);
}

.btn-outline-at {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-at:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.hero-stat-card .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--amber);
}

.hero-stat-card .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── STATS ── */
.stats-section {
    background: var(--navy);
    padding: 70px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--amber);
    display: block;
    line-height: 1;
}

.stat-item .lbl {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── SECTIONS ── */
section {
    padding: 90px 0;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sky);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 580px;
}

/* ── PRODUCT CARDS ── */
.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--amber));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(8, 39, 64, 0.1);
    border-color: transparent;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(64, 185, 235, 0.12), rgba(8, 39, 64, 0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.product-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
}

.product-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    transition: color 0.2s;
}

.product-link:hover {
    color: var(--sky);
}

/* ── AWARIFY ── */
.awarify-section {
    background: linear-gradient(135deg, var(--navy), var(--dark));
    color: white;
}

.awarify-badge {
    display: inline-block;
    background: rgba(255, 1, 67, 0.2);
    border: 1px solid rgba(255, 1, 67, 0.4);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.awarify-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
}

.awarify-feature i {
    color: var(--sky);
    font-size: 1.1rem;
}

.awarify-logo-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.awarify-logo-box .brand-name {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
}

.awarify-logo-box .brand-name span {
    color: var(--amber);
}

/* ── TESTIMONIALS ── */
.testi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
}

.testi-card .stars {
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testi-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--sky), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.testi-role {
    font-size: 0.78rem;
    color: var(--gray);
}

/* ── BLOG ── */
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
    background: white;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(8, 39, 64, 0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light), var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-body {
    padding: 24px;
}

.blog-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sky);
    margin-bottom: 10px;
}

.blog-card h5 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--gray);
}

/* ── PARTNERS ── */
.partner-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.partner-card:hover {
    box-shadow: 0 12px 36px rgba(8, 39, 64, 0.08);
    transform: translateY(-3px);
    border-color: var(--sky);
}

.partner-logo {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: grayscale(0.4);
    transition: filter 0.3s;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0);
}

.partner-logo-placeholder {
    height: 60px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray);
}

.partner-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
}

.tag-supplier {
    background: rgba(64, 185, 235, 0.1);
    color: var(--sky);
}

.tag-technology {
    background: rgba(8, 39, 64, 0.08);
    color: var(--navy);
}

.tag-payment {
    background: rgba(255, 168, 1, 0.1);
    color: #cc7a00;
}

.tag-association {
    background: rgba(255, 1, 67, 0.08);
    color: var(--red);
}

.tag-other {
    background: rgba(108, 122, 137, 0.1);
    color: var(--gray);
}

/* ── FORMS ── */
.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
    color: var(--navy);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(64, 185, 235, 0.12);
}

.form-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.btn-sm-at {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-sm-at.primary {
    background: var(--navy);
    color: white;
}

.btn-sm-at.primary:hover {
    background: var(--sky);
    color: white;
}

.btn-sm-at.outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--navy);
}

.btn-sm-at.outline:hover {
    border-color: var(--sky);
    color: var(--sky);
}

.alert-at {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    display: none;
}

.alert-at.success {
    background: rgba(64, 185, 235, 0.1);
    border: 1px solid rgba(64, 185, 235, 0.3);
    color: #0a6e99;
}

.alert-at.error {
    background: rgba(255, 1, 67, 0.08);
    border: 1px solid rgba(255, 1, 67, 0.25);
    color: var(--red);
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--dark));
    padding: 120px 0 70px;
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.breadcrumb-at {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.breadcrumb-at a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.breadcrumb-at a:hover {
    color: var(--amber);
}

.breadcrumb-at .sep {
    margin: 0 8px;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 30px;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-brand span {
    color: var(--amber);
}

.footer-brand img {
    max-height: 50px;
}

footer h6 {
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 28px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.9rem;
    margin-right: 8px;
    margin-bottom: 0;
    transition: all 0.2s;
}

.social-links a:hover {
    background: rgba(255, 168, 1, 0.15);
    border-color: rgba(255, 168, 1, 0.3);
    color: var(--amber) !important;
}

/* ── COOKIE BANNER ── */
#cookieBanner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, calc(100% - 32px));
    background: rgba(6, 30, 48, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1
    }
}

#cookieBanner p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.btn-cookie-accept {
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    white-space: nowrap;
    cursor: pointer;
}

.btn-cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    white-space: nowrap;
    cursor: pointer;
}

/* ── UTILS ── */
.bg-light-at {
    background: var(--light);
}

.text-sky {
    color: var(--sky) !important;
}

.text-amber {
    color: var(--amber) !important;
}

.text-navy {
    color: var(--navy) !important;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 50px 0 50px;
    }

    section {
        padding: 60px 0;
    }

    .hero-stat-card .number {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .stat-item .num {
        font-size: 1.4rem;
        font-weight: 700;
    }
}

@media (max-width: 575px) {
    #cookieBanner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }
}




/* Widget kapsayıcı */
.qs-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Panel */
.qs-panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--qs-shadow);
    border: 1px solid rgba(8, 39, 64, .07);
    overflow: hidden;
    opacity: 0;
    transform: scale(.88) translateY(16px);
    transform-origin: bottom right;
    pointer-events: none;
    transition: visibility 0s, opacity .28s ease, transform .32s var(--qs-easing);
    visibility: hidden;
    height: 0;
    width: 0;
}

.qs-panel.qs-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    height: auto;
    width: 320px;
}

/* Panel header */
.qs-panel-header {
    background: linear-gradient(135deg, var(--navy) 0%, #0d4060 100%);
    padding: 22px 22px 18px;
}

.qs-agent-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

/* Agent avatar */
.qs-agent-avatar {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.qs-agent-avatar svg {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
    border: 2px solid rgba(255, 255, 255, .15);
}

.qs-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    background: #40ff80;
    border-radius: 50%;
    border: 2.5px solid #fff;
    animation: qsPulse 2s infinite;
}

@keyframes qsPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(64, 255, 128, .5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(64, 255, 128, 0);
    }
}

.qs-agent-info {
    flex: 1;
    min-width: 0;
}

.qs-agent-info strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.qs-agent-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .73rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 3px;
}

.qs-subtitle {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    margin: 0;
    line-height: 1.5;
}

.qs-live-pulse {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #40ff80;
    border-radius: 50%;
    flex-shrink: 0;
    animation: qsBlink 1.6s infinite;
}

@keyframes qsBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

/* Kanal listesi */
.qs-channels {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qs-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid transparent;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: background .18s, border-color .18s, transform .15s;
}

.qs-channel:hover {
    background: var(--_ch-light, rgba(8, 39, 64, .04));
    border-color: var(--_ch-border, rgba(8, 39, 64, .1));
    transform: translateX(3px);
}

.qs-channel:active {
    transform: translateX(1px) scale(.98);
}

/* İkon dairesi */
.qs-ch-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--_ch-bg, #f0f6fb);
    color: var(--_ch-color, var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.qs-ch-icon svg {
    width: 20px;
    height: 20px;
}

/* Metin */
.qs-ch-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.qs-ch-body strong {
    font-size: .84rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.qs-ch-body em {
    font-style: normal;
    font-size: .73rem;
    color: #6c7a89;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ok */
.qs-ch-arrow {
    color: #c0cdd8;
    font-size: .7rem;
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}

.qs-channel:hover .qs-ch-arrow {
    color: var(--_ch-color, var(--navy));
    transform: translateX(3px);
}

/* Tawk.to online satırı */
.qs-tawk-online {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Kanal renk temaları */
.qs-ch-phone {
    --_ch-bg: #dff4fb;
    --_ch-color: #0a91cc;
    --_ch-light: rgba(64, 185, 235, .06);
    --_ch-border: rgba(64, 185, 235, .2);
}

.qs-ch-whatsapp {
    --_ch-bg: #d6f7e3;
    --_ch-color: #128c47;
    --_ch-light: rgba(37, 211, 102, .06);
    --_ch-border: rgba(37, 211, 102, .2);
}

.qs-ch-telegram {
    --_ch-bg: #d6edfb;
    --_ch-color: #0088cc;
    --_ch-light: rgba(42, 165, 224, .06);
    --_ch-border: rgba(42, 165, 224, .2);
}

.qs-ch-tawk {
    --_ch-bg: #fff0d4;
    --_ch-color: #cc7a00;
    --_ch-light: rgba(255, 168, 1, .06);
    --_ch-border: rgba(255, 168, 1, .25);
}

.qs-ch-email {
    --_ch-bg: #edf2f7;
    --_ch-color: var(--navy);
    --_ch-light: rgba(8, 39, 64, .04);
    --_ch-border: rgba(8, 39, 64, .1);
}

/* FAB butonu */
.qs-toggle {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d4060, var(--navy));
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(8, 39, 64, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: box-shadow .25s, transform .2s, background .3s;
    flex-shrink: 0;
}

.qs-toggle:hover {
    box-shadow: 0 8px 32px rgba(8, 39, 64, .45);
    transform: scale(1.07);
}

.qs-toggle:active {
    transform: scale(.96);
}

.qs-toggle:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 3px;
}

.qs-toggle.qs-open {
    background: linear-gradient(135deg, #cc1a3a, var(--red));
}

/* Dönen ikonlar */
.qs-rotating-icons {
    position: relative;
    width: 24px;
    height: 24px;
    transition: opacity .2s, transform .2s;
}

.qs-ri {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    opacity: 0;
    transform: scale(.6) rotate(-20deg);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.qs-ri svg {
    width: 22px;
    height: 22px;
}

.qs-ri.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Kapat X */
.qs-close-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0;
    transform: rotate(-90deg) scale(.5);
    transition: opacity .25s, transform .3s var(--qs-easing);
    pointer-events: none;
}

.qs-toggle.qs-open .qs-rotating-icons {
    opacity: 0;
    transform: scale(.5) rotate(20deg);
}

.qs-toggle.qs-open .qs-close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Online badge dot */
.qs-badge-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    background: #40ff80;
    border-radius: 50%;
    border: 2.5px solid #fff;
    animation: qsPulse 2s infinite;
    transition: opacity .25s;
}

.qs-toggle.qs-open .qs-badge-dot {
    opacity: 0;
}

@media (max-width: 480px) {
    .qs-widget {
        bottom: 18px;
        right: 16px;
    }

    .qs-panel.qs-open {
        width: calc(100vw - 32px);
    }

    .qs-toggle {
        width: 54px;
        height: 54px;
    }
}