/* Header — absolute over hero, NOT sticky */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: var(--brand-white);
}

.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 14, 18, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-top-inner {
    min-height: 72px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.header-logo {
    flex-shrink: 1;
    min-width: 0;
}
.header-logo img {
    width: 150px;
    display: block;
    max-width: 100%;
    transition: opacity var(--transition);
}
.header-logo:hover img { opacity: 0.9; }

@media (max-width: 991px) {
    .header-logo img { height: 42px; }
    .header-top-inner {
        min-height: 100px;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }
}

@media (max-width: 575px) {
    .header-logo img { height: 40px; }
    .header-top-inner {
        min-height: 64px;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-white);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all var(--transition);
}
.contact-pill:hover {
    color: var(--brand-gold);
    background: rgba(247, 208, 34, 0.12);
    border-color: rgba(247, 208, 34, 0.4);
}
.contact-pill .bi { color: var(--brand-gold); font-size: 14px; }

.site-navbar {
    padding: 0;
    background: rgba(15, 20, 26, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(247, 208, 34, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.site-navbar > .container {
    padding-top: 8px;
    padding-bottom: 8px;
}

.site-navbar .nav-item { position: relative; }
.site-navbar .nav-item.dropdown {
    padding-bottom: 12px;
    margin-bottom: -12px;
}
.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px !important;
    text-transform: capitalize;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    position: relative;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.show,
.site-navbar .nav-item:hover > .nav-link {
    color: var(--brand-gold) !important;
    background: rgba(247, 208, 34, 0.12);
}
.site-navbar .nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 2px;
    border-top-color: currentColor;
    opacity: 0.75;
}
.site-navbar .dropdown-menu {
    --bs-dropdown-min-width: 240px;
    position: absolute !important;
    top: 100%;
    left: 0;
    z-index: 1050;
    border: 1px solid rgba(247, 208, 34, 0.22);
    border-radius: 14px;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    padding: 10px;
    margin-top: 0 !important;
    background: linear-gradient(180deg, #1c252c 0%, #141b21 100%);
    overflow: visible;
}
/* Invisible bridge so mouse can reach menu without closing */
.site-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}
.site-navbar .dropdown-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    padding: 9px 14px;
    border-radius: 8px;
    border: none;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}
.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
    background: rgba(247, 208, 34, 0.14);
    color: var(--brand-gold);
    transform: translateX(2px);
}
.site-navbar .dropdown-item--parent {
    font-weight: 700;
    color: var(--brand-gold) !important;
    background: rgba(247, 208, 34, 0.1);
}
.site-navbar .dropdown-item--parent:hover,
.site-navbar .dropdown-item--parent:focus {
    background: rgba(247, 208, 34, 0.2);
    color: var(--brand-gold) !important;
}

/* Hover-open dropdowns so parent nav links stay clickable */
.site-navbar .nav-item.dropdown:hover > .dropdown-menu,
.site-navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
}
.site-navbar .nav-item.dropdown:hover > .dropdown-menu-exams,
.site-navbar .nav-item.dropdown:focus-within > .dropdown-menu-exams {
    display: grid !important;
}

