:root {
    --tb-blue: #1294ff;
    --tb-blue-dark: #0572d5;
    --tb-turquoise: #15dac8;
    --tb-navy: #071c36;
    --tb-navy-2: #102b4e;
    --tb-light: #f7fbff;
    --tb-text: #1e293b;
    --tb-muted: #64748b;
    --tb-border: rgba(7, 28, 54, .12);
    --tb-shadow: 0 24px 70px rgba(7, 28, 54, .14);
    --tb-radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--tb-text);
    background: #fff;
    overflow-x: hidden;
}
a { text-decoration: none; }
.text-muted-custom { color: var(--tb-muted); }
.section-padding { padding: 92px 0; }
.section-title {
    font-weight: 900;
    letter-spacing: -.045em;
    color: var(--tb-navy);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(18, 148, 255, .09);
    color: var(--tb-blue-dark);
    font-weight: 800;
    font-size: .88rem;
}
.eyebrow i { color: var(--tb-turquoise); }

.topbar {
    background: #06182f;
    border-bottom: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.88);
    font-size: .88rem;
}
.topbar a,
.topbar span {
    color: rgba(255,255,255,.9);
    font-weight: 550;
}
.topbar i { color: var(--tb-turquoise); }
.topbar .divider { opacity: .28; }

.btn-tb-primary {
    background: linear-gradient(135deg, var(--tb-blue), var(--tb-turquoise));
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 850;
    box-shadow: 0 18px 34px rgba(18, 148, 255, .25);
}
.btn-tb-primary:hover { color: #fff; transform: translateY(-1px); }
.btn-tb-outline-dark {
    border: 1px solid rgba(7, 28, 54, .14);
    color: var(--tb-navy);
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 850;
    background: #fff;
}
.btn-tb-outline-dark:hover { border-color: var(--tb-blue); color: var(--tb-blue-dark); }

.tb-main-nav {
    background:
        radial-gradient(circle at 8% 0%, rgba(21, 218, 200, .14), transparent 32%),
        linear-gradient(135deg, #071c36 0%, #0b2748 54%, #06182f 100%) !important;
    border-bottom: 1px solid rgba(21, 218, 200, .25);
    box-shadow: 0 18px 48px rgba(6, 24, 47, .22);
    padding: 16px 0;
    z-index: 1030;
}
.tb-main-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 4px;
    background: linear-gradient(90deg, var(--tb-turquoise), var(--tb-blue), rgba(255,255,255,0));
    opacity: .9;
}
.tb-main-nav .navbar-brand {
    margin-right: 26px;
    padding-right: 30px;
    border-right: 1px solid rgba(255,255,255,.16);
}
.brand-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
}
.tb-main-nav .navbar-nav { gap: 4px; }
.tb-main-nav .nav-link {
    position: relative;
    color: rgba(255,255,255,.94) !important;
    font-size: .96rem;
    font-weight: 850;
    letter-spacing: .015em;
    text-transform: uppercase;
    padding: 14px 13px !important;
    border-radius: 999px;
    text-shadow: 0 1px 1px rgba(0,0,0,.25);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.tb-main-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tb-blue), var(--tb-turquoise));
    opacity: 0;
    transform: scaleX(.55);
    transition: opacity .2s ease, transform .2s ease;
}
.tb-main-nav .nav-link:hover,
.tb-main-nav .nav-link.active {
    color: var(--tb-turquoise) !important;
    background: rgba(255,255,255,.07);
    transform: translateY(-1px);
}
.tb-main-nav .nav-link:hover::after,
.tb-main-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}
.lang-select {
    min-height: 48px;
    width: 86px;
    border: 1px solid rgba(255,255,255,.28);
    background-color: rgba(255,255,255,.08);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 17px center;
    background-size: 13px;
    color: #fff;
    border-radius: 999px;
    padding: 10px 39px 10px 20px;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
    outline: none;
}
.lang-select option { color: var(--tb-navy); background: #fff; }
.tb-main-nav .btn-tb-primary {
    min-height: 48px;
    padding: 12px 24px;
    white-space: nowrap;
}
.tb-main-nav .navbar-toggler {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18) !important;
}
.tb-main-nav .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(21,218,200,.16); }
.tb-main-nav .navbar-toggler-icon { filter: invert(1) grayscale(1) brightness(2); }

