/* ===========================================
   Dakika Promo Section Styles
   =========================================== */

.dakika-promo-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.dakika-promo-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f1c3f;
    margin-bottom: 48px;
}

.dakika-promo-title span {
    color: #f97316;
}

.dakika-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.dakika-promo-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.dakika-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}

.dakika-promo-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    object-fit: contain;
}


.dakika-promo-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.dakika-promo-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .dakika-promo-section {
        padding: 60px 20px;
    }

    .dakika-promo-title {
        font-size: 24px;
    }
}

/* ===========================================
   Header & Navigation
   =========================================== */
header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 0 !important;
    min-height: 60px;
}

header [class*="col-"] {
    float: none !important;
    width: auto !important;
    flex: 1;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    min-height: auto !important;
}

header .text-right {
    justify-content: flex-end !important;
}

header .Logo {
    width: 170px !important;
    margin: 0 !important;
    display: block !important;
}

@media (max-width: 768px) {
    header {
        padding: 15px !important;
        min-height: 60px;
    }

    header .Logo {
        width: 145px !important;
    }

    header .dropdown-toggle {
        font-size: 14px !important;
        gap: 6px !important;
    }

    header .dropdown-toggle svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Remove redundant padding from inline styles in home.html */
    header .text-right>div {
        padding: 0 !important;
    }
}

/* ===========================================
   Global Primary Color & Button Standards
   =========================================== */

/* Primary Button Override */
.btn-primary {
    background: #0256AB !important;
    border-color: #0256AB !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    font-weight: 500 !important;
    box-shadow: 0 10px 25px rgba(2, 86, 171, 0.25) !important;
    transition: all 0.25s ease !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #014589 !important;
    border-color: #014589 !important;
    box-shadow: 0 15px 30px rgba(2, 86, 171, 0.35) !important;
    transform: translateY(-2px) !important;
}

/* Secondary/Ghost Button - Kibar Style */
.btn-ghost {
    background: transparent !important;
    border: none !important;
    color: #0256AB !important;
    font-weight: 500 !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.btn-ghost:hover {
    background: rgba(2, 86, 171, 0.05) !important;
    color: #014589 !important;
}

.btn-ghost i {
    font-size: 18px !important;
}

/* ===========================================
   Breadcrumb Navigation
   =========================================== */
.netten-brute-breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
    background: transparent;
}

.netten-brute-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.netten-brute-breadcrumb ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.netten-brute-breadcrumb ul li:first-child a {
    color: #0256AB;
    font-weight: 600;
}

.netten-brute-breadcrumb ul li a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.netten-brute-breadcrumb ul li a:hover {
    color: #0256AB;
    text-decoration: underline;
}