.header-actions { gap: 10px !important; }
.header-actions .btn-header {
    background: var(--brand-gold);
    color: var(--brand-black);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 11px 22px;
    border-radius: 10px;
    border: 2px solid var(--brand-gold);
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(247, 208, 34, 0.3);
    transition: all var(--transition);
}
.header-actions .btn-header:hover {
    background: var(--brand-white);
    color: var(--brand-black);
    border-color: var(--brand-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}
.header-actions .btn-header-outline {
    background: transparent;
    color: var(--brand-white);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}
.header-actions .btn-header-outline:hover {
    background: var(--brand-gold);
    color: var(--brand-black);
    border-color: var(--brand-gold);
    box-shadow: 0 6px 16px rgba(247, 208, 34, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Exams mega dropdown — wide 3-col, single-line items */
.dropdown-menu-exams {
    --bs-dropdown-min-width: 720px;
    width: 720px;
    min-width: 720px !important;
    display: none;
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    gap: 2px 12px;
    padding: 12px;
    max-height: none;
    overflow: visible;
}
.dropdown-menu-exams.show {
    display: grid !important;
}
.dropdown-menu-exams__parent {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(247, 208, 34, 0.2);
}
.dropdown-menu-exams > li {
    display: block;
    min-width: 0;
}
.dropdown-menu-exams .dropdown-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    padding: 8px 12px;
    font-size: 13px;
}

@media (max-width: 1199.98px) {
    .dropdown-menu-exams {
        --bs-dropdown-min-width: 480px;
        width: 480px;
        min-width: 480px !important;
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

/* Mobile menu trigger */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-gold);
    color: var(--brand-black);
    border: none;
    border-radius: 50px;
    padding: 10px 18px 10px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}
.mobile-menu-btn:hover {
    background: var(--brand-white);
    transform: translateY(-1px);
}
.mobile-menu-btn__icon {
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    position: relative;
    display: block;
}
.mobile-menu-btn__icon::before,
.mobile-menu-btn__icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}
.mobile-menu-btn__icon::before { top: -5px; }
.mobile-menu-btn__icon::after { top: 5px; }

/* Mobile offcanvas */
.mobile-offcanvas {
    width: min(340px, 88vw);
    background: linear-gradient(180deg, #1a242b 0%, var(--brand-dark) 100%);
    color: var(--brand-white);
    border-left: 1px solid rgba(247, 208, 34, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}
.mobile-offcanvas__logo img { height: 38px; width: auto; }
.mobile-offcanvas__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--brand-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
}
.mobile-offcanvas__close:hover {
    background: var(--brand-gold);
    color: var(--brand-black);
    border-color: var(--brand-gold);
}

.mobile-offcanvas__contact {
    display: grid;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-white);
    transition: all var(--transition);
}
.mobile-contact-card:hover {
    background: rgba(247, 208, 34, 0.1);
    border-color: rgba(247, 208, 34, 0.25);
    color: var(--brand-white);
}
.mobile-contact-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(247, 208, 34, 0.15);
    color: var(--brand-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mobile-contact-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.mobile-contact-card__text small {
    font-size: 11px;
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mobile-contact-card__text strong {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-offcanvas__body {
    padding: 16px 20px 24px;
    overflow-y: auto;
    flex: 1 1 auto;
}
.mobile-nav-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 12px;
}

.mobile-nav { display: flex; flex-direction: column; gap: 6px; }

.mobile-nav__link,
.mobile-nav__toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    transition: all var(--transition);
}
.mobile-nav__link:hover,
.mobile-nav__toggle:hover {
    background: rgba(247, 208, 34, 0.1);
    border-color: rgba(247, 208, 34, 0.2);
    color: var(--brand-white);
}
.mobile-nav__link > .bi:first-child,
.mobile-nav__toggle > .bi:first-child {
    width: 22px;
    color: var(--brand-gold);
    font-size: 17px;
    flex-shrink: 0;
}
.mobile-nav__arrow {
    margin-left: auto;
    font-size: 13px;
    opacity: 0.45;
}
.mobile-nav__chevron {
    margin-left: auto;
    font-size: 14px;
    opacity: 0.65;
    transition: transform var(--transition);
}
.mobile-nav__toggle[aria-expanded="true"] {
    background: rgba(247, 208, 34, 0.12);
    border-color: rgba(247, 208, 34, 0.25);
    color: var(--brand-gold);
}
.mobile-nav__toggle[aria-expanded="true"] .mobile-nav__chevron {
    transform: rotate(180deg);
    color: var(--brand-gold);
}

.mobile-nav__sub {
    margin: 4px 0 8px 12px;
    padding-left: 12px;
    border-left: 2px solid rgba(247, 208, 34, 0.25);
}
.mobile-nav__sublink {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}
.mobile-nav__sublink:hover {
    color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.04);
    padding-left: 16px;
}
.mobile-nav__sublink--parent {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 4px;
}

.mobile-offcanvas__footer {
    margin-top: auto;
    padding: 16px 20px 24px;
    display: grid;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
}
.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.mobile-cta--primary {
    background: var(--brand-gold);
    color: var(--brand-black);
}
.mobile-cta--primary:hover { background: var(--brand-white); color: var(--brand-black); }
.mobile-cta--secondary {
    background: transparent;
    color: var(--brand-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.mobile-cta--secondary:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

.offcanvas-backdrop.show { opacity: 0.65; }


@media (max-width: 991px) {
    .site-header { position: relative; background: var(--brand-dark); }
    .site-navbar { display: none !important; }
    .header-top { background: var(--brand-dark); }
}

/* Floating actions — edge-attached, slide out on hover */
.floating-actions {
    position: fixed;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-btn {
    display: flex;
    align-items: center;
    background: var(--brand-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
    border-radius: 50px 0 0 50px;
    padding: 12px 18px 12px 14px;
    color: var(--brand-dark);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    transform: translateX(calc(100% - 50px));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.float-btn span { display: inline; }
.float-btn .bi {
    font-size: 20px;
    margin-right: 12px;
    color: var(--brand-blue);
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.float-btn.call .bi { color: #c0151b; }
.float-btn:hover {
    transform: translateX(0);
    color: var(--brand-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
    .floating-actions {
        top: auto;
        bottom: 90px;
        transform: none;
    }
}

/* Custom WhatsApp FAB — no GetButton branding */
.whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: 58px;
    height: 58px;
    padding: 0 17px;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    overflow: hidden;
    transition: width 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.whatsapp-float .bi {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.whatsapp-float__label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    transition: max-width 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
}
.whatsapp-float:hover {
    width: 150px;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float:hover .whatsapp-float__label {
    max-width: 100px;
    opacity: 1;
    margin-left: 8px;
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        left: 12px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        padding: 0 14px;
    }
    .whatsapp-float .bi { font-size: 26px; }
    .whatsapp-float:hover {
        width: 52px;
        transform: none;
    }
    .whatsapp-float:hover .whatsapp-float__label {
        max-width: 0;
        opacity: 0;
        margin-left: 0;
    }
}

/* Hero */
.hero-section {
    position: relative;
    padding: 190px 0 90px;
    color: var(--brand-white);
    overflow: hidden;
    background-color: var(--brand-dark);
    background-image:
        linear-gradient(115deg, rgba(31, 43, 51, 0.92) 0%, rgba(31, 43, 51, 0.78) 100%),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.hero-section:has(.hero-bg) {
    background-image: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(31, 43, 51, 0.96) 0%, rgba(31, 43, 51, 0.82) 50%, rgba(31, 43, 51, 0.7) 100%),
        radial-gradient(circle at 80% 15%, rgba(247, 208, 34, 0.14) 0%, transparent 40%);
}

.hero-section .container { z-index: 2; position: relative; }
.hero-section > .container > .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}
@media (min-width: 992px) {
    .hero-section > .container > .row {
        --bs-gutter-x: 3.5rem;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-gold);
    background: rgba(247, 208, 34, 0.1);
    border: 1px solid rgba(247, 208, 34, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 0.75rem;
    line-height: 1.08;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.hero-section h5 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 500;
    opacity: 0.92;
    margin-bottom: 1rem;
}
.hero-section h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.5rem 0 0.85rem;
    opacity: 0.95;
}
.hero-section p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.92;
    max-width: 540px;
}
.hero-section p span {
    color: var(--brand-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.hero-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
}
.hero-list li .bi {
    color: var(--brand-gold);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hero-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.75rem;
}
.hero-mini-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    text-align: center;
    min-width: 90px;
    backdrop-filter: blur(4px);
}
.hero-mini-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-gold);
    line-height: 1.2;
}
.hero-mini-stat span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.75;
}

/* Hero form card — dark gold gradient theme */
.hero-form-card {
    position: relative;
    background: linear-gradient(165deg, #1a1a1a 0%, #252525 45%, #1f1f1f 100%);
    border-radius: 20px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(247, 208, 34, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(247, 208, 34, 0.25);
    color: var(--brand-white);
    overflow: hidden;
}
.hero-form-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(247, 208, 34, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-form-card__header {
    position: relative;
    text-align: center;
    padding: 1.65rem 1.75rem 1.25rem;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #e6bc00 40%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(247, 208, 34, 0.2);
}

.form-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--brand-black);
    color: var(--brand-gold);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 36px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(247, 208, 34, 0.4);
}

.hero-form-card__header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--brand-black);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-form-card__header p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    margin: 0;
    max-width: none;
    opacity: 1;
}
.hero-form-card__header p strong {
    color: var(--brand-black);
    font-weight: 800;
}

.hero-form-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
}

.hero-lead-form { display: flex; flex-direction: column; gap: 14px; }

.hero-field label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(247, 208, 34, 0.85);
    margin-bottom: 6px;
}

.hero-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.hero-input-wrap > .bi {
    position: absolute;
    left: 14px;
    color: var(--brand-gold);
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}
.hero-input-wrap .form-control {
    width: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px 12px 42px;
    background: rgba(0, 0, 0, 0.35);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-white);
    transition: all var(--transition);
}
.hero-input-wrap .form-control:focus {
    border-color: var(--brand-gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(247, 208, 34, 0.15);
    outline: none;
}
.hero-input-wrap .form-control::placeholder { color: rgba(255, 255, 255, 0.35); }
.hero-input-wrap .form-control:-webkit-autofill,
.hero-input-wrap .form-control:-webkit-autofill:hover,
.hero-input-wrap .form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.45) inset;
    -webkit-text-fill-color: var(--brand-white);
    border-color: rgba(247, 208, 34, 0.3);
}

.hero-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 6px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f7d022 0%, #ffe033 45%, #e6bc00 100%);
    color: var(--brand-black);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        0 8px 24px rgba(247, 208, 34, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 0 2px rgba(0, 0, 0, 0.15);
}
.hero-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}
.hero-submit-btn__text {
    position: relative;
    z-index: 1;
    padding: 16px 0 16px 8px;
}
.hero-submit-btn__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--brand-black);
    color: var(--brand-gold);
    font-size: 16px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.hero-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(247, 208, 34, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 2px rgba(247, 208, 34, 0.5);
}
.hero-submit-btn:hover::before { transform: translateX(120%); }
.hero-submit-btn:hover .hero-submit-btn__icon {
    background: var(--brand-gold);
    color: var(--brand-black);
    transform: translateX(4px);
}
.hero-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(247, 208, 34, 0.35);
}

.hero-form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hero-form-note .bi { color: var(--brand-gold); font-size: 14px; }

/* Legacy hero-form-card direct children (inner pages) */
.hero-form-card > h3 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--brand-white);
}
.hero-form-card > p {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.35rem;
}

@media (max-width: 991px) {
    .hero-section { padding: 140px 0 60px; }
    .header-actions { margin-top: 0.5rem; }
}