.sub-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 96px 0 86px;
    background:
        radial-gradient(circle at 8% 10%, rgba(21, 218, 200, .45), transparent 28%),
        radial-gradient(circle at 90% 15%, rgba(18, 148, 255, .30), transparent 30%),
        linear-gradient(105deg, rgba(7, 28, 54, .97) 0%, rgba(7, 28, 54, .86) 58%, rgba(7, 28, 54, .54) 100%),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1900&q=85') center/cover no-repeat;
}
.sub-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--tb-turquoise), var(--tb-blue), rgba(255,255,255,0));
}
.sub-hero .container { position: relative; z-index: 2; }
.breadcrumb-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
    font-weight: 750;
    backdrop-filter: blur(12px);
}
.breadcrumb-soft a { color: #fff; }
.page-title {
    font-size: clamp(2.7rem, 6vw, 4.4rem);
    line-height: .98;
    font-weight: 950;
    /*letter-spacing: -.065em;*/
}
.page-title span {
    background: linear-gradient(135deg, #fff, #d8fff9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sub-hero-desc {
    max-width: 760px;
    color: rgba(255,255,255,.84);
    font-size: 1.17rem;
    line-height: 1.75;
}
.hero-info-card {
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
    border-radius: 24px;
    padding: 22px;
    backdrop-filter: blur(14px);
    height: 100%;
}
.hero-info-card strong {
    display: block;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 900;
}
.hero-info-card span { color: rgba(255,255,255,.78); font-weight: 650; }

.about-lead-card {
    border-radius: 34px;
    border: 1px solid var(--tb-border);
    box-shadow: var(--tb-shadow);
    overflow: hidden;
    background: #fff;
}
.about-lead-media {
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(7,28,54,.08), rgba(7,28,54,.22)),
        url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1300&q=85') center/cover no-repeat;
}
.about-lead-content { padding: clamp(28px, 4vw, 56px); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    display: flex;
    gap: 12px;
    color: var(--tb-muted);
    font-weight: 650;
    margin-bottom: 14px;
}
.check-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tb-blue), var(--tb-turquoise));
    box-shadow: 0 0 0 6px rgba(18,148,255,.09);
}

.value-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border-radius: var(--tb-radius);
    border: 1px solid var(--tb-border);
    background: #fff;
    transition: .25s ease;
    overflow: hidden;
}
.value-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--tb-blue), var(--tb-turquoise));
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--tb-shadow); }
.value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(18, 148, 255, .09);
    color: var(--tb-blue-dark);
    font-size: .86rem;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: .04em;
}

.dark-feature {
    overflow: hidden;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(21,218,200,.18), transparent 32%),
        linear-gradient(135deg, var(--tb-navy), var(--tb-navy-2));
    color: #fff;
}
.dark-feature-media {
    min-height: 520px;
    background:
        linear-gradient(180deg, rgba(7,28,54,.10), rgba(7,28,54,.28)),
        url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1300&q=85') center/cover no-repeat;
}
.dark-feature-content { padding: clamp(30px, 4vw, 58px); }
.dark-feature .text-muted-custom { color: rgba(255,255,255,.76); }
.dark-feature .check-list li { color: rgba(255,255,255,.80); }

.timeline-section { background: linear-gradient(180deg, #fff, var(--tb-light)); }
.timeline-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(7,28,54,.10);
    box-shadow: 0 14px 38px rgba(7,28,54,.06);
}
.timeline-step {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--tb-navy);
    font-weight: 900;
    margin-bottom: 18px;
}

.cta-band {
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 34px;
    padding: 48px;
    background:
        radial-gradient(circle at 86% 10%, rgba(21,218,200,.55), transparent 28%),
        linear-gradient(135deg, var(--tb-blue-dark), var(--tb-navy));
}


