/* ================================================
   TOP HEADER BAR
   ================================================ */
.top-header-modern {
    background: #0f172a;
    padding: 10px 0;
}
.top-header-modern .top-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.top-header-modern p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}
.top-header-modern a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s;
}
.top-header-modern a:hover {
    opacity: 0.8;
    color: #fff;
}
.top-header-modern a svg {
    flex-shrink: 0;
}

/* Hide old top header */
.top-header-info { display: none !important; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar.navbar-expand-lg { display: none !important; }

.navbar-modern {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}
.navbar-modern .container {
    max-width: 100% !important;
    padding: 0 40px;
}
.navbar-modern .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.navbar-modern .navbar-logo a {
    display: block;
}
.navbar-modern .navbar-logo img {
    height: 20px;
    width: auto;
}

/* Nav Links */
.navbar-modern .navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}
.navbar-modern .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-modern .nav-link-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.navbar-modern .nav-link-item:hover {
    color: #053d9b;
    background: rgba(5, 61, 155, 0.06);
}
.navbar-modern .nav-link-item svg {
    transition: transform 0.25s ease;
}
.navbar-modern .has-dropdown:hover .nav-link-item svg {
    transform: rotate(180deg);
}

/* Dropdown */
.navbar-modern .has-dropdown {
    position: relative;
}
.navbar-modern .dropdown-modern {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1050;
}
.navbar-modern .dropdown-modern.dropdown-wide {
    min-width: 300px;
}
.navbar-modern .has-dropdown:hover > .dropdown-modern {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.navbar-modern .dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #334155;
}
.navbar-modern .dropdown-link:hover {
    background: #f1f5f9;
    color: #053d9b;
}
.navbar-modern .dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    flex-shrink: 0;
    color: #64748b;
    transition: all 0.2s ease;
}
.navbar-modern .dropdown-link:hover .dropdown-icon {
    background: #d6e0f0;
    color: #053d9b;
}
.navbar-modern .dropdown-title {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

/* Navbar Actions */
.navbar-modern .navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-modern .lang-dropdown {
    display: none !important;
}
.navbar-modern .btn-login {
    font-size: 14px;
    font-weight: 600;
    color: #053d9b;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.navbar-modern .btn-login:hover {
    background: rgba(5, 61, 155, 0.06);
    color: #053d9b;
}
.navbar-modern .btn-register {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #053d9b;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(5, 61, 155, 0.25);
    white-space: nowrap;
}
.navbar-modern .btn-register:hover {
    background: #0a4eb3;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 61, 155, 0.35);
}
.navbar-modern .mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #334155;
    padding: 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}
.navbar-modern .mobile-toggle:hover {
    background: #f1f5f9;
}

/* ================================================
   MOBILE MENU
   ================================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
body.mobile-menu-open {
    overflow: hidden;
}
.mobile-menu-modern {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    max-width: 400px;
    background: #fff;
    z-index: 999999;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu-modern[style*="width: 100"] {
    overflow-y: auto;
}
.mobile-menu-modern .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
}
.mobile-menu-modern .mobile-menu-header .logo img {
    height: 28px;
}
.mobile-menu-modern .close-btn {
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    padding: 8px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}
.mobile-menu-modern .close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.mobile-menu-modern .mobile-menu-body {
    padding: 16px 24px;
    flex: 1;
}
.mobile-menu-modern .accordion .card {
    border: none !important;
    margin-bottom: 0;
}
.mobile-menu-modern .accordion .card-header {
    padding: 0;
    background: transparent;
    border: none !important;
}
.mobile-menu-modern .accordion .card-header .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    background: none;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: none !important;
    text-decoration: none;
}
.mobile-menu-modern .accordion .card-header .btn::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    transition: transform 0.25s;
}
.mobile-menu-modern .accordion .card-header .btn.not-collapsed::after {
    transform: rotate(-135deg);
}
.mobile-menu-modern .accordion .collapse ul,
.mobile-menu-modern .accordion .collapsing ul {
    list-style: none;
    padding: 8px 0 16px 12px;
    margin: 0;
}
.mobile-menu-modern .accordion .collapse ul li a,
.mobile-menu-modern .accordion .collapsing ul li a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}
.mobile-menu-modern .accordion .collapse ul li a:hover,
.mobile-menu-modern .accordion .collapsing ul li a:hover {
    background: #f1f5f9;
    color: #053d9b;
}
.mobile-menu-modern .mobile-links {
    display: flex;
    flex-direction: column;
}
.mobile-menu-modern .mobile-links a {
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s;
}
.mobile-menu-modern .mobile-links a:hover {
    color: #053d9b;
}
.mobile-menu-modern .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}
.mobile-menu-modern .btn-mobile-login {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #053d9b;
    border: 1.5px solid #053d9b;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
}
.mobile-menu-modern .btn-mobile-login:hover {
    background: rgba(5, 61, 155, 0.06);
}
.mobile-menu-modern .btn-mobile-register {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #053d9b;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(5, 61, 155, 0.3);
}
.mobile-menu-modern .btn-mobile-register:hover {
    background: #0a4eb3;
}
.mobile-menu-modern .mobile-cta {
    margin-top: 24px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 14px;
}
.mobile-menu-modern .cta-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.mobile-menu-modern .cta-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.5;
}
.mobile-menu-modern .btn-cta {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #053d9b;
    border: 1.5px solid #053d9b;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
}
.mobile-menu-modern .btn-cta:hover {
    background: #053d9b;
    color: #fff;
}

/* ================================================
   RESPONSIVE - NAVBAR
   ================================================ */
@media (max-width: 992px) {
    .navbar-modern .navbar-menu { display: none; }
    .navbar-modern .btn-login,
    .navbar-modern .lang-dropdown { display: none; }
    .navbar-modern .mobile-toggle { display: block; }
    .navbar-modern .container { padding: 0 16px; }
    .navbar-modern .navbar-logo { margin-right: 12px; }
    .navbar-modern .navbar-logo img { height: 18px; }
    .navbar-modern .btn-register {
        font-size: 13px;
        padding: 7px 14px;
    }
}
@media (max-width: 767px) {
    .top-header-modern { padding: 8px 0; }
    .top-header-modern p,
    .top-header-modern a { font-size: 12px; }
}
@media (max-width: 480px) {
    .navbar-modern .navbar-logo img { height: 17px; }
    .navbar-modern .btn-register {
        font-size: 12px;
        padding: 7px 12px;
    }
    .navbar-modern .navbar-actions { gap: 6px; }
}

/* ================================================
   HOMEPAGE STYLES
   ================================================ */
:root {
    --accent-blue: #053d9b;
    --accent-blue-light: #0a4eb3;
    --accent-blue-hover: #0a4eb3;
    --accent-gold: #FBC34E;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --section-padding: 100px 0;
    --card-radius: 20px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================================
   HERO - CLEAN
   ================================================ */
.hero-clean {
    background: #f8fafc;
    padding: 80px 0 60px;
    border-bottom: 1px solid #e2e8f0;
}
.hero-clean .hero-badge {
    text-align: center;
    margin-bottom: 40px;
}
.hero-clean .hero-attribute {
    display: inline-block !important;
    background: #fff !important;
    color: #053d9b !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 600;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}
.hero-clean .stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #64748b;
}
.hero-clean h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #0f172a;
}
.hero-clean .hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-clean .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero-clean .btn-hero-primary {
    background: #053d9b;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
    display: inline-block;
}
.hero-clean .btn-hero-primary:hover {
    background: #0a4eb3;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.hero-clean .btn-hero-outline {
    background: #fff;
    color: #334155;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #e2e8f0;
    transition: all 0.25s ease;
    display: inline-block;
}
.hero-clean .btn-hero-outline:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}
.hero-clean .hero-watch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #053d9b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.hero-clean .hero-watch-link:hover {
    color: #0a4eb3;
    gap: 10px;
}