@media (max-width: 767px) {
    .site-header { position: relative; background: var(--brand-dark); }
    .hero-section { padding: 40px 0 50px; }
    .hero-form-card { margin-top: 0.5rem; }
}

.hero-content p span { color: var(--brand-gold); text-transform: uppercase; font-weight: 600; }
.hero-content ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.hero-content ul li {
    padding: 4px 0 4px 28px;
    position: relative;
}
.hero-content ul li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    color: var(--brand-gold);
    position: absolute;
    left: 0;
}

.thankyou-page { padding-bottom: 80px; }
.thankyou-page h1 { font-size: 2rem; margin: 1.5rem 0 1rem; }
.thankyou-img { max-width: 200px; padding-top: 2rem; }

.error-404-page {
    padding: 4rem 0 5rem;
}
.error-404-code {
    margin: 0;
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(5rem, 18vw, 8.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--brand-gold);
    opacity: 0.95;
}
.error-404-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    margin: 1rem 0 0.75rem;
}
.error-404-page p {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
}
.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.content-section h3 { font-size: 1.25rem; margin: 1.5rem 0 1rem; font-weight: 700; }
.content-section p { color: #666; margin-bottom: 1rem; }
.content-section ul { padding-left: 0; list-style: none; }
.content-section ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: #666;
}
.content-section ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--brand-gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}

.s1_top {
    text-align: center;
    margin-bottom: 2.75rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.s1_top h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.85rem;
    line-height: 1.25;
}
.s1_top h2 strong { color: var(--brand-dark); }
.s1_top p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Content spotlight — text intro blocks on hub pages */
.content-spotlight {
    position: relative;
    background:
        radial-gradient(circle at 90% 10%, rgba(247, 208, 34, 0.07) 0%, transparent 28%),
        radial-gradient(circle at 8% 90%, rgba(31, 43, 51, 0.04) 0%, transparent 26%),
        linear-gradient(180deg, var(--brand-gray-light) 0%, var(--brand-white) 100%);
}
.content-spotlight__card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 20px;
    padding: 2.25rem 2rem 2rem;
    box-shadow: 0 12px 36px rgba(31, 43, 51, 0.06);
    position: relative;
    overflow: hidden;
}
.content-spotlight__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold) 0%, #e6bc00 50%, var(--brand-teal-light, #2ec4b6) 100%);
}
.content-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: rgba(247, 208, 34, 0.18);
    border: 1px solid rgba(247, 208, 34, 0.35);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.content-spotlight__eyebrow .bi { color: #b89600; }
.content-spotlight__card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 1.1rem;
    line-height: 1.25;
    padding-left: 14px;
    border-left: 4px solid var(--brand-gold);
}
.content-spotlight__body p {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 0.9rem;
}
.content-spotlight__body p:last-child { margin-bottom: 0; }
.content-spotlight__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(31, 43, 51, 0.08);
}
.content-spotlight__point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
    background: var(--brand-gray-light);
    border: 1px solid rgba(31, 43, 51, 0.06);
    padding: 8px 14px;
    border-radius: 999px;
}
.content-spotlight__point .bi {
    color: var(--brand-gold);
    font-size: 14px;
}
@media (max-width: 575.98px) {
    .content-spotlight__card { padding: 1.5rem 1.15rem 1.35rem; border-radius: 16px; }
    .content-spotlight__card h2 { font-size: 1.3rem; }
}

.process-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 20%, rgba(247, 208, 34, 0.08) 0%, transparent 32%),
        radial-gradient(circle at 90% 80%, rgba(0, 79, 212, 0.05) 0%, transparent 28%),
        linear-gradient(180deg, #f7f8fa 0%, var(--brand-white) 100%);
    overflow: hidden;
}

.s1_bot {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.s1_bot > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991.98px) {
    .s1_bot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .s1_bot { grid-template-columns: 1fr; }
}

.s1_box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 18px;
    padding: 1.75rem 1.35rem 1.5rem;
    box-shadow: 0 8px 28px rgba(31, 43, 51, 0.06);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.s1_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold) 0%, #e6bc00 55%, var(--brand-teal-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.s1_box:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 208, 34, 0.35);
    box-shadow: 0 16px 36px rgba(31, 43, 51, 0.1);
}
.s1_box:hover::before { transform: scaleX(1); }

.s1_box__num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(31, 43, 51, 0.18);
}

.s1_icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.15rem;
    box-shadow: 0 8px 20px rgba(31, 43, 51, 0.18);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.s1_icon img { display: none; }
.s1_box:hover .s1_icon {
    transform: scale(1.05) rotate(-3deg);
    background: linear-gradient(135deg, var(--brand-gold) 0%, #ffe033 100%);
    color: var(--brand-black);
}

.s1_text h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 0.7rem;
    line-height: 1.35;
    padding-right: 28px;
}
.s1_text p {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}
.s1_text .btn-brand,
.s1_text a.pop_btn {
    margin-top: 1rem;
}

@media (max-width: 767.98px) {
    .s1_box { padding: 1.4rem 1.15rem 1.25rem; }
    .s1_icon { width: 52px; height: 52px; font-size: 1.3rem; border-radius: 14px; }
}

/* Features / stress section (s4) */
.features-section {
    position: relative;
    background:
        radial-gradient(circle at 88% 12%, rgba(247, 208, 34, 0.09) 0%, transparent 30%),
        radial-gradient(circle at 8% 85%, rgba(0, 145, 155, 0.06) 0%, transparent 28%),
        linear-gradient(180deg, var(--brand-white) 0%, #f5f7f9 100%);
    overflow: hidden;
}
.features-section.bg-gray,
.section-padding.features-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(247, 208, 34, 0.09) 0%, transparent 30%),
        radial-gradient(circle at 8% 85%, rgba(0, 145, 155, 0.06) 0%, transparent 28%),
        linear-gradient(180deg, #f3f5f7 0%, var(--brand-white) 100%);
}

.s4_top {
    text-align: center;
    margin-bottom: 2.75rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.s4_top h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.85rem;
    line-height: 1.25;
}
.s4_top p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.s4_bot {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.s4_bot > .row {
    display: contents;
}
.s4_bot > [class*="col-"],
.s4_bot > .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.s4_box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 18px;
    padding: 1.75rem 1.4rem 1.5rem;
    box-shadow: 0 8px 28px rgba(31, 43, 51, 0.06);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.s4_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold) 0%, #e6bc00 55%, var(--brand-teal-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.s4_box:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 208, 34, 0.35);
    box-shadow: 0 16px 36px rgba(31, 43, 51, 0.1);
}
.s4_box:hover::before { transform: scaleX(1); }

.s4_box__num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(31, 43, 51, 0.18);
}

.s4_icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.15rem;
    box-shadow: 0 8px 20px rgba(31, 43, 51, 0.18);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.s4_icon img { display: none; }
.s4_box:hover .s4_icon {
    transform: scale(1.05) rotate(-3deg);
    background: linear-gradient(135deg, var(--brand-gold) 0%, #ffe033 100%);
    color: var(--brand-black);
}

.s4_text {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.s4_text h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 0.7rem;
    line-height: 1.35;
    padding-right: 28px;
}
.s4_text p {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 1.15rem;
    flex: 1;
}
.s4_text .btn-brand,
.s4_text .pop_btn {
    align-self: flex-start;
    margin-top: auto;
}
.s4_text .pop_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gold);
    color: var(--brand-black);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 18px;
    border-radius: 10px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: 0 6px 16px rgba(247, 208, 34, 0.28);
}
.s4_text .pop_btn:hover {
    background: var(--brand-dark);
    color: var(--brand-gold);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .s4_bot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .s4_bot { grid-template-columns: 1fr; }
    .s4_box { padding: 1.4rem 1.15rem 1.25rem; }
    .s4_icon { width: 52px; height: 52px; font-size: 1.3rem; border-radius: 14px; }
}