.callback-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 8%, rgba(21, 218, 200, .10), transparent 30%),
        linear-gradient(180deg, #fff 0%, var(--tb-light) 100%);
}
.callback-info-card {
    height: 100%;
    padding: clamp(30px, 4vw, 54px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 10%, rgba(21,218,200,.20), transparent 30%),
        linear-gradient(135deg, var(--tb-navy), var(--tb-navy-2));
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: var(--tb-shadow);
}
.callback-info-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(21,218,200,.14);
}
.callback-info-card > * { position: relative; z-index: 2; }
.callback-info-card .text-muted-custom { color: rgba(255,255,255,.76); }
.callback-points {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}
.callback-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.callback-point i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--tb-blue), var(--tb-turquoise));
}
.callback-form-card {
    height: 100%;
    padding: clamp(26px, 3.2vw, 38px);
    border-radius: 34px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--tb-border);
    box-shadow: var(--tb-shadow);
}
.callback-form-card .form-control,
.callback-form-card .form-select {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(7, 28, 54, .12);
    font-weight: 650;
}
.callback-form-card textarea.form-control {
    min-height: 116px;
    resize: vertical;
}
.callback-form-card .form-control:focus,
.callback-form-card .form-select:focus {
    box-shadow: 0 0 0 .22rem rgba(18, 148, 255, .12);
    border-color: rgba(18, 148, 255, .55);
}
.callback-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(18,148,255,.14), rgba(21,218,200,.18));
    color: var(--tb-blue-dark);
    font-size: 1.7rem;
}
.callback-alert {
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 750;
    line-height: 1.45;
    border-width: 1px;
}
.callback-alert.alert-success {
    color: #075e55;
    background: rgba(21, 218, 200, .13);
    border-color: rgba(21, 218, 200, .35);
}
.callback-alert.alert-danger {
    color: #842029;
    background: rgba(220, 53, 69, .10);
    border-color: rgba(220, 53, 69, .24);
}
.callback-form-card.is-loading .form-control,
.callback-form-card.is-loading .form-select,
.callback-form-card.is-loading textarea {
    pointer-events: none;
    background-color: #f8fafc;
}

