: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;
}*/

/* ── HERO ── */
.hero {
    background: linear-gradient(160deg, #f0f8ff 0%, #e8f4fb 50%, #fef9ee 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.13) 0%, transparent 65%);
    top:-200px; right:-150px; border-radius:50%;
}
.hero::after {
    content:''; position:absolute; width:500px; height:500px;
    background: radial-gradient(circle, rgba(255,168,1,0.1) 0%, transparent 65%);
    bottom:-150px; left:-100px; border-radius:50%;
}
/* Sağ alt dekoratif daire */
.hero .hero-deco {
    position:absolute; width:420px; height:420px; border-radius:50%;
    background: radial-gradient(circle, rgba(8,39,64,0.04) 0%, transparent 70%);
    bottom:-80px; right:10%; pointer-events:none;
}
.hero-content { position:relative; z-index:2; }
.hero-badge { display:inline-block; background:rgba(255,168,1,0.12); border:1px solid rgba(255,168,1,0.35); color:#c47900; font-size:0.8rem; font-weight:700; 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:var(--navy); line-height:1.15; margin-bottom:20px; letter-spacing:-1px; }
.hero p.lead { font-size:1.05rem; color:#4a6070; 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; cursor:pointer; }
.btn-primary-at:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(255,168,1,0.35); color:var(--navy); }
.btn-outline-at { border:2px solid rgba(8,39,64,0.2); color:var(--navy); font-weight:600; padding:13px 32px; border-radius:50px; font-size:0.95rem; text-decoration:none; display:inline-block; transition:all 0.3s; background:rgba(255,255,255,0.6); }
.btn-outline-at:hover { border-color:var(--navy); background:white; color:var(--navy); box-shadow:0 6px 20px rgba(8,39,64,0.1); }
/* Sağ taraf stat kartı */
.hero-card { background:white; border:1px solid rgba(8,39,64,0.08); border-radius:24px; padding:28px; box-shadow:0 20px 60px rgba(8,39,64,0.08); position:relative; z-index:2; }
.hero-stat-card { background:#f7fafd; border:1px solid rgba(8,39,64,0.07); border-radius:16px; padding:20px 24px; margin-bottom:0; transition:all 0.25s; }
.hero-stat-card:hover { background:white; box-shadow:0 6px 20px rgba(8,39,64,0.07); transform:translateY(-2px); }
.hero-stat-card .number { font-size:2rem; font-weight:800; color:var(--navy); }
.hero-stat-card .label { font-size:0.75rem; color:#7a8fa0; text-transform:uppercase; letter-spacing:1px; margin-top:2px; }

/* ── 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;
    }
}








/* MICE CTA + product body stilleri */

/* Ürün sayfası gövde içeriği */
.product-body { font-size:.975rem; line-height:1.85; color:#2c3a47; }
.product-body h3 { font-size:1.4rem; font-weight:800; color:var(--navy); margin:0 0 16px; }
.product-body h4 { font-size:1.05rem; font-weight:700; color:var(--navy); margin:28px 0 10px; }
.product-body p  { margin-bottom:14px; }
.product-body ul { padding-left:0; list-style:none; margin-bottom:20px; }
.product-body ul li {
    position:relative; padding-left:20px; margin-bottom:8px;
    font-size:.9rem; color:#3a4a58;
}
.product-body ul li::before {
    content:'✓'; position:absolute; left:0;
    color:var(--sky); font-weight:700;
}

/* Özellikler kutusu */
.product-features-box {
    background:var(--light); border-radius:20px; padding:28px; margin-bottom:20px;
}
.product-features-box h6 { font-weight:700; margin-bottom:18px; color:var(--navy); }
.pf-item { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.pf-check {
    width:26px; height:26px; background:var(--sky); border-radius:50%;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.pf-check i { color:#fff; font-size:.65rem; }
.pf-item span { font-size:.875rem; }

/* Standart başvuru kutusu */
.product-apply-box {
    background:white; border:2px solid var(--navy); border-radius:20px; padding:28px;
}
.product-apply-box h6 { font-weight:700; margin-bottom:4px; color:var(--navy); }
.product-apply-box > p { font-size:.82rem; color:var(--gray); margin-bottom:20px; }

/* ── MICE Teklif CTA kutusu ── */
.mice-quote-box {
    background: linear-gradient(145deg, #082740, #0d4060);
    border-radius:20px; padding:28px;
    box-shadow: 0 12px 40px rgba(8,39,64,.2);
}
.mqb-header {
    display:flex; align-items:flex-start; gap:14px; margin-bottom:20px;
}
.mqb-icon {
    width:48px; height:48px; background:rgba(255,168,1,.18); border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    color:var(--amber); font-size:1.2rem; flex-shrink:0;
}
.mqb-header strong {
    display:block; font-size:.95rem; font-weight:800; color:#fff; line-height:1.3;
}
.mqb-header span {
    display:block; font-size:.78rem; color:rgba(255,255,255,.6); margin-top:4px; line-height:1.5;
}
.mqb-perks {
    list-style:none; padding:0; margin:0 0 22px; border-top:1px solid rgba(255,255,255,.08); padding-top:18px;
}
.mqb-perks li {
    font-size:.8rem; color:rgba(255,255,255,.75);
    padding:6px 0; display:flex; align-items:flex-start; gap:8px; line-height:1.5;
}
.mqb-perks li i { color:var(--amber); flex-shrink:0; margin-top:3px; }
.mqb-btn {
    display:block; text-align:center; text-decoration:none;
    background:linear-gradient(135deg,var(--amber),#ff8c00);
    color:var(--navy); font-weight:800; font-size:.92rem;
    padding:14px 24px; border-radius:50px;
    transition:all .25s; box-shadow:0 6px 20px rgba(255,168,1,.3);
}
.mqb-btn:hover {
    transform:translateY(-2px); box-shadow:0 10px 30px rgba(255,168,1,.45);
    color:var(--navy);
}
.mqb-note {
    text-align:center; font-size:.72rem; color:rgba(255,255,255,.4);
    margin:12px 0 0;
}

/* product-body içindeki MICE CTA (content'ten render) */
.mice-product-cta {
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    flex-wrap:wrap;
    background:linear-gradient(135deg,#082740,#0d4060);
    border-radius:16px; padding:20px 24px; margin-top:32px;
}
.mice-cta-content { display:flex; align-items:center; gap:14px; }
.mice-cta-content i { font-size:1.5rem; color:var(--amber); flex-shrink:0; }
.mice-cta-content strong { display:block; font-size:.9rem; font-weight:800; color:#fff; }
.mice-cta-content span { font-size:.76rem; color:rgba(255,255,255,.65); margin-top:3px; display:block; }
.mice-cta-btn {
    display:inline-flex; align-items:center; white-space:nowrap;
    background:var(--amber); color:var(--navy); font-weight:800;
    padding:11px 22px; border-radius:50px; text-decoration:none;
    font-size:.85rem; transition:all .2s;
}
.mice-cta-btn:hover { background:#ff8c00; transform:translateY(-1px); color:var(--navy); }







/* MICE Hero */
.mice-hero {
    background: linear-gradient(135deg, #082740 0%, #0d3d5c 60%, #0a5075 100%) !important;
    position: relative; overflow: hidden;
}
.mice-hero::after {
    content:''; position:absolute; inset:0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events:none;
}
.mice-hero-badge {
    display:inline-flex; align-items:center; gap:6px;
    background:rgba(255,168,1,0.15); border:1px solid rgba(255,168,1,0.35);
    color:var(--amber); font-size:0.78rem; font-weight:700;
    padding:5px 16px; border-radius:50px; margin-bottom:16px;
    letter-spacing:0.5px;
}

/* Tip kartları */
.mice-cards-section { padding:60px 0 30px; background:var(--light); border-bottom:1px solid var(--border); }
.mice-type-card {
    background:white; border:1px solid var(--border); border-radius:20px;
    padding:28px 22px; text-align:center; height:100%;
    transition:all 0.3s;
}
.mice-type-card:hover { box-shadow:0 10px 32px rgba(8,39,64,.1); transform:translateY(-4px); border-color:transparent; }
.mice-type-letter {
    display:inline-flex; align-items:center; justify-content:center;
    width:50px; height:50px; border-radius:14px;
    font-size:1.6rem; font-weight:900; margin-bottom:12px;
}
.mice-type-icon { font-size:1.1rem; margin-bottom:10px; }
.mice-type-card h5 { font-size:1rem; font-weight:800; color:var(--navy); margin-bottom:6px; }
.mice-type-card p { font-size:0.8rem; color:var(--gray); margin:0; line-height:1.5; }

/* Main section */
.mice-main-section { padding:70px 0 80px; }

/* Sol panel - Neden biz */
.mice-why-box { background:white; border:1px solid var(--border); border-radius:20px; padding:28px; margin-bottom:16px; }
.mice-section-eyebrow {
    display:flex; align-items:center; gap:8px;
    font-size:0.75rem; font-weight:700; text-transform:uppercase;
    letter-spacing:1.5px; color:var(--navy); margin-bottom:22px;
}
.mice-section-eyebrow i { color:var(--amber); }
.mice-why-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:18px; }
.mice-why-item:last-child { margin-bottom:0; }
.mice-why-ico {
    width:38px; height:38px; border-radius:10px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center; font-size:0.9rem;
}
.mice-why-item strong { display:block; font-size:0.84rem; font-weight:700; color:var(--navy); line-height:1.3; }
.mice-why-item span { font-size:0.76rem; color:var(--gray); line-height:1.5; }

.mice-trust-box { background:var(--navy); border-radius:20px; padding:24px; margin-bottom:12px; }
.mice-trust-item {
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
    border-radius:14px; padding:16px 14px; text-align:center;
}
.mice-trust-item i { display:block; color:var(--amber); font-size:1.1rem; margin-bottom:8px; }
.mice-trust-item strong { display:block; font-size:1.4rem; font-weight:800; color:white; line-height:1.1; }
.mice-trust-item span { font-size:0.68rem; color:rgba(255,255,255,0.55); text-transform:uppercase; letter-spacing:0.8px; margin-top:3px; display:block; }

.mice-cta-box {
    display:flex; align-items:center; gap:14px;
    background:var(--amber); border-radius:16px; padding:16px 20px;
}
.mice-cta-box i { font-size:1.2rem; color:var(--navy); }
.mice-cta-box strong { display:block; font-size:0.85rem; font-weight:800; color:var(--navy); }
.mice-cta-box span { font-size:0.78rem; color:rgba(8,39,64,0.7); margin-top:2px; display:block; }

/* Form wrap */
.mice-form-wrap {
    background:white; border:1px solid var(--border); border-radius:24px;
    padding:36px; box-shadow:0 8px 40px rgba(8,39,64,.07);
}
.mice-form-header { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:28px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.mice-form-header h3 { font-size:1.25rem; font-weight:800; color:var(--navy); margin-bottom:6px; }
.mice-form-header p { font-size:0.84rem; color:var(--gray); margin:0; line-height:1.6; }
.mice-form-badge {
    display:flex; align-items:center; gap:6px; white-space:nowrap;
    background:#f0f8f0; border:1px solid #c3e6c3; color:#2a7a2a;
    font-size:0.72rem; font-weight:700; padding:5px 12px; border-radius:50px;
    flex-shrink:0;
}

/* Step gösterge */
.mice-steps {
    display:flex; align-items:center; gap:0; margin-bottom:30px;
    background:#f7fafd; border-radius:14px; padding:14px 20px;
}
.mice-step {
    display:flex; align-items:center; gap:8px; flex:1; position:relative;
}
.mice-step-num {
    width:28px; height:28px; border-radius:50%; background:#d0dce5;
    color:white; font-size:0.78rem; font-weight:700;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    transition:all 0.3s;
}
.mice-step.active .mice-step-num { background:var(--navy); }
.mice-step.done .mice-step-num { background:#2a9a50; }
.mice-step-label { font-size:0.72rem; font-weight:600; color:#9aabb8; transition:color 0.3s; }
.mice-step.active .mice-step-label { color:var(--navy); }
.mice-step.done .mice-step-label { color:#2a9a50; }
.mice-step-line { flex:1; height:2px; background:#d0dce5; margin:0 8px; border-radius:2px; transition:background 0.3s; }
.mice-step-line.done { background:#2a9a50; }

/* Step panel */
.mice-step-panel { display:none; }
.mice-step-panel.active { display:block; animation:miceFadeIn 0.3s ease; }
@keyframes miceFadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* Input */
.fw { position:relative; }
.fi { position:absolute; left:13px; top:50%; transform:translateY(-50%); color:var(--gray); font-size:0.8rem; pointer-events:none; z-index:5; }
.fi-input { padding-left:36px !important; }
.req { color:var(--red); }

/* Checkbox & radio */
.mice-checkbox { display:flex; align-items:center; gap:8px; }
.mice-checkbox input { width:16px; height:16px; accent-color:var(--navy); cursor:pointer; }
.mice-checkbox label { font-size:0.8rem; color:var(--gray); cursor:pointer; margin:0; }

.mice-radio-group { display:flex; flex-wrap:wrap; gap:8px; }
.mice-radio-card {
    display:flex; align-items:center; gap:6px;
    padding:8px 14px; border-radius:50px; border:1.5px solid var(--border);
    cursor:pointer; font-size:0.8rem; font-weight:500; color:var(--navy);
    background:white; transition:all 0.2s; user-select:none;
}
.mice-radio-card input { display:none; }
.mice-radio-card:has(input:checked) {
    background:var(--navy); color:white; border-color:var(--navy);
}

/* Hizmet seçim kartları */
.mice-checkbox-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(145px,1fr)); gap:8px; }
.mice-svc-card {
    display:flex; flex-direction:column; align-items:center; gap:7px;
    padding:14px 10px; border-radius:14px; border:1.5px solid var(--border);
    cursor:pointer; text-align:center; font-size:0.75rem; font-weight:600;
    color:var(--navy); background:white; transition:all 0.2s; user-select:none;
}
.mice-svc-card input { display:none; }
.mice-svc-card:has(input:checked) { border-color:var(--navy); background:#f0f6fb; }
.mice-svc-ico {
    width:36px; height:36px; border-radius:10px;
    display:flex; align-items:center; justify-content:center; font-size:0.95rem;
}

/* Step nav */
.mice-step-nav { display:flex; justify-content:space-between; align-items:center; margin-top:28px; padding-top:24px; border-top:1px solid var(--border); }
.mice-back-btn {
    display:inline-flex; align-items:center;
    background:transparent; border:1.5px solid var(--border); color:var(--gray);
    font-size:0.85rem; font-weight:600; padding:10px 20px; border-radius:50px;
    cursor:pointer; transition:all 0.2s; font-family:inherit;
}
.mice-back-btn:hover { border-color:var(--navy); color:var(--navy); }

/* Başarı ekranı */
.mice-success { text-align:center; padding:40px 20px; }
.mice-success-icon {
    width:72px; height:72px; background:#d6f7e3; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.8rem; color:#128c47; margin:0 auto 20px;
    animation:scaleIn 0.5s var(--qs-easing, cubic-bezier(.34,1.56,.64,1));
}
@keyframes scaleIn { from{transform:scale(0)} to{transform:scale(1)} }
.mice-success h4 { font-size:1.4rem; font-weight:800; color:var(--navy); margin-bottom:12px; }
.mice-success p { color:var(--gray); font-size:0.9rem; line-height:1.7; max-width:400px; margin:0 auto; }
.mice-success-ref {
    display:inline-block; background:#f0f6fb; border:1px solid var(--border);
    border-radius:10px; padding:8px 20px; font-size:0.8rem; font-weight:700;
    color:var(--navy); margin-top:16px; font-family:monospace; letter-spacing:1px;
}

@media (max-width:767px) {
    .mice-form-wrap { padding:22px 16px; }
    .mice-form-header { flex-direction:column; }
    .mice-steps { padding:10px 12px; }
    .mice-step-label { display:none; }
    .mice-checkbox-grid { grid-template-columns:repeat(2,1fr); }
}