.features-carousel-wrap {
    position: relative;
    padding: 0 0 40px;
    width: 100%;
}
.features-carousel .swiper-slide {
    height: auto;
    display: flex;
}
.features-carousel .s4_box {
    width: 100%;
}
.features-pagination.swiper-pagination {
    position: static;
    margin-top: 28px;
    line-height: 0;
}
.features-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(31, 43, 51, 0.2);
    opacity: 1;
    transition: all var(--transition);
}
.features-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--brand-gold);
}

/* Why Choose Us (s5) */
.why-choose-section {
    position: relative;
    background:
        radial-gradient(circle at 10% 15%, rgba(247, 208, 34, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 92% 80%, rgba(0, 79, 212, 0.05) 0%, transparent 28%),
        linear-gradient(180deg, var(--brand-white) 0%, #f6f8fa 100%);
    overflow: hidden;
}

.s5_top {
    text-align: center;
    margin-bottom: 2.75rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.s5_top h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.85rem;
    line-height: 1.25;
}
.s5_top p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.s5_bot,
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.s5_bot > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.s5_box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 18px;
    padding: 1.75rem 1.4rem 1.5rem;
    box-shadow: 0 8px 28px rgba(31, 43, 51, 0.06);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.s5_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold) 0%, #e6bc00 55%, var(--brand-teal-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.s5_box:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 208, 34, 0.35);
    box-shadow: 0 16px 36px rgba(31, 43, 51, 0.1);
}
.s5_box:hover::before { transform: scaleX(1); }

.s5_box__num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(31, 43, 51, 0.18);
}

.s5_icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.15rem;
    box-shadow: 0 8px 20px rgba(31, 43, 51, 0.18);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.s5_icon img { display: none; }
.s5_box:hover .s5_icon {
    transform: scale(1.05) rotate(-3deg);
    background: linear-gradient(135deg, var(--brand-gold) 0%, #ffe033 100%);
    color: var(--brand-black);
}

.s5_text h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 0.7rem;
    line-height: 1.35;
    padding-right: 28px;
}
.s5_text p {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991.98px) {
    .s5_bot,
    .why-choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .s5_bot,
    .why-choose-grid { grid-template-columns: 1fr; }
    .s5_box { padding: 1.4rem 1.15rem 1.25rem; }
    .s5_icon { width: 52px; height: 52px; font-size: 1.3rem; border-radius: 14px; }
}

/* Mobile: hide card grids; Swiper wraps take over */
@media (max-width: 991.98px) {
    .why-choose-section .why-choose-grid,
    .why-choose-section .s5_bot,
    .features-section .s4_bot:not(.d-lg-grid) {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .why-choose-carousel-wrap,
    .features-carousel-wrap--auto {
        display: none !important;
    }
}

.why-choose-carousel-wrap {
    position: relative;
    padding: 0 0 40px;
    width: 100%;
}
.why-choose-carousel .swiper-slide {
    height: auto;
    display: flex;
}
.why-choose-carousel .s5_box {
    width: 100%;
}
.why-choose-pagination.swiper-pagination {
    position: static;
    margin-top: 28px;
    line-height: 0;
}
.why-choose-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(31, 43, 51, 0.2);
    opacity: 1;
    transition: all var(--transition);
}
.why-choose-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--brand-gold);
}

/* Hide leftover owl chrome if any */
.why-choose-section .owl-nav,
.why-choose-section .owl-dots,
.s5_bot .owl-nav,
.s5_bot .owl-dots { display: none !important; }

/* Perk cards */
.perk-card {
    background: var(--brand-white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid #eee;
}
.perk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.perk-card h3 { font-size: 1.15rem; margin: 0 0 0.75rem; }
.perk-card p { color: #555; margin-bottom: 1rem; font-size: 14px; }

/* Success ladder */
.success-section {
    position: relative;
    background:
        radial-gradient(circle at 85% 20%, rgba(247, 208, 34, 0.16) 0%, transparent 35%),
        radial-gradient(circle at 10% 80%, rgba(0, 145, 155, 0.12) 0%, transparent 30%),
        linear-gradient(135deg, #161f26 0%, var(--brand-dark) 45%, #2a3a45 100%);
    padding: 90px 0;
    color: var(--brand-white);
    overflow: hidden;
}
.success-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
    pointer-events: none;
}
.success-content { position: relative; z-index: 1; }
.success-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-gold);
    background: rgba(247, 208, 34, 0.12);
    border: 1px solid rgba(247, 208, 34, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.success-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
    color: var(--brand-white);
}
.success-section h2 strong {
    color: var(--brand-gold);
    font-weight: 800;
}
.success-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.5rem;
    line-height: 1.7;
}
.s2_left,
.success-content { position: relative; z-index: 1; }
.s2_left p + p { margin-top: -0.5rem; }
.s2_left .btn-brand,
.success-content .btn-brand {
    border-radius: 10px;
    padding: 13px 28px;
    box-shadow: 0 8px 22px rgba(247, 208, 34, 0.3);
}
.s2_left .btn-brand:hover,
.success-content .btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(247, 208, 34, 0.4);
}

.s2_right { position: relative; z-index: 1; }
.s2_right .success-tags { margin: 0; }