.faq-section { background: linear-gradient(180deg, #fff, var(--tb-light)); }
.accordion-item {
    border: 1px solid rgba(7,28,54,.10) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 12px 32px rgba(7,28,54,.05);
}
.accordion-button {
    font-weight: 850;
    color: var(--tb-navy);
    padding: 20px 22px;
}
.accordion-button:not(.collapsed) {
    background: rgba(18,148,255,.08);
    color: var(--tb-blue-dark);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }

footer {
    color: rgba(255,255,255,.75);
    background: var(--tb-navy);
    padding: 72px 0 28px;
}
footer a { color: rgba(255,255,255,.78); }
footer a:hover { color: #fff; }
.footer-logo {
    max-height: 52px;
    filter: brightness(1.1);
    background: #fff;
    padding: 6px 10px;
    border-radius: 12px;
}
.social-btn {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    margin-right: 8px;
}

.quick-contact-widget {
    position: fixed;
    right: 0;
    bottom: 24px;
    z-index: 1040;
    display: grid;
    gap: 10px;
    justify-items: end;
    pointer-events: none;
}
.quick-contact-widget > * { pointer-events: auto; }
.quick-contact-panel {
    width: min(250px, calc(100vw - 28px));
    margin-right: 14px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(7,28,54,.10);
    box-shadow: 0 22px 60px rgba(7,28,54,.22);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateX(22px) translateY(10px) scale(.96);
    transform-origin: right bottom;
    transition: opacity .25s ease, transform .25s ease, max-height .25s ease, visibility .25s ease;
}
.quick-contact-widget.is-open .quick-contact-panel {
    opacity: 1;
    visibility: visible;
    max-height: 190px;
    transform: translateX(0) translateY(0) scale(1);
}
.quick-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    color: var(--tb-navy);
    font-weight: 800;
    border: 1px solid rgba(7,28,54,.08);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick-contact-link + .quick-contact-link { margin-top: 8px; }
.quick-contact-link:hover {
    color: var(--tb-navy);
    transform: translateY(-1px);
    border-color: rgba(18,148,255,.20);
    box-shadow: 0 14px 28px rgba(7,28,54,.10);
}
.quick-contact-link i {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #fff;
    flex: 0 0 38px;
}
.quick-contact-link small {
    display: block;
    margin-top: 2px;
    color: var(--tb-muted);
    font-weight: 650;
    font-size: .78rem;
}
.quick-phone i { background: linear-gradient(135deg, var(--tb-blue), var(--tb-turquoise)); }
.quick-whatsapp i { background: #25d366; }
.quick-contact-toggle,
.quick-top-link {
    border: 0;
    color: #fff;
    box-shadow: 0 18px 42px rgba(7,28,54,.24);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    transition: width .28s ease, min-width .28s ease, padding .28s ease, transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
    white-space: nowrap;
}
.quick-contact-toggle:hover,
.quick-contact-widget.is-open .quick-contact-toggle,
.quick-top-link:hover {
    color: #fff;
    transform: translateX(-2px);
    box-shadow: 0 22px 50px rgba(7,28,54,.30);
}
.quick-contact-toggle {
    width: 58px;
    min-width: 58px;
    min-height: 56px;
    padding: 0 17px;
    gap: 0;
    border-radius: 999px 0 0 999px;
    background: linear-gradient(135deg, var(--tb-blue), var(--tb-turquoise));
    font-weight: 900;
    letter-spacing: -.01em;
}
.quick-contact-toggle:hover,
.quick-contact-toggle:focus-visible,
.quick-contact-widget.is-open .quick-contact-toggle {
    width: 174px;
    min-width: 174px;
    padding: 13px 16px 13px 18px;
    gap: 10px;
}
.quick-contact-toggle > i:first-child {
    width: 24px;
    min-width: 24px;
    text-align: center;
    font-size: 1.08rem;
}
.quick-contact-toggle span[data-i18n="quickContact"],
.quick-contact-toggle .toggle-chevron {
    opacity: 0;
    width: 0;
    max-width: 0;
    overflow: hidden;
    transform: translateX(10px);
    transition: opacity .22s ease, width .28s ease, max-width .28s ease, transform .28s ease;
}
.quick-contact-toggle:hover span[data-i18n="quickContact"],
.quick-contact-toggle:focus-visible span[data-i18n="quickContact"],
.quick-contact-widget.is-open .quick-contact-toggle span[data-i18n="quickContact"] {
    opacity: 1;
    width: auto;
    max-width: 112px;
    transform: translateX(0);
}
.quick-contact-toggle:hover .toggle-chevron,
.quick-contact-toggle:focus-visible .toggle-chevron,
.quick-contact-widget.is-open .quick-contact-toggle .toggle-chevron {
    opacity: 1;
    width: 16px;
    max-width: 16px;
    transform: translateX(0);
}
.quick-contact-widget.is-open .quick-contact-toggle .toggle-chevron { transform: translateX(0) rotate(180deg); }
.quick-top-link {
    width: 54px;
    height: 54px;
    justify-content: center;
    border-radius: 18px 0 0 18px;
    background: var(--tb-navy);
}

@media (max-width: 1199.98px) {
    .tb-main-nav .navbar-brand { margin-right: 16px; padding-right: 18px; }
    .brand-logo { height: 50px; }
    .tb-main-nav .nav-link { font-size: .9rem; padding-left: 10px !important; padding-right: 10px !important; }
}
@media (max-width: 991.98px) {
    .topbar { display: none; }
    .tb-main-nav { padding: 12px 0; }
    .tb-main-nav .navbar-brand { border-right: 0; padding-right: 0; }
    .brand-logo { height: 44px; }
    .tb-main-nav .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
    }
    .tb-main-nav .navbar-nav { align-items: stretch !important; gap: 6px; }
    .tb-main-nav .nav-link { padding: 13px 16px !important; font-size: .95rem; background: rgba(255,255,255,.05); }
    .tb-main-nav .nav-link::after { display: none; }
    .tb-main-nav .d-flex.align-items-center.gap-2.ms-lg-3 { margin-top: 12px; }
    .section-padding { padding: 68px 0; }
    .sub-hero { padding: 72px 0 64px; }
    .about-lead-media, .dark-feature-media { min-height: 340px; }
    .callback-info-card,
    .callback-form-card,
    .cta-band { padding: 30px; }
}
@media (max-width: 575.98px) {
    .page-title { font-size: 2.55rem; }
    .sub-hero-desc { font-size: 1.02rem; }
    .section-title { font-size: 2rem; }
    .quick-contact-widget { bottom: 14px; }
    .quick-contact-panel { margin-right: 10px; width: min(238px, calc(100vw - 22px)); }
    .quick-contact-toggle { width: 54px; min-width: 54px; min-height: 52px; padding: 0 15px; }
    .quick-contact-toggle:hover,
    .quick-contact-toggle:focus-visible,
    .quick-contact-widget.is-open .quick-contact-toggle { width: 160px; min-width: 160px; padding: 12px 14px 12px 16px; }
    .quick-top-link { width: 50px; height: 50px; border-radius: 16px 0 0 16px; }
}