/* Hero Right */
.hero-clean .hero-right {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.hero-clean .hero-right-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
}
.hero-clean .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.hero-clean .tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid transparent;
}
.hero-clean .tag-item.tag-accent {
    background: #053d9b;
    color: #fff;
}
.hero-clean .tag-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-clean .tag-item.tag-accent:hover {
    background: #0a4eb3;
    color: #fff;
}
.hero-clean .hero-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.hero-clean .hero-logos img {
    height: 24px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.hero-clean .hero-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ================================================
   INFO STRIP
   ================================================ */
.info-strip {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}
.info-strip-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    transition: all 0.25s ease;
}
.info-strip-card:hover {
    background: #f8fafc;
}
.info-strip-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #e8eef8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-strip-card span {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 1.6;
}
.info-strip-card span strong {
    font-weight: 700;
    color: #0f172a;
}

/* TABS SECTION */
.solutions-section {
    padding: var(--section-padding);
    background: #f8fafc;
}
.solutions-section .section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    line-height: 1.2;
}
.solutions-section .tabs .navigation {
    margin-bottom: 48px;
}
.solutions-section .tabs .navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.solutions-section .tabs .navigation ul li a {
    display: block;
    padding: 12px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    transition: var(--transition-smooth);
}
.solutions-section .tabs .navigation ul li a:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}
.solutions-section .tabs .navigation ul li a.active {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
    box-shadow: 0 4px 14px rgba(5, 61, 155, 0.3);
}
.solutions-section .tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}
.solutions-section .tab-content.active {
    display: block;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.solutions-section .tab-content .image {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.solutions-section .tab-content .image img {
    width: 100%;
    border-radius: 12px;
}
.solutions-section .tab-content h3.title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}
.solutions-section .tab-accordions .item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.solutions-section .tab-accordions .item:hover {
    border-color: var(--accent-blue-light);
    box-shadow: 0 2px 12px rgba(5, 61, 155, 0.08);
}
.solutions-section .tab-accordions .item .heading {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.solutions-section .tab-accordions .item .heading .name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}
.solutions-section .tab-accordions .item .body {
    padding: 0 22px 18px;
    display: none;
}
.solutions-section .tab-accordions .item .body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
.solutions-section .tab-summary {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}
.solutions-section .default-buttons {
    text-align: center;
    margin-top: 56px;
}
.solutions-section .default-buttons .btn-sample {
    background: var(--accent-blue);
    color: #fff;
    padding: 16px 42px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(5, 61, 155, 0.3);
}
.solutions-section .default-buttons .btn-sample:hover {
    background: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 61, 155, 0.4);
}

/* CONTENT SECTIONS */
.content-modern {
    padding: var(--section-padding);
}
.content-modern .content-block {
    padding: 60px 0;
}
.content-modern .content-block:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}
.content-modern .content-block .image {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}
.content-modern .content-block .image:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}
.content-modern .content-block .image img {
    width: 100%;
    display: block;
}
.content-modern .content-block h2.title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}
.content-modern .content-block p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}
.content-modern .content-block .component-href {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.content-modern .content-block .component-href:hover {
    color: var(--accent-blue-light);
    gap: 12px;
}
.content-modern .content-block .component-href::after {
    content: '\2192';
}
.content-modern .guard {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(28, 148, 65, 0.08);
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #1C9441;
}
.content-modern .guard strong {
    color: #1C9441;
}

/* REFERENCES */
.references-modern {
    padding: var(--section-padding);
    background: #f8fafc;
}
.references-modern h2.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: #0f172a;
}
.references-modern .ref-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
    text-decoration: none;
    margin-bottom: 20px;
}
.references-modern .ref-card:hover {
    border-color: var(--accent-blue-light);
    box-shadow: 0 8px 30px rgba(5, 61, 155, 0.08);
    transform: translateY(-4px);
}
.references-modern .ref-card img {
    max-height: 44px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.references-modern .ref-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.references-modern .ref-card span {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 15px;
}

/* ================================================
   PAGE HERO (subpages)
   ================================================ */
.page-hero {
    background: #f8fafc;
    padding: 60px 0 50px;
    border-bottom: 1px solid #e2e8f0;
}
.page-hero .page-breadcrumb {
    font-size: 14px;
    font-weight: 600;
    color: #053d9b;
    margin-bottom: 14px;
}
.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 18px;
}
.page-hero p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}
.page-hero .page-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.page-hero .btn-hero-primary {
    background: #053d9b;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
    display: inline-block;
}
.page-hero .btn-hero-primary:hover {
    background: #0a4eb3;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.page-hero .btn-hero-outline {
    background: #fff;
    color: #334155 !important;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1.5px solid #e2e8f0;
    transition: all 0.25s ease;
    display: inline-block;
}
.page-hero .btn-hero-outline:hover {
    border-color: #cbd5e1;
    color: #0f172a !important;
    transform: translateY(-1px);
}
.page-hero .page-hero-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}
.page-hero .page-hero-image {
    text-align: center;
}
.page-hero .page-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}
@media (max-width: 991px) {
    .page-hero h1 { font-size: 32px; }
    .page-hero .page-hero-image { margin-top: 32px; }
}
@media (max-width: 767px) {
    .page-hero { padding: 40px 0 30px; text-align: center; }
    .page-hero h1 { font-size: 28px; }
    .page-hero p { max-width: 100%; }
    .page-hero .page-hero-buttons { justify-content: center; }
    .page-hero .page-hero-stars { justify-content: center; }
}

/* ================================================
   LEGAL & CONTENT PAGES
   ================================================ */
.page-hero .legal-content,
.page-hero .contact-form-area {
    padding: 20px 0;
}
.page-hero .legal-content h2,
.page-hero .legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 28px 0 12px;
}
.page-hero .legal-content p,
.page-hero .legal-content li {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}
.page-hero .legal-content ul,
.page-hero .legal-content ol {
    padding-left: 20px;
}

/* Blog cards */
.blog-grid .blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}
.blog-grid .blog-card:hover {
    border-color: #053d9b;
    box-shadow: 0 4px 20px rgba(5, 61, 155, 0.08);
    transform: translateY(-4px);
}
.blog-grid .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-grid .blog-card .card-body {
    padding: 20px;
}
.blog-grid .blog-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-grid .blog-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ================================================
   VIDEO SECTION REDESIGN
   ================================================ */
.homepage-videos {
    margin-top: 30px !important;
    margin-bottom: 0 !important;
    padding: 50px 0 40px !important;
    background: #f8fafc !important;
    overflow: visible !important;
}
.homepage-videos .title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    text-align: center !important;
    margin-bottom: 36px !important;
    letter-spacing: -0.5px !important;
}
.homepage-videos .videos-slider .item {
    padding-right: 20px !important;
}
.homepage-videos .videos-slider .item img {
    border-radius: 16px !important;
    height: 340px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}