.success-tags {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.success-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    padding: 14px 16px;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.success-tag:hover {
    transform: translateY(-3px);
    background: rgba(247, 208, 34, 0.1);
    border-color: rgba(247, 208, 34, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    color: var(--brand-white);
}
a.success-tag { text-decoration: none; }
.success-tag__icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--brand-black);
    background: linear-gradient(135deg, var(--brand-gold) 0%, #ffe033 100%);
    box-shadow: 0 4px 12px rgba(247, 208, 34, 0.25);
}
.success-tag:nth-child(2) .success-tag__icon { background: linear-gradient(135deg, #ff5a5a 0%, #ff8a8a 100%); color: #fff; }
.success-tag:nth-child(3) .success-tag__icon { background: linear-gradient(135deg, #004fd4 0%, #3d7dff 100%); color: #fff; }
.success-tag:nth-child(4) .success-tag__icon { background: linear-gradient(135deg, #ff8c1a 0%, #ffb347 100%); color: #fff; }
.success-tag:nth-child(5) .success-tag__icon { background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%); color: #fff; }
.success-tag:nth-child(6) .success-tag__icon { background: linear-gradient(135deg, #00919b 0%, #2ec4b6 100%); color: #fff; }
.success-tag:nth-child(7) .success-tag__icon { background: linear-gradient(135deg, #f7d022 0%, #ffe033 100%); color: var(--brand-black); }
.success-tag:nth-child(8) .success-tag__icon { background: linear-gradient(135deg, #1f2b33 0%, #3d5160 100%); color: var(--brand-gold); border: 1px solid rgba(247, 208, 34, 0.35); }
.success-tag__label { line-height: 1.3; }
.success-tag--static {
    cursor: default;
}
.success-tag--static:hover {
    transform: none;
}

@media (min-width: 992px) {
    .success-tags { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .success-section { padding: 60px 0; }
    .success-tags { grid-template-columns: 1fr; }
}

/* Universities */
.uni-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.uni-carousel img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition);
}
.uni-carousel img:hover { filter: none; opacity: 1; }

/* Service cards */
.services-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(247, 208, 34, 0.09) 0%, transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(0, 79, 212, 0.05) 0%, transparent 30%),
        linear-gradient(180deg, var(--brand-gray) 0%, var(--brand-white) 100%);
    overflow: hidden;
}
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 18px;
    padding: 2rem 1.5rem 1.75rem;
    box-shadow: 0 8px 28px rgba(31, 43, 51, 0.07);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold) 0%, #e6bc00 55%, var(--brand-teal-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 208, 34, 0.4);
    box-shadow: 0 18px 40px rgba(31, 43, 51, 0.12);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
    border-color: rgba(247, 208, 34, 0.35);
    box-shadow:
        0 12px 32px rgba(31, 43, 51, 0.1),
        0 0 0 1px rgba(247, 208, 34, 0.08);
}
.service-card--featured::after {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--brand-black);
    color: var(--brand-gold);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 36px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.service-card__num {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(31, 43, 51, 0.2);
}
.service-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 24px rgba(31, 43, 51, 0.2);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.service-card:hover .service-card__icon {
    transform: scale(1.06) rotate(-3deg);
    background: linear-gradient(135deg, var(--brand-gold) 0%, #ffe033 100%);
    color: var(--brand-black);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.85rem;
    color: var(--brand-dark);
}
.service-card p {
    flex: 1;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 1.5rem;
}
.service-card p a {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.service-card .btn-brand {
    position: static;
    transform: none;
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    padding: 12px 24px;
    box-shadow: 0 6px 16px rgba(247, 208, 34, 0.3);
}
.service-card .btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 208, 34, 0.4);
}

.service-carousel-wrap {
    position: relative;
    padding: 0 0 40px;
}
.service-carousel .swiper-slide {
    height: auto;
    display: flex;
}
.service-carousel .service-card {
    width: 100%;
}

.service-pagination.swiper-pagination {
    position: static;
    margin-top: 28px;
    line-height: 0;
}
.service-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(31, 43, 51, 0.2);
    opacity: 1;
    transition: all var(--transition);
}
.service-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--brand-gold);
}

@media (max-width: 991.98px) {
    .service-card--featured::after { display: none; }
}

/* Discipline cards */
.disciplines-section {
    position: relative;
    background:
        radial-gradient(circle at 80% 15%, rgba(247, 208, 34, 0.07) 0%, transparent 32%),
        radial-gradient(circle at 10% 85%, rgba(0, 145, 155, 0.06) 0%, transparent 28%),
        var(--brand-white);
    overflow: hidden;
}
.discipline-carousel-wrap {
    position: relative;
    padding: 0 48px 44px;
}
.discipline-carousel .swiper-slide {
    height: auto;
    display: flex;
}
.discipline-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 8px 28px rgba(31, 43, 51, 0.07);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}
.discipline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold) 0%, #e6bc00 50%, var(--brand-teal-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.discipline-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 208, 34, 0.35);
    box-shadow: 0 16px 36px rgba(31, 43, 51, 0.12);
}
.discipline-card:hover::before { transform: scaleX(1); }
.discipline-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #ffe033 100%);
    color: var(--brand-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(247, 208, 34, 0.3);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.discipline-card__icon svg {
    width: 1em;
    height: 1em;
    display: block;
}
.discipline-card:hover .discipline-card__icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
}
.discipline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    color: var(--brand-dark);
}
.discipline-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    margin: 0;
    flex: 1;
}

.discipline-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(247, 208, 34, 0.35);
    border-radius: 50%;
    background: var(--brand-white);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.discipline-nav:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-black);
}
.discipline-nav--prev { left: 0; }
.discipline-nav--next { right: 0; }
.discipline-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.discipline-pagination.swiper-pagination {
    position: static;
    margin-top: 28px;
    line-height: 0;
}
.discipline-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(31, 43, 51, 0.2);
    opacity: 1;
    transition: all var(--transition);
}
.discipline-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--brand-gold);
}

@media (max-width: 767.98px) {
    .discipline-carousel-wrap { padding: 0 0 40px; }
    .discipline-nav { display: none; }
}

/* CTA banner (legacy — unused on homepage) */
.cta-section {
    background: var(--brand-gold);
    padding: 70px 0;
    position: relative;
    margin: 60px 0;
    text-align: center;
}
.cta-section::before, .cta-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    background: url('../img/cta-wave.svg') center/contain repeat-x;
}
.cta-section::before { top: -39px; transform: rotate(180deg); }
.cta-section::after { bottom: -39px; }
.cta-section h2 { margin-bottom: 2rem; }
.cta-section .form-control {
    border-radius: var(--radius-sm);
    border: none;
    border-bottom: 2px solid var(--brand-blue);
    padding: 12px 16px;
}

/* Contact request section */
.contact-request-section {
    position: relative;
    background:
        radial-gradient(circle at 10% 20%, rgba(247, 208, 34, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(31, 43, 51, 0.06) 0%, transparent 30%),
        linear-gradient(180deg, var(--brand-gray) 0%, var(--brand-white) 100%);
    overflow: hidden;
}
.contact-request-panel {
    position: relative;
    background: linear-gradient(165deg, #1a1a1a 0%, #252525 45%, #1f1f1f 100%);
    border: 2px solid rgba(247, 208, 34, 0.3);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.contact-request-panel__header {
    padding: 1.75rem 1.75rem 1.35rem;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #e6bc00 40%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(247, 208, 34, 0.2);
}
.contact-request-panel__body {
    padding: 1.5rem 1.75rem 1.75rem;
}
.contact-request-extra {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 0.85rem;
}
.contact-request-extra + .contact-request-form,
.contact-request-extra + form { margin-top: 0.5rem; }
.contact-request-eyebrow,
.stats-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.contact-request-eyebrow {
    color: rgba(0, 0, 0, 0.75);
    background: rgba(255, 255, 255, 0.28);
}
.stats-card__eyebrow {
    color: var(--brand-gold);
    background: rgba(247, 208, 34, 0.15);
}
.contact-request-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--brand-black);
    line-height: 1.2;
}
.contact-request-panel h2 strong { color: inherit; font-weight: 800; }
.contact-request-lead {
    color: rgba(0, 0, 0, 0.72);
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.contact-request-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(247, 208, 34, 0.85);
    margin-bottom: 6px;
}
.contact-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.contact-input-wrap > .bi {
    position: absolute;
    left: 14px;
    color: var(--brand-gold);
    font-size: 15px;
    z-index: 1;
    pointer-events: none;
}
.contact-input-wrap .form-control {
    width: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 13px 14px 13px 42px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--brand-white);
    font-size: 14px;
    transition: all var(--transition);
}
.contact-input-wrap .form-control::placeholder { color: rgba(255, 255, 255, 0.4); }
.contact-input-wrap .form-control:focus {
    border-color: var(--brand-gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(247, 208, 34, 0.18);
    outline: none;
    color: var(--brand-white);
}
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f7d022 0%, #ffe033 45%, #e6bc00 100%);
    color: var(--brand-black);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(247, 208, 34, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(247, 208, 34, 0.45);
}
.contact-submit-btn .bi { font-size: 16px; }
.contact-request-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}
.contact-request-note .bi { color: var(--brand-gold); }