.netten-brute-breadcrumb ul li::after {
    content: "\f105";
    /* FontAwesome angle-right */
    font-family: 'FontAwesome';
    margin-left: 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.netten-brute-breadcrumb ul li:last-child::after {
    display: none;
}

.netten-brute-breadcrumb ul li:last-child {
    color: #94a3b8;
    pointer-events: none;
}

@media (max-width: 768px) {
    .netten-brute-breadcrumb {
        margin-bottom: 10px;
        font-size: 13px;
    }

    /* Full width banner and nav on mobile */
    .netten-banner-link,
    .netten-mobile-nav {
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        margin-bottom: 20px;
        display: block;
        border-radius: 0 !important;
    }

    .netten-banner-img {
        width: 100%;
        height: auto;
        border-radius: 0 !important;
        display: block;
    }

    .netten-mobile-nav-trigger {
        border-radius: 0 !important;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===========================================
   Global Mobile Design Fixes
   =========================================== */
@media (max-width: 768px) {
    .netten-mobile-nav {
        display: block;
    }

    .container,
    .container.setSpacing,
    .page-content,
    .page-content-wrapper {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Inner containers shouldn't add more padding */
    .container .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Reduce vertical spacing for cards and sections */
    .netten-brute-hero,
    .netten-brute-card,
    .netten-result-card,
    .calc-card,
    .dakika-promo-card {
        padding: 24px 15px !important;
        border-radius: 20px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    .calc-card {
        min-height: auto !important;
        padding: 30px 20px !important;
    }

    .netten-brute-hero {
        margin-top: 20px !important;
        min-height: auto !important;
        padding: 24px 12px !important;
        /* Maximize internal space */
    }

    .netten-brute-hero-grid {
        gap: 24px !important;
    }

    /* Make components feel "bigger" */
    .netten-brute-form-group label {
        font-size: 15px !important;
        font-weight: 500 !important;
    }

    .form-control,
    .netten-brute-input-row .form-control {
        height: 52px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    .btn-primary,
    .btn-ghost {
        padding: 14px 28px !important;
        font-size: 16px !important;
    }

    .dakika-promo-title {
        font-size: 24px !important;
        margin-bottom: 32px !important;
        padding: 0 10px !important;
    }

    .hero-section {
        padding: 40px 15px !important;
    }

    .netten-brute-radio-group .btn {
        padding: 12px 16px !important;
        font-size: 15px !important;
    }

    .netten-brute-radio-group .btn::before {
        width: 20px !important;
        height: 20px !important;
    }

    /* Mobile Navigation */
    .netten-mobile-nav {
        display: none;
        position: relative;
        margin-bottom: 24px;
        z-index: 100;
        width: 100%;
    }

    .netten-mobile-nav-trigger {
        background: #0256AB;
        border-radius: 4px;
        padding: 16px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        box-shadow: none;
    }

    .netten-mobile-nav-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 0 0 4px 4px;
        margin-top: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        /* Match trigger shadow if any, or keeps it subtle */
        padding: 0;
        border: 1px solid #e1e4e8;
        border-top: none;
    }

    .netten-mobile-nav-item {
        display: block;
        padding: 14px 20px;
        color: #4b5563;
        font-weight: 500;
        border-radius: 0;
        text-decoration: none !important;
        border-bottom: 1px solid #f1f1f1;
    }

    .netten-mobile-nav-item:last-child {
        border-bottom: none;
    }

    .netten-mobile-nav-item:hover,
    .netten-mobile-nav-item.active {
        background: #f3f4f6;
        color: #0256AB;
    }
}

/* ===========================================
   Netten Brute & Calculation Pages Common CSS
   =========================================== */

/* Container Override - Balanced Padding & Large Width */
.container,
.container.setSpacing {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 1440px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.page-content-wrapper,
.page-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hero Section Spacing */
.netten-brute-hero {
    border-radius: 32px !important;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(15, 53, 123, 0.08);
    margin-bottom: 60px;
}

/* Hero Grid Ratio: Left 40% - Right 60% on Desktop */
.netten-brute-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (min-width: 992px) {
    .netten-brute-hero-grid {
        grid-template-columns: 46fr 54fr;
    }
}

/* Netten Brüte Page */
.netten-brute-layout {
    padding-top: 20px;
    padding-bottom: 40px;
}

.netten-brute-hero-copy h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f1c3f;
    margin-bottom: 20px;
}

.netten-brute-hero-copy p {
    color: #5c5f77;
    font-size: 16px;
    line-height: 1.8;
}

.netten-brute-lead {
    font-size: 18px;
    color: #1b1f3b;
}

.netten-brute-eyebrow {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0256AB;
    font-weight: 600;
    margin-bottom: 10px;
}

.netten-brute-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.netten-brute-btn {
    border-radius: 999px !important;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* Duplicated button styles removed/merged with global */
.netten-brute-btn.primary {
    background: #0256AB;
    color: #fff;
    box-shadow: 0 15px 30px rgba(2, 86, 171, 0.35);
}

.netten-brute-btn.primary:hover {
    background: #014589;
    color: #fff;
}

.netten-brute-btn.ghost {
    background: #fff;
    color: #0256AB;
    border: 1px solid rgba(2, 86, 171, 0.3);
}

.netten-brute-btn.ghost:hover {
    background: rgba(2, 86, 171, 0.08);
    color: #014589;
}


.netten-brute-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.netten-banner-link {
    display: flex;
    justify-content: center;
    width: 100%;
}











.netten-brute-card {
    background: #fff;
    border-radius: 30px !important;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(34, 56, 118, 0.08);
    overflow: hidden;
}

.netten-brute-tabs {
    display: flex;
    gap: 10px;
    background: #e9ecef !important;
    border-radius: 30px !important;
    padding: 5px !important;
    margin-bottom: 24px;
    width: 100%;
    height: 55px;
}

@media (max-width: 768px) {
    .netten-brute-tabs {
        display: none !important;
    }
}

.netten-brute-tab {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: #6b7280;
    border-radius: 30px !important;
    padding: 13px 16px !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    background: #e9ecef !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px !important;
    min-width: 0 !important;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.netten-brute-tab:hover {
    color: #0f62fe;
    background: #d9dee2 !important;
}

.netten-brute-tab.is-active,
.netten-brute-tab.active {
    background: #0256AB !important;
    color: #fff;
    box-shadow: 0 12px 24px rgba(2, 86, 171, 0.25);
}

.netten-brute-form-group {
    margin-bottom: 20px;
}

.netten-brute-form-group label {
    display: block;
    font-weight: 500;
    color: #1c2241;
    margin-bottom: 10px;
    font-size: 14px;
}

.netten-brute-form-group .helper {
    font-size: 12px;
    color: #8b8fa3;
    font-weight: 400;
    margin-left: 6px;
    display: block;
    margin-top: 4px;
}

.netten-brute-input-row {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.netten-brute-input-row .form-control {
    flex: 1;
    min-width: 100px;
    height: 48px;
    border-radius: 5px !important;
    border: 1px solid #d5d9e2;
    padding: 0 12px;
}

.netten-brute-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {

    /* Mobile-specific adjustments for NettenBrute */
    .netten-brute-card {
        padding: 20px !important;
        border-radius: 16px !important;
        /* Slightly reduced radius for mobile */
    }

    .netten-brute-radio-group {
        display: flex;
        width: 100%;
        background: #f3f4f6;
        padding: 4px;
        border-radius: 12px;
        gap: 0;
        /* Remove gap for segmented control look */
    }

    .netten-brute-radio-group .btn {
        flex: 1;
        justify-content: center;
        border-radius: 8px !important;
        padding: 10px !important;
        text-align: center;
        font-weight: 600;
        color: #6b7280;
    }

    .netten-brute-radio-group .btn::before {
        display: none !important;
        /* Hide radio circle on mobile */
    }

    .netten-brute-radio-group .btn.active {
        background: #fff !important;
        color: #0256AB !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .netten-brute-detail-toggle {
        width: calc(100% + 40px) !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        margin-bottom: -20px !important;
    }
}

.netten-brute-radio-group .btn {
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    background: transparent;
    color: #1c2241;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: 14px;
}

.netten-brute-radio-group .btn::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(15, 98, 254, 0.4);
    display: inline-block;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.netten-brute-radio-group .btn.active,
.netten-brute-radio-group .btn:focus,
.netten-brute-radio-group .btn:active {
    background: transparent;
    color: #1c2241;
}

.netten-brute-radio-group .btn.active::before,
.netten-brute-radio-group .btn:focus::before,
.netten-brute-radio-group .btn:active::before {
    background: #0256AB;
    border-color: #0256AB;
    box-shadow: inset 0 0 0 4px #fff;
}

.netten-brute-form-actions {
    margin: 20px 0 10px;
}

.netten-brute-submit {
    width: 100%;
    background: #0256AB;
    border: none;
    font-size: 16px;
    padding: 14px;
    border-radius: 30px !important;
    box-shadow: 0 20px 40px rgba(2, 86, 171, 0.3);
    color: #fff;
    font-weight: 600;
    transition: all 0.25s ease;
}

.netten-brute-submit:hover {
    background: #014589;
}

.netten-brute-detail-toggle {
    text-align: center;
    margin-top: 20px;
    background: #e9ecef;
    border-radius: 0 0 28px 28px;
    padding: 10px 0;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -30px;
}

.netten-brute-detail-btn {
    background: transparent;
    border: none;
    color: #0256AB;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 100%;
    justify-content: flex-start;
    padding-left: 30px;
    font-size: 15px;
}

.netten-brute-details {
    margin-top: 10px;
    margin-bottom: 20px;
}

.netten-brute-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.netten-brute-detail-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.netten-brute-detail-card {
    border-radius: 18px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.netten-brute-detail-card label {
    font-size: 12px;
    color: #4b4f63;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.netten-brute-detail-card .form-control {
    height: 46px;
    width: 100%;
    border-radius: 5px !important;
    border: 1px solid #d5d9e2;
    padding: 0 12px;
}

.netten-brute-switch-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.netten-brute-switch {
    background: transparent;
    border-radius: 18px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.netten-brute-switch>label:first-of-type {
    font-size: 14px;
    color: #4b4f63;
    font-weight: 500;
    margin-bottom: 0;
    flex: 1;
}

.netten-brute-error .error-text {
    background: #ffe0e0;
    color: #a02323;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.netten-brute-details-wrapper {
    margin-top: 20px;
}

.netten-brute-details-wrapper .netten-brute-form-actions {
    margin-top: 20px;
    margin-bottom: 0;
}

/* Switch Control */
.switch-control {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.switch-control input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-control .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d5d9e2;
    transition: 0.3s;
    border-radius: 26px !important;
}

.switch-control .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch-control input:checked+.slider {
    background: #0256AB;
}

.switch-control input:checked+.slider:before {
    transform: translateX(22px);
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.Yillik-Maliyet {
    min-width: 800px;
    width: 100%;
}

/* Netten Brüte Page - Sonuç Tasarımı */
.netten-result-wrapper {
    margin-top: 40px;
}

.netten-result-full {
    width: 100%;
}

.netten-result-layout {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.netten-result-sidebar {
    background: #fff;
    border-radius: 24px !important;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
    top: 100px;
}

.netten-result-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.netten-result-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    border-radius: 20px !important;
    text-decoration: none !important;
    background: #f6f7fb;
    color: #1c2241;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}


.netten-result-nav-item p {
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.netten-result-nav-item span {
    display: block;
    color: #667085;
    font-size: 12px;
    text-align: center;
}

.netten-result-nav-item.is-active,
.netten-result-nav-item:hover {
    border-color: #0256AB;
    background: #eef4ff;
}

.netten-result-nav-img {
    width: 100%;
    max-width: 130px;
    height: auto;
}

.netten-result-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.netten-result-card {
    background: #fff;
    border-radius: 28px !important;
    padding: 24px 26px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.netten-chart-description {
    color: #4b4f63;
    font-size: 14px;
    margin-bottom: 16px;
}

.netten-result-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.netten-result-breadcrumb {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.netten-result-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0256AB;
    text-decoration: none;
}

.netten-result-card-title h2 {
    font-size: 18px;
    color: #0f1c3f;
    margin-bottom: 12px;
    font-weight: 600;
}

.netten-result-card-title p {
    color: #4b4f63;
    margin-bottom: 8px;
    font-size: 14px;
}

.netten-result-subtext {
    color: #778197;
    font-size: 13px;
}

.netten-result-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.netten-result-field label {
    font-size: 14px;
    font-weight: 600;
    color: #1c2241;
    margin-bottom: 8px;
    display: block;
}

.netten-result-inputs {
    display: flex;
    gap: 12px;
}

.netten-result-inputs .form-control {
    height: 48px;
    border-radius: 12px !important;
    border: 1px solid #d5d9e2;
}

.netten-result-radio-group .btn {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 10px 18px 10px 40px;
    font-weight: 600;
    color: #4b4f63;
    background: #fff;
    position: relative;
}

.netten-result-radio-group .btn::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #a8b5ce;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
}

.netten-result-radio-group .btn.active {
    background: #fff;
    color: #0066CC;
    border-color: transparent;
}

.netten-result-radio-group .btn.active::before {
    border-color: #0256AB;
    background: #0256AB;
    box-shadow: inset 0 0 0 4px #fff;
}

.netten-result-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.netten-result-form-actions.stacked {
    justify-content: flex-start;
}

.netten-result-btn {
    border-radius: 999px;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.netten-result-btn.primary {
    background: #0256AB;
    color: #fff;
    box-shadow: 0 15px 30px rgba(2, 86, 171, 0.35);
    border-radius: 30px !important;
}

.netten-result-btn.ghost {
    background: rgba(2, 86, 171, 0.1);
    color: #0256AB;
    border-radius: 30px !important;
}

.netten-result-btn.outline {
    border: 1px solid #d0d7e6;
    background: transparent;
    color: #0f1c3f;
}

.netten-result-advanced {
    margin-top: 24px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 20px;
}

.netten-result-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.netten-result-advanced-card {
    border-radius: 18px !important;
    padding: 16px;
}

.netten-result-helper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 8px;
}

.netten-result-switch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.netten-result-switch {
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.netten-result-switch label {
    font-weight: 600;
    color: #1b1f3b;
    margin-bottom: 0;
}

.netten-result-switch .switch-control {
    margin-top: 6px;
}

.netten-result-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.netten-result-table-card .table-responsive {
    margin-top: 20px;
}

.netten-results-table th {
    color: #0066CC;
    font-weight: 600;
}

.netten-results-table tr:first-child th {
    color: #0066CC;
}

.netten-results-table tr:not(:first-child) th {
    color: inherit;
}

.netten-results-table tr:last-child th,
.netten-results-table tr:last-child td {
    font-weight: 600;
    color: #000;
}

.netten-result-card-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px;
    border: 1px dashed #d5d9e2;
    border-radius: 18px;
}

.netten-result-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.netten-result-table-input {
    width: 140px;
    text-align: center;
    border: 1px solid #cbd5f5;
    border-radius: 12px !important;
    padding: 6px 8px;
}

.netten-mobile-nav {
    display: none;
}

.netten-result-input-cell {
    text-align: center;
}

.netten-result-downloads {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px !important;
}

.netten-result-download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.netten-result-download {
    border-radius: 30px;
    border: 1px solid #d0d7e6;
    padding: 10px 16px;
    background: #fff;
    font-weight: 600;
    color: #0f1c3f;
    display: inline-flex;
    font-size: 14px;
    gap: 8px;
    align-items: center;
    border-radius: 30px !important;
}

.netten-result-share {
    display: flex;
    gap: 10px;
    align-items: center;
}

.netten-result-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef2ff;
    color: #0f62fe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.netten-result-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.netten-warning-card {
    background: #fff6e5;
}

.netten-net-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.netten-net-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.netten-net-row {
    display: flex;
    align-items: center;
    color: #1c2241;
}

.netten-result-chart {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
}

.netten-result-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.netten-result-loader {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.netten-result-ad {
    text-align: center;
}

@media (max-width: 992px) {
    .netten-brute-layout {
        padding: 15px 0 30px;
    }

    .netten-brute-hero {
        padding: 30px 24px;
        margin: 30px 0 30px;
    }

    .netten-brute-hero-copy h1 {
        font-size: 36px;
    }

    .netten-brute-hero-copy p {
        font-size: 15px;
    }

    .netten-brute-card,
    .netten-result-card {
        padding: 24px;
    }

    .netten-result-full {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .netten-result-full .row {
        margin-left: 0;
        margin-right: 0;
    }

    .netten-result-full [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .netten-result-layout {
        display: contents;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .netten-result-sidebar,
    .netten-result-main {
        width: 100%;
        position: static;
        top: auto;
        box-sizing: border-box;
    }

    .netten-result-nav {
        flex-direction: column;
        gap: 16px;
    }

    .netten-result-nav-item {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        text-align: left;
        box-sizing: border-box;
    }

    .netten-result-nav-item p,
    .netten-result-nav-item span {
        text-align: left;
    }

    .netten-breadcrumb-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .netten-brute-tabs {
        max-width: 100%;
    }

    .netten-brute-tab {
        padding: 12px 12px !important;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .netten-result-sidebar {
        display: none !important;
    }

    .netten-result-main {
        width: 100%;
        position: static;
        top: auto;
    }

    .netten-result-card-title p,
    .netten-chart-description {
        display: none !important;
    }

    .netten-result-table-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive {
        border: 0;
    }

    .netten-brute-layout {
        padding: 0 0 10px;
    }

    .page-content-wrapper .page-content {
        padding: 0 !important;
    }

    .netten-brute-hero {
        padding: 24px 16px;
        border-radius: 20px !important;
        margin-bottom: 24px;
        margin-top: 20px;
    }

    .netten-brute-card,
    .netten-result-card {
        padding: 20px 16px !important;
        border-radius: 20px !important;
    }

    .container.setSpacing {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .netten-brute-ad img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .netten-brute-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .netten-brute-panel {
        order: 1;
        width: 100%;
    }

    .netten-brute-hero-copy {
        order: 2;
        margin-top: 30px;
    }

    .netten-brute-hero-copy h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .netten-brute-hero-copy p {
        font-size: 14px;
    }

    .netten-brute-lead {
        font-size: 16px;
    }

    .netten-brute-cta {
        flex-direction: column;
        gap: 12px;
        margin: 24px 0;
    }

    .netten-brute-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }

    .netten-brute-card {
        padding: 8px;
        border-radius: 16px !important;
    }

    .netten-brute-tabs {
        display: none !important;
    }

    .netten-mobile-nav {
        display: block;
        position: relative;
        margin-bottom: 24px;
        z-index: 100;
        width: 100%;
    }

    .netten-mobile-nav-trigger {
        background: #0256AB;
        border-radius: 20px;
        padding: 14px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .netten-mobile-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 16px;
        margin-top: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 8px;
        overflow: hidden;
    }

    .netten-mobile-nav-item {
        display: block;
        padding: 12px 16px;
        color: #4b5563;
        font-weight: 500;
        border-radius: 12px;
        text-decoration: none !important;
        margin-bottom: 4px;
    }

    .netten-mobile-nav-item:hover,
    .netten-mobile-nav-item.active {
        background: #f3f4f6;
        color: #0256AB;
    }


    .netten-brute-tab {
        width: 100% !important;
        flex: none;
        border-radius: 16px !important;
        height: 44px !important;
        padding: 12px 16px !important;
        font-size: 14px;
    }

    .netten-result-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .netten-result-form-grid {
        grid-template-columns: 1fr;
    }

    .netten-result-inputs {
        flex-direction: column;
    }

    .netten-result-card-actions,
    .netten-result-form-actions,
    .netten-result-card-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .netten-result-card-toolbar>* {
        width: 100%;
    }

    .netten-result-downloads {
        flex-direction: column;
        align-items: flex-start;
    }

    .netten-result-share {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .netten-result-download,
    .netten-result-btn {
        width: 100%;
        justify-content: center;
    }

    .netten-brute-input-row {
        flex-direction: column;
        gap: 10px;
        min-height: 100px;
    }

    .netten-brute-radio-group {
        flex-direction: column;
    }

    .netten-result-switch {
        padding: 10px;
    }

    .netten-result-summary-grid {
        grid-template-columns: 1fr;
    }

    .netten-result-table-card .table-responsive {
        margin: 0 -15px;
        padding: 0 15px;
    }

    .netten-brute-detail-toggle {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0 0 24px 24px;
    }

    .netten-brute-detail-btn {
        padding-left: 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .netten-brute-hero {
        padding: 20px 16px;
        border-radius: 20px !important;
    }

    .netten-brute-hero-copy h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .netten-result-sidebar,
    .netten-result-main {
        width: 100%;
        position: static;
        top: auto;
    }

    .netten-brute-hero-copy p {
        font-size: 13px;
    }

    .netten-brute-btn {
        padding: 11px 20px;
        font-size: 14px;
    }

    .netten-brute-card {
        padding: 16px;
        border-radius: 20px !important;
    }

    .netten-brute-tabs {
        padding: 5px !important;
    }

    .netten-brute-tab {
        height: 42px !important;
        font-size: 13px;
        padding: 10px 12px !important;
    }

    .netten-brute-ad-text {
        font-size: 20px;
    }

    .netten-brute-detail-toggle {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0 0 20px 20px;
    }

    .netten-brute-detail-btn {
        padding-left: 16px;
        font-size: 13px;
    }

    .netten-brute-radio-group .btn {
        font-size: 13px;
    }

    .netten-brute-detail-card label {
        font-size: 11px;
    }

    .netten-brute-switch>label:first-of-type {
        font-size: 13px;
    }

    .netten-result-download-buttons {
        width: 100%;
        flex-direction: column;
    }

    .netten-result-chart {
        width: 100%;
    }
}

.netten-breadcrumb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 24px;
    border-radius: 16px;
    background: #0256AB;
    color: #fff;
}

.netten-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.netten-breadcrumb i {
    color: rgba(255, 255, 255, 0.6);
}

.netten-breadcrumb-btn {
    border-radius: 50px !important;
    padding: 10px 20px;
    background: linear-gradient(90deg, #ffffff, #cbcbcb);
    color: #1b1f3b;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
}

/* ===========================================
   Email Modal Styles
   =========================================== */

.netten-custom-modal .modal-dialog {
    max-width: 540px;
    margin: 60px auto;
}

.netten-custom-modal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 50px rgba(15, 28, 63, 0.15);
    overflow: hidden;
}

.netten-custom-modal .modal-header {
    background: linear-gradient(135deg, #0256AB 0%, #034a94 100%);
    color: #fff;
    padding: 24px 32px;
    border-bottom: none;
    position: relative;
}

.netten-custom-modal .modal-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.netten-custom-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}

.netten-custom-modal .close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.netten-custom-modal .modal-body {
    padding: 32px;
    background: #fff;
    position: relative;
}

.netten-custom-modal .netten-brute-form-group {
    margin-bottom: 24px;
}

.netten-custom-modal .netten-brute-form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}

.netten-custom-modal .netten-brute-form-group .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s;
    background: #f8fafc;
}

.netten-custom-modal .netten-brute-form-group .form-control:focus {
    outline: none;
    border-color: #0256AB;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(2, 86, 171, 0.1);
}

.netten-custom-modal .netten-brute-radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.netten-custom-modal .netten-brute-radio-group .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
}

.netten-custom-modal .netten-brute-radio-group .btn:hover {
    border-color: #cbd5e1;
    background: #fff;
}

.netten-custom-modal .netten-brute-radio-group .btn.active {
    border-color: #0256AB;
    background: #eff6ff;
    color: #0256AB;
}

.netten-custom-modal .netten-brute-checkbox-group {
    margin-bottom: 24px;
}

.netten-custom-modal .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
}

.netten-custom-modal .checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.netten-custom-modal .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.netten-custom-modal .checkbox-container:hover .checkmark {
    border-color: #0256AB;
}

.netten-custom-modal .checkbox-container input[type="checkbox"]:checked~.checkmark {
    background: #0256AB;
    border-color: #0256AB;
}

.netten-custom-modal .checkbox-container input[type="checkbox"]:checked~.checkmark::after {
    content: "✓";
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.netten-custom-modal .checkbox-container .text {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.netten-custom-modal .checkbox-container .text a {
    color: #0256AB;
    text-decoration: none;
}

.netten-custom-modal .checkbox-container .text a:hover {
    text-decoration: underline;
}

.netten-custom-modal .g-recaptcha {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.netten-custom-modal .modal-footer {
    padding: 20px 32px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.netten-custom-modal .modal-footer .netten-result-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.netten-custom-modal .modal-footer .netten-result-btn.ghost {
    background: #fff;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.netten-custom-modal .modal-footer .netten-result-btn.ghost:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.netten-custom-modal .modal-footer .netten-result-btn.primary {
    background: linear-gradient(135deg, #0256AB 0%, #034a94 100%);
    color: #fff;
}

.netten-custom-modal .modal-footer .netten-result-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(2, 86, 171, 0.3);
}

.netten-custom-modal .modal-footer .netten-result-btn.primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.netten-custom-modal .error-message {
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.netten-custom-modal .error-message.show {
    display: block;
}

.netten-custom-modal .form-control.error {
    border-color: #dc2626;
    background: #fef2f2;
}

@media (max-width: 576px) {
    .netten-custom-modal .modal-dialog {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .netten-custom-modal .modal-header,
    .netten-custom-modal .modal-body,
    .netten-custom-modal .modal-footer {
        padding: 20px;
    }

    .netten-custom-modal .netten-brute-radio-group .btn {
        min-width: 100%;
    }
}

/* Loading Spinner */
.netten-custom-modal .loading-spinner {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
}

.netten-custom-modal .loading-spinner.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.netten-custom-modal .loading-spinner>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.netten-custom-modal .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: #0256AB;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.netten-custom-modal .spinner-text {
    color: #0256AB;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}