.homepage-videos .videos-slider .item:hover img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}
.homepage-videos .videos-slider .item .overlay {
    border-radius: 16px !important;
    right: 20px !important;
    background-image: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85) 100%) !important;
    padding: 20px !important;
}
.homepage-videos .videos-slider .item .overlay .name {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    margin-bottom: 4px !important;
}
.homepage-videos .videos-slider .item .overlay .attr {
    font-size: 13px !important;
    opacity: 0.8;
    letter-spacing: 0 !important;
    margin-bottom: 12px !important;
}
.homepage-videos .videos-slider .item .overlay .btn-video {
    background: #fff !important;
    color: #053d9b !important;
    border-radius: 10px !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    gap: 6px !important;
    letter-spacing: 0 !important;
    transition: all 0.25s ease;
    display: inline-flex !important;
    width: auto !important;
}
.homepage-videos .videos-slider .item .overlay .btn-video:hover {
    background: #053d9b !important;
    color: #fff !important;
}
.homepage-videos .videos-slider .item .overlay .btn-video:hover svg path {
    fill: #fff;
    stroke: #fff;
}
/* Slider arrows */
.homepage-videos .videos-slider .slick-prev,
.homepage-videos .videos-slider .slick-next {
    width: 40px !important;
    height: 40px !important;
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    border-radius: 12px !important;
    z-index: 20;
}
.homepage-videos .videos-slider .slick-prev {
    left: -50px !important;
}
.homepage-videos .videos-slider .slick-next {
    right: -50px !important;
}
.homepage-videos .videos-slider .slick-prev:hover,
.homepage-videos .videos-slider .slick-next:hover {
    background-color: #053d9b !important;
}
.homepage-videos .videos-slider .slick-prev:hover::before,
.homepage-videos .videos-slider .slick-next:hover::before {
    filter: brightness(0) invert(1);
}

/* ================================================
   REFERENCES SECTION REDESIGN
   ================================================ */
.references-modern .ref-card {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 28px 20px !important;
    min-height: 90px !important;
    transition: all 0.3s ease !important;
    position: relative;
}
.references-modern .ref-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #053d9b;
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}
.references-modern .ref-card:hover {
    border-color: #053d9b !important;
    box-shadow: 0 8px 24px rgba(5, 61, 155, 0.1) !important;
    transform: translateY(-6px) !important;
}
.references-modern .ref-card:hover::after {
    width: 40px;
}
.references-modern .ref-card img {
    max-height: 40px !important;
    max-width: 130px !important;
    filter: grayscale(100%) !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}
.references-modern .ref-card:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}
.references-modern .section-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
}

/* ================================================
   REFERENCES LIST PAGE
   ================================================ */
.references-list {
    margin-top: 40px !important;
    padding: 50px 0 60px !important;
    background: #f8fafc;
}
.references-list .title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    text-align: center !important;
    margin-bottom: 32px !important;
    letter-spacing: -0.3px !important;
}
/* Filter tabs - matches solutions-section tabs */
.references-list .list-attributes {
    text-align: center !important;
    margin-bottom: 48px !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px !important;
    white-space: normal !important;
    padding: 0 !important;
    overflow: visible !important;
}
.ref-filter-btn {
    display: block;
    padding: 12px 26px !important;
    border-radius: 100px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    white-space: nowrap;
    text-decoration: none;
    outline: none;
}
.ref-filter-btn:hover {
    border-color: #053d9b !important;
    color: #053d9b !important;
    background: #fff !important;
}
.ref-filter-btn.active {
    background: #053d9b !important;
    color: #fff !important;
    border-color: #053d9b !important;
    box-shadow: 0 4px 14px rgba(5, 61, 155, 0.3) !important;
}
.ref-filter-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Reference items */
.references-list .item {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    height: 100px !important;
    padding: 16px !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
    position: relative;
}
.references-list .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #053d9b;
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}
.references-list .item:hover {
    border-color: #053d9b !important;
    box-shadow: 0 8px 24px rgba(5, 61, 155, 0.1) !important;
    transform: translateY(-4px);
    text-decoration: none;
}
.references-list .item:hover::after {
    width: 36px;
}
.references-list .item img {
    max-height: 50px !important;
    max-width: 100% !important;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}
.references-list .item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.references-list .item .attr {
    background: #053d9b !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 3px 10px !important;
    top: -12px !important;
    letter-spacing: 0 !important;
}
@media (max-width: 767px) {
    .references-list .list-attributes {
        gap: 6px !important;
    }
    .ref-filter-btn {
        padding: 10px 18px !important;
        font-size: 13px !important;
    }
    .references-list .title {
        font-size: 24px !important;
    }
}

/* ================================================
   SPACING OVERRIDES
   ================================================ */
.content-modern {
    padding: 40px 0 !important;
}
.content-modern .content-block {
    padding: 36px 0 !important;
}
.references-modern {
    padding: 50px 0 !important;
}
.references-modern .section-title {
    margin-bottom: 36px !important;
}
.homepage-videos + .content-modern {
    padding-top: 30px !important;
}

/* ================================================
   FAQ
   ================================================ */
.homepage-faqs { display: none !important; }

.faq-modern {
    padding: 90px 0;
    background: #fff;
}
.faq-modern .faq-header {
    text-align: center;
    margin-bottom: 56px;
}
.faq-modern .faq-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #053d9b;
    background: #e8eef8;
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.faq-modern h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}
.faq-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    background: #fff;
}
.faq-card:hover {
    border-color: #cbd5e1;
}
.faq-card.active {
    border-color: #053d9b;
    box-shadow: 0 2px 12px rgba(5, 61, 155, 0.08);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 12px;
}
.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}
.faq-toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.25s ease;
}
.faq-card.active .faq-toggle {
    background: #053d9b;
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 22px 20px;
}
.faq-card.active .faq-answer {
    display: block;
}
.faq-answer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   CTA
   ================================================ */
.homepage-call-to-action { display: none !important; }

.cta-modern {
    padding: 40px 0 80px;
    background: #fff;
}
.cta-box {
    background: #0f172a;
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 61, 155, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.cta-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-cta-primary {
    background: #053d9b;
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(5, 61, 155, 0.3);
}
.btn-cta-primary:hover {
    background: #0a4eb3;
    color: #fff;
    transform: translateY(-1px);
}
.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
}
.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* ================================================
   FOOTER
   ================================================ */
footer:not(.footer-modern) { display: none !important; }

.footer-modern {
    background: #0f172a;
    color: #94a3b8;
    padding: 72px 0 0;
}
.footer-modern .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-modern .footer-brand {
    padding-right: 20px;
}
.footer-modern .footer-logo img {
    height: 22px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}
.footer-modern .footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    max-width: 280px;
}
.footer-modern .footer-social {
    display: flex;
    gap: 10px;
}
.footer-modern .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #94a3b8;
    transition: all 0.25s ease;
}
.footer-modern .footer-social a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.footer-modern .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.footer-modern .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-modern .footer-col ul li {
    margin-bottom: 10px;
}
.footer-modern .footer-col ul li a {
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}
.footer-modern .footer-col ul li a:hover {
    color: #e2e8f0;
}

/* Footer Bottom */
.footer-bottom-modern {
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-inner p {
    font-size: 13px;
    color: #475569;
    margin: 0;
}
.footer-lang .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 14px;
}
.footer-lang .btn:hover,
.footer-lang .btn:focus {
    background: rgba(255,255,255,0.1);
    color: #e2e8f0;
    box-shadow: none;
}
.footer-lang .dropdown-menu {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    min-width: 120px;
}
.footer-lang .dropdown-item {
    color: #94a3b8;
    font-size: 13px;
    padding: 8px 14px;
}
.footer-lang .dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