.stats-card {
    position: relative;
    background: linear-gradient(165deg, #1a1a1a 0%, #252525 50%, #1f1f1f 100%);
    border: 1px solid rgba(247, 208, 34, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    height: 100%;
    overflow: hidden;
    color: var(--brand-white);
}
.stats-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(247, 208, 34, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.stats-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: var(--brand-white);
    position: relative;
}
.stats-list { list-style: none; padding: 0; margin: 0; position: relative; }
.stats-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition), border-color var(--transition);
}
.stats-list li:last-child { margin-bottom: 0; }
.stats-list li:hover {
    background: rgba(247, 208, 34, 0.08);
    border-color: rgba(247, 208, 34, 0.2);
}
.stats-list__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #e6bc00 100%);
    color: var(--brand-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.stats-list__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stats-list__content strong {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--brand-gold);
    line-height: 1.1;
}
.stats-list__content em {
    font-style: normal;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991.98px) {
    .contact-request-panel__header,
    .contact-request-panel__body { padding: 1.35rem 1.25rem; }
}

/* FAQ */
.faq-section {
    position: relative;
    background:
        radial-gradient(circle at 85% 15%, rgba(247, 208, 34, 0.08) 0%, transparent 32%),
        radial-gradient(circle at 10% 85%, rgba(31, 43, 51, 0.05) 0%, transparent 28%),
        linear-gradient(180deg, var(--brand-gray-light) 0%, var(--brand-white) 100%);
    overflow: hidden;
}
.faq-section .section-header--lead {
    max-width: 820px;
}
.faq-section .section-header--lead p {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 12px;
}
.faq-accordion { position: relative; }
.faq-item {
    border: 1px solid rgba(31, 43, 51, 0.08) !important;
    margin-bottom: 12px;
    border-radius: 14px !important;
    overflow: hidden;
    background: var(--brand-white);
    box-shadow: 0 6px 20px rgba(31, 43, 51, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover {
    border-color: rgba(247, 208, 34, 0.35) !important;
    box-shadow: 0 10px 28px rgba(31, 43, 51, 0.08);
}
.faq-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(247, 208, 34, 0.45) !important;
    box-shadow: 0 12px 30px rgba(247, 208, 34, 0.12);
}
.faq-section .accordion-button {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--brand-dark);
    padding: 16px 20px;
    background: var(--brand-white);
    box-shadow: none !important;
}
.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(247, 208, 34, 0.12) 0%, var(--brand-white) 55%);
    color: var(--brand-dark);
}
.faq-section .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent;
}
.faq-item__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #e6bc00 100%);
    color: var(--brand-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 10px rgba(247, 208, 34, 0.25);
}
.faq-section .accordion-button:not(.collapsed) .faq-item__num {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
}
.faq-item__q {
    flex: 1;
    text-align: left;
    line-height: 1.35;
    padding-right: 8px;
}
.faq-section .accordion-button::after {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: rgba(31, 43, 51, 0.06);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2b33'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.25s ease, background-color 0.25s ease;
}
.faq-section .accordion-button:not(.collapsed)::after {
    background-color: var(--brand-gold);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-body {
    padding: 0 20px 18px 70px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    border-top: none;
}
.faq-section .accordion-collapse {
    border: none;
}

@media (max-width: 575.98px) {
    .faq-section .accordion-button {
        font-size: 14px;
        padding: 14px 14px;
        gap: 10px;
    }
    .faq-item__num { width: 32px; height: 32px; font-size: 11px; }
    .faq-section .accordion-body { padding: 0 14px 16px 14px; }
}

/* Testimonials */
.testimonials-section {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(247, 208, 34, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(0, 79, 212, 0.05) 0%, transparent 30%),
        linear-gradient(180deg, var(--brand-gray) 0%, var(--brand-white) 100%);
    overflow: hidden;
}
.testimonial-carousel-wrap {
    position: relative;
    padding: 0 48px 44px;
}
.testimonial-carousel .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--brand-white);
    border: 1px solid rgba(247, 208, 34, 0.22);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow:
        0 10px 32px rgba(31, 43, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-gold) 0%, #e6bc00 100%);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 208, 34, 0.45);
    box-shadow:
        0 18px 40px rgba(31, 43, 51, 0.12),
        0 0 0 1px rgba(247, 208, 34, 0.08);
}
.testimonial-card__quote {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(247, 208, 34, 0.18);
}
.testimonial-card__stars {
    display: flex;
    gap: 3px;
    color: var(--brand-gold);
    font-size: 14px;
    margin-bottom: 1rem;
}
.testimonial-card__text {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1.25rem;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 43, 51, 0.08);
    margin-top: auto;
}
.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(31, 43, 51, 0.15);
}
.testimonial-card h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--brand-dark);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(247, 208, 34, 0.35);
    border-radius: 50%;
    background: var(--brand-white);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.testimonial-nav:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-black);
}
.testimonial-nav--prev { left: 0; }
.testimonial-nav--next { right: 0; }
.testimonial-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.testimonial-pagination.swiper-pagination {
    position: static;
    margin-top: 28px;
    line-height: 0;
}
.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(31, 43, 51, 0.2);
    opacity: 1;
    transition: all var(--transition);
}
.testimonial-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--brand-gold);
}

@media (max-width: 767.98px) {
    .testimonial-carousel-wrap { padding: 0 0 40px; }
    .testimonial-nav { display: none; }
}

/* SEO content */
.seo-section {
    position: relative;
    padding: 70px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(247, 208, 34, 0.07) 0%, transparent 30%),
        linear-gradient(180deg, var(--brand-white) 0%, var(--brand-gray) 100%);
}
.seo-block {
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 16px;
    padding: 1.75rem 1.75rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(31, 43, 51, 0.05);
}
.seo-block:last-child { margin-bottom: 0; }
.seo-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--brand-dark);
    padding-left: 14px;
    border-left: 4px solid var(--brand-gold);
    line-height: 1.3;
}
.seo-block p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 1rem;
}
.seo-block p:last-child { margin-bottom: 0; }

.seo-benefits {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.seo-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--brand-gray);
    border: 1px solid rgba(31, 43, 51, 0.06);
    border-radius: 12px;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.seo-benefits li:hover {
    background: var(--brand-white);
    border-color: rgba(247, 208, 34, 0.35);
    box-shadow: 0 8px 20px rgba(31, 43, 51, 0.06);
}
.seo-benefits__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #e6bc00 100%);
    color: var(--brand-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(247, 208, 34, 0.25);
}
.seo-benefits__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    padding-top: 2px;
}

@media (max-width: 575.98px) {
    .seo-section { padding: 50px 0; }
    .seo-block { padding: 1.35rem 1.15rem; }
    .seo-benefits li { padding: 0.9rem; gap: 12px; }
}

/* Footer */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at 15% 0%, rgba(247, 208, 34, 0.1) 0%, transparent 35%),
        linear-gradient(180deg, #1a242b 0%, #141c22 100%);
    color: rgba(255, 255, 255, 0.75);
}
.footer-main { padding: 60px 0 40px; }
.footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}
.footer-logo img {
    width: 180px;
    display: block;
    max-width: 100%;
}
.footer-brand .footer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.25rem;
}
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-contact a .bi,
.footer-contact .footer-address .bi {
    color: var(--brand-gold);
    font-size: 14px;
}
.footer-contact a:hover { color: var(--brand-gold); }
.footer-contact .footer-address {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.45;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.25rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
    background: rgba(247, 208, 34, 0.15);
    border-color: rgba(247, 208, 34, 0.45);
    color: var(--brand-gold);
}

