﻿:root {
    --bs-primary: #0b6bcb;
    --bs-primary-rgb: 11, 107, 203;
    --bs-secondary: #2dbb8b;
    --bs-secondary-rgb: 45, 187, 139;
    --page-bg: #f4f7fb;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-soft: #eef4fa;
    --surface-accent: rgba(11, 107, 203, 0.08);
    --text-main: #142033;
    --text-muted: #61758d;
    --heading: #08111f;
    --border-soft: rgba(10, 31, 53, 0.12);
    --shadow-soft: 0 16px 40px rgba(17, 33, 55, 0.08);
    --shadow-strong: 0 20px 55px rgba(17, 33, 55, 0.12);
    --navbar-bg: rgba(255, 255, 255, 0.85);
    --hero-start: #061427;
    --hero-end: #0e5db3;
    --hero-glow: rgba(45, 187, 139, 0.18);
    --hero-text: #ffffff;
    --section-muted: #edf4fa;
    --theme-toggle-bg: rgba(11, 107, 203, 0.08);
    --theme-toggle-color: #0b6bcb;
    --footer-overlay: rgba(6, 12, 20, 0.88);
    --footer-link: rgba(255, 255, 255, 0.8);
    --table-hover: rgba(11, 107, 203, 0.05);
}

:root[data-theme="dark"] {
    --page-bg: #08111d;
    --surface: rgba(13, 23, 37, 0.86);
    --surface-strong: #101b2b;
    --surface-soft: #0d1724;
    --surface-accent: rgba(78, 162, 255, 0.12);
    --text-main: #e7eef8;
    --text-muted: #9fb0c5;
    --heading: #f7fbff;
    --border-soft: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
    --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.38);
    --navbar-bg: rgba(8, 17, 29, 0.88);
    --hero-start: #040a13;
    --hero-end: #0b4f96;
    --hero-glow: rgba(45, 187, 139, 0.12);
    --hero-text: #f7fbff;
    --section-muted: #0b1522;
    --theme-toggle-bg: rgba(255, 255, 255, 0.08);
    --theme-toggle-color: #e7eef8;
    --footer-overlay: rgba(2, 6, 12, 0.92);
    --footer-link: rgba(255, 255, 255, 0.82);
    --table-hover: rgba(78, 162, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 86px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, var(--hero-glow), transparent 22%),
        linear-gradient(180deg, var(--page-bg), var(--page-bg));
    color: var(--text-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading);
}

p, li, label, td, th, .lead, .text-muted, .form-text, small, .small {
    color: var(--text-main);
}

.text-muted {
    color: var(--text-muted) !important;
}

a {
    color: var(--bs-primary);
    text-decoration: none;
}

img {
    max-width: 100%;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-muted {
    background: var(--section-muted);
}

.surface-card,
.card,
.service-card,
.feature-card,
.plan-card,
.contact-card,
.summary-card,
.stack-card,
.team-card,
.timeline-item,
.form-section,
.metric-card,
.value-card,
.process-step,
.hosting-plan,
.highlight-box,
.info-panel,
.modal-content,
.accordion-item,
.dropdown-menu,
.offcanvas {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.card,
.service-card,
.feature-card,
.plan-card,
.contact-card,
.summary-card,
.stack-card,
.team-card,
.timeline-item,
.form-section,
.metric-card,
.value-card,
.process-step,
.hosting-plan,
.highlight-box,
.info-panel {
    border-radius: 24px;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.btn {
    border-radius: 14px;
    font-weight: 600;
    padding: 0.85rem 1.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary), #2887e4);
    border: none;
    box-shadow: 0 12px 28px rgba(var(--bs-primary-rgb), 0.24);
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: rgba(var(--bs-primary-rgb), 0.32);
    background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    border-color: rgba(var(--bs-primary-rgb), 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.navbar {
    background: var(--navbar-bg) !important;
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--heading) !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

:root[data-theme="dark"] .navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-brand:hover img {
    transform: scale(1.04);
}

.navbar-toggler {
    border-color: var(--border-soft);
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    padding: 0.65rem 0.9rem !important;
    border-radius: 12px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bs-primary) !important;
    background: rgba(var(--bs-primary-rgb), 0.08);
}

.theme-toggle {
    border: 1px solid var(--border-soft);
    background: var(--theme-toggle-bg);
    color: var(--theme-toggle-color);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.theme-toggle:hover {
    background: rgba(var(--bs-primary-rgb), 0.14);
    color: var(--bs-primary);
}

.page-hero,
.hero-section,
.hero-section1,
.hero-section2,
.hero-section3 {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5.5rem;
    color: var(--hero-text);
    background:
        linear-gradient(135deg, rgba(4, 10, 19, 0.82), rgba(11, 79, 150, 0.78)),
        radial-gradient(circle at top right, rgba(45, 187, 139, 0.22), transparent 24%),
        linear-gradient(135deg, var(--hero-start), var(--hero-end));
}

.hero-section::before,
.hero-section1::before,
.hero-section2::before,
.hero-section3::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(4, 9, 16, 0.18));
    pointer-events: none;
}

.page-hero .container,
.hero-section .container,
.hero-section1 .container,
.hero-section2 .container,
.hero-section3 .container {
    position: relative;
    z-index: 1;
}

.hero-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.page-hero h1,
.hero-section h1,
.hero-section1 h1,
.hero-section2 h1,
.hero-section3 h1,
.page-hero h2 {
    color: #ffffff;
}

.page-hero p,
.hero-section p,
.hero-section1 p,
.hero-section2 p,
.hero-section3 p {
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 3rem;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.metric-card,
.process-step,
.value-card,
.team-card,
.timeline-item,
.hosting-plan,
.service-card,
.stack-card,
.feature-card {
    height: 100%;
    padding: 1.75rem;
}

.metric-card h3,
.hosting-plan .price,
.summary-value {
    color: var(--heading);
    font-weight: 800;
}

.icon-pill,
.service-icon,
.value-icon,
.process-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.14), rgba(var(--bs-secondary-rgb), 0.18));
    color: var(--bs-primary);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.service-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
}