@media (max-width: 991px) {
    .footer-modern .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .footer-modern .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 767px) {
    .footer-modern .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-clean {
        padding: 50px 0 40px;
    }
    .hero-clean h1 {
        font-size: 34px;
    }
    .hero-clean .hero-right {
        margin-top: 36px;
    }
    .solutions-section .section-title {
        font-size: 30px;
    }
    .content-modern .content-block h2.title {
        font-size: 28px;
    }
    .content-modern .content-block .image {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .hero-clean {
        padding: 40px 0 30px;
        text-align: center;
    }
    .hero-clean h1 {
        font-size: 28px;
    }
    .hero-clean .hero-desc {
        max-width: 100%;
    }
    .hero-clean .hero-buttons {
        justify-content: center;
    }
    .hero-clean .stars {
        justify-content: center;
    }
    .info-strip-card {
        margin-bottom: 8px;
    }
    .solutions-section .tabs .navigation ul {
        gap: 6px;
    }
    .solutions-section .tabs .navigation ul li a {
        padding: 10px 18px;
        font-size: 13px;
    }
    .solutions-section .section-title {
        font-size: 26px;
    }
    .content-modern .content-block {
        padding: 40px 0;
    }
}


/* ================================================
   PRICING PAGE — MODERN REDESIGN (ikas style)
   ================================================ */

/* ---------- Pricing Header ---------- */
.pricing-header {
    background: #fff !important;
    padding: 80px 0 20px !important;
    text-align: center !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.pricing-header .top .attribute {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #ff5f2e 0%, #ff3d00 100%) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: -0.2px !important;
    text-transform: none !important;
    padding: 10px 22px !important;
    border-radius: 100px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 4px 20px rgba(255,95,46,0.35) !important;
    animation: pulse-promo 2.5s ease-in-out infinite !important;
}

.pricing-header .top .attribute::before {
    content: "🎁" !important;
    font-size: 16px !important;
}

@keyframes pulse-promo {
    0%, 100% { box-shadow: 0 4px 20px rgba(255,95,46,0.35); }
    50%       { box-shadow: 0 8px 32px rgba(255,95,46,0.55); transform: translateY(-1px); }
}

.pricing-header .top .title {
    font-size: 40px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1.5px !important;
    line-height: 1.15 !important;
    margin-bottom: 48px !important;
}

.pricing-header .types {
    margin-top: 0 !important;
}

.pricing-header .types .item {
    background: #f8faff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 18px 10px !important;
    text-align: center !important;
    transition: all 0.25s ease !important;
    margin-bottom: 16px !important;
}

.pricing-header .types .item:hover {
    border-color: #053d9b !important;
    box-shadow: 0 6px 20px rgba(5, 61, 155, 0.1) !important;
    transform: translateY(-2px) !important;
}

.pricing-header .types .item .ico {
    width: 44px !important;
    height: 44px !important;
    background: linear-gradient(135deg, #053d9b 0%, #1a56db 100%) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 10px !important;
    padding: 10px !important;
}

.pricing-header .types .item .ico img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
}

.pricing-header .types .item .name {
    display: block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 3px !important;
}

.pricing-header .types .item .attr {
    display: block !important;
    font-size: 11px !important;
    color: #64748b !important;
    line-height: 1.4 !important;
}

/* ---------- İş Bank Taksit Banner ---------- */
.pricing-button {
    background: #fff !important;
    padding: 24px 0 0 !important;
}

.pricing-button .buttons {
    gap: 12px !important;
}

.pricing-button .attr {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f2d6e !important;
    background: #f0f5ff !important;
    border: 1.5px solid #c7d7fa !important;
    border-radius: 12px !important;
    padding: 12px 24px !important;
}

.pricing-button .attr::before {
    content: "🏦" !important;
    font-size: 18px !important;
}

/* ---------- Pricing Cards Grid ---------- */
.pricings {
    background: #fff !important;
    padding: 48px 0 80px !important;
}

.pricings .lists {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    align-items: start !important;
    margin-bottom: 20px !important;
}

/* Base card */
.pricings .lists .item {
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 32px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: box-shadow 0.25s ease, transform 0.25s ease !important;
    position: relative !important;
    transform: none !important;
}

.pricings .lists .item:hover {
    box-shadow: 0 8px 32px rgba(5, 61, 155, 0.08) !important;
    transform: translateY(-3px) !important;
    border-color: #b3c6f7 !important;
}

/* ── Popular card (2nd) ── */
.pricings .lists .item:nth-child(2) {
    border: 2px solid #053d9b !important;
    background: #fff !important;
    box-shadow: 0 12px 40px rgba(5,61,155,0.12) !important;
    transform: none !important;
}

.pricings .lists .item:nth-child(2):hover {
    box-shadow: 0 20px 56px rgba(5,61,155,0.18) !important;
    transform: translateY(-4px) !important;
}

/* "En Popüler" tag above the 2nd card */
.pricings .lists .item:nth-child(2)::before {
    content: "⭐ En Popüler" !important;
    position: absolute !important;
    top: -16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #053d9b !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    padding: 4px 18px !important;
    border-radius: 100px !important;
    white-space: nowrap !important;
}

/* Plan name */
.pricings .lists .item .name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 4px !important;
}

.pricings .lists .item .name .status {
    display: none !important;
}

/* Price block */
.pricings .lists .item .prices {
    margin-bottom: 24px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.pricings .lists .item .prices .price {
    display: block !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1.5px !important;
    line-height: 1 !important;
    margin: 12px 0 8px !important;
}

.pricings .lists .item:nth-child(2) .prices .price {
    color: #053d9b !important;
}

.pricings .lists .item .prices .price_alt {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
}

.pricings .lists .item .prices .price_alt span {
    color: #94a3b8 !important;
    text-decoration: line-through !important;
}

.pricings .lists .item .prices .price_alt strong {
    color: #16a34a !important;
    font-weight: 700 !important;
    background: #dcfce7 !important;
    padding: 2px 8px !important;
    border-radius: 100px !important;
    font-size: 12px !important;
}

/* Buttons */
.pricings .lists .item .buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
}

.pricings .lists .item .buttons .btn {
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    border: 1.5px solid transparent !important;
}

.pricings .lists .item .buttons .btn-primary {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}

.pricings .lists .item .buttons .btn-primary:hover {
    background: #1e293b !important;
    border-color: #1e293b !important;
}

.pricings .lists .item:nth-child(2) .buttons .btn-primary {
    background: #053d9b !important;
    border-color: #053d9b !important;
    box-shadow: 0 4px 14px rgba(5,61,155,0.3) !important;
}

.pricings .lists .item:nth-child(2) .buttons .btn-primary:hover {
    background: #0a4eb3 !important;
}

.pricings .lists .item .buttons .btn-secondary {
    background: transparent !important;
    color: #475569 !important;
    border-color: #e2e8f0 !important;
}

.pricings .lists .item .buttons .btn-secondary:hover {
    border-color: #053d9b !important;
    color: #053d9b !important;
}

/* Feature slogan label */
.pricings .lists .item .slogan {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #94a3b8 !important;
    margin-bottom: 12px !important;
}

/* Feature list */
.pricings .lists .item ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 1 !important;
}

.pricings .lists .item ul li {
    font-size: 13px !important;
    color: #475569 !important;
    padding: 7px 0 7px 22px !important;
    position: relative !important;
    line-height: 1.5 !important;
    border-bottom: 1px solid #f8fafc !important;
}

.pricings .lists .item ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 14px !important;
    height: 14px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23053d9b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.pricings .lists .item ul li strong {
    font-weight: 700 !important;
    color: #1e293b !important;
}

/* Hide original inline SVGs inside li — prevent double icon */
.pricings .lists .item ul li svg {
    display: none !important;
}

/* ================================================
   ENTERPRISE CARD — Full-width unified dark banner
   ================================================ */