.footer-box h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
    padding-bottom: 12px;
    color: var(--brand-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.footer-box h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--brand-gold);
}
.footer-box ul { list-style: none; padding: 0; margin: 0; }
.footer-box ul li { line-height: 1.9; }
.footer-box ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), transform var(--transition);
}
.footer-box ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--brand-gold);
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.25s ease;
}
.footer-box ul li a:hover {
    color: var(--brand-gold);
    transform: translateX(3px);
}
.footer-box ul li a:hover::before { transform: scale(1.2); }
.footer-link-strong { font-weight: 700 !important; color: var(--brand-white) !important; }
.footer-quick li a { font-weight: 500; }

.footer-services {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 32px;
}
.footer-links ul { min-width: 0; }
.footer-hr {
    list-style: none;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 10px 0;
    padding: 0;
    line-height: 0;
}
.footer-hr::before { display: none; }
.footer-hr a { display: none; }

.footer-bottom {
    background: var(--brand-gold);
    padding: 14px 0;
    text-align: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-black);
}

@media (max-width: 991.98px) {
    .footer-main { padding: 45px 0 30px; }
    .footer-logo img { height: 42px; }
    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 24px;
    }
}

@media (max-width: 575.98px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Order modal — split layout: text aside + compact form */
.order-modal .modal-dialog { max-width: 920px; }
.order-modal .modal-content {
    position: relative;
    border: 2px solid rgba(247, 208, 34, 0.3);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(165deg, #1a1a1a 0%, #252525 45%, #1f1f1f 100%);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(247, 208, 34, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.order-modal .modal-body { background: transparent; }

.order-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.order-modal-close:hover {
    background: var(--brand-gold);
    color: var(--brand-black);
    border-color: transparent;
    transform: scale(1.05);
}
.order-modal-close:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

.order-modal-aside {
    position: relative;
    background: linear-gradient(160deg, var(--brand-gold) 0%, #e6bc00 35%, #1a1a1a 100%);
    overflow: hidden;
}
.order-modal-aside__inner {
    position: relative;
    z-index: 1;
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.order-modal-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--brand-black);
    color: var(--brand-gold);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 36px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(247, 208, 34, 0.4);
    z-index: 2;
}
.order-modal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    width: fit-content;
}
.order-modal .modal-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.55rem;
    margin: 0 0 8px;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}
.order-modal-subtitle {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 14px;
    font-weight: 600;
}
.order-modal-lead {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 18px;
}
.order-modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.order-modal-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-white);
    margin-bottom: 10px;
}
.order-modal-benefits li .bi {
    color: var(--brand-gold);
    font-size: 16px;
    flex-shrink: 0;
}
.order-modal-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.order-modal-stats > div {
    flex: 1;
    min-width: 80px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(247, 208, 34, 0.25);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}
.order-modal-stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--brand-gold);
    line-height: 1.2;
}
.order-modal-stats span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

.order-modal-form-panel {
    padding: 1.75rem 1.75rem 1.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    border-left: 1px solid rgba(247, 208, 34, 0.12);
}
.order-modal-form-heading {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(247, 208, 34, 0.9);
    margin: 0 0 16px;
}

.order-modal-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(247, 208, 34, 0.85);
    margin-bottom: 6px;
}

.order-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.order-input-wrap > .bi {
    position: absolute;
    left: 14px;
    color: var(--brand-gold);
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}
.order-input-wrap--textarea > .bi { top: 14px; }
.order-input-wrap .form-control,
.order-input-wrap .form-select {
    width: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px 12px 42px;
    background: rgba(0, 0, 0, 0.35);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-white);
    transition: all var(--transition);
    margin-bottom: 0;
}
.order-input-wrap .form-select {
    appearance: none;
    background-color: rgba(0, 0, 0, 0.35);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f7d022' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
}
.order-input-wrap .form-select option {
    background: #1a1a1a;
    color: var(--brand-white);
}
.order-input-wrap .form-control:focus,
.order-input-wrap .form-select:focus {
    border-color: var(--brand-gold);
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(247, 208, 34, 0.15);
    outline: none;
    color: var(--brand-white);
}
.order-input-wrap .form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f7d022' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}
.order-input-wrap .form-control::placeholder { color: rgba(255, 255, 255, 0.35); }
.order-input-wrap textarea.form-control {
    min-height: 88px;
    resize: vertical;
}

.order-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f7d022 0%, #ffe033 45%, #e6bc00 100%);
    color: var(--brand-black);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        0 8px 24px rgba(247, 208, 34, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 0 2px rgba(0, 0, 0, 0.15);
}
.order-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}
.order-submit-btn__text {
    position: relative;
    z-index: 1;
    padding: 16px 0 16px 8px;
}
.order-submit-btn__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--brand-black);
    color: var(--brand-gold);
    font-size: 16px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.order-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(247, 208, 34, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 2px rgba(247, 208, 34, 0.5);
}
.order-submit-btn:hover::before { transform: translateX(120%); }
.order-submit-btn:hover .order-submit-btn__icon {
    background: var(--brand-gold);
    color: var(--brand-black);
    transform: translateX(4px);
}
.order-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(247, 208, 34, 0.35);
}

.order-modal-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.order-modal-note .bi { color: var(--brand-gold); font-size: 14px; }

@media (max-width: 991.98px) {
    .order-modal .modal-dialog {
        max-width: 520px;
        margin: 0.75rem auto;
    }
    .order-modal .modal-content {
        max-height: calc(100vh - 1.5rem);
        border-radius: 16px;
    }
    .order-modal .modal-body {
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .order-modal-close {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.7);
        border-color: rgba(247, 208, 34, 0.35);
        color: var(--brand-gold);
    }

    .order-modal-aside {
        background: linear-gradient(120deg, var(--brand-gold) 0%, #e6bc00 40%, #2a2a2a 100%);
    }
    .order-modal-aside__inner {
        padding: 1.1rem 1.15rem 1rem;
        justify-content: flex-start;
        padding-right: 3rem;
    }
    .order-modal-ribbon {
        display: none;
    }
    .order-modal-eyebrow {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 8px;
    }
    .order-modal .modal-title {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }
    .order-modal-subtitle {
        font-size: 13px;
        margin-bottom: 0;
    }
    .order-modal-lead,
    .order-modal-benefits,
    .order-modal-stats {
        display: none;
    }

    .order-modal-form-panel {
        padding: 1rem 1.15rem 1.1rem;
        border-left: none;
        border-top: 1px solid rgba(247, 208, 34, 0.12);
    }
    .order-modal-form-heading {
        margin-bottom: 12px;
        font-size: 12px;
    }
    .order-modal-form .row {
        --bs-gutter-y: 0.7rem;
        --bs-gutter-x: 0.7rem;
    }
    .order-modal-form label { display: none; }
    .order-input-wrap .form-control,
    .order-input-wrap .form-select {
        padding: 11px 12px 11px 40px;
        font-size: 14px;
        border-radius: 9px;
    }
    .order-input-wrap > .bi {
        left: 12px;
        font-size: 14px;
    }
    .order-input-wrap--textarea > .bi { top: 12px; }
    .order-input-wrap textarea.form-control {
        min-height: 68px;
    }
    .order-submit-btn__text { padding: 13px 0 13px 8px; }
    .order-submit-btn__icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .order-modal-note {
        margin-top: 10px;
        font-size: 11px;
    }
}

@media (max-width: 575.98px) {
    .order-modal .modal-dialog {
        max-width: calc(100% - 1rem);
        margin: 0.5rem auto;
    }
    .order-modal .modal-content {
        max-height: calc(100vh - 1rem);
        border-radius: 14px;
    }
    .order-modal-aside__inner { padding: 1rem 0.95rem 0.9rem; padding-right: 2.75rem; }
    .order-modal-form-panel { padding: 0.9rem 0.95rem 1rem; }
    .order-modal-form .col-sm-6 { flex: 0 0 100%; max-width: 100%; }
}

/* Legal docs — Terms & Privacy */
.legal-doc-section {
    position: relative;
    background:
        radial-gradient(circle at 92% 8%, rgba(247, 208, 34, 0.06) 0%, transparent 28%),
        linear-gradient(180deg, var(--brand-gray-light) 0%, var(--brand-white) 100%);
}
.legal-doc-nav {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 1.25rem;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(31, 43, 51, 0.05);
}
.legal-doc-nav__label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 8px;
}
.legal-doc-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.legal-doc-nav__link .bi {
    color: var(--brand-gold);
    font-size: 14px;
    flex-shrink: 0;
}
.legal-doc-nav__link:hover {
    background: rgba(247, 208, 34, 0.12);
    color: var(--brand-dark);
}
.legal-doc-nav__link--alt {
    background: rgba(31, 43, 51, 0.04);
}
.legal-doc-nav__divider {
    height: 1px;
    background: rgba(31, 43, 51, 0.08);
    margin: 8px 0;
}