.tech-badge,
.soft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), 0.1) !important;
    color: var(--bs-primary);
    margin-right: 0.35rem;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.feature-list,
.clean-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li,
.clean-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.feature-list li::before,
.clean-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bs-secondary);
    font-weight: 800;
}

.timeline {
    display: grid;
    gap: 1.25rem;
}

.timeline-item {
    position: relative;
    padding-left: 4.25rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 1.8rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--bs-primary);
    box-shadow: 0 0 0 8px rgba(var(--bs-primary-rgb), 0.12);
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 1.85rem;
    top: 3rem;
    bottom: -2rem;
    width: 2px;
    background: rgba(var(--bs-primary-rgb), 0.16);
}

.timeline-item:last-child::after {
    display: none;
}

.table-responsive {
    background: var(--surface-strong);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.table {
    margin-bottom: 0;
    background: var(--surface-strong);
}

.table,
.table td,
.table th {
    --bs-table-bg: var(--surface-strong);
    --bs-table-color: var(--text-main);
    --bs-table-border-color: var(--border-soft);
    vertical-align: middle;
}

.table thead th,
.table-primary th,
.table-primary td {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.22), rgba(var(--bs-secondary-rgb), 0.18)) !important;
    color: var(--heading) !important;
}

.table-primary {
    --bs-table-bg: rgba(var(--bs-primary-rgb), 0.18);
    --bs-table-color: var(--heading);
}

.table-hover tbody tr:hover {
    --bs-table-accent-bg: var(--table-hover);
}

.list-group-item,
.form-control,
.form-select,
.input-group-text,
.accordion-button,
.modal-header,
.modal-footer {
    background: var(--surface-strong);
    color: var(--text-main);
    border-color: var(--border-soft);
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 14px;
}

.domain-extension-select {
    max-width: 140px;
}

textarea.form-control {
    min-height: auto;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-section {
    padding: 2rem;
    margin-bottom: 1.75rem;
}

.form-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.plan-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    overflow: hidden;
}

.plan-card:hover,
.service-card:hover,
.hosting-plan:hover,
.stack-card:hover,
.value-card:hover,
.team-card:hover,
.process-step:hover,
.metric-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.plan-card.selected {
    border-color: rgba(var(--bs-primary-rgb), 0.46);
    background: linear-gradient(180deg, var(--surface), var(--surface-accent));
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-weight: 800;
    color: var(--heading);
}

.price-tag small {
    color: var(--text-muted);
    font-weight: 600;
}

.summary-card {
    padding: 1.5rem;
}

.sticky-card {
    position: sticky;
    top: 110px;
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    margin-bottom: 0.9rem;
}

.contact-chip i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.footer-tech {
    background:
        linear-gradient(var(--footer-overlay), var(--footer-overlay)),
        radial-gradient(circle at top left, rgba(45, 187, 139, 0.14), transparent 24%),
        linear-gradient(135deg, #050c16, #0b203d);
    color: #ffffff;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.footer-tech,
.footer-tech h1,
.footer-tech h2,
.footer-tech h3,
.footer-tech h4,
.footer-tech h5,
.footer-tech h6,
.footer-tech p,
.footer-tech li,
.footer-tech a,
.footer-tech small,
.footer-tech span {
    color: var(--footer-link) !important;
}

.footer-tech h1,
.footer-tech h2,
.footer-tech h3,
.footer-tech h4,
.footer-tech h5,
.footer-tech h6 {
    color: #ffffff !important;
}

.footer-tech a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.footer-tech .bi {
    color: var(--bs-secondary) !important;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1080;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    background: var(--surface-strong);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-strong);
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.visually-removed {
    display: none !important;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 78px;
    }

    .theme-toggle {
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }

    .sticky-card {
        position: static;
        top: auto;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-item::before,
    .timeline-item::after {
        display: none;
    }
}




.anti-bot-panel {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(var(--bs-primary-rgb), 0.05);
    border: 1px dashed rgba(var(--bs-primary-rgb), 0.24);
}

:root[data-theme="dark"] .anti-bot-panel {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.16);
}



.form-check-input {
    border-color: transparent;
    box-shadow: none !important;
	--bs-form-check-bg: transparent;
	margin-top: .05em;
}

.form-check-input:hover,
.form-check-input:focus {
    border-color: transparent;
    box-shadow: none !important;
}