.pricings .lists .item.enterprise-card {
    grid-column: 1 / -1 !important;
    background: linear-gradient(135deg, #0c1e40 0%, #0f2d6e 60%, #0c1e40 100%) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    transform: none !important;
    overflow: hidden !important;
    margin-top: 8px !important;
    box-shadow: 0 4px 24px rgba(5,61,155,0.15) !important;
    position: relative !important;
}

/* Subtle glow orb */
.pricings .lists .item.enterprise-card::after {
    content: "" !important;
    position: absolute !important;
    top: -80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 500px !important;
    height: 300px !important;
    background: radial-gradient(ellipse, rgba(26,86,219,0.25) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.pricings .lists .item.enterprise-card::before {
    display: none !important;
}

.pricings .lists .item.enterprise-card:hover {
    box-shadow: 0 12px 48px rgba(5,61,155,0.3) !important;
    transform: translateY(-3px) !important;
}

/* Left: identity — high specificity to beat general card rules */
.pricings .lists .item.enterprise-card .enterprise-left {
    padding: 40px 44px !important;
    min-width: 240px !important;
    max-width: 260px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: rgba(0,0,0,0.2) !important;
    border-right: 1px solid rgba(255,255,255,0.12) !important;
}

.pricings .lists .item.enterprise-card .enterprise-badge {
    display: inline-block !important;
    background: rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 100px !important;
    margin-bottom: 14px !important;
    width: fit-content !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
}

.pricings .lists .item.enterprise-card .enterprise-left .name {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.4px !important;
}

.pricings .lists .item.enterprise-card .enterprise-left .prices {
    margin-bottom: 0 !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.pricings .lists .item.enterprise-card .enterprise-left .prices .price {
    color: rgba(255,255,255,0.85) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: -0.3px !important;
}

/* Center: features */
.pricings .lists .item.enterprise-card .enterprise-features {
    flex: 1 !important;
    padding: 36px 48px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-right: 1px solid rgba(255,255,255,0.1) !important;
}

.pricings .lists .item.enterprise-card .enterprise-features .slogan {
    display: block !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: rgba(255,255,255,0.45) !important;
    margin-bottom: 16px !important;
}

.pricings .lists .item.enterprise-card .enterprise-features ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 36px !important;
}

.pricings .lists .item.enterprise-card .enterprise-features ul li {
    font-size: 13px !important;
    color: rgba(255,255,255,0.82) !important;
    padding: 0 0 0 20px !important;
    position: relative !important;
    line-height: 1.55 !important;
    border-bottom: none !important;
}

.pricings .lists .item.enterprise-card .enterprise-features ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 4px !important;
    width: 13px !important;
    height: 13px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393c5fd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

/* Right: actions */
.pricings .lists .item.enterprise-card .enterprise-actions {
    padding: 36px 44px !important;
    min-width: 200px !important;
    max-width: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
}

.pricings .lists .item.enterprise-card .enterprise-actions .btn {
    border-radius: 10px !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    white-space: normal !important;
    border: 1.5px solid transparent !important;
    line-height: 1.3 !important;
}

.pricings .lists .item.enterprise-card .enterprise-actions .btn-primary {
    background: #fff !important;
    color: #0c1e40 !important;
    border-color: #fff !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2) !important;
}

.pricings .lists .item.enterprise-card .enterprise-actions .btn-primary:hover {
    background: #f0f5ff !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.28) !important;
}

.pricings .lists .item.enterprise-card .enterprise-actions .btn-secondary {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.25) !important;
}

.pricings .lists .item.enterprise-card .enterprise-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.45) !important;
}

/* ---------- Pricing Themes Section ---------- */
.pricing-themes {
    background: #f8faff !important;
    padding: 80px 0 !important;
}

.pricing-themes .layout {
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    padding: 60px !important;
}

.pricing-themes .layout img {
    width: 100% !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(5, 61, 155, 0.1) !important;
}

.pricing-themes .layout .title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.8px !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
}

.pricing-themes .layout p {
    font-size: 15px !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    margin-bottom: 28px !important;
}

.pricing-themes .layout .btn-primary {
    background: #053d9b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 13px 28px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(5, 61, 155, 0.25) !important;
    transition: all 0.2s ease !important;
}

.pricing-themes .layout .btn-primary:hover {
    background: #0a4eb3 !important;
    box-shadow: 0 6px 20px rgba(5, 61, 155, 0.35) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .pricings .lists {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .pricings .lists .item.enterprise-card {
        flex-direction: column !important;
    }
    .enterprise-left {
        max-width: 100% !important;
        min-width: unset !important;
        padding: 28px 32px !important;
    }
    .enterprise-features {
        border-right: none !important;
        border-bottom: 1px solid #dbe8ff !important;
        padding: 28px 32px !important;
    }
    .enterprise-features ul {
        grid-template-columns: 1fr 1fr !important;
    }
    .enterprise-actions {
        min-width: unset !important;
        max-width: 100% !important;
        padding: 28px 32px !important;
        flex-direction: row !important;
        gap: 12px !important;
    }
    .enterprise-actions .btn {
        flex: 1 !important;
    }
}

@media (max-width: 767px) {
    .pricing-header {
        padding: 50px 0 20px !important;
    }
    .pricing-header .top .title {
        font-size: 28px !important;
    }
    .pricing-header .top .attribute {
        font-size: 13px !important;
        padding: 9px 16px !important;
    }
    .pricings .lists {
        grid-template-columns: 1fr !important;
    }
    .pricings .lists .item:nth-child(2) {
        margin-top: 20px !important;
    }
    /* Enterprise — dikey düzen (diğer kartlar gibi) */
    .pricings .lists .item.enterprise-card {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .pricings .lists .item.enterprise-card .enterprise-left {
        max-width: 100% !important;
        min-width: unset !important;
        padding: 28px 24px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        background: rgba(0,0,0,0.25) !important;
    }
    .pricings .lists .item.enterprise-card .enterprise-features {
        max-width: 100% !important;
        padding: 24px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    .pricings .lists .item.enterprise-card .enterprise-features ul {
        grid-template-columns: 1fr !important;
    }
    .pricings .lists .item.enterprise-card .enterprise-actions {
        max-width: 100% !important;
        min-width: unset !important;
        padding: 24px !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    .pricings .lists .item.enterprise-card .enterprise-actions .btn {
        width: 100% !important;
    }
    .pricing-themes .layout {
        padding: 30px 20px !important;
    }
    .pricing-themes .layout .title {
        font-size: 22px !important;
    }
}


/* ============================================================
   B2B PAZARYERİ PAGE STYLES
   ============================================================ */

/* ----- HERO ----- */
.b2b-hero {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 50%, #f5f3ff 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.b2b-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5,61,155,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.b2b-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.b2b-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(5,61,155,0.1);
    color: #053d9b;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(5,61,155,0.2);
}
.b2b-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 18px;
}
.b2b-hero-title span {
    color: #053d9b;
}
.b2b-hero-desc {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}
.b2b-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.b2b-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1.5px solid #c7d7fa;
    box-shadow: 0 2px 8px rgba(5,61,155,0.08);
}
.b2b-pill svg {
    color: #053d9b;
}
.b2b-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.b2b-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #053d9b;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(5,61,155,0.25);
}
.b2b-btn-primary:hover {
    background: #042f7a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5,61,155,0.35);
}
.b2b-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #053d9b !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none !important;
    border: 2px solid #053d9b;
    transition: all 0.2s;
}
.b2b-btn-outline:hover {
    background: rgba(5,61,155,0.05);
}
.b2b-btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* Hero Graphic */
.b2b-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.b2b-hero-graphic {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.b2b-central-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #053d9b, #1e5cd8);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 8px 32px rgba(5,61,155,0.4);
    z-index: 2;
}
.hub-icon { opacity: 0.9; margin-bottom: 4px; }
.hub-label { font-size: 15px; font-weight: 800; letter-spacing: 1px; }
.hub-sublabel { font-size: 10px; opacity: 0.7; font-weight: 500; }

.b2b-orbit-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border: 1.5px solid rgba(5,61,155,0.12);
}
.orbit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #053d9b;
}
.orbit-1 { top: 30px; right: 20px; }
.orbit-2 { top: 50%; left: 0; transform: translateY(-50%); }
.orbit-3 { top: 50%; right: -10px; transform: translateY(-50%); }
.orbit-4 { bottom: 50px; left: 30px; }