.legal-doc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.legal-doc__block {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1.4rem;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(31, 43, 51, 0.05);
    scroll-margin-top: 100px;
}
.legal-doc__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
    font-size: 1.1rem;
}
.legal-doc__body { flex: 1; min-width: 0; }
.legal-doc__body h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 0.75rem;
    padding-left: 12px;
    border-left: 3px solid var(--brand-gold);
    line-height: 1.3;
}
.legal-doc__body p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 0.85rem;
}
.legal-doc__body p:last-child { margin-bottom: 0; }
.legal-doc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.legal-doc__list li {
    position: relative;
    padding: 0.75rem 0.9rem 0.75rem 2.4rem;
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    background: var(--brand-gray-light);
    border: 1px solid rgba(31, 43, 51, 0.05);
    border-radius: 10px;
}
.legal-doc__list li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(247, 208, 34, 0.25);
}
.legal-doc__list a {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-doc__updated {
    margin-top: 0.85rem !important;
    font-size: 13px !important;
    color: #888 !important;
    font-style: italic;
}
.legal-doc__footer {
    padding: 1.15rem 1.35rem;
    background: linear-gradient(135deg, rgba(247, 208, 34, 0.12) 0%, rgba(247, 208, 34, 0.04) 100%);
    border: 1px solid rgba(247, 208, 34, 0.28);
    border-radius: 14px;
    text-align: center;
}
.legal-doc__footer p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
.legal-doc__footer a {
    font-weight: 700;
    color: var(--brand-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 991.98px) {
    .legal-doc-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .legal-doc-nav__label { width: 100%; margin-bottom: 0; }
    .legal-doc-nav__divider { display: none; }
    .legal-doc-nav__link {
        padding: 8px 12px;
        font-size: 12px;
        background: var(--brand-gray-light);
    }
}
@media (max-width: 575.98px) {
    .legal-doc__block {
        flex-direction: column;
        gap: 0.85rem;
        padding: 1.25rem 1.15rem;
    }
}

/* Contact page */
.contact-page-section {
    position: relative;
    background:
        radial-gradient(circle at 90% 8%, rgba(247, 208, 34, 0.07) 0%, transparent 28%),
        radial-gradient(circle at 8% 90%, rgba(31, 43, 51, 0.04) 0%, transparent 26%),
        linear-gradient(180deg, var(--brand-gray-light) 0%, var(--brand-white) 100%);
}
.contact-page-panel {
    height: 100%;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(31, 43, 51, 0.07);
}
.contact-page-panel__header {
    padding: 1.75rem 1.75rem 1.25rem;
    background:
        linear-gradient(135deg, rgba(247, 208, 34, 0.14) 0%, rgba(247, 208, 34, 0.04) 55%, transparent 100%);
    border-bottom: 1px solid rgba(31, 43, 51, 0.06);
}
.contact-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: rgba(247, 208, 34, 0.2);
    border: 1px solid rgba(247, 208, 34, 0.35);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.contact-page-eyebrow .bi { color: #b89600; }
.contact-page-panel__header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 0.5rem;
}
.contact-page-panel__header p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.contact-page-panel__body { padding: 1.5rem 1.75rem 1.75rem; }
.contact-page-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 6px;
}
.contact-page-form .order-input-wrap .form-control {
    border: 1px solid rgba(31, 43, 51, 0.12);
    background: #fafbfc;
    color: var(--brand-dark);
}
.contact-page-form .order-input-wrap .form-control::placeholder {
    color: rgba(31, 43, 51, 0.4);
}
.contact-page-form .order-input-wrap .form-control:focus {
    border-color: rgba(247, 208, 34, 0.55);
    background: var(--brand-white);
    color: var(--brand-dark);
    box-shadow: 0 0 0 3px rgba(247, 208, 34, 0.15);
}
.contact-page-form .order-submit-btn {
    width: 100%;
    margin-top: 4px;
}
.contact-page-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 0;
    font-size: 12px;
    color: #777;
}
.contact-page-note .bi { color: var(--brand-gold); }

.contact-page-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}
.contact-page-aside__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.25rem 1.35rem;
    background: var(--brand-white);
    border: 1px solid rgba(31, 43, 51, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(31, 43, 51, 0.05);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.contact-page-aside__card:hover {
    border-color: rgba(247, 208, 34, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 43, 51, 0.08);
}
.contact-page-aside__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3a45 100%);
    color: var(--brand-gold);
    font-size: 1.15rem;
}
.contact-page-aside__icon .bi {
    color: var(--brand-gold) !important;
}
.contact-page-aside__card h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--brand-dark);
}
.contact-page-aside__card a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    word-break: break-word;
}
.contact-page-aside__card a:hover { color: var(--brand-dark); }
.contact-page-aside__card > div > span {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.contact-page-aside__stats {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 1.15rem;
    background: linear-gradient(145deg, var(--brand-dark) 0%, #2a3a45 100%);
    border-radius: 16px;
    border: 1px solid rgba(247, 208, 34, 0.2);
}
.contact-page-aside__stats > div {
    text-align: center;
}
.contact-page-aside__stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-gold);
    line-height: 1.2;
}
.contact-page-aside__stats span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 3px;
}

@media (max-width: 991.98px) {
    .contact-page-aside__stats { margin-top: 0; }
}
@media (max-width: 575.98px) {
    .contact-page-panel__header,
    .contact-page-panel__body { padding-left: 1.15rem; padding-right: 1.15rem; }
    .contact-page-aside__stats { grid-template-columns: 1fr; gap: 12px; }
}

/* Legacy contact form wrap (fallback) */
.contact-form-wrap {
    background: var(--brand-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-form-wrap label { font-weight: 600; margin-bottom: 6px; }
.contact-form-wrap .form-control {
    border-radius: var(--radius-sm);
    border: 2px solid #555;
    padding: 10px 14px;
    margin-bottom: 1rem;
}