.b2b-promo-badge {
    position: absolute;
    top: 10px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff5f2e, #ff3d00);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(255,60,0,0.35);
    animation: pulse-promo 2.5s ease-in-out infinite;
    z-index: 3;
}
@keyframes pulse-promo {
    0%, 100% { box-shadow: 0 4px 14px rgba(255,60,0,0.35); }
    50% { box-shadow: 0 6px 24px rgba(255,60,0,0.55); }
}

.b2b-social-proof {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1px solid rgba(5,61,155,0.08);
}
.social-avatars { display: flex; }
.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #053d9b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-right: -6px;
}
.av1 { background: #053d9b; }
.av2 { background: #1e5cd8; }
.av3 { background: #2e7d32; }
.av4 { background: #f59e0b; }
.social-text { display: flex; flex-direction: column; margin-left: 10px; }
.social-text strong { font-size: 12px; color: #0f172a; font-weight: 700; }
.social-text span { font-size: 11px; color: #64748b; }

/* ----- HOW IT WORKS ----- */
.b2b-how-it-works {
    padding: 90px 0 70px;
    background: #fff;
}
.b2b-section-header {
    text-align: center;
    margin-bottom: 52px;
}
.b2b-section-badge {
    display: inline-block;
    background: rgba(5,61,155,0.08);
    color: #053d9b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.b2b-badge-light {
    background: rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.9) !important;
}
.b2b-section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.2;
}
.b2b-section-header-dark .b2b-section-title {
    color: #fff;
}
.b2b-section-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.b2b-section-header-dark .b2b-section-desc {
    color: rgba(255,255,255,0.7);
}

/* Flow Diagram */
.b2b-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.b2b-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #f8faff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 30px;
    min-width: 150px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.b2b-flow-node:hover {
    border-color: #053d9b;
    box-shadow: 0 4px 20px rgba(5,61,155,0.12);
}
.node-marketplace {
    background: linear-gradient(135deg, #053d9b, #1e5cd8);
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(5,61,155,0.3);
}
.node-marketplace:hover {
    border-color: transparent;
}
.node-marketplace .flow-node-icon svg { color: #fff; }
.node-marketplace .flow-node-text strong { color: #fff !important; }
.flow-marketplace-tag {
    font-size: 10px;
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9) !important;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 500;
}
.flow-node-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(5,61,155,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #053d9b;
}
.node-marketplace .flow-node-icon {
    background: rgba(255,255,255,0.15);
}
.flow-node-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}
.flow-node-text span {
    font-size: 12px;
    color: #64748b;
}
.b2b-flow-arrow {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Feature Cards */
.b2b-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.b2b-feature-card {
    background: #f8faff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.b2b-feature-card:hover {
    border-color: #053d9b;
    box-shadow: 0 8px 24px rgba(5,61,155,0.1);
    transform: translateY(-2px);
}
.b2b-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(5,61,155,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #053d9b;
    margin-bottom: 16px;
}
.b2b-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.b2b-feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.b2b-member-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    background: #f0f7ff;
    border: 1.5px solid rgba(5,61,155,0.2);
    color: #053d9b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto;
}

/* ----- DARK STEP SECTIONS ----- */
.b2b-steps-section {
    padding: 80px 0;
}
.b2b-dark {
    background: linear-gradient(135deg, #0c1e40 0%, #0f2d6e 60%, #0c1e40 100%);
}
.b2b-dark-alt {
    background: linear-gradient(135deg, #0a1a36 0%, #0d2660 60%, #0a1a36 100%);
}
.b2b-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.b2b-step-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: background 0.2s, border-color 0.2s;
}
.b2b-step-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.2);
}
.b2b-step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(5,61,155,0.6);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.b2b-step-content { flex: 1; }
.b2b-step-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}
.b2b-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.b2b-step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.68);
    line-height: 1.65;
    margin: 0;
}

/* ----- CTA SECTION ----- */
.b2b-cta-section {
    background: #fff;
    padding: 90px 0;
}
.b2b-cta-inner {
    text-align: center;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
    border: 2px solid rgba(5,61,155,0.15);
    border-radius: 24px;
    padding: 64px 40px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(5,61,155,0.08);
}
.b2b-cta-sync-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #053d9b, #1e5cd8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 6px 20px rgba(5,61,155,0.3);
}
.b2b-cta-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 14px;
}
.b2b-cta-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}
.b2b-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dropdown badge for new items */
.dropdown-link-highlight {
    background: rgba(5,61,155,0.04);
    border-radius: 8px;
    position: relative;
}
.dropdown-badge {
    display: inline-block;
    background: #053d9b;
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {
    .b2b-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .b2b-hero-visual {
        display: none;
    }
    .b2b-hero-title { font-size: 34px; }
    .b2b-features-grid { grid-template-columns: 1fr 1fr; }
    .b2b-flow { gap: 12px; }
    .b2b-flow-arrow { display: none; }
}

@media (max-width: 767px) {
    .b2b-hero { padding: 50px 0 60px; }
    .b2b-hero-title { font-size: 28px; }
    .b2b-hero-desc { font-size: 15px; }
    .b2b-hero-actions { flex-direction: column; }
    .b2b-btn-primary, .b2b-btn-outline { width: 100%; justify-content: center; }
    .b2b-features-grid { grid-template-columns: 1fr; gap: 16px; }
    .b2b-steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .b2b-flow { flex-direction: column; gap: 16px; }
    .b2b-flow-arrow { transform: rotate(90deg); }
    .b2b-flow-arrow { display: block; }
    .b2b-section-title { font-size: 26px; }
    .b2b-cta-title { font-size: 20px; }
    .b2b-cta-inner { padding: 40px 24px; }
    .b2b-cta-buttons { flex-direction: column; }
    .b2b-btn-lg { width: 100%; justify-content: center; }
    .b2b-step-card { flex-direction: column; gap: 14px; }
}

/* ----- B2B LIGHT SECTION (Section 3 - Alıcı Ol) ----- */
.b2b-steps-section.b2b-light {
    background: #f8faff !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.b2b-step-card-light {
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 2px 16px rgba(5,61,155,0.07);
}
.b2b-step-card-light:hover {
    background: #f0f5ff !important;
    border-color: rgba(5,61,155,0.3) !important;
    box-shadow: 0 6px 24px rgba(5,61,155,0.12) !important;
}
.b2b-step-number-light {
    background: rgba(5,61,155,0.08) !important;
    border: 2px solid rgba(5,61,155,0.2) !important;
    color: #053d9b !important;
}
.b2b-step-icon-light {
    background: rgba(5,61,155,0.08) !important;
    color: #053d9b !important;
}
.b2b-step-card-light .b2b-step-content h3 {
    color: #0f172a !important;
}
.b2b-step-card-light .b2b-step-content p {
    color: #64748b !important;
}

/* Flow marketplace inner pills (Turlar / Rezervasyonlar) */
.flow-marketplace-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    align-items: center;
}
.flow-item-pill {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92) !important;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25);
    letter-spacing: 0.3px;
}

/* B2B Pazaryeri ana menü vurgulama */
.nav-link-highlight {
    color: #053d9b !important;
    font-weight: 600 !important;
    position: relative;
}
.nav-new-badge {
    display: inline-block;
    background: #053d9b;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1.4;
    letter-spacing: 0.3px;
}


/* ============================================================
   ARAÇ OPERASYON PAGE STYLES
   ============================================================ */

/* ----- HERO ----- */
.aro-hero { background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 60%, #f5f3ff 100%); }
.aro-hero h1 span { color: #053d9b; }
.aro-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(5,61,155,0.1); color: #053d9b;
    font-size: 13px; font-weight: 600; padding: 6px 14px;
    border-radius: 100px; margin-bottom: 18px;
    border: 1px solid rgba(5,61,155,0.2);
}
.aro-hero-stats {
    display: flex; align-items: center; gap: 20px;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid rgba(5,61,155,0.12);
}
.aro-stat { display: flex; flex-direction: column; }
.aro-stat strong { font-size: 22px; font-weight: 800; color: #053d9b; line-height: 1; }
.aro-stat span { font-size: 12px; color: #64748b; margin-top: 3px; }
.aro-stat-divider { width: 1px; height: 36px; background: rgba(5,61,155,0.15); }

/* Dashboard Mockup */
.aro-dashboard-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(5,61,155,0.15);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.aro-mock-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 6px;
}
.aro-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.aro-mock-dot.red { background: #ef4444; }
.aro-mock-dot.yellow { background: #f59e0b; }
.aro-mock-dot.green { background: #22c55e; }
.aro-mock-header span { color: rgba(255,255,255,0.5); font-size: 11px; margin-left: 8px; }
.aro-mock-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.aro-mock-card {
    border-radius: 12px; padding: 14px;
    border: 1.5px solid #e2e8f0;
}
.card-active { border-color: #bfdbfe; background: #f0f7ff; }
.card-waiting { background: #fff9f0; border-color: #fed7aa; }
.aro-mock-status {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600; color: #16a34a;
    background: #dcfce7; padding: 3px 8px; border-radius: 100px;
}
.status-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #16a34a;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.aro-mock-tour-name { font-size: 14px; font-weight: 700; color: #0f172a; margin: 6px 0 2px; }
.aro-mock-date { font-size: 11px; color: #64748b; }
.aro-mock-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0; }
.aro-tag {
    background: #1e3a8a; color: #fff;
    font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 100px;
}
.aro-tag-driver { background: #b91c1c; }
.aro-mock-stats-row {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 8px; margin: 8px 0;
    border-top: 1px solid rgba(5,61,155,0.1);
    padding-top: 8px;
}
.aro-mock-stat { text-align: center; }
.aro-mock-stat strong { display: block; font-size: 16px; color: #0f172a; }
.aro-mock-stat span { font-size: 9px; color: #64748b; }
.aro-mock-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.aro-mock-btn-outline {
    flex: 1; padding: 6px 8px; border-radius: 8px;
    border: 1.5px solid #94a3b8; background: #fff;
    font-size: 10px; font-weight: 600; color: #334155; cursor: default;
}
.aro-mock-tour-name-sm { font-size: 13px; font-weight: 700; color: #92400e; }
.aro-mock-warnings { display: flex; flex-direction: column; gap: 3px; margin: 6px 0; }
.aro-warn { font-size: 10px; color: #b45309; font-weight: 500; }
.aro-mock-btn-primary {
    width: 100%; padding: 8px; border-radius: 8px;
    background: #f97316; border: none;
    color: #fff; font-size: 11px; font-weight: 700; cursor: default;
    margin-top: 6px;
}

/* ----- SECTIONS ----- */
.aro-section { padding: 88px 0; }
.aro-section-light { background: #f8faff; }
.aro-section-dark { background: linear-gradient(135deg, #0c1e40 0%, #0f2d6e 60%, #0c1e40 100%); }
.aro-section-header { text-align: center; margin-bottom: 52px; }
.aro-section-badge {
    display: inline-block;
    background: rgba(5,61,155,0.08); color: #053d9b;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 5px 14px;
    border-radius: 100px; margin-bottom: 14px;
}
.aro-badge-light {
    background: rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.9) !important;
}
.aro-section-header h2,
.aro-two-col-text h2 {
    font-size: 32px; font-weight: 800; color: #0f172a;
    margin-bottom: 14px; line-height: 1.25;
}
.aro-header-dark h2 { color: #fff !important; }
.aro-section-header p,
.aro-two-col-text p {
    font-size: 16px; color: #64748b;
    max-width: 620px; margin: 0 auto; line-height: 1.7;
}
.aro-header-dark p { color: rgba(255,255,255,0.65) !important; }

/* ----- STATUS GRID ----- */
.aro-status-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.aro-status-card {
    background: #fff; border-radius: 20px; padding: 28px 24px;
    border: 1.5px solid #e2e8f0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.aro-status-card:hover { box-shadow: 0 8px 28px rgba(5,61,155,0.1); transform: translateY(-2px); }
.aro-status-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.status-card-waiting .aro-status-icon { background: #fff7ed; color: #ea580c; }
.status-card-active .aro-status-icon { background: #f0fdf4; color: #16a34a; }
.status-card-done .aro-status-icon { background: #f0f5ff; color: #053d9b; }
.aro-status-card h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.aro-status-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 16px; }
.aro-status-example {
    background: #f8faff; border-radius: 12px; padding: 14px;
    border: 1px solid #e2e8f0;
}
.aro-example-tour { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }
.aro-example-name { font-size: 13px; font-weight: 700; color: #0f172a; }
.aro-example-date { font-size: 11px; color: #64748b; }
.aro-example-warns { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.aro-warn-sm { font-size: 11px; color: #b45309; font-weight: 500; }
.aro-example-btn {
    width: 100%; padding: 7px; background: #f97316; border: none;
    color: #fff; font-size: 11px; font-weight: 700;
    border-radius: 8px; cursor: default;
}
.aro-active-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600; color: #16a34a;
    background: #dcfce7; padding: 3px 10px;
    border-radius: 100px; margin-bottom: 8px;
}
.live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #16a34a;
    animation: blink 1.5s infinite;
}
.aro-progress-bar {
    background: #e2e8f0; border-radius: 100px; height: 6px;
    margin: 8px 0 4px;
}
.aro-progress-fill { height: 6px; border-radius: 100px; background: #16a34a; }
.aro-progress-label { font-size: 11px; color: #64748b; }
.aro-done-list { display: flex; flex-direction: column; gap: 6px; }
.aro-done-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #475569; }

/* ----- FEATURES 2x2 GRID (dark section) ----- */
.aro-features-grid-2 {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.aro-feat-card {
    border-radius: 20px; padding: 28px 24px;
}
.aro-feat-dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}
.aro-feat-dark:hover { background: rgba(255,255,255,0.10); }
.aro-feat-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85); margin-bottom: 14px;
}
.aro-feat-dark h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.aro-feat-dark p { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.6; margin-bottom: 14px; }
.aro-feat-demo { display: flex; flex-direction: column; gap: 6px; }
.aro-demo-btn {
    padding: 7px 12px; border-radius: 8px; border: none;
    background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
    font-size: 11px; font-weight: 600; cursor: default; text-align: left;
}
.aro-link-preview {
    background: rgba(0,0,0,0.2); border-radius: 8px; padding: 8px 10px;
    display: flex; flex-direction: column; gap: 2px;
}
.aro-link-label { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; }
.aro-link-url { font-size: 10px; color: #93c5fd; font-family: monospace; }
.aro-screen-demo { display: flex; gap: 8px; flex-wrap: wrap; }
.aro-screen-pill {
    padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 600;
}
.aro-screen-pill.guide { background: rgba(99,102,241,0.25); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.4); }
.aro-screen-pill.driver { background: rgba(239,68,68,0.2); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }
.aro-sales-item {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.08); border-radius: 8px; padding: 7px 10px;
    font-size: 12px; color: rgba(255,255,255,0.8);
}
.aro-sales-price { color: #4ade80; font-weight: 700; }

/* ----- TWO-COL LAYOUT ----- */
.aro-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.aro-two-col-reverse { direction: rtl; }
.aro-two-col-reverse > * { direction: ltr; }
.aro-two-col-text { display: flex; flex-direction: column; gap: 0; }
.aro-two-col-text .aro-section-badge { margin-bottom: 14px; }
.aro-two-col-text h2 { margin-bottom: 14px; }
.aro-two-col-text p { margin: 0 0 28px; max-width: 100%; }
.aro-section-dark .aro-two-col-text h2 { color: #fff; }
.aro-section-dark .aro-two-col-text p { color: rgba(255,255,255,0.65); }

/* Checkin feats */
.aro-checkin-feats { display: flex; flex-direction: column; gap: 16px; }
.aro-checkin-feat {
    display: flex; align-items: flex-start; gap: 12px;
    background: #fff; border-radius: 12px; padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    transition: border-color 0.2s;
}
.aro-checkin-feat:hover { border-color: rgba(5,61,155,0.3); }
.aro-cf-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(5,61,155,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: #053d9b;
}
.aro-checkin-feat strong { display: block; font-size: 14px; color: #0f172a; margin-bottom: 3px; }
.aro-checkin-feat span { font-size: 12px; color: #64748b; line-height: 1.5; }

/* Passenger mockup */
.aro-passenger-mockup {
    background: #fff; border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(5,61,155,0.1);
    overflow: hidden;
}
.aro-pass-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; background: #f8faff;
    border-bottom: 1px solid #e2e8f0;
}
.aro-pass-header strong { font-size: 14px; color: #0f172a; }
.aro-pass-header span { font-size: 12px; color: #64748b; }
.aro-pass-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-bottom: 1px solid #f1f5f9;
}
.aro-pass-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: #f1f5f9; display: flex; align-items: center;
    justify-content: center; font-size: 12px; font-weight: 700;
    color: #475569; flex-shrink: 0;
}
.aro-pass-info { flex: 1; }
.aro-pass-info strong { display: block; font-size: 13px; color: #0f172a; }
.aro-pass-info span { display: block; font-size: 10px; color: #94a3b8; }
.aro-pickup-link { color: #053d9b !important; text-decoration: underline; cursor: default; }
.aro-pass-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.aro-seat-badge {
    font-size: 10px; font-weight: 600; color: #053d9b;
    background: #eff6ff; padding: 2px 8px; border-radius: 100px;
    border: 1px solid #bfdbfe;
}
.aro-checkin-badge {
    font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px;
}
.aro-checkin-badge.done { background: #16a34a; color: #fff; }
.aro-checkin-badge.waiting { background: transparent; color: #0891b2; border: 1.5px solid #0891b2; }
.aro-pass-more {
    text-align: center; font-size: 11px; color: #94a3b8;
    padding: 8px; background: #f8faff;
}
.aro-qr-strip {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #0c1e40; color: #fff; font-size: 13px; font-weight: 600;
    padding: 12px;
}

/* Vehicle form mockup */
.aro-vehicle-mockup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 24px;
}
.aro-veh-field { margin-bottom: 14px; }
.aro-veh-field label { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 5px; font-weight: 600; }
.aro-veh-input {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 10px 12px;
    font-size: 13px; color: rgba(255,255,255,0.85);
}
.aro-input-highlight { border-color: rgba(59,130,246,0.5); color: #93c5fd; font-weight: 700; }
.aro-seat-options { display: flex; gap: 8px; }
.aro-seat-opt {
    flex: 1; padding: 10px 8px; border-radius: 10px; text-align: center;
    background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
    cursor: default;
}
.aro-seat-opt.active { border-color: #3b82f6; background: rgba(59,130,246,0.15); }
.aro-seat-opt span { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); margin-top: 6px; }
.seat-vis { display: flex; gap: 3px; justify-content: center; flex-wrap: wrap; }
.seat {
    width: 10px; height: 12px; border-radius: 3px;
    background: rgba(255,255,255,0.3);
}
.aro-seat-opt.active .seat { background: #60a5fa; }

/* Features list (dark section) */
.aro-feats-list { display: flex; flex-direction: column; gap: 14px; }
.aro-feat-item { display: flex; align-items: flex-start; gap: 12px; }
.aro-feat-item-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(255,255,255,0.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
}
.aro-feat-item strong { display: block; font-size: 14px; color: #fff; margin-bottom: 3px; }
.aro-feat-item span { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Location grid */
.aro-loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.aro-loc-card {
    background: #fff; border-radius: 20px; padding: 32px 28px;
    border: 1.5px solid #e2e8f0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.aro-loc-card:hover { box-shadow: 0 8px 28px rgba(5,61,155,0.1); transform: translateY(-2px); }
.aro-loc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(5,61,155,0.08); color: #053d9b;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.aro-loc-card h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.aro-loc-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 16px; }
.aro-map-placeholder {
    background: #f0f5ff; border-radius: 10px; padding: 16px;
    text-align: center; border: 1px dashed #bfdbfe; position: relative;
}
.aro-map-placeholder span { font-size: 12px; color: #475569; font-weight: 500; }
.aro-map-pin {
    width: 12px; height: 12px; border-radius: 50%; background: #053d9b;
    margin: 0 auto 10px;
    box-shadow: 0 0 0 4px rgba(5,61,155,0.2);
}
.aro-map-route {
    height: 2px; background: repeating-linear-gradient(90deg,#053d9b 0,#053d9b 6px,transparent 6px,transparent 12px);
    margin-bottom: 10px; border-radius: 2px;
}
.aro-action-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.aro-btn-replan {
    flex: 1; padding: 10px 14px; border-radius: 10px;
    border: 1.5px solid #f97316; background: transparent;
    color: #f97316; font-size: 13px; font-weight: 600; cursor: default;
}
.aro-btn-complete {
    flex: 1; padding: 10px 14px; border-radius: 10px;
    border: none; background: #16a34a;
    color: #fff; font-size: 13px; font-weight: 600; cursor: default;
}

/* ----- CTA ----- */
.aro-cta-section { background: #fff; padding: 90px 0; }
.aro-cta-inner {
    text-align: center; max-width: 780px; margin: 0 auto;
    background: linear-gradient(135deg, #f0f5ff, #e8f0fe);
    border: 2px solid rgba(5,61,155,0.15); border-radius: 24px; padding: 60px 40px;
    box-shadow: 0 8px 40px rgba(5,61,155,0.08);
}
.aro-cta-icon {
    width: 70px; height: 70px; background: linear-gradient(135deg,#053d9b,#1e5cd8);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    color: #fff; margin: 0 auto 22px;
    box-shadow: 0 6px 20px rgba(5,61,155,0.3);
}
.aro-cta-inner h2 { font-size: 24px; font-weight: 800; color: #0f172a; margin-bottom: 12px; line-height: 1.35; }
.aro-cta-inner p { font-size: 15px; color: #64748b; margin-bottom: 28px; line-height: 1.6; }
.aro-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {
    .aro-dashboard-mockup { display: none; }
    .aro-status-grid { grid-template-columns: 1fr; }
    .aro-features-grid-2 { grid-template-columns: 1fr; }
    .aro-two-col { grid-template-columns: 1fr; gap: 40px; }
    .aro-two-col-reverse { direction: ltr; }
    .aro-loc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .aro-section { padding: 56px 0; }
    .aro-hero-stats { gap: 14px; }
    .aro-section-header h2, .aro-two-col-text h2 { font-size: 24px; }
    .aro-cta-inner { padding: 36px 20px; }
    .aro-cta-inner h2 { font-size: 20px; }
    .aro-cta-buttons { flex-direction: column; }
    .aro-mock-stats-row { grid-template-columns: repeat(2,1fr); }
}

/* ===== GLOBAL BUTTON STYLES (for CTA sections outside .page-hero) ===== */
.btn-hero-primary {
    background: #053d9b !important;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn-hero-primary:hover {
    background: #0a4eb3 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
    text-decoration: none !important;
}
.btn-hero-outline {
    background: #fff !important;
    color: #334155 !important;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1.5px solid #e2e8f0 !important;
    transition: all 0.25s ease;
    display: inline-block;
    cursor: pointer;
}
.btn-hero-outline:hover {
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}
