@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --font-body: 'Saira', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --red: #b20000;
    --red-dark: #8a0000;
    --red-light: #e63939;
    --black: #0d0d0d;
    --gray-900: #1a1a1a;
    --gray-700: #3d3d3d;
    --gray-500: #6b6b6b;
    --gray-200: #e8e8e8;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(178, 0, 0, 0.12);
    --radius: 12px;
    --transition: 0.3s ease;
    /* Typography scale */
    --fs-base: 1rem;
    --fs-sm: 0.9375rem;
    --fs-xs: 0.875rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --topbar-height: 52px;
    --header-height: 96px;
    --logo-height: 58px;
    --logo-height-scrolled: 50px;
    --topbar-font: 13px;
    --nav-font: 15.5px;
    --site-header-offset: calc(var(--topbar-height) + var(--header-height));
    --section-between: 50px;
    --section-between-sm: 40px;
    --section-header-mb: 20px;
    --section-panel-padding: 40px;
    --sticky-cta-height: 56px;
    --floating-btn-gap: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

body.has-sticky-cta {
    padding-bottom: var(--sticky-cta-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--topbar-height);
    background: linear-gradient(90deg, var(--black) 0%, var(--gray-900) 55%, #1a0808 100%);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-accent);
    font-size: var(--topbar-font);
    line-height: 1.35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 50%, rgba(178, 0, 0, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar .container {
    position: relative;
    z-index: 1;
    height: 100%;
    max-width: 1320px;
    padding-left: 28px;
    padding-right: 28px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    min-width: 0;
}

.top-bar-left {
    gap: 0;
    flex: 1;
    overflow: hidden;
}

.top-bar-right {
    gap: 10px;
    flex-shrink: 0;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-badge {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    background: rgba(178, 0, 0, 0.22);
    border: 1px solid rgba(230, 57, 57, 0.35);
    border-radius: 999px;
    color: var(--red-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}

.top-bar-sep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.14);
    margin: 0 18px;
    flex-shrink: 0;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    transition: color var(--transition);
    line-height: 1.3;
    flex-shrink: 0;
}

.top-bar-item:hover {
    color: var(--white);
}

.top-bar-text {
    display: inline-block;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.top-bar-text strong {
    color: var(--white);
    font-weight: 600;
    margin-right: 4px;
}

.top-bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.22);
    color: var(--red-light);
    flex-shrink: 0;
}

.top-bar-icon svg {
    width: 13px;
    height: 13px;
}

.top-bar-hours {
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: var(--topbar-font);
    font-weight: 500;
    line-height: 1;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.top-bar-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.top-bar-link-accent {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(178, 0, 0, 0.35);
    padding: 0 18px;
}

.top-bar-link-accent:hover {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
    color: var(--white);
    transform: translateY(-1px);
}

.top-bar-accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 20%, var(--red-light) 50%, var(--red) 80%, transparent 100%);
}

.nav-cta {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: var(--nav-font);
    white-space: nowrap;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    box-shadow: 0 4px 16px rgba(178, 0, 0, 0.28);
    gap: 8px;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.nav-cta:hover {
    box-shadow: 0 6px 22px rgba(178, 0, 0, 0.4);
}

.nav-cta-icon {
    width: 15px;
    height: 15px;
    transition: transform var(--transition);
}

.nav-cta:hover .nav-cta-icon {
    transform: translateX(3px);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: calc(var(--sticky-cta-height) + var(--floating-btn-gap));
    right: 24px;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-float-wrap {
    position: relative;
    width: 58px;
    height: 58px;
    animation: whatsapp-wrap-wiggle 5s ease-in-out infinite;
}

.whatsapp-float-badge {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    white-space: nowrap;
    padding: 9px 16px;
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(12px) scale(0.9);
    animation: whatsapp-badge-pop 5s ease-in-out infinite;
}

.whatsapp-float-badge::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1da851;
}

.whatsapp-float-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.55);
    pointer-events: none;
    animation: whatsapp-orbit-ring 2.4s ease-out infinite;
}

.whatsapp-float-ring-2 {
    animation-delay: 0.8s;
}

.whatsapp-float-ring-3 {
    animation-delay: 1.6s;
}

.float-btn {
    display: block;
    line-height: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn.whatsapp {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    animation:
        whatsapp-bounce 2.2s ease-in-out infinite,
        whatsapp-glow 2.2s ease-in-out infinite;
}

.float-btn.whatsapp::before,
.float-btn.whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: whatsapp-pulse-ring 2s ease-out infinite;
}

.float-btn.whatsapp::after {
    animation-delay: 1s;
}

.float-btn.whatsapp img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    animation: whatsapp-icon-pulse 1.8s ease-in-out infinite;
}

.whatsapp-float-wrap:hover,
.whatsapp-float-wrap:hover .whatsapp-float-badge,
.whatsapp-float-wrap:hover .whatsapp-float-ring,
.whatsapp-float-wrap:hover .float-btn.whatsapp,
.whatsapp-float-wrap:hover .float-btn.whatsapp::before,
.whatsapp-float-wrap:hover .float-btn.whatsapp::after,
.whatsapp-float-wrap:hover .float-btn.whatsapp img {
    animation-play-state: paused;
}

.whatsapp-float-wrap:hover .whatsapp-float-badge {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
}

.whatsapp-float-wrap:hover .float-btn.whatsapp {
    transform: scale(1.14);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-wrap:hover .whatsapp-float-ring {
    opacity: 0;
}

@keyframes whatsapp-badge-pop {

    0%,
    55%,
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(12px) scale(0.9);
    }

    10%,
    40% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

@keyframes whatsapp-orbit-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

@keyframes whatsapp-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    40% {
        transform: translateY(-9px) rotate(0deg);
    }

    60% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes whatsapp-wrap-wiggle {

    0%,
    86%,
    100% {
        transform: rotate(0deg);
    }

    88% {
        transform: rotate(-7deg);
    }

    90% {
        transform: rotate(7deg);
    }

    92% {
        transform: rotate(-5deg);
    }

    94% {
        transform: rotate(5deg);
    }

    96% {
        transform: rotate(0deg);
    }
}

@keyframes whatsapp-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65), 0 0 18px rgba(37, 211, 102, 0.35);
    }
}

@keyframes whatsapp-pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes whatsapp-icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {

    .whatsapp-float-wrap,
    .whatsapp-float-badge,
    .whatsapp-float-ring,
    .float-btn.whatsapp,
    .float-btn.whatsapp::before,
    .float-btn.whatsapp::after,
    .float-btn.whatsapp img {
        animation: none !important;
    }

    .whatsapp-float-badge {
        display: none;
    }

    .whatsapp-float-ring {
        display: none;
    }
}

/* Header */
.header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid rgba(178, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: top 0.35s ease, height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(178, 0, 0, 0.25) 25%, var(--red-light) 50%, rgba(178, 0, 0, 0.25) 75%, transparent 100%);
    opacity: 0.6;
    transition: opacity var(--transition);
    pointer-events: none;
}

.header.top-collapsed {
    top: 0;
}

.header.scrolled {
    height: 84px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(178, 0, 0, 0.15);
}

.header.scrolled::after {
    opacity: 1;
}

.header-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 35%, var(--red-light) 65%, var(--red) 100%);
    opacity: 0.45;
    transition: opacity var(--transition);
}

.header.scrolled .header-accent {
    opacity: 1;
}

.header .container {
    max-width: 1320px;
    height: 100%;
    padding-left: 28px;
    padding-right: 28px;
}

.nav {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    height: 100%;
    gap: 32px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 10px;
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
}

.nav-logo:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 12px rgba(178, 0, 0, 0.12);
}

.nav-logo img {
    height: var(--logo-height);
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: var(--white);
    display: block;
    transition: height 0.3s ease;
}


.header.scrolled .nav-logo img {
    height: var(--logo-height-scrolled);
}

.header.scrolled .nav-cta {
    padding: 10px 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
    padding: 0 8px;
}

.nav-links>li {
    display: flex;
    align-items: center;
}

.nav-links>li>a,
.nav-dropdown>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 42px;
    font-family: var(--font-heading);
    font-size: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--gray-700);
    padding: 0 14px;
    border-radius: 0;
    background: transparent;
    transition: color var(--transition), box-shadow var(--transition);
    position: relative;
}

.nav-links a::after {
    display: none;
}

.nav-links>li>a:hover,
.nav-dropdown>a:hover,
.nav-links>li>a.active,
.nav-dropdown>a.active,
.nav-dropdown.active-parent>a {
    color: var(--red);
    background: transparent;
}

.nav-links>li>a.active,
.nav-dropdown>a.active {
    background: transparent;
    box-shadow: inset 0 -3px 0 var(--red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown>a .arrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.6rem;
    margin-left: 1px;
    margin-top: 1px;
    transition: transform var(--transition);
    opacity: 0.65;
    line-height: 1;
}

.nav-dropdown:hover>a .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: var(--fs-sm);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.15px;
    line-height: 1.45;
    color: var(--gray-700);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(178, 0, 0, 0.05);
    color: var(--red);
    border-left-color: var(--red);
    padding-left: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(178, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.8125rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: transparent;
    border-color: var(--red);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--red);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--red);
}

/* Page Banner (inner pages) */
.page-banner {
    position: relative;
    margin-top: var(--site-header-offset);
    padding: 50px 0 50px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 60%, var(--red-dark) 100%);
    overflow: visible;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(178, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-banner h1 em {
    color: var(--red-light);
    font-style: normal;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-lg);
    max-width: 560px;
}

.breadcrumb {
    display: block;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color var(--transition);
}

.page-banner .breadcrumb a:hover {
    color: var(--white);
}

.page-banner .breadcrumb span {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb-section {
    display: block;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs, 0.8125rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 12px;
}

.breadcrumb-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
    border-radius: 2px;
}

.page-banner .breadcrumb-list {
    display: inline-flex;
    max-width: 100%;
}

.page-banner--about .breadcrumb-list {
    padding: 10px 20px 10px 14px;
}

.breadcrumb-list {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 8px 18px 8px 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-sm);
    line-height: 1.3;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 4px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255%2C255%2C255%2C0.45)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 100px;
    transition: color var(--transition), background var(--transition);
}

.breadcrumb-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb-link--home {
    padding-left: 6px;
}

.breadcrumb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--red-light);
    flex-shrink: 0;
}

.breadcrumb-icon svg {
    width: 100%;
    height: 100%;
}

.breadcrumb-current {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.55) 0%, rgba(138, 0, 0, 0.65) 100%);
    border-radius: 100px;
    border: 1px solid rgba(230, 57, 57, 0.45);
    box-shadow: 0 2px 8px rgba(178, 0, 0, 0.3);
}

@keyframes breadcrumb-fade-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 50%, var(--red-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(178, 0, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--section-between);
    align-items: center;
    padding: var(--section-between) 0;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 .red {
    color: var(--red-light);
}

.hero-text p {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-light);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
}

.hero-card img {
    margin: 0 auto 24px;
    height: 120px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.hero-card h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-base);
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.hero-tagline span:not(:nth-child(2)) {
    color: var(--white);
}

.hero-tagline .pipe {
    color: var(--red-light);
}

/* Section common - space only BETWEEN sections, not inside header text */
section:not(.hero-slider):not(.page-banner):not(.cta):not(.section-full):not(.section-contained) {
    padding-top: 100px;
    padding-bottom: var(--section-between);
}

.hero-slider+section {
    padding-top: var(--section-between);
}

.section-compact {
    padding-bottom: calc(var(--section-between) * 0.75);
}

/* Full-width colored section (edge to edge) */
.section-full {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-full>.container {
    position: relative;
    z-index: 1;
}

/* Contained section - content band inside container, no edge-to-edge background */
.section-contained {
    position: relative;
    background: var(--white);
}

/* Homepage alternating width rhythm */
.services-home.section-contained {
    background: var(--white);
}

.services-home.section-contained::before {
    display: none;
}

.about.section-full {
    background: var(--gray-100);
    padding-top: var(--section-between);
}

.stats-section.section-contained {
    background: var(--white);
}

.growth-section.section-full {
    padding-top: var(--section-between);
}

.industries-section.section-contained {
    background: var(--white);
}

.products-section.section-full {
    background: var(--gray-100);
    padding-top: var(--section-between);
}

.training-section.section-contained {
    background: var(--white);
    padding-top: var(--section-between);
}

.callback-section.section-full {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 55%, #141414 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: var(--section-between);
}

.callback-section.section-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
    z-index: 1;
}

.callback-section.section-full .callback-panel {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.callback-section.section-full .callback-panel::before {
    display: none;
}

.clients-section.section-contained {
    background: var(--white);
    padding-top: var(--section-between);
}

.portfolio-section.section-full {
    background: var(--gray-100);
}

.testimonials-section.section-contained {
    background: var(--white);
}

.cta-home.section-full {
    background: var(--gray-100);
    padding-top: 32px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--section-header-mb);
}

.section-header .section-desc {
    margin-bottom: 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.15;
}

.section-title em {
    font-style: normal;
    color: var(--red);
}

.section-desc {
    font-size: var(--fs-lg);
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

.section-action {
    text-align: center;
    margin-top: calc(var(--section-between) * 0.48);
}

/* Images */
.img-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-frame.tall img {
    min-height: 420px;
}

.img-frame.wide img {
    min-height: 300px;
}

/* About */
.about {
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
}

.about::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100%;
}

.about--company .about-image {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 16px;
}

.about--company .about-image-wrap {
    flex: 1 1 auto;
    margin: 0 14px 0 0;
}

.about--company .about-image-main {
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
}

.about--company .about-image-main img {
    position: absolute;
}

.about-image-foot {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.about-image-foot strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 6px;
}

.about-image-foot span {
    display: block;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.55;
}

.about-image-foot-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.about-image-foot-list li {
    position: relative;
    padding-left: 22px;
    font-size: var(--fs-sm);
    color: var(--gray-700);
    font-weight: 500;
}

.about-image-foot-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.18);
    border: 2px solid rgba(178, 0, 0, 0.55);
}

.about-image-wrap {
    position: relative;
    width: 100%;
    margin: 0 14px 14px 0;
}

.about-image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(178, 0, 0, 0.22);
    border-radius: 18px;
    transform: translate(14px, 14px);
    z-index: 0;
    pointer-events: none;
}

.about-image-main {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    background: var(--black);
    line-height: 0;
}

.about-image-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.about-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 70%, transparent 100%);
}

.about-meta-chip {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.about-meta-chip strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.about-meta-chip span {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.85);
}

.about-meta-chip-wide {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.about-meta-chip-wide svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--red-light);
}

.about-meta-chip-wide span {
    text-transform: none;
    font-size: 0.75rem;
    letter-spacing: 0;
}

.about-image .img-frame {
    border-radius: 18px;
}

.about-badge {
    position: absolute;
    background: var(--black);
    color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--fs-sm);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    line-height: 1.3;
}

.about-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--red-light);
    line-height: 1.1;
}

.about-badge-projects {
    bottom: 12px;
    right: -8px;
}

.about-badge-clients {
    top: 32px;
    left: -12px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
}

.about-badge-clients strong {
    color: var(--red);
}

.about-image-card {
    position: absolute;
    bottom: 72px;
    left: -16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 220px;
}

.about-image-card-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.about-image-card-icon svg {
    width: 20px;
    height: 20px;
}

.about-image-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.about-image-card span {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.35;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    padding: 0;
}

.about-content .section-label {
    margin-bottom: 8px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.1vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.15;
}

.about-title em {
    font-style: normal;
    color: var(--red);
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-lead {
    font-size: var(--fs-base);
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 18px;
}

.about-content p {
    margin-bottom: 12px;
    font-size: var(--fs-base);
    color: var(--gray-500);
}

.about-content p:last-of-type {
    margin-bottom: 0;
}

.about-highlights {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.45;
}

.about-highlight-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
}

.about-highlight-icon svg {
    width: 12px;
    height: 12px;
}

.about-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-meta-chip-wide {
        margin-left: 0;
        width: 100%;
    }
}

.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 22px 0 20px;
}

.about-stat-chip {
    text-align: center;
    padding: 12px 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-stat-chip strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.about-stat-chip span {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 0;
    margin-bottom: 18px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gray-700);
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
}

.about-feature .icon {
    width: 36px;
    height: 36px;
    background: rgba(178, 0, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.about-feature .icon svg {
    width: 18px;
    height: 18px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.about-tags span {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}

/* Mission Vision */
.mission-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.mission-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.mission-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.mission-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.72);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 26px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--red-dark), var(--red-light));
    opacity: 0.85;
}

.mission-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 32px rgba(178, 0, 0, 0.08);
}

.mission-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.14);
    color: var(--red);
}

.mission-card-icon--vision {
    background: rgba(13, 13, 13, 0.06);
    border-color: rgba(13, 13, 13, 0.1);
    color: var(--black);
}

.mission-card-icon svg {
    width: 24px;
    height: 24px;
}

.mission-card-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 8px;
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.25;
}

.mission-card p {
    color: var(--gray-500);
    font-size: var(--fs-base);
    line-height: 1.65;
    margin-bottom: 16px;
}

.mission-points {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--gray-200);
    display: grid;
    gap: 8px;
}

.mission-points li {
    position: relative;
    padding-left: 22px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.45;
}

.mission-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.16);
    border: 2px solid rgba(178, 0, 0, 0.55);
}

/* Mission page - office section */
.office-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.office-grid .about-image {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.office-grid .about-image-wrap {
    margin: 0 14px 0 0;
}

.office-grid .about-image-main {
    aspect-ratio: 16 / 10;
    min-height: 320px;
}

.office-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.office-fact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 14px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.office-fact:hover {
    transform: translateY(-3px);
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
}

.office-fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    flex-shrink: 0;
}

.office-fact-icon svg {
    width: 20px;
    height: 20px;
}

.office-fact strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.office-fact span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.5;
}

/* About page - core strengths */
.about-stats-section {
    background: var(--white);
}

.about-core-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .about.section-full {
    padding-top: var(--section-between-sm);
}

.about-core-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.about-core-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.about-core-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.72);
}

.about-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-core-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 22px 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-core-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 10px 28px rgba(178, 0, 0, 0.08);
}

.about-core-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.about-core-icon svg {
    width: 22px;
    height: 22px;
}

.about-core-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.about-core-card p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

.about-core-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: calc(var(--section-between) * 0.8);
    padding-top: calc(var(--section-between) * 0.56);
    border-top: 1px solid var(--gray-200);
}

/* Team */
.team-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .team-section {
    padding-top: var(--section-between-sm);
}

.team-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.team-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.team-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.6);
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.65);
}

.team-highlight {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-highlight:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
}

.team-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.team-highlight-icon svg {
    width: 18px;
    height: 18px;
}

.team-highlight strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.team-highlight span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}

.team-card:hover {
    box-shadow: 0 14px 32px rgba(178, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
}

.team-card-image img {
    display: block;
    width: 100%;
    height: 297px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.35s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.03);
}

.team-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(178, 0, 0, 0.14);
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
}

.team-card .img-frame img {
    height: 280px;
}

.team-card .team-info {
    padding: 18px 16px 20px;
    text-align: center;
}

.team-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1.25;
}

.team-role {
    display: block;
    font-size: var(--fs-sm);
    color: var(--red);
    font-weight: 600;
    margin-bottom: 0;
}

.team-card span:not(.team-role):not(.team-card-tag) {
    font-size: var(--fs-sm);
    color: var(--red);
    font-weight: 600;
}

.team-bio {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0 0 14px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-skills span {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.1);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.2;
}

.team-panel-footer {
    margin-top: calc(var(--section-between) * 0.65);
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.team-panel-footer p {
    margin: 0;
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--black);
}

.team-panel-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Team page enhancements */
.team-stats-section.section-contained {
    padding-top: 0;
    margin-top: calc(var(--section-between-sm) * -0.35);
    position: relative;
    z-index: 2;
}

.team-stats-panel {
    padding: 28px 32px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.team-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 18px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #fefafa 100%);
    border: 1px solid var(--gray-200);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-stat-card:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(178, 0, 0, 0.06);
}

.team-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    margin-bottom: 4px;
}

.team-stat-icon svg {
    width: 20px;
    height: 20px;
}

.team-stat-card strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
}

.team-stat-card span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

.team-page-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.team-page-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.team-section-alt {
    background: var(--gray-50, #fafafa);
}

.team-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card-enhanced {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.team-card-enhanced::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.team-card-enhanced:hover::after {
    opacity: 1;
}

.team-card-enhanced .team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 16px 16px;
}

.team-card-enhanced .team-skills {
    margin-top: auto;
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
    opacity: 0.85;
}

.team-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.team-card-head h4 {
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.team-card-head .team-role {
    margin-bottom: 0;
    font-size: 0.78rem;
}

.team-card-social {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.team-card-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.team-card-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-1px);
}

.team-card-social svg {
    width: 14px;
    height: 14px;
}

.team-card-meta {
    list-style: none;
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.team-card-meta li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.3;
}

.team-card-meta li strong {
    color: var(--black);
    font-weight: 700;
}

.team-card-meta li svg {
    width: 12px;
    height: 12px;
    color: var(--red);
    flex-shrink: 0;
}

.team-card-enhanced .team-bio {
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card-enhanced .team-skills span {
    font-size: 0.66rem;
    padding: 3px 8px;
}

.team-card-exp {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.team-card-image--avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 297px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.team-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 32px rgba(178, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.team-culture-section.section-contained {
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between-sm);
}

.team-culture-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.team-culture-intro .section-header {
    text-align: left;
    margin-bottom: 20px;
}

.team-culture-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.team-culture-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-sm);
    color: var(--gray-700);
    line-height: 1.55;
}

.team-culture-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.team-culture-check svg {
    width: 14px;
    height: 14px;
}

.team-dept-grid {
    display: grid;
    gap: 18px;
}

.team-dept-card {
    padding: 24px 20px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-dept-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
}

.team-dept-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 11px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.team-dept-icon svg {
    width: 20px;
    height: 20px;
}

.team-dept-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.team-dept-card p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-4,
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-culture-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-grid-3,
    .team-dept-grid.team-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-dept-grid.team-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-stats-panel,
    .team-page-panel {
        padding: 28px 20px 24px;
    }

    .team-stats-grid,
    .team-grid-3,
    .team-grid-4,
    .team-grid,
    .team-dept-grid.team-grid-3,
    .team-dept-grid.team-grid-4 {
        grid-template-columns: 1fr;
    }

    .team-card-image img,
    .team-card-image--avatar {
        min-height: 297px;
        height: 297px;
    }
}

/* Shared inner-page content (no boxed panel) */
.page-section-footer,
.page-panel-footer,
.team-panel-footer,
.gallery-panel-footer {
    margin-top: calc(var(--section-between) * 0.65);
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.career-section > .container > .section-header,
.services-page-section > .container > .section-header,
.products-page-section > .container > .section-header,
.training-page-section > .container > .section-header,
.training-curriculum-section > .container > .section-header,
.training-benefits-section > .container > .section-header,
.training-faq-section > .container > .section-header,
.portfolio-page-section > .container > .section-header,
.blog-page-section > .container > .section-header,
.contact-page-section > .container > .section-header,
.faq-section > .container > .section-header,
.team-section > .container > .section-header,
.gallery-section > .container > .section-header,
.why-choose-section > .container > .section-header,
.process-section > .container > .section-header,
.mission-section > .container > .section-header,
.policy-section > .container > .section-header,
.about-core-section > .container > .section-header,
.about-stats-section > .container > .stats-header,
.why-choose-stats-section > .container > .stats-header,
.training-stats-section > .container > .stats-header {
    margin-bottom: calc(var(--section-between) * 0.6);
    max-width: 100%;
}

/* Legacy panel wrapper - disabled for inner pages */
.page-panel,
.faq-panel,
.team-panel,
.gallery-panel,
.mission-panel,
.process-panel,
.why-choose-panel,
.about-core-panel {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.page-panel::before,
.faq-panel::before,
.team-panel::before,
.gallery-panel::before,
.mission-panel::before,
.process-panel::before,
.why-choose-panel::before,
.about-core-panel::before {
    display: none;
}

.page-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.6);
    max-width: 100%;
}

/* Inner pages - full width sections */
.policy-section,
.career-section,
.services-page-section,
.products-page-section,
.training-page-section,
.training-curriculum-section,
.training-stats-section,
.training-intro-section,
.training-process-section,
.training-benefits-section,
.training-faq-section,
.training-enroll-section,
.portfolio-page-section,
.blog-page-section,
.contact-page-section,
.faq-section,
.team-section,
.clients-page-section,
.gallery-section,
.why-choose-section,
.why-choose-stats-section,
.process-section,
.mission-section,
.about-stats-section {
    width: 100%;
}

.policy-section > .container,
.career-section > .container,
.services-page-section > .container,
.products-page-section > .container,
.training-page-section > .container,
.training-curriculum-section > .container,
.training-stats-section > .container,
.training-intro-section > .container,
.training-process-section > .container,
.training-benefits-section > .container,
.training-faq-section > .container,
.training-enroll-section > .container,
.portfolio-page-section > .container,
.blog-page-section > .container,
.contact-page-section > .container,
.faq-section > .container,
.team-section > .container,
.clients-page-section > .container,
.gallery-section > .container,
.why-choose-section > .container,
.why-choose-stats-section > .container,
.process-section > .container,
.mission-section > .container,
.about-stats-section > .container,
.office-section > .container,
.about-core-section > .container,
.process-collab-section > .container,
.about--company > .container {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
}

.page-panel .section-header,
.faq-panel .section-header,
.team-panel .section-header,
.gallery-panel .section-header,
.mission-panel .section-header,
.process-panel .section-header,
.why-choose-panel .section-header,
.stats-panel .stats-header {
    max-width: 100%;
}

.page-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.page-highlight {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-highlight:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
}

.page-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.page-highlight-icon svg {
    width: 18px;
    height: 18px;
}

.page-highlight strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.page-highlight span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.page-panel-footer p {
    margin: 0;
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--black);
}

.page-section-btns,
.page-panel-btns,
.team-panel-btns,
.gallery-panel-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-panel-footer {
    margin-top: calc(var(--section-between) * 0.65);
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.page-panel-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.career-section,
.services-page-section,
.products-page-section,
.training-page-section,
.portfolio-page-section,
.blog-page-section,
.contact-page-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .career-section,
.page-banner + .services-page-section,
.page-banner + .products-page-section,
.page-banner + .training-page-section,
.page-banner + .training-intro-section,
.page-banner + .portfolio-page-section,
.page-banner + .blog-page-section,
.page-banner + .contact-page-section {
    padding-top: var(--section-between-sm);
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.career-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.career-stat {
    display: grid;
    gap: 4px;
    padding: 18px 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.career-stat:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 10px 24px rgba(178, 0, 0, 0.08);
    transform: translateY(-2px);
}

.career-stat strong {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.career-stat span {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.35;
}

.career-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 26px 24px 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    opacity: 0.85;
}

.career-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
}

.career-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.career-card-icon svg {
    width: 22px;
    height: 22px;
}

.career-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.career-card p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 14px;
}

.career-points {
    list-style: none;
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--gray-200);
    display: grid;
    gap: 8px;
}

.career-points li {
    position: relative;
    padding-left: 18px;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.45;
}

.career-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.16);
    border: 2px solid rgba(178, 0, 0, 0.55);
}

.career-process {
    margin-bottom: calc(var(--section-between) * 0.55);
}

.career-process-head,
.career-roles-head {
    margin-bottom: 18px;
}

.career-process-title,
.career-roles-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.15;
    margin: 0 0 8px;
}

.career-process-title em,
.career-roles-title em {
    font-style: normal;
    color: var(--red);
}

.career-roles-desc {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 640px;
}

.career-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.career-step {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 18px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.career-step:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
}

.career-step-num {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--red);
}

.career-step strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.career-step span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.career-roles {
    margin-bottom: calc(var(--section-between) * 0.55);
}

.career-roles h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
}

.career-role-list {
    display: grid;
    gap: 12px;
}

.career-role {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.career-role:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.career-role-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    flex-shrink: 0;
}

.career-role-icon svg {
    width: 22px;
    height: 22px;
}

.career-role-info strong {
    display: block;
    font-size: var(--fs-base);
    color: var(--black);
    margin-bottom: 4px;
}

.career-role-info > span {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    margin-bottom: 8px;
}

.career-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.career-role-tags span {
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-700);
}

.career-role-side {
    display: grid;
    gap: 10px;
    justify-items: end;
    text-align: right;
}

.career-role-type {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    white-space: nowrap;
}

.career-role-apply {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s ease;
}

.career-role-apply:hover {
    color: var(--red-dark);
}

.career-apply-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1515 55%, #1a1a1a 100%);
    border: 1px solid rgba(178, 0, 0, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.career-apply-band .section-label {
    color: rgba(255, 255, 255, 0.72);
}

.career-apply-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 700;
    color: var(--white);
    margin: 6px 0 10px;
    line-height: 1.2;
}

.career-apply-content h3 em {
    font-style: normal;
    color: var(--red-light);
}

.career-apply-content p {
    margin: 0;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 520px;
}

.career-apply-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Career page - intro */
.career-intro-wrap {
    margin-top: calc(var(--section-between) * 0.45);
}

.career-intro-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
}

.career-intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 2;
}

.career-intro-image {
    padding: 28px 28px 26px;
    border-right: 1px solid rgba(178, 0, 0, 0.1);
    background: linear-gradient(180deg, rgba(178, 0, 0, 0.02) 0%, transparent 100%);
}

.career-intro-image .about-image-main {
    min-height: 320px;
}

.career-intro-image .about-image-main img {
    min-height: 320px;
    object-fit: cover;
}

.career-intro-caption {
    display: grid;
    gap: 4px;
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.career-intro-caption strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.career-intro-caption span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.career-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 32px 30px;
}

.career-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin: 8px 0 12px;
}

.career-intro-title em {
    font-style: normal;
    color: var(--red);
}

.career-intro-lead {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 16px;
}

.career-intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.career-intro-tags span {
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
}

.career-intro-checks {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.career-intro-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: start;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.career-intro-check:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
}

.career-intro-check-icon {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.career-intro-check-icon svg {
    width: 18px;
    height: 18px;
}

.career-intro-check strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.career-intro-check span:last-child {
    grid-column: 2;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.career-intro-note {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-left: 3px solid var(--red);
    background: rgba(178, 0, 0, 0.04);
    border-radius: 0 10px 10px 0;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.5;
}

.career-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

.career-stats-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.career-benefits-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.career-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.career-perk {
    display: grid;
    gap: 6px;
    padding: 18px 16px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 100%);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.career-perk:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 10px 24px rgba(178, 0, 0, 0.07);
    transform: translateY(-2px);
}

.career-perk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    margin-bottom: 4px;
}

.career-perk-icon svg {
    width: 20px;
    height: 20px;
}

.career-perk strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.career-perk span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.career-process-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.career-roles-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.career-filters {
    margin-bottom: 22px;
}

.career-openings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.career-opening {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 20px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.career-opening::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    opacity: 0.85;
}

.career-opening:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
    transform: translateY(-3px);
}

.career-opening.is-hidden {
    display: none;
}

.career-opening-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.career-opening-icon svg {
    width: 22px;
    height: 22px;
}

.career-opening-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.career-opening-top strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.career-opening > p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.55;
    flex: 1;
}

.career-opening-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
    width: 100%;
}

.career-opening-actions .btn {
    justify-content: center;
    width: 100%;
}

.career-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    margin-bottom: 4px;
}

.career-step-icon svg {
    width: 20px;
    height: 20px;
}

.career-faq-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.career-faq-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.career-faq-highlight {
    display: grid;
    gap: 4px;
    padding: 16px 14px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.career-faq-highlight:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.career-faq-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.career-faq-highlight-icon svg {
    width: 20px;
    height: 20px;
}

.career-faq-highlight strong {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.career-faq-highlight span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

.career-faq-filters {
    margin-bottom: 22px;
}

.career-faq-layout {
    margin-top: 0;
}

.career-faq-list {
    max-width: none;
    margin: 0;
}

.career-faq-list .faq-item.is-hidden {
    display: none;
}

.career-faq-help {
    border-color: rgba(178, 0, 0, 0.12);
    background: linear-gradient(180deg, var(--white) 0%, #fefafa 100%);
}

.career-faq-help .faq-help-btns .btn {
    flex: 1;
    justify-content: center;
}

.faq-answer p a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer p a:hover {
    text-decoration: underline;
}

/* Job detail pages */
.job-detail-hero {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: calc(var(--section-between) * 0.65);
    border-bottom: 1px solid var(--gray-200);
}

.job-hero-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-areas:
        "main visual"
        "highlights highlights";
    gap: 32px 40px;
    align-items: center;
}

.job-hero-main {
    grid-area: main;
}

.job-hero-visual {
    grid-area: visual;
    position: relative;
    justify-self: end;
    width: min(100%, 420px);
}

.job-hero-visual::before {
    content: '';
    position: absolute;
    inset: 12% 8% -8% -8%;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 30%, rgba(178, 0, 0, 0.14), rgba(178, 0, 0, 0.03) 70%);
    z-index: 0;
}

.job-hero-highlights {
    grid-area: highlights;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-200);
}

.job-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.job-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.job-hero-title em {
    font-style: normal;
    color: var(--red);
}

.job-hero-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 560px;
}

.job-hero-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.job-hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.job-hero-location svg {
    width: 15px;
    height: 15px;
    color: var(--red);
    flex-shrink: 0;
}

.job-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-hero-image {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #fafafa 0%, #f3f3f3 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.job-hero-image img {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.job-hero-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px 18px;
    background: var(--gray-100);
    border-radius: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.job-hero-highlight:hover {
    background: rgba(178, 0, 0, 0.05);
    transform: translateY(-2px);
}

.job-hero-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.1);
    color: var(--red);
    flex-shrink: 0;
}

.job-hero-highlight-icon svg {
    width: 16px;
    height: 16px;
}

.job-hero-highlight-text {
    display: grid;
    gap: 3px;
}

.job-hero-highlight-text strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.job-hero-highlight-text span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.job-detail-overview {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.job-overview-panel {
    padding: 26px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.job-overview-lead {
    font-size: var(--fs-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0 0 22px;
}

.job-overview-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.job-overview-fact {
    padding: 14px 12px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #fefafa 100%);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 12px;
}

.job-overview-fact strong {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 4px;
}

.job-overview-fact span {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--black);
}

.job-detail-responsibilities {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.job-responsibilities-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: start;
}

.job-responsibilities-aside-card {
    position: sticky;
    top: 96px;
    padding: 26px 24px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.job-responsibilities-aside-title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 8px 0 12px;
}

.job-responsibilities-aside-title em {
    font-style: normal;
    color: var(--red);
}

.job-responsibilities-aside-card > p {
    margin: 0 0 20px;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
}

.job-responsibilities-meta {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--gray-200);
    padding-top: 18px;
}

.job-responsibilities-meta li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.job-responsibilities-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
    flex-shrink: 0;
}

.job-responsibilities-meta-icon svg {
    width: 16px;
    height: 16px;
}

.job-responsibilities-meta li > span:last-child {
    display: grid;
    gap: 2px;
}

.job-responsibilities-meta li strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.job-responsibilities-meta li > span:last-child > span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.job-responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.job-responsibility-card {
    position: relative;
    padding: 18px 18px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.job-responsibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--red), var(--red-light));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.job-responsibility-card:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
    transform: translateY(-2px);
}

.job-responsibility-card:hover::before {
    opacity: 1;
}

.job-responsibility-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.job-responsibility-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.04em;
}

.job-responsibility-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: background 0.25s ease, color 0.25s ease;
}

.job-responsibility-icon svg {
    width: 17px;
    height: 17px;
}

.job-responsibility-card:hover .job-responsibility-icon {
    background: rgba(178, 0, 0, 0.1);
    color: var(--red);
}

.job-responsibility-text {
    margin: 0;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.6;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.job-detail-card {
    position: relative;
    padding: 18px 16px 16px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.job-detail-card:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 10px 24px rgba(178, 0, 0, 0.07);
    transform: translateY(-2px);
}

.job-detail-card-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

.job-detail-card p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-700);
    line-height: 1.55;
}

.job-detail-requirements {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.job-requirements-layout {
    display: grid;
    gap: 18px;
}

.job-skills-panel {
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
}

.job-skills-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.job-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-skill-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
}

.job-requirements-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.job-requirements-card {
    padding: 22px 22px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
}

.job-requirements-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.job-detail-benefits {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.job-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.job-benefit-card {
    display: grid;
    gap: 6px;
    padding: 18px 16px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 100%);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.job-benefit-card:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
}

.job-benefit-card strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
}

.job-benefit-card span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.job-detail-process {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.job-detail-related {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.job-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.job-related-card {
    display: grid;
    gap: 6px;
    padding: 18px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.job-related-card:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.job-related-card strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
}

.job-related-card > span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

.job-detail-apply-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between-sm);
}

.job-apply-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
}

.job-apply-panel-main {
    padding: 34px 36px 32px;
    border-right: 1px solid rgba(178, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 60%, #fff8f8 100%);
}

.job-apply-panel-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    color: var(--black);
    margin: 8px 0 12px;
    line-height: 1.15;
}

.job-apply-panel-title em {
    font-style: normal;
    color: var(--red);
}

.job-apply-panel-desc {
    margin: 0 0 22px;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 520px;
}

.job-apply-checklist {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-apply-checklist li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.job-apply-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
    flex-shrink: 0;
}

.job-apply-check-icon svg {
    width: 17px;
    height: 17px;
}

.job-apply-checklist li > span:last-child {
    display: grid;
    gap: 2px;
}

.job-apply-checklist li strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.job-apply-checklist li > span:last-child > span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.job-apply-panel-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 30px 32px;
    background: linear-gradient(160deg, rgba(178, 0, 0, 0.04) 0%, rgba(178, 0, 0, 0.09) 100%);
}

.job-apply-card-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 5px 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.1);
    color: var(--red);
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.job-apply-panel-card > strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.2;
}

.job-apply-panel-card > p {
    margin: 0 0 20px;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

.job-apply-card-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.job-apply-card-actions .btn {
    width: 100%;
    justify-content: center;
}

.job-apply-card-contact {
    display: grid;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(178, 0, 0, 0.12);
}

.job-apply-card-contact a {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.job-apply-card-contact a:hover {
    color: var(--red);
}

.career-opening-top strong a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.career-opening-top strong a:hover {
    color: var(--red);
}

.career-training-band {
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.04) 0%, rgba(178, 0, 0, 0.09) 100%);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
    border-top: 1px solid rgba(178, 0, 0, 0.1);
}

.career-training-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 26px 28px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(178, 0, 0, 0.06);
}

.career-training-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--black);
    margin: 6px 0 8px;
    line-height: 1.2;
}

.career-training-text h3 em {
    font-style: normal;
    color: var(--red);
}

.career-training-text p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 560px;
}

.career-training-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rts-modal-panel[data-career-panel="success"] {
    text-align: center;
    padding-top: 8px;
}

.rts-modal-panel[data-career-panel="success"] .btn {
    min-width: 140px;
}

#careerApplyRole {
    font-style: normal;
    color: var(--red);
}

.training-stats-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.training-stats-panel {
    margin-top: 0;
}

.training-intro-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: calc(var(--section-between) * 0.65);
}

.training-intro-panel {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.training-intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 2;
}

.training-intro-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-areas:
        "main visual"
        "highlights highlights";
    gap: 0;
    align-items: stretch;
}

.training-intro-main {
    grid-area: main;
    padding: 34px 34px 32px;
    border-right: 1px solid rgba(178, 0, 0, 0.1);
}

.training-intro-visual {
    grid-area: visual;
    display: flex;
    align-items: stretch;
    padding: 28px 28px 28px 20px;
    background: linear-gradient(160deg, rgba(178, 0, 0, 0.02) 0%, rgba(178, 0, 0, 0.07) 100%);
}

.training-intro-highlights {
    grid-area: highlights;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(178, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.6);
}

.training-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.12;
    margin: 8px 0 14px;
    letter-spacing: -0.02em;
}

.training-intro-title em {
    font-style: normal;
    color: var(--red);
}

.training-intro-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 560px;
}

.training-intro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.training-intro-trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-intro-points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.training-intro-point {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.1);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-intro-point:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-1px);
}

.training-intro-point-num {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.5px;
    padding-top: 4px;
    opacity: 0.75;
}

.training-intro-point-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.training-intro-point-icon svg {
    width: 20px;
    height: 20px;
}

.training-intro-point-text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.training-intro-point-text strong {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.training-intro-point-text span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.5;
}

.training-intro-actions {
    display: grid;
    gap: 10px;
}

.training-intro-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.training-intro-call svg {
    width: 16px;
    height: 16px;
}

.training-intro-note {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.training-intro-visual-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(178, 0, 0, 0.12);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.training-intro-visual-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(178, 0, 0, 0.25);
}

.training-intro-visual-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 12px;
    background: linear-gradient(180deg, #fefafa 0%, var(--white) 100%);
}

.training-intro-visual-media img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    object-fit: contain;
}

.training-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.training-intro-stat {
    display: grid;
    gap: 2px;
    padding: 10px 12px;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #fefafa 0%, var(--white) 100%);
    border: 1px solid rgba(178, 0, 0, 0.1);
}

.training-intro-stat strong {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.training-intro-stat span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-600);
    line-height: 1.35;
}

.training-intro-stat-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: left;
}

.training-intro-stat-wide svg {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
}

.training-intro-stat-wide span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-700);
}

.training-intro-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-right: 1px solid rgba(178, 0, 0, 0.08);
    transition: background 0.25s ease;
}

.training-intro-highlight:last-child {
    border-right: none;
}

.training-intro-highlight:hover {
    background: rgba(178, 0, 0, 0.03);
}

.training-intro-highlight-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.training-intro-highlight-icon svg {
    width: 22px;
    height: 22px;
}

.training-intro-highlight-text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.training-intro-highlight-text strong {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.training-intro-highlight-text span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

.training-programs-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.training-program-card--page {
    padding: 0;
    text-decoration: none;
}

.training-program-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.training-program-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.training-program-card--page:hover .training-program-media img {
    transform: scale(1.04);
}

.training-program-card--page .training-program-popular {
    top: 12px;
    left: 12px;
}

.training-program-card--page .training-program-num {
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    font-style: normal;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.training-program-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    width: 100%;
    padding: 20px 18px 20px;
}

.training-program-body .training-program-link {
    margin-top: auto;
}

.training-process-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.training-curriculum-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.training-curriculum-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(var(--section-between) * 0.55);
    max-width: 720px;
}

.training-curriculum-panel {
    position: relative;
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.training-curriculum-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
}

.training-curriculum-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-200);
}

.training-curriculum-feature {
    display: grid;
    gap: 6px;
    padding: 16px 14px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #fefafa 100%);
    border: 1px solid rgba(178, 0, 0, 0.08);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-curriculum-feature:hover {
    border-color: rgba(178, 0, 0, 0.18);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.training-curriculum-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.training-curriculum-feature-icon svg {
    width: 18px;
    height: 18px;
}

.training-curriculum-feature strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.training-curriculum-feature > span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

.training-curriculum-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.training-module-card {
    display: grid;
    grid-template-columns: 148px 1fr;
    min-height: 196px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-module-card:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 14px 32px rgba(178, 0, 0, 0.08);
    transform: translateY(-3px);
}

.training-module-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    background: linear-gradient(160deg, rgba(178, 0, 0, 0.05) 0%, rgba(178, 0, 0, 0.12) 100%);
    border-right: 1px solid var(--gray-200);
}

.training-module-visual img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.training-module-card:hover .training-module-visual img {
    transform: scale(1.06);
}

.training-module-num {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.training-module-content {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px;
    min-width: 0;
}

.training-module-tag {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.08);
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
}

.training-module-content h4 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.training-module-content p {
    margin: 0 0 14px;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.6;
    flex: 1;
}

.training-module-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.training-module-topics span {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.3;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.training-module-card:hover .training-module-topics span {
    background: rgba(178, 0, 0, 0.06);
    border-color: rgba(178, 0, 0, 0.12);
}

.training-benefits-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.training-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.training-benefit-card {
    display: grid;
    gap: 8px;
    padding: 20px 18px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 100%);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-benefit-card:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 10px 24px rgba(178, 0, 0, 0.08);
    transform: translateY(-2px);
}

.training-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.training-benefit-icon svg {
    width: 18px;
    height: 18px;
}

.training-benefit-card strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.training-benefit-card > span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.training-faq-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.training-faq-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.training-faq-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.training-faq-highlight {
    display: grid;
    gap: 4px;
    padding: 16px 14px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-faq-highlight:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.training-faq-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.training-faq-highlight-icon svg {
    width: 20px;
    height: 20px;
}

.training-faq-highlight strong {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.training-faq-highlight > span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

.training-faq-filters {
    margin-bottom: 22px;
}

.training-faq-layout {
    margin-top: 0;
}

.training-faq-list {
    max-width: none;
    margin: 0;
}

.training-faq-list .faq-item.is-hidden {
    display: none;
}

.training-faq-help .faq-help-icon {
    margin-top: -4px;
}

.training-faq-help-visual {
    margin: -8px -8px 14px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.04) 0%, rgba(178, 0, 0, 0.1) 100%);
    border: 1px solid rgba(178, 0, 0, 0.08);
}

.training-faq-help-visual img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    display: block;
    padding: 12px;
}

.training-enroll-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
    position: relative;
    overflow: hidden;
}

.training-enroll-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.training-enroll-wrap {
    position: relative;
    z-index: 1;
}

.training-enroll-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.training-enroll-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 2;
}

.training-enroll-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: 34px 34px 32px;
    border-right: 1px solid rgba(178, 0, 0, 0.1);
}

.training-enroll-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.12;
    margin: 8px 0 14px;
    letter-spacing: -0.02em;
}

.training-enroll-title em {
    font-style: normal;
    color: var(--red);
}

.training-enroll-desc {
    margin: 0 0 22px;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 540px;
}

.training-enroll-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.training-enroll-stat {
    display: grid;
    gap: 3px;
    padding: 14px 10px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-enroll-stat:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 18px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.training-enroll-stat strong {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.training-enroll-stat span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-600);
    line-height: 1.35;
}

.training-enroll-perk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.training-enroll-perk-card {
    display: grid;
    gap: 6px;
    padding: 14px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.training-enroll-perk-card:hover {
    border-color: rgba(178, 0, 0, 0.18);
    box-shadow: 0 8px 18px rgba(178, 0, 0, 0.05);
}

.training-enroll-perk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.training-enroll-perk-icon svg {
    width: 17px;
    height: 17px;
}

.training-enroll-perk-card strong {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.training-enroll-perk-card > span:last-child {
    font-size: 0.68rem;
    color: var(--gray-500);
    line-height: 1.45;
}

.training-enroll-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.training-enroll-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.training-enroll-tags span:hover {
    background: rgba(178, 0, 0, 0.06);
    border-color: rgba(178, 0, 0, 0.15);
    color: var(--red);
}

.training-enroll-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    background: var(--white);
}

.training-enroll-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    padding: 34px 28px 28px;
}

.training-enroll-card-label {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.08);
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
}

.training-enroll-card-body > strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.25;
}

.training-enroll-card-body > p {
    margin: 0 0 16px;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.6;
}

.training-enroll-steps {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0 0 16px;
    list-style: none;
    border-bottom: 1px solid var(--gray-200);
}

.training-enroll-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
}

.training-enroll-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(178, 0, 0, 0.08);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
}

.training-enroll-panel .training-enroll-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.training-enroll-panel .training-enroll-actions .btn {
    width: 100%;
    justify-content: center;
}

.training-enroll-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.training-enroll-call svg {
    width: 16px;
    height: 16px;
}

.training-enroll-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.training-enroll-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-600);
}

.training-enroll-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--red);
    flex-shrink: 0;
}

.training-enroll-contact {
    display: grid;
    gap: 6px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}

.training-enroll-contact a {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.training-enroll-contact a:hover {
    color: var(--red);
}

.training-enroll-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    margin-top: 18px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.training-enroll-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
}

.training-enroll-trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--red);
    flex-shrink: 0;
}

.training-page-section .training-programs-grid {
    grid-template-columns: repeat(2, 1fr);
}

.blog-page-section .blog-card {
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-page-section .blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 14px 32px rgba(178, 0, 0, 0.08);
}

.blog-page-section .blog-card.is-hidden,
.blog-featured.is-hidden,
.blog-featured-wrap.is-hidden {
    display: none;
}

.blog-featured-wrap {
    margin-bottom: 28px;
}

.blog-featured-head {
    margin-bottom: 18px;
}

.blog-featured-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.15;
    margin: 0;
}

.blog-featured-heading em {
    font-style: normal;
    color: var(--red);
}

.blog-featured {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
    z-index: 2;
}

.blog-featured:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 16px 44px rgba(178, 0, 0, 0.1);
    transform: translateY(-2px);
}

.blog-featured-image {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 340px;
    background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.04);
}

.blog-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(178, 0, 0, 0.35);
}

.blog-featured-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-featured-chip {
    display: grid;
    gap: 2px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.blog-featured-chip strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.blog-featured-chip span:last-child {
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.3;
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 30px 28px;
    border-left: 1px solid rgba(178, 0, 0, 0.1);
}

.blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.blog-featured-meta .blog-category {
    margin-bottom: 0;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
}

.blog-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--red);
    flex-shrink: 0;
}

.blog-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
}

.blog-featured-lead {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 18px;
}

.blog-featured-checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-featured-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: start;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured-check:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
}

.blog-featured-check-icon {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.blog-featured-check-icon svg {
    width: 18px;
    height: 18px;
}

.blog-featured-check strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.blog-featured-check span:last-child {
    grid-column: 2;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.blog-featured-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

.blog-featured-author {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-500);
}

.blog-featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-featured-body h3.blog-featured-title {
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.blog-featured-body > p.blog-featured-lead {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 18px;
}

.blog-featured-points {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.blog-featured-points li {
    position: relative;
    padding-left: 18px;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.45;
}

.blog-featured-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.16);
    border: 2px solid rgba(178, 0, 0, 0.55);
}

.blog-filters {
    margin-bottom: 22px;
}

.blog-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(178, 0, 0, 0.14);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-meta .blog-category {
    margin-bottom: 0;
}

.blog-read-time {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    font-weight: 500;
}

.blog-read-time::before {
    content: '·';
    margin-right: 10px;
    color: var(--gray-500);
    opacity: 0.45;
}

.blog-page-section .blog-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 20px 20px;
}

.blog-page-section .blog-body h3 {
    font-size: var(--fs-base);
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-page-section .blog-body p {
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-link span {
    transition: transform 0.2s ease;
}

.blog-link:hover {
    color: var(--red-dark);
    gap: 10px;
}

.blog-link:hover span {
    transform: translateX(3px);
}

.blog-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: calc(var(--section-between) * 0.65);
    padding: 24px 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.04) 0%, rgba(178, 0, 0, 0.08) 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
}

.blog-newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--black);
    margin: 6px 0 8px;
    line-height: 1.25;
}

.blog-newsletter-text h3 em {
    font-style: normal;
    color: var(--red);
}

.blog-newsletter-text p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 520px;
}

.blog-newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Topic Suggestion Modal */
.rts-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rts-modal.is-open {
    display: flex;
}

.rts-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rts-modal.is-visible .rts-modal-backdrop {
    opacity: 1;
}

.rts-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.rts-modal.is-visible .rts-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.rts-modal-accent {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 2;
}

.rts-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rts-modal-close:hover {
    color: var(--red);
    border-color: rgba(178, 0, 0, 0.25);
}

.rts-modal-close svg {
    width: 18px;
    height: 18px;
}

.rts-modal-body {
    padding: 28px 28px 26px;
}

.rts-modal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--black);
    margin: 8px 0 10px;
    line-height: 1.2;
}

.rts-modal-title em {
    font-style: normal;
    color: var(--red);
}

.rts-modal-desc {
    margin: 0 0 20px;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

.topic-suggest-form .form-row,
.rts-modal-form .form-row {
    margin-bottom: 0;
}

.topic-suggest-form .form-group,
.rts-modal-form .form-group {
    margin-bottom: 16px;
}

.topic-suggest-form .form-group label span[aria-hidden="true"],
.rts-modal-form .form-group label span[aria-hidden="true"] {
    color: var(--red);
}

.form-optional {
    font-weight: 500;
    color: var(--gray-500);
}

.topic-suggest-form .form-group input.is-invalid,
.topic-suggest-form .form-group select.is-invalid,
.topic-suggest-form .form-group textarea.is-invalid,
.rts-modal-form .form-group input.is-invalid,
.rts-modal-form .form-group select.is-invalid,
.rts-modal-form .form-group textarea.is-invalid {
    border-color: var(--red);
    background: #fff8f8;
}

.rts-modal-submit {
    width: 100%;
    margin-top: 4px;
}

.rts-modal-trust {
    margin: 12px 0 0;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    text-align: center;
    line-height: 1.45;
}

.rts-modal-panel[data-topic-panel="success"],
.rts-modal-panel[data-consult-panel="success"],
.rts-modal-panel[data-training-panel="success"],
.rts-modal-panel[data-client-panel="success"],
.rts-modal-panel[data-project-panel="success"],
.rts-modal-panel[data-demo-panel="success"] {
    text-align: center;
    padding-top: 8px;
}

.rts-modal-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.15);
    color: var(--red);
}

.rts-modal-success-icon svg {
    width: 28px;
    height: 28px;
}

.rts-modal-panel[data-topic-panel="success"] .btn,
.rts-modal-panel[data-consult-panel="success"] .btn,
.rts-modal-panel[data-training-panel="success"] .btn,
.rts-modal-panel[data-client-panel="success"] .btn,
.rts-modal-panel[data-project-panel="success"] .btn,
.rts-modal-panel[data-demo-panel="success"] .btn {
    min-width: 140px;
}

body.rts-modal-open {
    overflow: hidden;
}

.blog-category {
    display: inline-block;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 8px;
}

.contact-page-section {
    background: var(--gray-100);
}

.contact-page-section .contact-grid {
    gap: 32px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
}

.contact-page-section .contact-form {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-quick-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.contact-quick-card {
    padding: 14px 16px;
    background: rgba(178, 0, 0, 0.04);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 12px;
}

.contact-quick-card strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--black);
    margin-bottom: 4px;
}

.contact-quick-card span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.portfolio-page-section .portfolio-section {
    padding: 0;
    background: transparent;
}

.portfolio-page-section .portfolio-grid {
    margin-bottom: 0;
}

/* Policy pages */
.policy-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .policy-section {
    padding-top: var(--section-between-sm);
}

.policy-meta {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: -8px 0 calc(var(--section-between) * 0.5);
}

.policy-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.policy-sidebar {
    position: sticky;
    top: calc(var(--site-header-offset) + 20px);
}

.policy-toc {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 18px 16px;
    margin-bottom: 16px;
}

.policy-toc h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.policy-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.policy-toc a {
    display: block;
    font-size: var(--fs-sm);
    color: var(--gray-700);
    text-decoration: none;
    line-height: 1.45;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.policy-toc a:hover {
    color: var(--red);
}

.policy-related {
    background: rgba(178, 0, 0, 0.04);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 14px;
    padding: 18px 16px;
}

.policy-related h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.policy-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.policy-related a {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
}

.policy-related a:hover {
    color: var(--red-dark);
}

.policy-content {
    display: grid;
    gap: 22px;
}

.policy-block {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 22px 22px 20px;
}

.policy-block h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
}

.policy-block p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0 0 12px;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-block ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.policy-block li {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

.policy-block a {
    color: var(--red);
    font-weight: 600;
}

.policy-contact-box {
    margin-top: 8px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.04);
    border: 1px solid rgba(178, 0, 0, 0.1);
}

.policy-contact-box strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--black);
    margin-bottom: 6px;
}

.policy-contact-box span,
.policy-contact-box a {
    font-size: var(--fs-sm);
    color: var(--gray-700);
}

/* Services */
.services-home {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    position: relative;
}

.services-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-home-cta {
    margin-top: 32px;
}

.services-home-cta-inner {
    position: relative;
    padding: 44px 48px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, var(--white) 0%, #fef8f8 55%, #fff5f5 100%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b20000' fill-opacity='0.03'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/svg%3E");
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-left: 4px solid var(--red);
    overflow: visible;
    box-shadow: 0 10px 40px rgba(178, 0, 0, 0.08);
}

.services-home-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.services-home-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-home-cta-content {
    padding-right: 320px;
    text-align: left;
}

.services-home-cta-head {
    margin-bottom: 4px;
}

.services-home-cta-subtitle {
    font-size: var(--fs-base);
    color: var(--gray-500);
    line-height: 1.55;
    max-width: 580px;
    margin: 0 0 18px;
}

.services-home-cta-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 20px;
}

.services-home-cta-intro .services-home-cta-desc {
    margin-bottom: 0;
}

.services-home-cta-intro .services-home-cta-desc:last-of-type {
    margin-bottom: 0;
}

.services-home-cta-process {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.services-home-cta-process-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-right: 12px;
}

.services-home-cta-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: var(--gray-200);
}

.services-home-cta-process-step .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
}

.services-home-cta-process-step .step-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.25;
}

.services-home-cta-tech {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: rgba(178, 0, 0, 0.04);
    border-radius: 10px;
    border: 1px dashed rgba(178, 0, 0, 0.15);
}

.services-home-cta-tech-label {
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-700);
}

.services-home-cta-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services-home-cta-tech-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red);
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.15);
    padding: 4px 12px;
    border-radius: 999px;
}

.services-home-cta-sidebar {
    position: absolute;
    top: 44px;
    right: 48px;
    width: 280px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-sizing: border-box;
    height: auto;
    max-height: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.services-home-cta-sidebar-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 4px 0 0;
    line-height: 1.4;
}

.services-home-cta-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px 10px;
    background: linear-gradient(135deg, #fff8f8 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.services-home-cta-sidebar-tag {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}

.services-home-cta-sidebar .services-home-cta-link {
    margin-left: 14px;
    margin-right: 14px;
}

.services-home-cta-sidebar .services-home-cta-link:first-of-type {
    margin-top: 12px;
}

.services-home-cta-sidebar .services-home-cta-link:last-of-type {
    margin-bottom: 12px;
}

.services-home-cta-sidebar-cta {
    padding: 16px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    text-align: center;
}

.services-home-cta-sidebar-cta p {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 12px;
}

.services-home-cta-sidebar-cta .btn {
    width: 100%;
}

.services-home-cta-sidebar-email {
    display: inline-block;
    margin-top: 10px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--red-light);
    transition: color var(--transition);
}

.services-home-cta-sidebar-email:hover {
    color: var(--white);
}

.services-home-cta-sidebar-visual {
    position: relative;
    border-top: 1px solid var(--gray-200);
    overflow: hidden;
}

.services-home-cta-sidebar-visual img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center top;
}

.services-home-cta-sidebar-visual-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 14px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
    color: var(--white);
    text-align: left;
}

.services-home-cta-sidebar-visual-caption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.services-home-cta-sidebar-visual-caption span {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    opacity: 0.9;
}

.services-home-cta-sidebar-highlights {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-home-cta-sidebar-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sidebar-highlight-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.sidebar-highlight-icon svg {
    width: 16px;
    height: 16px;
}

.sidebar-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.sidebar-highlight-text strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
}

.sidebar-highlight-text em {
    font-style: normal;
    font-size: 0.7rem;
    color: var(--gray-500);
    line-height: 1.35;
}

.services-home-cta-sidebar-footer {
    padding: 12px 14px 14px;
    border-top: 1px solid var(--gray-200);
    background: linear-gradient(135deg, #fff8f8 0%, var(--white) 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-home-cta-sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.3;
    word-break: break-all;
    transition: color 0.2s ease;
}

.services-home-cta-sidebar-footer-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--red);
}

.services-home-cta-sidebar-footer-link:hover {
    color: var(--red);
}

.services-home-cta-sidebar-footer-wa img {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.services-home-cta-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.services-home-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 18px;
    max-width: 640px;
}

.services-home-cta-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.services-home-cta-stat {
    flex: 1 1 calc(25% - 10px);
    min-width: 120px;
    padding: 14px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.services-home-cta-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    border-radius: 8px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.services-home-cta-stat-icon svg {
    width: 18px;
    height: 18px;
}

.services-home-cta-stat:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 4px 14px rgba(178, 0, 0, 0.06);
}

.services-home-cta-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
    margin-bottom: 4px;
}

.services-home-cta-stat span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.3;
}

.services-home-cta-title em {
    font-style: normal;
    color: var(--red);
}

.services-home-cta-desc {
    font-size: var(--fs-base);
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 12px;
}

.services-home-cta-desc:last-of-type {
    margin-bottom: 20px;
}

.services-home-cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    margin-bottom: 20px;
}

.services-home-cta-feature {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 18px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    border-top: 3px solid var(--red);
    transition: var(--transition);
    overflow: hidden;
    min-height: 100%;
}

.services-home-cta-feature .services-home-cta-icon-box {
    width: 44px;
    height: 44px;
}

.services-home-cta-feature-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}

.services-home-cta-feature-body {
    flex: 1;
    min-width: 0;
    padding-right: 28px;
}

.services-home-cta-feature h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    text-transform: uppercase;
    line-height: 1.2;
}

.services-home-cta-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(178, 0, 0, 0.04) 0%, transparent 45%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.services-home-cta-feature:hover {
    border-color: rgba(178, 0, 0, 0.25);
    box-shadow: 0 8px 24px rgba(178, 0, 0, 0.1);
    transform: translateY(-3px);
}

.services-home-cta-feature:hover::before {
    opacity: 1;
}

.services-home-cta-feature-num {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    color: rgba(178, 0, 0, 0.1);
    line-height: 1;
    pointer-events: none;
}

.services-home-cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
}

.services-home-cta-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 7px 14px;
    border-radius: 999px;
    transition: var(--transition);
}

.services-home-cta-trust-pill::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
}

.services-home-cta-trust-pill:hover {
    border-color: rgba(178, 0, 0, 0.25);
    color: var(--black);
}

.services-home-cta-feature p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.45;
    margin: 0 0 8px;
}

.services-home-cta-feature-link {
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--red);
    transition: color var(--transition);
}

.services-home-cta-feature:hover .services-home-cta-feature-link {
    color: var(--red-dark);
}

.services-home-cta-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
    transition: var(--transition);
}

.services-home-cta-icon-box svg {
    width: 20px;
    height: 20px;
}

.services-home-cta-feature:hover .services-home-cta-icon-box,
.services-home-cta-link:hover .services-home-cta-icon-box {
    background: var(--red);
    color: var(--white);
}

.services-home-cta-cards-label {
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-700);
    margin: 0;
}

.services-home-cta-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: var(--gray-100);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: var(--transition);
}

.services-home-cta-link:last-child {
    margin-bottom: 0;
}

.services-home-cta-link:hover {
    background: var(--white);
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(178, 0, 0, 0.06);
}

.services-home-cta-link .services-home-cta-icon-box {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
}

.services-home-cta-link .services-home-cta-icon-box svg {
    width: 18px;
    height: 18px;
}

.services-home-cta-link .services-home-cta-card-title {
    flex: 1;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1.2;
}

.services-home-cta-link .services-home-cta-card-arrow {
    font-size: 1.1rem;
    color: var(--red);
    transition: transform var(--transition);
}

.services-home-cta-link:hover .services-home-cta-card-arrow {
    transform: translateX(3px);
}

.services-home-cta-content .services-home-btns {
    justify-content: flex-start;
}

.services-home-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.service-card-featured {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card-featured .service-card-num {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    color: rgba(178, 0, 0, 0.12);
    line-height: 1;
    pointer-events: none;
}

.service-card-featured .service-img {
    position: relative;
    overflow: hidden;
}

.service-card-featured .service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.35) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card-featured:hover .service-img::after {
    opacity: 1;
}

.service-card-featured .service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.service-card-featured:hover .service-img img {
    transform: scale(1.05);
}

.service-card-featured .service-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 24px;
}

.service-card-featured .service-body h3 {
    margin-bottom: 8px;
}

.service-card-featured .service-body p {
    margin-bottom: 10px;
}

.service-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    width: fit-content;
}

.service-features {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.service-features li {
    position: relative;
    padding: 2px 0 2px 18px;
    font-size: var(--fs-sm);
    color: var(--gray-700);
    line-height: 1.35;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.7;
}

.service-link {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition), color var(--transition);
}

.service-link span {
    transition: transform var(--transition);
}

.service-link:hover {
    color: var(--red-dark);
    gap: 12px;
}

.service-link:hover span {
    transform: translateX(3px);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
    z-index: 1;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .service-body {
    padding: 28px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.service-card p {
    font-size: var(--fs-base);
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-card a {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card a:hover {
    gap: 10px;
}

/* Home products section */
.products-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    background: var(--white);
}

.products-section .section-header {
    margin-bottom: calc(var(--section-between) * 0.56);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 16px 40px rgba(178, 0, 0, 0.1);
}

.product-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.product-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--white);
    background: var(--red);
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(178, 0, 0, 0.35);
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 22px 22px;
    border-top: 3px solid rgba(178, 0, 0, 0.12);
}

.product-card-body h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.25;
}

.product-card-body>p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.55;
    margin-bottom: 14px;
}

.product-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-features li {
    position: relative;
    padding-left: 18px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.product-link span {
    transition: transform 0.2s ease;
}

.product-link:hover {
    color: var(--red-dark);
    gap: 10px;
}

.product-link:hover span {
    transform: translateX(3px);
}

.products-footer {
    margin-top: calc(var(--section-between) * 0.64);
    padding-top: calc(var(--section-between) * 0.56);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.products-note {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: 0 0 16px;
    line-height: 1.55;
}

.products-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.products-tags span {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}

.products-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .products-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .products-btns .btn {
        width: 100%;
    }
}

/* Service detail (services page) */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-detail .img-frame img {
    min-height: 360px;
    border-radius: var(--radius);
}

.service-detail h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.service-detail h3 em {
    color: var(--red);
    font-style: italic;
}

.service-detail p {
    color: var(--gray-500);
    margin-bottom: 12px;
    font-size: var(--fs-base);
}

.service-detail ul {
    margin: 12px 0;
}

.service-detail ul li {
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    font-size: var(--fs-base);
}

.service-detail ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* Gallery */
.gallery-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .gallery-section {
    padding-top: var(--section-between-sm);
}

.gallery-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.gallery-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.gallery-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.6);
}

.gallery-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.gallery-featured {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    margin-bottom: calc(var(--section-between) * 0.55);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(178, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
    position: relative;
}

.gallery-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 2;
}

.gallery-featured-image {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.gallery-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.gallery-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 32px 30px;
    border-left: 1px solid rgba(178, 0, 0, 0.1);
}

.gallery-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 8px 0 12px;
}

.gallery-featured-title em {
    font-style: normal;
    color: var(--red);
}

.gallery-featured-content > p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0 0 18px;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-stat {
    display: grid;
    gap: 3px;
    padding: 12px 10px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.gallery-stat strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.gallery-stat span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.35;
}

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.gallery-toolbar .gallery-filters {
    margin-bottom: 0;
}

.gallery-filter-note {
    margin: 0;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-500);
}

.gallery-highlight {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-highlight:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
}

.gallery-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.gallery-highlight-icon svg {
    width: 18px;
    height: 18px;
}

.gallery-highlight strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.gallery-highlight span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.gallery-filter-btn {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-filter-btn:hover {
    border-color: rgba(178, 0, 0, 0.25);
    color: var(--red);
}

.gallery-filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.gallery {
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 14px 32px rgba(178, 0, 0, 0.08);
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item-media {
    position: relative;
    overflow: hidden;
}

.gallery-featured--content-only {
    grid-template-columns: 1fr;
}

.gallery-featured--content-only .gallery-featured-content {
    border-left: none;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item--wide img {
    height: 280px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(178, 0, 0, 0.15);
    color: var(--red);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item-zoom svg {
    width: 16px;
    height: 16px;
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-caption {
    display: grid;
    gap: 4px;
    padding: 14px 16px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 0;
}

.gallery-item-tag {
    display: inline-block;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    line-height: 1.2;
}

.gallery-item-caption strong {
    color: var(--black);
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: 1.25;
}

.gallery-item-overlay strong {
    color: var(--white);
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 1.25;
}

.gallery-item-desc {
    color: var(--gray-500);
    font-size: var(--fs-xs);
    line-height: 1.45;
}

.gallery-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: calc(var(--section-between) * 0.55);
    padding: 28px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1515 55%, #1a1a1a 100%);
    border: 1px solid rgba(178, 0, 0, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.gallery-cta-band .section-label {
    color: rgba(255, 255, 255, 0.72);
}

.gallery-cta-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 700;
    color: var(--white);
    margin: 6px 0 10px;
    line-height: 1.2;
}

.gallery-cta-content h3 em {
    font-style: normal;
    color: var(--red-light);
}

.gallery-cta-content p {
    margin: 0;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 520px;
}

.gallery-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(178, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: var(--fs-base);
}

.gallery-panel-footer {
    margin-top: calc(var(--section-between) * 0.65);
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-panel-footer p {
    margin: 0;
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--black);
}

.gallery-panel-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Training */
.training {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.training-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: stretch;
}

.training-content {
    background: var(--black);
    color: var(--white);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.training-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.training-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.training-content h3 .red {
    color: var(--red-light);
}

.training-content>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-base);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.training-list {
    position: relative;
    z-index: 1;
}

.training-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.training-list li:last-child {
    border-bottom: none;
}

.training-list .check {
    width: 24px;
    height: 24px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.training-list strong {
    display: block;
    margin-bottom: 2px;
}

.training-list span {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.6);
}

.training-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.training-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    border-left: 4px solid var(--red);
    transition: var(--transition);
}

.training-card:hover {
    box-shadow: var(--shadow);
}

.training-card .training-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.training-card .training-card-body {
    padding: 24px;
}

.training-card h4 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.training-card p {
    font-size: var(--fs-base);
    color: var(--gray-500);
}

.training-card .duration {
    display: inline-block;
    margin-top: 12px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.training-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: var(--section-between);
}

.training-images .img-frame img {
    min-height: 280px;
}

/* Home stats - contained boxed panel on white */
.stats-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
}

.stats-section--boxed {
    background: var(--white);
}

.stats-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.stats-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto calc(var(--section-between) * 0.56);
}

.stats-header .section-label {
    color: var(--red);
}

.stats-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.15;
}

.stats-title em {
    font-style: normal;
    color: var(--red);
}

.stats-desc {
    font-size: var(--fs-base);
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-card {
    position: relative;
    text-align: center;
    padding: 28px 18px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--red);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stats-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.stats-card:hover {
    transform: translateY(-6px);
    border-color: rgba(178, 0, 0, 0.25);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.1);
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-card.is-visible {
    animation: statsFadeUp 0.6s ease forwards;
}

.stats-card:nth-child(1) {
    animation-delay: 0.05s;
}

.stats-card:nth-child(2) {
    animation-delay: 0.15s;
}

.stats-card:nth-child(3) {
    animation-delay: 0.25s;
}

.stats-card:nth-child(4) {
    animation-delay: 0.35s;
}

@keyframes statsFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.15);
    color: var(--red);
}

.stats-icon svg {
    width: 24px;
    height: 24px;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    font-style: italic;
    color: var(--black);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-count {
    color: var(--red);
}

.stats-card h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.stats-card p {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.45;
    margin: 0;
}

.stats-trust {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
    margin-top: calc(var(--section-between) * 0.64);
    padding-top: calc(var(--section-between) * 0.56);
    border-top: 1px solid var(--gray-200);
}

.stats-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gray-700);
}

.stats-trust-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--red);
}

@media (max-width: 992px) {
    .stats-panel {
        padding: calc(var(--section-panel-padding) * 0.85) 24px 24px;
    }

    .stats-header {
        margin-bottom: calc(var(--section-between) * 0.56);
    }
}

@media (max-width: 768px) {
    .stats-panel {
        padding: 32px 18px 24px;
        border-radius: 16px;
    }

    .stats-trust {
        flex-direction: column;
        gap: 10px;
    }
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.why-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 12px;
    font-style: italic;
}

.why-card h4 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.why-card p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
}

/* Why Choose Us page */
.why-choose-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.why-choose-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.why-choose-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.why-choose-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.72);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-feature-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 22px 18px 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.why-feature-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
}

.why-feature-num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(178, 0, 0, 0.35);
}

.why-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.why-feature-icon svg {
    width: 22px;
    height: 22px;
}

.why-feature-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.25;
    padding-right: 28px;
}

.why-feature-card p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

.why-choose-stats-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
}

/* CTA */
section.cta {
    padding-top: 0;
    padding-bottom: var(--section-between);
}

.cta-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 20px;
    padding: calc(var(--section-between) + 12px);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: var(--fs-lg);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-box .btn {
    position: relative;
    background: var(--white);
    color: var(--red);
}

.cta-box .btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Homepage CTA */
.cta-home {
    padding-top: 32px;
    padding-bottom: var(--section-between);
    background: var(--white);
}

.cta-panel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #141414 0%, #1c1c1c 48%, #120808 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.cta-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light), var(--red));
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: stretch;
    min-height: 280px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 44px 48px 48px;
}

.cta-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red-light);
    margin-bottom: 14px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.cta-title em {
    color: var(--red-light);
    font-style: italic;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 540px;
}

.cta-regions {
    margin: 0;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.cta-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 44px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-action-lead {
    margin: 0 0 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.cta-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 28px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(178, 0, 0, 0.35);
}

.cta-btn-primary:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(178, 0, 0, 0.4);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    padding: 14px 24px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta-btn-secondary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta-action-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-action-contact a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cta-action-contact a:hover {
    color: var(--white);
}

.cta-action-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .cta-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .cta-content {
        padding: 36px 32px 28px;
    }

    .cta-action {
        padding: 28px 32px 36px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cta-desc {
        max-width: none;
    }
}

@media (max-width: 768px) {

    .cta-content,
    .cta-action {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-action-btns {
        flex-direction: column;
    }

    .cta-action-btns .btn {
        width: 100%;
    }

    .cta-action-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-action-divider {
        display: none;
    }
}

/* Contact */
.contact {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--gray-500);
    font-size: var(--fs-base);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-item span {
    font-size: var(--fs-base);
    color: var(--gray-500);
}

.contact-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.contact-images .img-frame img {
    min-height: 200px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: var(--fs-base);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: border-color var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--section-panel-padding) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid-5 {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .footer-logo {
    display: block;
    width: min(100%, 300px);
    height: auto;
    margin-bottom: 0;
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: 700;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: var(--fs-sm);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--red-light);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-contact-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.5;
}

a.footer-contact-item:hover {
    color: var(--red-light);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--red-light);
}

.footer-contact-address {
    cursor: default;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: var(--fs-sm);
}

.footer-bottom strong {
    color: var(--red-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--red-light);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--site-header-offset));
    margin-top: var(--site-header-offset);
    overflow: hidden;
    background: var(--black);
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.55) 50%, rgba(138, 0, 0, 0.35) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--site-header-offset));
    padding: 60px 24px;
}

.hero-slide-content .hero-text {
    max-width: 640px;
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
    padding: 0;
    background: transparent;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--red-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--red);
    border-color: var(--red);
}

/* Clients - homepage split layout */
.clients-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    background: var(--white);
}

.clients-split {
    display: grid;
    grid-template-columns: minmax(300px, 380px) 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    min-height: 520px;
}

.clients-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 45%, #2a0808 100%);
    color: var(--white);
    overflow: hidden;
}

.clients-intro-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.45) 0%, transparent 70%);
    pointer-events: none;
}

.clients-intro-label {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.clients-intro-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
}

.clients-intro-title em {
    color: var(--red-light);
    font-style: italic;
    text-transform: none;
}

.clients-intro-desc {
    position: relative;
    z-index: 1;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0 0 20px;
}

.clients-intro-chips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.clients-intro-chips span {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 11px;
    border-radius: 999px;
}

.clients-intro-regions {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-intro-regions-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red-light);
    margin-bottom: 6px;
}

.clients-intro-regions p {
    margin: 0;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.clients-intro-btns {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clients-btn-light {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--white);
    font-weight: 700;
    text-align: center;
    justify-content: center;
}

.clients-btn-light:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--red-dark);
}

.clients-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-align: center;
    justify-content: center;
}

.clients-btn-outline:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.clients-showcase {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.clients-showcase-head {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--gray-200);
}

.clients-showcase-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 6px;
}

.clients-showcase-head p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.5;
}

.clients-logo-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    flex: 1;
    align-content: start;
}

.client-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 88px;
    padding: 16px 10px 12px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.client-tile {
    text-decoration: none;
    color: inherit;
}

.client-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.client-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(178, 0, 0, 0.25);
    box-shadow: 0 8px 24px rgba(178, 0, 0, 0.1);
}

.client-tile:hover::after {
    transform: scaleX(1);
}

.client-tile img {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.88;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.client-tile img.client-logo-dark {
    filter: none;
    opacity: 1;
    max-height: 36px;
}

.client-tile:hover img.client-logo-dark {
    filter: none;
    opacity: 1;
}

.client-tile:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-tile-name {
    margin-top: 10px;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.25;
    transition: color 0.25s ease;
}

.client-tile:hover .client-tile-name {
    color: var(--red);
}

.clients-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

.clients-industries span {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 5px 12px;
    border-radius: 999px;
}

@media (max-width: 992px) {
    .clients-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .clients-intro {
        padding: 32px 28px;
    }

    .clients-intro-btns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .clients-intro-btns .btn {
        flex: 1;
        min-width: 140px;
    }

    .clients-logo-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-showcase {
        padding: 24px 18px 20px;
    }

    .clients-logo-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-intro-btns {
        flex-direction: column;
    }

    .clients-intro-btns .btn {
        width: 100%;
    }
}

/* Legacy clients grid (inner pages) */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}

.client-logo {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 80px;
}

.client-logo:hover {
    box-shadow: var(--shadow);
    border-color: var(--red);
}

.client-logo img {
    max-height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Clients page */
.clients-page-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .clients-page-section {
    padding-top: var(--section-between-sm);
}

.clients-page-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.clients-page-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.clients-page-highlight {
    display: grid;
    gap: 4px;
    padding: 16px 14px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.clients-page-highlight:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.clients-page-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.clients-page-highlight-icon svg {
    width: 20px;
    height: 20px;
}

.clients-page-highlight strong {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.clients-page-highlight > span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

.clients-page-split {
    margin-bottom: calc(var(--section-between) * 0.55);
}

.clients-page-logo-wall {
    grid-template-columns: repeat(5, 1fr);
}

.clients-page-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.clients-page-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.clients-page-benefit:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(178, 0, 0, 0.08);
    transform: translateY(-2px);
}

.clients-page-benefit-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.clients-page-benefit-icon svg {
    width: 22px;
    height: 22px;
}

.clients-page-benefit-text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.clients-page-benefit-text strong {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.clients-page-benefit-text span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.clients-page-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.1);
}

.clients-page-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-600);
}

.clients-page-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .clients-page-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-page-logo-wall {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-page-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-page-highlights {
        grid-template-columns: 1fr;
    }

    .clients-page-logo-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-page-benefits {
        grid-template-columns: 1fr;
    }

    .clients-page-trust {
        justify-content: flex-start;
    }
}

/* Testimonials */
.testimonials-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    background: var(--white);
}

.testimonials-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 32px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonials-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.testimonials-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.48);
}

.testimonials-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.56);
}

.testimonials-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.testimonials-trust-stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 1px;
    line-height: 1;
}

.testimonials-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
}

.testimonials-trust-icon svg {
    width: 15px;
    height: 15px;
}

.testimonials-trust-item strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 24px 24px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 14px 36px rgba(178, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card--featured {
    border-color: rgba(178, 0, 0, 0.18);
    background: linear-gradient(135deg, #fffafa 0%, var(--white) 100%);
}

.testimonial-quote {
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(178, 0, 0, 0.1);
    pointer-events: none;
}

.testimonial-service {
    display: inline-block;
    align-self: flex-start;
    width: fit-content;
    margin-bottom: 12px;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1.4;
}

.testimonial-stars {
    color: #f5a623;
    margin-bottom: 14px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-card blockquote {
    margin: 0 0 22px;
    padding: 0;
    border: none;
    font-size: var(--fs-sm);
    color: var(--gray-600);
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    font-style: italic;
    box-shadow: 0 4px 12px rgba(178, 0, 0, 0.25);
}

.testimonial-author-info h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
    margin: 0 0 3px;
    line-height: 1.25;
}

.testimonial-author-info span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1.3;
}

.testimonials-footer {
    margin-top: calc(var(--section-between) * 0.64);
    padding-top: calc(var(--section-between) * 0.56);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.testimonials-note {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: 0 0 20px;
    line-height: 1.55;
}

.testimonials-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .testimonials-panel {
        padding: 28px 20px 24px;
    }

    .testimonials-trust {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials-trust-item {
        justify-content: center;
    }
}

/* FAQ */
.faq-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .faq-section {
    padding-top: var(--section-between-sm);
}

.faq-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.faq-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.72);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.faq-list {
    max-width: none;
    margin: 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(178, 0, 0, 0.18);
}

.faq-item.open {
    border-color: rgba(178, 0, 0, 0.28);
    box-shadow: 0 8px 24px rgba(178, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    text-align: left;
}

.faq-question-main {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.faq-tag {
    display: inline-block;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    line-height: 1.2;
}

.faq-question-text {
    line-height: 1.45;
}

.faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    color: var(--white);
}

.faq-question .icon {
    color: var(--red);
    font-size: 1.25rem;
    transition: transform var(--transition);
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--gray-500);
    font-size: var(--fs-sm);
    line-height: 1.65;
    margin: 0;
    border-top: 1px solid var(--gray-200);
    padding-top: 14px;
}

.faq-sidebar {
    position: sticky;
    top: calc(var(--site-header-offset) + 20px);
}

.faq-help-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.faq-help-icon svg {
    width: 22px;
    height: 22px;
}

.faq-help-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.25;
}

.faq-help-card > p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.faq-help-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--gray-200);
    display: grid;
    gap: 10px;
}

.faq-help-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.45;
}

.faq-help-list svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    color: var(--red);
}

.faq-help-contact {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.faq-help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-help-link:hover {
    color: var(--red);
}

.faq-help-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--red);
}

.faq-help-btns {
    display: grid;
    gap: 10px;
}

.faq-help-btns .btn {
    width: 100%;
    justify-content: center;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .blog-body {
    padding: 24px;
}

.blog-card .blog-date {
    font-size: var(--fs-xs);
    color: var(--red);
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.blog-card p {
    font-size: var(--fs-base);
    color: var(--gray-500);
    margin-bottom: 16px;
}

.blog-card a {
    font-weight: 600;
    color: var(--red);
    font-size: var(--fs-sm);
}

.empty-state {
    text-align: center;
    padding: 60px 24px;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-500);
}

/* Process Steps */
.process-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.page-banner + .process-section {
    padding-top: var(--section-between-sm);
}

.process-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.process-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.process-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.72);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-step-card {
    position: relative;
    text-align: left;
    padding: 24px 20px 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--red-dark), var(--red-light));
    opacity: 0.85;
}

.process-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
}

.process-step-num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(178, 0, 0, 0.35);
}

.process-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.process-step-icon svg {
    width: 22px;
    height: 22px;
}

.process-step-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.25;
    padding-right: 28px;
}

.process-step-card p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.55;
    margin-bottom: 14px;
}

.process-step-points {
    list-style: none;
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--gray-200);
    display: grid;
    gap: 6px;
}

.process-step-points li {
    position: relative;
    padding-left: 18px;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.45;
}

.process-step-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.16);
    border: 2px solid rgba(178, 0, 0, 0.55);
}

/* How We Work - collaboration section */
.process-collab-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.process-collab-grid .about-image {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.process-collab-grid .about-image-wrap {
    margin: 0 14px 0 0;
}

.process-collab-grid .about-image-main {
    aspect-ratio: 16 / 10;
    min-height: 300px;
}

/* Legacy process step (unused) */
.process-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    position: relative;
}

.process-step .step-num {
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.process-step p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
}

/* Portfolio - homepage */
.portfolio-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    background: var(--gray-100);
}

.portfolio-section .section-header {
    margin-bottom: calc(var(--section-between) * 0.56);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-grid-home {
    margin-bottom: 0;
}

.portfolio-section .portfolio-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-section .portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 16px 40px rgba(178, 0, 0, 0.1);
}

.portfolio-section .portfolio-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.portfolio-section .portfolio-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.portfolio-section .portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.04);
}

.portfolio-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--white);
    background: var(--red);
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(178, 0, 0, 0.35);
}

.portfolio-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.portfolio-section .portfolio-card:hover .portfolio-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.portfolio-section .portfolio-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 22px 22px;
    border-top: 3px solid rgba(178, 0, 0, 0.12);
}

.portfolio-section .portfolio-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.portfolio-section .portfolio-card-body h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.25;
}

.portfolio-section .portfolio-card-body>p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0 0 14px;
}

.portfolio-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.portfolio-features li {
    position: relative;
    padding-left: 18px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
}

.portfolio-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.portfolio-link span {
    transition: transform 0.2s ease;
}

.portfolio-link:hover {
    color: var(--red-dark);
    gap: 10px;
}

.portfolio-link:hover span {
    transform: translateX(3px);
}

.portfolio-footer {
    margin-top: calc(var(--section-between) * 0.64);
    padding-top: calc(var(--section-between) * 0.56);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.portfolio-note {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: 0 0 16px;
    line-height: 1.55;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.portfolio-tags span {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}

.portfolio-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 992px) {
    .portfolio-grid-home {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Portfolio - inner pages (legacy cards) */
.portfolio-grid:not(.portfolio-grid-home) .portfolio-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-grid:not(.portfolio-grid-home) .portfolio-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.portfolio-grid:not(.portfolio-grid-home) .portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-grid:not(.portfolio-grid-home) .portfolio-body {
    padding: 24px;
}

.portfolio-grid:not(.portfolio-grid-home) .portfolio-tag {
    font-size: var(--fs-xs);
    color: var(--red);
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-grid:not(.portfolio-grid-home) .portfolio-card h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.portfolio-grid:not(.portfolio-grid-home) .portfolio-card a {
    font-size: var(--fs-sm);
    color: var(--gray-500);
}

.portfolio-grid:not(.portfolio-grid-home) .portfolio-card a:hover {
    color: var(--red);
}

/* Newsletter */
.newsletter-box {
    background: var(--black);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    color: var(--white);
}

.newsletter-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 8px;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
}

/* Industries */
.industries-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    background: var(--gray-100);
}

.industries-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 32px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.industries-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.industries-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.56);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 100%);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 22px 18px 20px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
}

.industry-card:hover {
    border-color: rgba(178, 0, 0, 0.25);
    box-shadow: 0 10px 28px rgba(178, 0, 0, 0.1);
    transform: translateY(-5px);
}

.industry-card:hover::before {
    transform: scaleY(1);
}

.industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    flex-shrink: 0;
}

.industry-icon svg {
    width: 22px;
    height: 22px;
}

.industry-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.25;
}

.industry-card p {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.45;
    margin: 0;
    flex: 1;
}

.industry-arrow {
    position: absolute;
    top: 20px;
    right: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.industry-card:hover .industry-arrow {
    opacity: 1;
    transform: translateX(0);
}

.industries-footer {
    margin-top: calc(var(--section-between) * 0.64);
    padding-top: calc(var(--section-between) * 0.56);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.industries-note {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: 0 0 20px;
    line-height: 1.55;
}

.industries-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Home training section */
.training-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    background: var(--gray-100);
}

.training-panel {
    position: relative;
    padding: var(--section-panel-padding) 36px 32px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.training-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.training-panel::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.training-head {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
    margin-bottom: calc(var(--section-between) * 0.64);
}

.training-head-content .section-desc {
    margin-bottom: 20px;
}

.training-quick-points {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.training-quick-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-sm);
    color: var(--gray-700);
    line-height: 1.5;
}

.training-quick-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.1);
    color: var(--red);
    margin-top: 1px;
}

.training-quick-icon svg {
    width: 12px;
    height: 12px;
}

.training-head-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.training-head-visual {
    position: relative;
}

.training-visual-wrap {
    position: relative;
}

.training-visual-accent {
    position: absolute;
    inset: -8px -8px 8px 8px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.12), rgba(178, 0, 0, 0.03));
    z-index: 0;
}

.training-visual-main {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: linear-gradient(180deg, #fefafa 0%, var(--white) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.training-visual-main img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 280px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
}

.training-visual-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
}

.training-visual-chip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    min-width: 88px;
}

.training-visual-chip strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--red);
    line-height: 1;
}

.training-visual-chip span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.2;
}

.training-visual-chip-wide {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.training-visual-chip-wide svg {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
}

.training-visual-chip-wide span {
    font-size: 0.68rem;
}

.training-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.64);
}

.training-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fefafa 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-highlight:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(178, 0, 0, 0.08);
    transform: translateY(-2px);
}

.training-highlight-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--white);
    color: var(--red);
    border: 2px solid rgba(178, 0, 0, 0.1);
    box-shadow: 0 4px 14px rgba(178, 0, 0, 0.12);
}

.training-highlight-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.training-highlight-text {
    min-width: 0;
    flex: 1;
}

.training-highlight strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
    line-height: 1.25;
}

.training-highlight-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.training-programs-head {
    margin-bottom: 24px;
}

.training-programs-head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fefafa 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.training-programs-head-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--red-dark), var(--red-light));
}

.training-programs-head-text {
    flex: 1;
    min-width: 0;
    padding-left: 8px;
}

.training-programs-head-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 6px;
}

.training-programs-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 8px;
    line-height: 1.15;
}

.training-programs-title em {
    color: var(--red);
    font-style: italic;
    text-transform: none;
}

.training-programs-desc {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: 0;
    line-height: 1.55;
    max-width: 560px;
}

.training-programs-admissions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.15);
    box-shadow: 0 6px 20px rgba(178, 0, 0, 0.08);
}

.training-programs-admissions-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    flex-shrink: 0;
}

.training-programs-admissions-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.training-programs-admissions-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.training-programs-admissions-text strong {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    font-style: italic;
    color: var(--black);
    line-height: 1.2;
    white-space: nowrap;
}

.training-programs-admissions-text span {
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.35;
    white-space: nowrap;
}

.training-programs-admissions-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #15803d;
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.18);
    padding: 5px 10px;
    border-radius: 999px;
    line-height: 1;
}

.training-programs-admissions-live>span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: training-live-pulse 2s ease-in-out infinite;
}

@keyframes training-live-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .training-programs-admissions-live>span {
        animation: none;
    }
}

.training-programs-grid-home {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.training-program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 22px 18px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 100%);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.training-program-card--featured {
    border-color: rgba(178, 0, 0, 0.22);
    background: linear-gradient(135deg, #fffafa 0%, #fff5f5 100%);
}

.training-program-popular {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    font-family: var(--font-accent);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--white);
    background: var(--red);
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1.4;
}

.training-program-card--featured .training-program-icon {
    margin-top: 18px;
}

.training-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
}

.training-program-card:hover {
    border-color: rgba(178, 0, 0, 0.25);
    box-shadow: 0 10px 28px rgba(178, 0, 0, 0.1);
    transform: translateY(-5px);
}

.training-program-card:hover .training-program-link {
    color: var(--red-dark);
    gap: 10px;
}

.training-program-card:hover .training-program-link span {
    transform: translateX(3px);
}

.training-program-card:hover::before {
    transform: scaleY(1);
}

.training-program-num {
    position: absolute;
    top: 16px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(178, 0, 0, 0.22);
    line-height: 1;
}

.training-program-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.training-program-icon svg {
    width: 22px;
    height: 22px;
}

.training-program-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.training-program-meta .duration-badge {
    margin-bottom: 0;
}

.training-mode {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gray-500);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1.4;
}

.training-program-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.25;
    padding-right: 24px;
}

.training-program-card>p {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.45;
    margin: 0 0 14px;
}

.training-program-features {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    width: 100%;
}

.training-program-features li {
    position: relative;
    padding-left: 16px;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
}

.training-program-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.training-program-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.training-program-link span {
    transition: transform 0.2s ease;
}

.training-program-link:hover {
    color: var(--red-dark);
    gap: 10px;
}

.training-program-link:hover span {
    transform: translateX(3px);
}

.training-enroll-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: calc(var(--section-between) * 0.64);
    padding: 28px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, #c40000 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(178, 0, 0, 0.25);
}

.training-enroll-label {
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

.training-enroll-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.25;
}

.training-enroll-text h3 em {
    color: rgba(255, 255, 255, 0.92);
    font-style: italic;
}

.training-enroll-text p {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.5;
    max-width: 480px;
}

.training-enroll-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 12px;
}

.training-enroll-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--white);
    font-weight: 700;
}

.training-enroll-phone svg {
    width: 16px;
    height: 16px;
}

.training-enroll-phone:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--red-dark);
}

.training-enroll-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

.training-enroll-btn:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.training-footer {
    margin-top: calc(var(--section-between) * 0.64);
    padding-top: calc(var(--section-between) * 0.56);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.training-note {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: 0 0 16px;
    line-height: 1.55;
}

.training-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.training-tags span {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.06);
    border: 1px solid rgba(178, 0, 0, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}

.training-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1200px) {
    .training-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .training-head-visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .training-programs-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .training-enroll-band {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .training-enroll-actions {
        width: 100%;
    }

    .training-enroll-actions .btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    .training-programs-head-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px 18px;
    }

    .training-programs-head-text {
        padding-left: 6px;
    }

    .training-programs-admissions {
        width: 100%;
        justify-content: flex-start;
    }

    .training-programs-admissions-live {
        margin-left: auto;
    }

    .training-intro-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "visual"
            "highlights";
    }

    .training-intro-main {
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.1);
        padding: 26px 22px 24px;
    }

    .training-intro-visual {
        padding: 0 22px 22px;
    }

    .training-intro-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-intro-highlight {
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.08);
    }

    .training-intro-highlight:nth-child(odd) {
        border-right: 1px solid rgba(178, 0, 0, 0.08);
    }

    .training-intro-highlight:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .training-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-programs-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-curriculum-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-curriculum-modules {
        grid-template-columns: 1fr;
    }

    .training-stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-faq-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-faq-layout,
    .career-faq-layout {
        grid-template-columns: 1fr;
    }

    .training-faq-sidebar,
    .career-faq-sidebar {
        position: static;
        order: -1;
    }

    .training-enroll-panel {
        grid-template-columns: 1fr;
    }

    .training-enroll-main {
        height: auto;
        min-height: 0;
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.1);
        padding: 26px 22px 24px;
    }

    .training-enroll-tags {
        margin-top: 0;
        padding-top: 0;
    }

    .training-enroll-card {
        height: auto;
        min-height: 0;
    }

    .training-enroll-card-body {
        padding: 26px 22px 24px;
    }

    .training-enroll-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-enroll-perk-grid {
        grid-template-columns: 1fr;
    }

    .training-enroll-trust {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .training-panel {
        padding: 28px 20px 24px;
    }

    .training-head-btns {
        flex-direction: column;
    }

    .training-head-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .training-highlights {
        grid-template-columns: 1fr;
    }

    .training-intro-highlights {
        grid-template-columns: 1fr;
    }

    .training-intro-highlight {
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.08);
    }

    .training-intro-highlight:last-child {
        border-bottom: none;
    }

    .training-intro-point-num {
        display: none;
    }

    .training-intro-point {
        grid-template-columns: auto 1fr;
    }

    .training-programs-grid-home {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .training-stats-section .stats-grid {
        grid-template-columns: 1fr;
    }

    .training-programs-grid-page {
        grid-template-columns: 1fr;
    }

    .training-curriculum-panel {
        padding: 18px 16px;
    }

    .training-curriculum-features {
        grid-template-columns: 1fr;
    }

    .training-module-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .training-module-visual {
        min-height: 140px;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .training-module-visual img {
        max-height: 100px;
    }

    .training-programs-admissions {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 12px;
    }

    .training-programs-admissions-text strong,
    .training-programs-admissions-text span {
        white-space: normal;
    }

    .training-programs-admissions-live {
        margin-left: 0;
    }

    .training-enroll-actions {
        flex-direction: column;
    }

    .training-enroll-actions .btn {
        width: 100%;
    }
}

/* Legacy industry card (inner pages) */
.industry-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.industry-card .icon+h4 {
    text-align: center;
}

div.industry-card {
    align-items: center;
    text-align: center;
}

/* Tech Stack */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.tech-group {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
}

.tech-group h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: var(--transition);
}

.tech-tag:hover {
    background: var(--red);
    color: var(--white);
}

/* Web development — intro / overview section */
.web-dev-intro-section {
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between-sm);
}

.web-dev-intro-section > .container {
    display: flex;
    flex-direction: column;
    gap: calc(var(--section-between) * 0.55);
}

.web-dev-intro-head {
    margin-bottom: 0;
    text-align: center;
}

.web-dev-intro-head .section-desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Shared icon box */
.web-dev-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
}

.web-dev-icon svg {
    display: block;
    flex-shrink: 0;
}

.web-dev-intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.web-dev-intro-feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 20px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.web-dev-intro-feature-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(178, 0, 0, 0.25);
    line-height: 1;
}

.web-dev-intro-feature:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 10px 28px rgba(178, 0, 0, 0.08);
    transform: translateY(-3px);
}

.web-dev-intro-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.web-dev-intro-feature-icon svg {
    width: 22px;
    height: 22px;
}

.web-dev-intro-feature-body {
    flex: 1;
    min-width: 0;
    padding-right: 28px;
}

.web-dev-intro-feature-body strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 5px;
}

.web-dev-intro-feature-body p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.5;
}

.web-dev-intro-grid {
    display: flex;
    align-items: stretch;
    gap: clamp(24px, 3vw, 40px);
}

.web-dev-intro-grid > * {
    flex: 1 1 0;
    min-width: 0;
    min-height: 0;
}

.web-dev-intro-media {
    display: flex;
    flex-direction: column;
}

.web-dev-intro-image-wrap {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    background: var(--gray-100);
}

.web-dev-intro-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.web-dev-intro-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    gap: 10px;
    padding: 28px 14px 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 100%);
}

.web-dev-intro-image-chip {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    text-align: center;
}

.web-dev-intro-image-chip strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.web-dev-intro-image-chip span {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
    line-height: 1.3;
}

.web-dev-intro-media-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    max-width: calc(100% - 32px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
}

.web-dev-intro-media-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 11px;
    color: var(--red);
}

.web-dev-intro-media-badge-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.web-dev-intro-media-badge strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

.web-dev-intro-media-badge > div span {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

.web-dev-intro-content {
    display: flex;
    flex-direction: column;
    padding: clamp(22px, 3vw, 30px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.web-dev-intro-content .section-label {
    display: inline-block;
    margin-bottom: 10px;
}

.web-dev-intro-content h3 {
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.2;
}

.web-dev-intro-content h3 em {
    color: var(--red);
    font-style: italic;
}

.web-dev-intro-content p {
    color: var(--gray-500);
    font-size: var(--fs-base);
    line-height: 1.65;
    margin-bottom: 12px;
}

.web-dev-intro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 18px;
}

.web-dev-intro-trust span {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
}

.web-dev-intro-trust span::before {
    content: '';
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--red);
}

.web-dev-intro-deliver {
    flex-shrink: 0;
    padding: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.web-dev-intro-deliver-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.web-dev-intro-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.web-dev-intro-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-700);
    font-size: 0.82rem;
    line-height: 1.4;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.web-dev-intro-list li:hover {
    border-color: rgba(178, 0, 0, 0.2);
    background: rgba(178, 0, 0, 0.03);
}

.web-dev-intro-list-icon {
    width: 24px;
    height: 24px;
    margin-top: 1px;
    border-radius: 50%;
}

.web-dev-intro-list-icon svg {
    width: 13px;
    height: 13px;
}

.web-dev-intro-list li:last-child {
    grid-column: 1 / -1;
}

.web-dev-intro-list li::before {
    content: none;
}

.web-dev-intro-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.web-dev-intro-actions-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.web-dev-intro-actions-note {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

@media (max-width: 992px) {
    .web-dev-intro-features {
        grid-template-columns: 1fr;
    }

    .web-dev-intro-grid {
        flex-direction: column;
    }

    .web-dev-intro-grid > * {
        flex: 1 1 auto;
    }

    .web-dev-intro-media {
        min-height: auto;
    }

    .web-dev-intro-image-wrap {
        flex: none;
        min-height: 280px;
        aspect-ratio: 4 / 3;
    }

    .web-dev-intro-list {
        grid-template-columns: 1fr;
    }

    .web-dev-intro-list li:last-child {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .web-dev-intro-actions-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .web-dev-intro-image-overlay {
        flex-direction: column;
    }
}

/* Web development — enhanced tech stack section */
.web-tech-section {
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between-sm);
}

.web-tech-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.web-tech-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.web-tech-panel .section-header {
    margin-bottom: calc(var(--section-between) * 0.55);
}

.web-tech-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: calc(var(--section-between) * 0.55);
}

.web-tech-stat {
    display: grid;
    gap: 2px;
    padding: 18px 16px;
    text-align: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.web-tech-stat:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 8px 22px rgba(178, 0, 0, 0.07);
    transform: translateY(-2px);
}

.web-tech-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.web-tech-stat-icon svg {
    width: 18px;
    height: 18px;
}

.web-tech-stat strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.web-tech-stat span:last-child {
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

.web-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.web-tech-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 22px 20px 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.web-tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 12px 28px rgba(178, 0, 0, 0.08);
}

.web-tech-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.web-tech-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
}

.web-tech-card-icon svg {
    width: 22px;
    height: 22px;
}

.web-tech-card-head h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1.25;
}

.web-tech-card-head p {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

.web-tech-card .tech-tags {
    gap: 8px;
}

.web-tech-card .tech-tag {
    font-size: 0.78rem;
    padding: 6px 12px;
}

.web-tech-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.06) 0%, rgba(178, 0, 0, 0.02) 100%);
    border: 1px solid rgba(178, 0, 0, 0.14);
    border-radius: 12px;
}

.web-tech-note-text {
    display: grid;
    gap: 4px;
}

.web-tech-note-text strong {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
}

.web-tech-note-text span {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.45;
}

@media (max-width: 992px) {
    .web-tech-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .web-tech-stats {
        grid-template-columns: 1fr;
    }

    .web-tech-note {
        flex-direction: column;
        align-items: flex-start;
    }

    .web-tech-note .btn {
        width: 100%;
    }
}

/* Growth CTA - full-width red band */
.growth-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    color: var(--white);
    background: linear-gradient(135deg, #8a0000 0%, var(--red) 45%, var(--red-dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.growth-section.section-compact {
    padding-bottom: calc(var(--section-between) * 0.75);
}

.growth-cta-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.growth-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.growth-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.growth-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.growth-cta-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.growth-cta-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 14px;
}

.growth-cta-content h3 em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 4px;
}

.growth-cta-content p {
    font-size: var(--fs-base);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
    max-width: 520px;
}

.growth-cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.growth-cta-tags span {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.growth-cta-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.growth-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--white);
    font-weight: 700;
}

.growth-btn-light svg {
    width: 18px;
    height: 18px;
}

.growth-btn-light:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.growth-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

.growth-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

.growth-cta-phone {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.growth-cta-phone:hover {
    color: var(--white);
}

.growth-cta-cards-wrap {
    padding: 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.growth-cta-cards-title {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 16px;
    text-align: center;
}

.growth-cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.growth-cta-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 14px 16px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.growth-cta-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--white);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
}

.growth-cta-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.growth-cta-card:hover::before {
    transform: scaleY(1);
}

.growth-cta-card-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1;
}

.growth-cta-card-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--white);
    color: var(--red);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.growth-cta-card-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.growth-cta-card-text {
    min-width: 0;
    flex: 1;
    padding-right: 18px;
}

.growth-cta-card-chip {
    display: inline-block;
    margin-bottom: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    background: var(--white);
    line-height: 1.4;
}

.growth-cta-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.25;
    letter-spacing: 0.2px;
}

.growth-cta-card-text>span:last-child {
    display: block;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

@media (max-width: 992px) {
    .growth-section {
        padding-top: var(--section-between-sm);
        padding-bottom: var(--section-between-sm);
    }

    .growth-cta-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .growth-cta-content p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .growth-section {
        padding-top: calc(var(--section-between-sm) * 0.9);
        padding-bottom: calc(var(--section-between-sm) * 0.9);
    }

    .growth-cta-cards {
        grid-template-columns: 1fr;
    }

    .growth-cta-cards-wrap {
        padding: 18px 16px;
    }

    .growth-cta-card {
        padding: 14px 12px;
    }

    .growth-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .growth-cta-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .growth-cta-content {
        text-align: center;
    }

    .growth-cta-tags {
        justify-content: center;
    }
}

/* Cookie Offcanvas */
.cookie-offcanvas {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.cookie-offcanvas.show {
    transform: translateY(0);
    pointer-events: all;
}

.cookie-offcanvas-panel {
    background: var(--white);
    border-top: 3px solid var(--red);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
}

.cookie-offcanvas-panel p {
    flex: 1;
    min-width: 240px;
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-700);
}

.cookie-offcanvas-panel a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-accept-btn {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: var(--fs-xs);
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: var(--black);
    border-top: 2px solid var(--red);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: var(--fs-sm);
}

.sticky-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-accent);
}

.sticky-cta-btn {
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--red-light);
}

.sticky-cta-divider {
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta-phone {
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-heading);
}

.sticky-cta-phone:hover {
    color: var(--red-light);
}

body.has-sticky-cta .cookie-offcanvas.show {
    bottom: var(--sticky-cta-height);
}

/* Placement / Recruiters */
.recruiters-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.recruiter-logo {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.recruiter-logo img {
    max-height: 36px;
}

/* Training program cards grid */
.training-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    border-top: 4px solid var(--red);
    transition: var(--transition);
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.program-card .duration-badge {
    display: inline-block;
    background: rgba(178, 0, 0, 0.1);
    color: var(--red);
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.program-card h4 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.program-card p {
    font-size: var(--fs-base);
    color: var(--gray-500);
    margin-bottom: 16px;
}

.program-card .btn {
    padding: 8px 20px;
    font-size: var(--fs-sm);
}

/* Callback / consultation section */
.callback-section {
    padding-top: var(--section-between);
    padding-bottom: var(--section-between);
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.callback-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.callback-glow--tl {
    top: -120px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.18) 0%, transparent 70%);
}

.callback-glow--br {
    bottom: -100px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.callback-panel {
    position: relative;
    padding: 36px 36px 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 55%, #141414 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.callback-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light), var(--red-dark));
}

.callback-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.callback-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 28px;
}

.callback-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red-light);
    margin-bottom: 12px;
}

.callback-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 14px;
    line-height: 1.15;
}

.callback-title em {
    color: var(--red-light);
    font-style: italic;
    text-transform: none;
}

.callback-desc {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0 0 22px;
    max-width: 560px;
}

.callback-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.callback-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 110px;
}

.callback-stat strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.callback-stat span {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.callback-regions {
    margin: 18px 0 0;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.callback-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.callback-tags span {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}

.callback-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.callback-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.callback-point-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    margin-top: 1px;
}

.callback-point-icon svg {
    width: 11px;
    height: 11px;
}

.callback-side-card {
    padding: 26px 24px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.callback-side-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 18px;
}

.callback-response {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.callback-response-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--white);
    color: var(--red);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.callback-response-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.callback-response strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-bottom: 3px;
    line-height: 1.2;
}

.callback-response>div span {
    display: block;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.35;
}

.callback-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.callback-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--white);
    font-weight: 700;
}

.callback-btn-primary:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--red-dark);
}

.callback-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
    font-weight: 700;
}

.callback-btn-outline svg {
    width: 16px;
    height: 16px;
}

.callback-btn-outline:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.callback-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.callback-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.callback-contact-list a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--red-light);
}

.callback-contact-list a img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.callback-contact-list a:hover {
    color: var(--white);
}

.callback-features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.callback-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.callback-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.callback-feature-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--white);
    color: var(--red);
}

.callback-feature-icon svg {
    width: 18px;
    height: 18px;
}

.callback-feature strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2px;
}

.callback-feature-text span {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.4;
}

/* Legacy callback box */
.callback-box {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.callback-box h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .callback-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .callback-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .callback-panel {
        padding: 28px 20px 22px;
    }

    .callback-stats {
        gap: 10px;
    }

    .callback-stat {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        padding: 10px 14px;
    }

    .callback-stat strong {
        font-size: 1.15rem;
    }

    .callback-features {
        grid-template-columns: 1fr;
    }

    .callback-desc {
        max-width: none;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .nav {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .nav-links {
        flex: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: var(--site-header-offset);
        left: 0;
        right: 0;
        max-height: calc(100vh - var(--site-header-offset));
        overflow-y: auto;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 28px 32px 36px;
        gap: 0;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
        flex: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .header.top-collapsed .nav-links {
        top: var(--header-height);
        max-height: calc(100vh - var(--header-height));
    }

    .nav-links>li {
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-links>li>a,
    .nav-dropdown>a {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 52px;
        padding: 16px 8px;
        font-size: var(--nav-font);
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        justify-content: flex-start;
        letter-spacing: 0.4px;
    }

    .nav-links>li>a.active,
    .nav-dropdown>a.active {
        background: transparent;
        box-shadow: none;
        border-left: 3px solid var(--red);
        padding-left: 12px;
        color: var(--red);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 8px 16px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 8px;
        font-size: var(--fs-sm);
        text-transform: none;
    }

    .dropdown-menu::before {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1320px) {

    .nav-links>li>a,
    .nav-dropdown>a {
        padding: 0 11px;
        font-size: 0.92rem;
        letter-spacing: 0.45px;
    }

    .nav {
        gap: 20px;
        grid-template-columns: 220px 1fr auto;
    }
}

@media (max-width: 1024px) {

    .services-grid,
    .services-grid-6,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .stats-grid,
    .about-core-grid,
    .why-choose-grid,
    .process-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid,
    .footer-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-panel {
        padding: 28px 20px 24px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-sidebar {
        position: static;
        order: -1;
    }

    .team-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-featured {
        grid-template-columns: 1fr;
    }

    .gallery-featured-content {
        border-left: none;
        border-top: 1px solid rgba(178, 0, 0, 0.1);
        padding: 24px 20px 22px;
    }

    .gallery-stats {
        grid-template-columns: 1fr;
    }

    .gallery-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .gallery-cta-actions {
        width: 100%;
    }

    .gallery-cta-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .page-highlights,
    .contact-quick-cards {
        grid-template-columns: 1fr;
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .career-intro-panel {
        grid-template-columns: 1fr;
    }

    .career-intro-image {
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.1);
        padding: 22px 20px 20px;
    }

    .career-intro-content {
        padding: 24px 20px 22px;
    }

    .career-perks {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-openings {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-faq-highlights {
        grid-template-columns: 1fr;
    }

    .career-faq-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .career-faq-sidebar,
    .faq-sidebar {
        position: static;
        order: -1;
    }

    .job-hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "visual"
            "highlights";
        gap: 24px;
    }

    .job-hero-visual {
        justify-self: stretch;
        width: 100%;
    }

    .job-hero-highlights {
        grid-template-columns: 1fr;
    }

    .job-responsibilities-layout {
        grid-template-columns: 1fr;
    }

    .job-responsibilities-aside-card {
        position: static;
    }

    .job-responsibilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-overview-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-detail-grid,
    .job-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-requirements-columns {
        grid-template-columns: 1fr;
    }

    .job-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-stats,
    .career-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-role {
        grid-template-columns: auto 1fr;
    }

    .career-role-side {
        grid-column: 1 / -1;
        grid-template-columns: 1fr auto;
        align-items: center;
        justify-items: stretch;
        width: 100%;
    }

    .career-role-type {
        justify-self: start;
    }

    .career-apply-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .career-apply-actions {
        width: 100%;
    }

    .career-apply-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .job-apply-panel {
        grid-template-columns: 1fr;
    }

    .job-apply-panel-main {
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.1);
        padding: 26px 20px 24px;
    }

    .job-apply-panel-card {
        padding: 24px 20px 26px;
    }

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .policy-sidebar {
        position: static;
        order: -1;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-body {
        border-left: none;
        border-top: 1px solid rgba(178, 0, 0, 0.1);
        padding: 24px 20px 22px;
    }

    .blog-featured-image,
    .blog-featured-image img {
        min-height: 240px;
    }

    .blog-featured-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-featured-actions {
        width: 100%;
    }

    .blog-featured-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .blog-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .rts-modal-body {
        padding: 24px 20px 22px;
    }

    .blog-newsletter-actions {
        width: 100%;
    }

    .blog-newsletter-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .office-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-panel {
        padding: calc(var(--section-panel-padding) * 0.85) 24px 24px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recruiters-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .training-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {

    .top-bar-email,
    .sep-after-phone {
        display: none;
    }
}

@media (max-width: 992px) {
    .top-bar-right {
        border-left: none;
        padding-left: 0;
    }

    .services-home-cta-content {
        padding-right: 0;
    }

    .services-home-cta-sidebar {
        position: static;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 28px;
    }

    .services-home-cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --topbar-height: 48px;
        --header-height: 80px;
        --logo-height: 52px;
        --logo-height-scrolled: 46px;
    }

    .top-bar .container,
    .header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-bar-text strong {
        display: none;
    }

    .top-bar-phone,
    .sep-after-hours {
        display: none;
    }

    .top-bar-right {
        gap: 8px;
    }

    .top-bar-link {
        height: 28px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .top-bar-link-accent {
        padding: 0 14px;
    }

    .hero-slide-content {
        min-height: calc(100vh - var(--site-header-offset));
        padding: 40px 16px 80px;
    }

    .hero-slide-content .hero-text h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    :root {
        --sticky-cta-height: 88px;
        --floating-btn-gap: 16px;
    }

    .sticky-cta-inner {
        font-size: var(--fs-sm);
        gap: 8px;
        padding: 10px 16px;
    }

    .sticky-cta-text {
        width: 100%;
        text-align: center;
    }

    .cookie-offcanvas-panel {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-accept-btn {
        width: 100%;
    }

    .floating-buttons {
        right: 16px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .blog-grid,
    .portfolio-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .training-wrapper,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .about-features,
    .training-images {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .services-grid-6,
    .gallery-grid,
    .team-grid,
    .why-grid,
    .stats-grid,
    .about-core-grid,
    .why-choose-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-core-panel,
    .why-choose-panel,
    .process-panel,
    .faq-panel,
    .team-panel,
    .gallery-panel,
    .page-panel {
        padding: 28px 20px 24px;
    }

    .team-panel-footer,
    .gallery-panel-footer,
    .page-panel-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-panel-btns,
    .gallery-panel-btns,
    .page-panel-btns {
        width: 100%;
    }

    .team-panel-btns .btn,
    .gallery-panel-btns .btn,
    .page-panel-btns .btn {
        flex: 1;
        justify-content: center;
    }

    .gallery-panel-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-panel-btns {
        width: 100%;
    }

    .gallery-panel-btns .btn {
        flex: 1;
        justify-content: center;
    }

    .office-facts {
        grid-template-columns: 1fr;
    }

    .office-grid .about-image-main,
    .process-collab-grid .about-image-main {
        min-height: 260px;
    }

    .services-home-cta {
        margin-top: 24px;
    }

    .services-home-cta-inner {
        padding: 28px 20px;
    }

    .services-home-cta-content {
        padding-right: 0;
        text-align: center;
    }

    .services-home-cta-sidebar {
        position: static;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 28px;
    }

    .services-home-cta-content .services-home-btns {
        justify-content: center;
    }

    .services-home-cta-intro {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-home-cta-process {
        flex-wrap: wrap;
        gap: 12px;
    }

    .services-home-cta-process-step {
        flex: 1 1 calc(50% - 6px);
        padding-right: 0;
    }

    .services-home-cta-process-step:not(:last-child)::after {
        display: none;
    }

    .services-home-cta-features {
        grid-template-columns: 1fr;
    }

    .services-home-cta-tech {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-home-cta-stats {
        gap: 8px;
    }

    .services-home-cta-stat {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 10px 12px;
    }

    .services-home-cta-stat strong {
        font-size: 1.15rem;
    }

    .services-home-cta-feature {
        text-align: left;
    }

    .services-home-cta-feature:hover {
        transform: none;
    }

    .services-home-cta-trust {
        justify-content: center;
    }

    section:not(.hero-slider):not(.page-banner):not(.cta):not(.section-full):not(.section-contained) {
        padding-bottom: var(--section-between-sm);
    }

    .hero-slider+section {
        padding-top: var(--section-between-sm);
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-action {
        margin-top: var(--section-header-mb);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .about {
        padding-top: var(--section-between-sm);
        padding-bottom: var(--section-between-sm);
    }

    .about.section-full {
        padding-top: var(--section-between-sm);
    }

    .products-section.section-full {
        padding-top: var(--section-between-sm);
    }

    .training-section.section-contained {
        padding-top: var(--section-between-sm);
    }

    .clients-section.section-contained {
        padding-top: var(--section-between-sm);
    }

    .cta-home.section-full {
        padding-top: 24px;
    }

    .growth-section.section-full {
        padding-top: var(--section-between-sm);
    }

    .callback-section.section-full {
        padding-top: var(--section-between-sm);
    }

    .about-grid {
        gap: 32px;
    }

    .about-image-wrap {
        margin: 0 10px 10px 0;
    }

    .about-image-accent {
        transform: translate(10px, 10px);
    }

    .about-image-overlay {
        padding: 12px;
        gap: 6px;
    }

    .about-meta-chip {
        padding: 6px 10px;
    }

    .about-meta-chip strong {
        font-size: 0.95rem;
    }

    .about-meta-chip-wide {
        width: 100%;
        margin-left: 0;
    }

    .about-content {
        text-align: center;
    }

    .about-highlights {
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-btns {
        justify-content: center;
    }

    .industries-panel {
        padding: 28px 18px 24px;
        border-radius: 16px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industries-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .industries-btns .btn {
        width: 100%;
    }
}

/* ============================================================
   Website Builder - Landing Modal & Builder Page
   ============================================================ */

body.wb-modal-open {
    overflow: hidden;
}

/* Landing Modal */
.wb-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wb-modal.is-open {
    display: flex;
}

.wb-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wb-modal.is-visible .wb-modal-backdrop {
    opacity: 1;
}

.wb-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wb-modal-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light), var(--red));
    z-index: 11;
    border-radius: 20px 20px 0 0;
}

.wb-modal.is-visible .wb-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wb-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 12;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wb-modal-close svg {
    width: 18px;
    height: 18px;
}

.wb-modal-close:hover {
    background: var(--red);
    color: var(--white);
    transform: rotate(90deg);
}

.wb-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    max-height: calc(100vh - 40px);
    align-items: stretch;
}

.wb-modal-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 20px 0 0 20px;
}

.wb-modal-visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #9a0000 0%, #4a0808 22%, #120404 48%, #000000 100%);
}

.wb-modal-visual-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 90% 60% at 50% 90%, rgba(178, 0, 0, 0.5) 0%, transparent 55%);
    pointer-events: none;
}

.wb-modal-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}

.wb-modal-visual-accent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--red-dark), var(--red-light), var(--red-dark));
    z-index: 2;
}

.wb-modal-visual-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
    padding: 36px 28px 24px;
}

.wb-modal-visual-copy {
    flex-shrink: 0;
    padding-bottom: 8px;
    color: var(--white);
}

.wb-modal-visual-stage {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 260px;
    margin: 12px -8px 0;
    padding-bottom: 4px;
}

.wb-modal-stage-ring {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 45%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(178, 0, 0, 0.55) 0%, rgba(178, 0, 0, 0.15) 45%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    animation: wbHeroGlow 3.5s ease-in-out infinite;
}

.wb-modal-brand {
    flex-shrink: 0;
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
}

.wb-modal-brand strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.wb-modal-visual-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.wb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: wbOrbFloat 8s ease-in-out infinite;
}

.wb-orb-1 {
    width: 200px;
    height: 200px;
    background: rgba(178, 0, 0, 0.35);
    top: -60px;
    right: -40px;
}

.wb-orb-2 {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    bottom: 10%;
    left: -40px;
    animation-delay: -3s;
}

@keyframes wbOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(12px, -16px) scale(1.08);
    }
}

.wb-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.wb-modal-badge svg {
    width: 14px;
    height: 14px;
    color: #ffd700;
}

.wb-modal-visual h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.8vw, 1.95rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.wb-modal-visual-copy>p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 320px;
}

.wb-modal-stats {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.wb-modal-stats li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.wb-modal-stats li:hover {
    border-color: rgba(230, 57, 57, 0.4);
    background: rgba(178, 0, 0, 0.15);
    transform: translateY(-2px);
}

.wb-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(178, 0, 0, 0.2);
    color: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.wb-stat-icon svg {
    width: 14px;
    height: 14px;
}

.wb-modal-stats li strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.wb-modal-stats li span {
    font-family: var(--font-accent);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.wb-modal-visual h2 em {
    color: var(--red-light);
    font-style: italic;
}

.wb-modal-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    animation: wbFadeUp 0.6s ease 0.38s both;
}

.wb-modal-chips li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 5px 10px;
    border-radius: 999px;
}

.wb-modal-chips li svg {
    width: 12px;
    height: 12px;
    color: var(--red-light);
}

.wb-modal-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    animation: wbFadeUp 0.6s ease 0.45s both;
}

.wb-modal-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.wb-perk-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-perk-icon svg {
    width: 12px;
    height: 12px;
}

.wb-modal-mockup {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    animation: wbFadeUp 0.6s ease 0.55s both;
}

/* Modal left panel - CSS graphic scene */
.wb-graphic-scene {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 360px;
    height: 260px;
    margin: 0 auto;
}

.wb-graphic-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.wb-graphic-device {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    z-index: 1;
    animation: wbHeroFloat 5s ease-in-out infinite;
}

.wb-graphic-browser {
    position: relative;
    width: 100%;
    border-radius: 10px 10px 2px 2px;
    background: linear-gradient(145deg, #333 0%, #1a1a1a 100%);
    padding: 7px 7px 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.wb-graphic-laptop-base {
    height: 8px;
    margin: 0 8%;
    background: linear-gradient(180deg, #3a3a3a, #222);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wb-graphic-laptop-base::after {
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    margin: 0 auto;
    background: #444;
    border-radius: 0 0 3px 3px;
}

.wb-graphic-browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px 10px;
}

.wb-graphic-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wb-graphic-browser-bar span:nth-child(1) {
    background: #ff5f57;
}

.wb-graphic-browser-bar span:nth-child(2) {
    background: #febc2e;
}

.wb-graphic-browser-bar span:nth-child(3) {
    background: #28c840;
}

.wb-graphic-url {
    flex: 1;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-left: 6px;
}

.wb-graphic-browser-body {
    display: flex;
    gap: 0;
    background: #f8f8f8;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    min-height: 118px;
}

.wb-graphic-browser-nav {
    width: 24%;
    background: linear-gradient(180deg, #1a1a1a, #2a0808);
    flex-shrink: 0;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.wb-graphic-browser-nav i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-style: normal;
}

.wb-graphic-browser-nav i.is-active {
    background: var(--red);
    box-shadow: 0 0 8px rgba(178, 0, 0, 0.6);
}

.wb-graphic-browser-main {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wb-graphic-browser-hero {
    position: relative;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    overflow: hidden;
    animation: wbShimmer 3s ease infinite;
}

.wb-graphic-hero-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    animation: wbHeroShine 2.5s ease infinite;
}

@keyframes wbHeroShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.wb-graphic-browser-row {
    display: flex;
    gap: 5px;
}

.wb-graphic-browser-row span {
    flex: 1;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.05);
    min-height: 24px;
}

.wb-graphic-browser-line {
    height: 5px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    width: 85%;
}

.wb-graphic-browser-line-short {
    width: 55%;
}

.wb-graphic-browser-row span:first-child {
    background: rgba(178, 0, 0, 0.12);
    border: 1px solid rgba(178, 0, 0, 0.2);
}

.wb-graphic-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.wb-graphic-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(178, 0, 0, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-graphic-card-icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.wb-graphic-card-icon svg {
    width: 18px;
    height: 18px;
}

.wb-graphic-card-label {
    font-family: var(--font-accent);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-700);
}

.wb-graphic-card-arrow {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(178, 0, 0, 0.4);
}

.wb-graphic-card-upload {
    top: 8%;
    left: 2%;
    animation: wbCardFloat 4s ease-in-out infinite;
}

.wb-graphic-card-template {
    top: 6%;
    right: 0;
    animation: wbCardFloat 4s ease-in-out infinite -1.3s;
}

.wb-graphic-card-launch {
    top: 38%;
    right: 8%;
    padding: 9px 11px;
    animation: wbCardFloat 4s ease-in-out infinite -2.6s;
}

.wb-graphic-orbit {
    position: absolute;
    border: 1px dashed rgba(178, 0, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.wb-graphic-orbit-1 {
    width: 220px;
    height: 220px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: wbOrbitSpin 25s linear infinite;
}

.wb-graphic-pulse {
    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red-light);
    box-shadow: 0 0 0 0 rgba(230, 57, 57, 0.5);
    animation: wbGraphicPulse 2s ease-out infinite;
    z-index: 2;
}

@keyframes wbCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes wbOrbitSpin {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes wbGraphicPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 57, 0.45);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(230, 57, 57, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 57, 0);
    }
}

@keyframes wbHeroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes wbHeroGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.06);
    }
}

.wb-modal-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
    padding: 10px 14px 18px;
    background: var(--gray-100);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.wb-modal-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.wb-modal-step-item.is-active,
.wb-modal-step-item.is-done {
    opacity: 1;
}

.wb-modal-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background 0.3s, transform 0.3s, width 0.3s, box-shadow 0.3s;
}

.wb-modal-step-item.is-active .wb-modal-step-dot {
    width: 32px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 2px 12px rgba(178, 0, 0, 0.35);
}

.wb-modal-step-item.is-done .wb-modal-step-dot {
    background: var(--black);
}

.wb-modal-step-name {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    white-space: nowrap;
}

.wb-modal-step-item.is-active .wb-modal-step-name {
    color: var(--red);
}

.wb-modal-step-line {
    width: 48px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 12px;
    margin-bottom: 18px;
    border-radius: 999px;
}

.wb-modal-panel {
    display: none;
    animation: wbPanelIn 0.35s ease;
}

.wb-modal-panel.is-active {
    display: block;
}

.wb-req {
    color: var(--red);
}

.wb-form-group input.is-invalid {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(178, 0, 0, 0.12);
}

.wb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.wb-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--gray-500);
    pointer-events: none;
    transition: color 0.2s;
    z-index: 1;
}

.wb-input-icon svg {
    width: 18px;
    height: 18px;
}

.wb-form-group-icon .wb-input-wrap input {
    padding-left: 42px;
}

.wb-form-group-icon .wb-input-wrap input:focus+.wb-input-icon,
.wb-form-group-icon .wb-input-wrap:focus-within .wb-input-icon {
    color: var(--red);
}

.wb-form-group-icon .wb-input-wrap input.is-invalid {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(178, 0, 0, 0.1);
}

.wb-modal-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.wb-modal-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-500);
}

.wb-modal-trust span svg {
    width: 14px;
    height: 14px;
    color: var(--red);
    flex-shrink: 0;
}

.wb-how-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.wb-how-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 1px solid var(--gray-200);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.wb-how-step:hover {
    border-color: rgba(178, 0, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 0, 0, 0.08);
}

.wb-how-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-how-icon svg {
    width: 17px;
    height: 17px;
}

.wb-how-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-how-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wb-how-text strong {
    font-size: 0.85rem;
    color: var(--black);
}

.wb-how-text span {
    font-size: 0.76rem;
    color: var(--gray-500);
    line-height: 1.45;
}

.wb-how-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
}

.wb-how-flow span {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    padding: 5px 10px;
    border-radius: 6px;
}

.wb-how-flow i {
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    border-radius: 999px;
    font-style: normal;
}

.wb-how-visual {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: linear-gradient(135deg, #fef8f8, #fff);
}

.wb-how-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.wb-how-visual.is-fallback img {
    display: none;
}

.wb-how-visual-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
}

.wb-how-visual-fallback span:nth-child(odd) {
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    padding: 6px 10px;
    border-radius: 6px;
}

.wb-how-visual.is-fallback .wb-how-visual-fallback {
    display: flex;
}

.wb-modal-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    border: none;
    background: none;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.2s;
}

.wb-modal-back-btn svg {
    width: 14px;
    height: 14px;
}

.wb-modal-back-btn:hover {
    color: var(--red);
}

.wb-mockup-bar {
    display: flex;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
}

.wb-mockup-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.wb-mockup-bar span:first-child {
    background: #ff5f57;
}

.wb-mockup-bar span:nth-child(2) {
    background: #febc2e;
}

.wb-mockup-bar span:nth-child(3) {
    background: #28c840;
}

.wb-mockup-body {
    padding: 12px;
}

.wb-mockup-hero {
    height: 48px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    margin-bottom: 10px;
    animation: wbShimmer 2.5s ease infinite;
}

.wb-mockup-cards {
    display: flex;
    gap: 8px;
}

.wb-mockup-cards span {
    flex: 1;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
}

@keyframes wbFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wbShimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.wb-modal-form-wrap {
    padding: 36px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.wb-modal-form {
    width: 100%;
}

.wb-form-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 8px;
}

.wb-modal-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.wb-modal-form h3 em {
    color: var(--red);
    font-style: italic;
}

.wb-form-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 22px;
    line-height: 1.5;
}

.wb-form-group {
    margin-bottom: 14px;
}

.wb-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
}

.wb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wb-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.wb-form-group input:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(178, 0, 0, 0.1);
}

.wb-form-group input::placeholder {
    color: #aaa;
}

.wb-modal-submit {
    width: 100%;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.82rem;
    box-shadow: 0 6px 20px rgba(178, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wb-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(178, 0, 0, 0.38);
}

.wb-modal-submit-glow {
    animation: wbBtnPulse 2.5s ease-in-out infinite;
}

@keyframes wbBtnPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(178, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 8px 32px rgba(178, 0, 0, 0.45);
    }
}

.wb-modal-submit svg {
    width: 18px;
    height: 18px;
}

.wb-modal-skip {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 8px;
    border: none;
    background: none;
    font-size: 0.82rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.2s;
}

.wb-modal-skip:hover {
    color: var(--red);
}

/* Floating - reopen website builder modal */
.wb-float-wrap {
    --wb-float-width: 58px;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1055;
    width: var(--wb-float-width);
    transform: translateY(-50%) translateX(120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: drop-shadow(-8px 0 24px rgba(178, 0, 0, 0.25));
}

.wb-float-wrap.is-visible {
    visibility: visible;
    pointer-events: auto;
    animation:
        wbFloatEnter 0.75s cubic-bezier(0.34, 1.45, 0.64, 1) forwards,
        wbFloatWiggle 7s ease-in-out 0.85s infinite;
}

.wb-float-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.22) 0%, rgba(178, 0, 0, 0.35) 35%, transparent 70%);
    pointer-events: none;
    animation: wbFloatGlowPulse 2.8s ease-in-out infinite;
}

.wb-float-badge {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 9px 16px 9px 14px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.35px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow:
        0 8px 28px rgba(178, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(18px) scale(0.85);
    animation: wbFloatBadgePop 4.5s ease-in-out infinite;
}

.wb-float-badge-star {
    color: #ffd700;
    font-size: 0.85rem;
    animation: wbFloatStarSpin 3s linear infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.wb-float-badge-text {
    background: linear-gradient(90deg, #fff 0%, #ffd700 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wbFloatTextShimmer 2.5s linear infinite;
}

.wb-float-badge::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent #2a1010;
    filter: drop-shadow(1px 0 0 rgba(255, 215, 0, 0.25));
}

.wb-float-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    background: #ffd700;
    box-shadow: 0 0 8px #ffd700, 0 0 14px rgba(255, 215, 0, 0.6);
    animation: wbFloatSpark 2.4s ease-in-out infinite;
}

.wb-float-spark-1 {
    left: -10px;
    top: 18%;
    animation-delay: 0s;
}

.wb-float-spark-2 {
    left: -16px;
    top: 52%;
    animation-delay: 0.6s;
    width: 4px;
    height: 4px;
}

.wb-float-spark-3 {
    left: -8px;
    top: 78%;
    animation-delay: 1.2s;
}

.wb-float-spark-4 {
    left: -20px;
    top: 35%;
    animation-delay: 1.8s;
    width: 5px;
    height: 5px;
    background: var(--red-light);
    box-shadow: 0 0 8px var(--red-light);
}

.wb-float-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--wb-float-width);
    height: var(--wb-float-width);
    margin: calc(var(--wb-float-width) / -2) 0 0 calc(var(--wb-float-width) / -2);
    border-radius: 16px 0 0 16px;
    pointer-events: none;
    animation: wbFloatOrbitRing 2.8s ease-out infinite;
}

.wb-float-ring-1 {
    border: 2px solid rgba(255, 215, 0, 0.55);
}

.wb-float-ring-2 {
    border: 2px solid rgba(178, 0, 0, 0.5);
    animation-delay: 0.9s;
}

.wb-float-ring-3 {
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation-delay: 1.8s;
}

.wb-float-trigger {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: var(--wb-float-width);
    padding: 16px 8px 14px;
    border: none;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(165deg, #1c0808 0%, #120404 45%, #0a0a0a 100%);
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        -8px 0 32px rgba(178, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation:
        wbFloatBtnGlow 2.2s ease-in-out infinite,
        wbFloatBob 3s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.34, 1.45, 0.64, 1), box-shadow 0.3s ease;
}

.wb-float-border {
    position: absolute;
    inset: 0;
    border-radius: 16px 0 0 16px;
    padding: 2px;
    background: linear-gradient(180deg,
            #ffd700 0%,
            var(--red-light) 25%,
            var(--red) 50%,
            var(--red-dark) 75%,
            #ffd700 100%);
    background-size: 100% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: wbFloatBorderFlow 3s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.wb-float-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ffd700, var(--red-light), var(--red), #ffd700);
    background-size: 100% 200%;
    animation: wbFloatBorderFlow 2s linear infinite;
    z-index: 2;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.wb-float-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg,
            transparent 30%,
            rgba(255, 255, 255, 0.08) 42%,
            rgba(255, 215, 0, 0.18) 50%,
            rgba(255, 255, 255, 0.08) 58%,
            transparent 70%);
    transform: translateX(-130%);
    animation: wbFloatShine 2.8s ease-in-out infinite;
    pointer-events: none;
}

.wb-float-tag {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #1a0808;
    background: linear-gradient(135deg, #ffe566 0%, #ffd700 45%, #ffb800 100%);
    padding: 3px 8px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.45);
    animation: wbFloatTagBounce 2s ease-in-out infinite;
}

.wb-float-icon-wrap {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-float-icon-orbit {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 215, 0, 0.35);
    animation: wbFloatOrbitSpin 8s linear infinite;
}

.wb-float-icon-orbit::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 8px #ffd700;
}

.wb-float-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(178, 0, 0, 0.9) 0%, rgba(138, 0, 0, 0.95) 100%);
    box-shadow:
        0 4px 16px rgba(178, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: wbFloatIconPulse 1.8s ease-in-out infinite;
}

.wb-float-trigger-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
    animation: wbFloatIconFloat 2.5s ease-in-out infinite;
}

.wb-float-trigger-label {
    position: relative;
    z-index: 2;
    font-family: var(--font-accent);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    max-height: 130px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 215, 0, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wbFloatLabelGlow 2.5s ease-in-out infinite;
}

.wb-float-wrap:hover,
.wb-float-wrap:focus-within {
    animation-play-state: paused, paused;
    filter: drop-shadow(-12px 0 32px rgba(178, 0, 0, 0.45));
}

.wb-float-wrap:hover .wb-float-glow,
.wb-float-wrap:focus-within .wb-float-glow {
    animation: none;
    opacity: 1;
    transform: scale(1.15);
    transition: transform 0.35s ease;
}

.wb-float-wrap:hover .wb-float-badge,
.wb-float-wrap:focus-within .wb-float-badge {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1.05);
    animation: none;
}

.wb-float-wrap:hover .wb-float-ring,
.wb-float-wrap:focus-within .wb-float-ring,
.wb-float-wrap:hover .wb-float-spark,
.wb-float-wrap:focus-within .wb-float-spark {
    opacity: 0;
    animation: none;
}

.wb-float-wrap:hover .wb-float-trigger,
.wb-float-wrap:focus-within .wb-float-trigger {
    transform: scale(1.08) translateX(-4px);
    box-shadow:
        -14px 0 40px rgba(178, 0, 0, 0.55),
        0 0 30px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: none;
}

.wb-float-wrap:hover .wb-float-shine,
.wb-float-wrap:focus-within .wb-float-shine {
    animation: none;
    transform: translateX(130%);
    transition: transform 0.6s ease;
}

.wb-float-wrap:hover .wb-float-trigger-icon,
.wb-float-wrap:focus-within .wb-float-trigger-icon {
    animation: none;
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(178, 0, 0, 0.65), 0 0 16px rgba(255, 215, 0, 0.3);
}

.wb-float-wrap:hover .wb-float-trigger-icon svg,
.wb-float-wrap:focus-within .wb-float-trigger-icon svg {
    animation: none;
}

.wb-float-wrap:hover .wb-float-icon-orbit,
.wb-float-wrap:focus-within .wb-float-icon-orbit {
    animation-duration: 2s;
    border-color: rgba(255, 215, 0, 0.6);
}

@keyframes wbFloatEnter {
    0% {
        transform: translateY(-50%) translateX(120%);
        opacity: 0;
    }

    65% {
        transform: translateY(-50%) translateX(-10px);
        opacity: 1;
    }

    85% {
        transform: translateY(-50%) translateX(4px);
    }

    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

@keyframes wbFloatWiggle {

    0%,
    90%,
    100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }

    92% {
        transform: translateY(-50%) translateX(0) rotate(-5deg);
    }

    94% {
        transform: translateY(-50%) translateX(0) rotate(5deg);
    }

    96% {
        transform: translateY(-50%) translateX(0) rotate(-3deg);
    }

    98% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
}

.wb-float-wrap:not(.is-visible) {
    animation: none;
    transform: translateY(-50%) translateX(120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes wbFloatGlowPulse {

    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }
}

@keyframes wbFloatBadgePop {

    0%,
    55%,
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(18px) scale(0.85);
    }

    10%,
    40% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

@keyframes wbFloatStarSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes wbFloatTextShimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes wbFloatSpark {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }

    50% {
        opacity: 1;
        transform: scale(1) translateY(-6px);
    }
}

@keyframes wbFloatOrbitRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@keyframes wbFloatBtnGlow {

    0%,
    100% {
        box-shadow: -8px 0 32px rgba(178, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    50% {
        box-shadow: -12px 0 42px rgba(178, 0, 0, 0.6), 0 0 24px rgba(255, 215, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes wbFloatBorderFlow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 300%;
    }
}

@keyframes wbFloatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes wbFloatShine {

    0%,
    68%,
    100% {
        transform: translateX(-130%);
    }

    32% {
        transform: translateX(130%);
    }
}

@keyframes wbFloatTagBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes wbFloatOrbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes wbFloatIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(178, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 22px rgba(178, 0, 0, 0.65), 0 0 14px rgba(255, 215, 0, 0.25);
    }
}

@keyframes wbFloatIconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(8deg);
    }
}

@keyframes wbFloatLabelGlow {

    0%,
    100% {
        filter: brightness(1);
        opacity: 0.9;
    }

    50% {
        filter: brightness(1.25);
        opacity: 1;
    }
}

body.wb-modal-open .wb-float-wrap {
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {

    .wb-float-wrap,
    .wb-float-glow,
    .wb-float-badge,
    .wb-float-badge-star,
    .wb-float-badge-text,
    .wb-float-spark,
    .wb-float-ring,
    .wb-float-trigger,
    .wb-float-border,
    .wb-float-accent,
    .wb-float-shine,
    .wb-float-tag,
    .wb-float-icon-orbit,
    .wb-float-trigger-icon,
    .wb-float-trigger-icon svg,
    .wb-float-trigger-label {
        animation: none !important;
    }

    .wb-float-badge,
    .wb-float-spark,
    .wb-float-ring {
        display: none;
    }

    .wb-float-badge-text,
    .wb-float-trigger-label {
        -webkit-text-fill-color: var(--white);
        background: none;
    }
}

/* Builder Page */
.wb-builder-page {
    background: var(--gray-100);
}

.wb-builder-hero {
    margin-top: var(--site-header-offset);
    padding: 48px 0 32px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0808 60%, var(--red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.wb-builder-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red-light);
    margin-bottom: 10px;
}

.wb-builder-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.wb-builder-hero h1 em {
    color: var(--red-light);
    font-style: italic;
}

.wb-builder-hero p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.wb-builder-section {
    padding: 40px 0 60px;
}

.wb-builder-shell {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.wb-progress {
    padding: 28px 32px 0;
    background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.wb-progress-track {
    height: 4px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
}

.wb-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--red-dark), var(--red-light));
    border-radius: 999px;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wb-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding-bottom: 24px;
}

.wb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.wb-step.is-active,
.wb-step.is-done {
    opacity: 1;
}

.wb-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--gray-200);
    color: var(--gray-500);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.wb-step.is-active .wb-step-num {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(178, 0, 0, 0.35);
}

.wb-step.is-done .wb-step-num {
    background: var(--black);
    color: var(--white);
}

.wb-step-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
}

.wb-step.is-active .wb-step-label {
    color: var(--red);
}

.wb-builder-form {
    padding: 32px;
}

.wb-panel {
    display: none;
    animation: wbPanelIn 0.4s ease;
}

.wb-panel.is-active {
    display: block;
}

@keyframes wbPanelIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wb-panel-head {
    margin-bottom: 28px;
}

.wb-panel-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.wb-panel-head h2 em {
    color: var(--red);
    font-style: italic;
}

.wb-panel-head p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.wb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.wb-form-group-full {
    grid-column: 1 / -1;
}

.wb-builder-form .wb-form-group label span {
    color: var(--red);
}

.wb-builder-form .wb-form-group input,
.wb-builder-form .wb-form-group select,
.wb-builder-form .wb-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wb-builder-form .wb-form-group input:focus,
.wb-builder-form .wb-form-group select:focus,
.wb-builder-form .wb-form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(178, 0, 0, 0.1);
}

.wb-builder-form .wb-form-group input.is-invalid,
.wb-builder-form .wb-form-group textarea.is-invalid,
.wb-templates-grid.is-invalid {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(178, 0, 0, 0.12);
}

.wb-templates-grid.is-invalid {
    border: 2px dashed var(--red);
    border-radius: 12px;
    padding: 12px;
}

.wb-upload-zone {
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.wb-upload-zone:hover,
.wb-upload-zone.is-dragover {
    border-color: var(--red);
    background: rgba(178, 0, 0, 0.03);
}

.wb-upload-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.wb-upload-icon svg {
    width: 26px;
    height: 26px;
}

.wb-upload-placeholder strong {
    display: block;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 4px;
}

.wb-upload-placeholder span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.wb-upload-preview {
    position: relative;
    display: inline-block;
}

.wb-upload-preview img {
    max-height: 120px;
    max-width: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.wb-upload-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.wb-photos-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 36px;
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 20px;
}

.wb-photos-drop:hover {
    border-color: var(--red);
    background: rgba(178, 0, 0, 0.03);
}

.wb-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.wb-photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.wb-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-photo-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
}

.wb-photos-hint {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.wb-templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wb-template-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.wb-template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.wb-template-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wb-template-card:has(input:checked) {
    border-color: var(--red);
    box-shadow: 0 8px 28px rgba(178, 0, 0, 0.15);
}

.wb-template-preview {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: #f5f5f5;
    min-height: 100px;
}

.wb-tpl-nav {
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.15);
}

.wb-tpl-hero {
    height: 36px;
    border-radius: 6px;
}

.wb-tpl-blocks {
    display: flex;
    gap: 4px;
}

.wb-tpl-blocks i {
    flex: 1;
    height: 20px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.08);
    font-style: normal;
}

.wb-tpl-business .wb-tpl-hero {
    background: linear-gradient(90deg, #1a1a1a, #b20000);
}

.wb-tpl-creative .wb-tpl-hero {
    background: linear-gradient(90deg, #0d0d0d, #6c3bff);
}

.wb-tpl-restaurant .wb-tpl-hero {
    background: linear-gradient(90deg, #2c1810, #c45c26);
}

.wb-tpl-medical .wb-tpl-hero {
    background: linear-gradient(90deg, #134e4a, #0d9488);
}

.wb-tpl-education .wb-tpl-hero {
    background: linear-gradient(90deg, #1e3a5f, #2563eb);
}

.wb-tpl-ecommerce .wb-tpl-hero {
    background: linear-gradient(90deg, #18181b, #e11d48);
}

.wb-template-info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wb-template-info strong {
    font-size: 0.88rem;
    color: var(--black);
}

.wb-template-info span {
    font-size: 0.72rem;
    color: var(--gray-500);
}

.wb-template-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s, transform 0.25s;
}

.wb-template-check svg {
    width: 14px;
    height: 14px;
}

.wb-template-card:has(input:checked) .wb-template-check {
    opacity: 1;
    transform: scale(1);
}

.wb-builder-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px 32px;
    border-top: 1px solid var(--gray-200);
    background: #fafafa;
}

.wb-btn-back {
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    padding: 12px 20px;
}

.wb-btn-back svg {
    width: 16px;
    height: 16px;
}

.wb-btn-back:hover {
    border-color: var(--black);
    color: var(--black);
}

.wb-btn-next,
.wb-btn-generate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
}

.wb-btn-next svg,
.wb-btn-generate svg {
    width: 18px;
    height: 18px;
}

/* Success Modal */
.wb-success-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wb-success-modal.is-open {
    display: flex;
}

.wb-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.wb-success-dialog {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 100%;
    padding: 40px 36px;
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    animation: wbPanelIn 0.45s ease;
}

.wb-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-success-icon svg {
    width: 32px;
    height: 32px;
}

.wb-success-dialog h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    margin-bottom: 10px;
}

.wb-success-dialog h2 em {
    color: var(--red);
    font-style: italic;
}

.wb-success-dialog>p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.wb-success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.wb-success-close {
    border: none;
    background: none;
    font-size: 0.82rem;
    color: var(--gray-500);
    cursor: pointer;
}

.wb-success-close:hover {
    color: var(--red);
}

@media (max-width: 768px) {
    .wb-modal-dialog {
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }

    .wb-modal-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .wb-modal-visual {
        border-radius: 20px 20px 0 0;
    }

    .wb-modal-visual-inner {
        padding: 28px 24px 20px;
    }

    .wb-modal-visual-stage {
        min-height: 180px;
        margin: 4px -8px 0;
    }

    .wb-graphic-scene {
        max-width: 300px;
        height: 200px;
    }

    .wb-graphic-card-upload {
        left: -4px;
        padding: 8px 10px;
    }

    .wb-graphic-card-template {
        right: -8px;
    }

    .wb-graphic-card-launch {
        display: none;
    }

    .wb-graphic-lines {
        opacity: 0.6;
    }

    .wb-modal-stats li {
        padding: 8px 6px;
    }

    .wb-modal-stats li strong {
        font-size: 0.9rem;
    }

    .wb-modal-brand {
        display: none;
    }

    .wb-modal-form-wrap {
        padding: 28px 24px 32px;
        max-height: none;
    }

    .wb-how-steps {
        grid-template-columns: 1fr;
    }

    .wb-modal-step-name {
        font-size: 0.6rem;
    }

    .wb-modal-step-line {
        width: 28px;
        margin: 0 8px;
    }

    .wb-form-row {
        grid-template-columns: 1fr;
    }

    .wb-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .wb-templates-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wb-builder-nav {
        flex-wrap: wrap;
    }

    .wb-btn-back {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }

    .wb-btn-next,
    .wb-btn-generate {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   Responsive - consolidated desktop / tablet / mobile
   Desktop: 1200px+  |  Tablet: 769–1199px  |  Mobile: ≤768px
   ============================================================ */

@media (max-width: 1199px) {
    :root {
        --section-between: 44px;
        --section-panel-padding: 32px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-banner {
        padding: 50px 0 50px;
    }

    .hero-slide-overlay {
        background: linear-gradient(105deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.72) 55%, rgba(138, 0, 0, 0.4) 100%);
    }

    .hero-slide-content {
        padding: 48px 20px;
    }

    .clients-logo-wall {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-detail {
        gap: 32px;
    }

    .contact-grid {
        gap: 32px;
    }

    .wb-modal-dialog {
        max-width: min(94vw, 920px);
    }

    .wb-modal-grid {
        min-height: 520px;
    }

    .wb-graphic-scene {
        max-width: 260px;
        height: 210px;
    }

    .wb-builder-hero h1 {
        font-size: clamp(1.75rem, 4vw, 2.4rem);
    }
}

@media (max-width: 992px) {
    .wb-modal-dialog {
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .wb-modal-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }

    .wb-modal-visual {
        border-radius: 20px 20px 0 0;
    }

    .wb-modal-form-wrap {
        max-height: none;
    }

    .clients-logo-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

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

    .page-banner {
        padding: 50px 0 50px;
    }

    .page-banner h1 {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .page-banner p {
        font-size: var(--fs-sm);
    }

    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.78) 45%, rgba(138, 0, 0, 0.45) 100%);
    }

    .hero-slide-content .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-dots {
        bottom: 20px;
    }

    .footer-grid-5 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-grid {
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .section-title {
        font-size: clamp(1.45rem, 5.5vw, 2rem);
    }

    .callback-section.section-full .callback-panel {
        padding-left: 0;
        padding-right: 0;
    }

    .cta-panel {
        border-radius: 14px;
    }

    .portfolio-grid-home,
    .products-grid,
    .testimonials-grid {
        max-width: none;
    }

    .wb-modal {
        padding: 12px;
        align-items: flex-start;
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .wb-modal-dialog {
        max-height: calc(100dvh - 24px);
        border-radius: 16px;
    }

    .wb-templates-grid {
        grid-template-columns: 1fr;
    }

    .wb-builder-page {
        padding-bottom: 24px;
    }

    .wb-builder-hero {
        padding: calc(var(--site-header-offset) + 32px) 0 24px;
    }

    .wb-builder-shell {
        margin: 0;
        border-radius: 14px;
    }

    .wb-progress {
        padding: 20px 16px 0;
    }

    .wb-builder-form {
        padding: 24px 16px;
    }

    .wb-photos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-question {
        padding: 16px 18px;
        font-size: var(--fs-base);
    }

    .faq-question-main {
        gap: 6px;
    }

    .breadcrumb-section {
        margin-bottom: 20px;
    }

    .breadcrumb-eyebrow {
        margin-bottom: 10px;
        letter-spacing: 0.1em;
    }

    .breadcrumb-list {
        padding: 6px 12px 6px 8px;
        border-radius: 14px;
        max-width: 100%;
    }

    .breadcrumb-link {
        padding: 3px 6px;
    }

    .breadcrumb-link--home span:not(.breadcrumb-icon) {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .breadcrumb-current {
        padding: 3px 10px;
        font-size: var(--fs-xs, 0.8125rem);
    }

    .section-full,
    .section-contained,
    .clients-split,
    .growth-cta-inner,
    .callback-inner {
        min-width: 0;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .recruiters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-programs-grid-home {
        max-width: none;
    }
}

@media (max-width: 480px) {
    :root {
        --section-between-sm: 32px;
        --header-height: 72px;
        --logo-height: 48px;
    }

    .top-bar-link:not(.top-bar-link-accent) {
        display: none;
    }

    .clients-logo-wall {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .client-tile {
        min-height: 76px;
        padding: 12px 8px 10px;
    }

    .wb-modal-stats {
        flex-direction: column;
        gap: 8px;
    }

    .wb-modal-stats li {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 14px;
    }

    .wb-graphic-scene {
        height: 170px;
        max-width: 100%;
    }

    .wb-steps {
        grid-template-columns: 1fr;
    }

    .career-stats,
    .career-process-steps {
        grid-template-columns: 1fr;
    }

    .career-perks,
    .career-openings,
    .training-benefits-grid,
    .training-faq-highlights {
        grid-template-columns: 1fr;
    }

    .job-overview-facts,
    .job-responsibilities-grid,
    .job-detail-grid,
    .job-benefits-grid,
    .job-related-grid {
        grid-template-columns: 1fr;
    }

    .career-opening-actions {
        grid-template-columns: 1fr;
    }

    .career-training-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .career-training-actions {
        width: 100%;
    }

    .career-training-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .hero-slide-content .hero-text h1 {
        font-size: 1.65rem;
    }

    .floating-buttons {
        right: 12px;
    }

    .whatsapp-float-wrap {
        width: 52px;
        height: 52px;
    }

    .wb-float-wrap {
        --wb-float-width: 50px;
    }

    .wb-float-glow {
        width: 90px;
        height: 90px;
        margin: -45px 0 0 -45px;
    }

    .wb-float-trigger {
        padding: 14px 6px 12px;
        border-radius: 14px 0 0 14px;
    }

    .wb-float-border,
    .wb-float-ring {
        border-radius: 14px 0 0 14px;
    }

    .wb-float-badge {
        font-size: 0.68rem;
        padding: 7px 12px 7px 10px;
        right: calc(100% + 8px);
    }

    .wb-float-icon-wrap {
        width: 34px;
        height: 34px;
    }

    .wb-float-trigger-icon {
        width: 30px;
        height: 30px;
    }

    .wb-float-trigger-icon svg {
        width: 17px;
        height: 17px;
    }

    .wb-float-trigger-label {
        font-size: 0.58rem;
        max-height: 108px;
    }

    .wb-float-tag {
        font-size: 0.52rem;
        padding: 2px 6px;
    }
}

/* Product detail pages */
.product-intro-section,
.product-features-section,
.product-modules-section,
.product-benefits-section,
.product-process-section,
.product-demo-section {
    width: 100%;
}

.product-intro-section > .container,
.product-features-section > .container,
.product-modules-section > .container,
.product-benefits-section > .container,
.product-process-section > .container,
.product-demo-section > .container {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
}

.product-features-section > .container > .section-header,
.product-modules-section > .container > .section-header,
.product-benefits-section > .container > .section-header,
.product-process-section > .container > .section-header {
    margin-bottom: calc(var(--section-between) * 0.6);
    max-width: 100%;
}

.page-banner + .product-intro-section {
    padding-top: var(--section-between-sm);
}

.product-intro-section {
    background: var(--gray-100);
    padding-bottom: calc(var(--section-between) * 0.65);
}

.product-intro-panel {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.product-intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 2;
}

.product-intro-glow {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.product-intro-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-areas:
        "main visual"
        "highlights highlights";
    gap: 0;
    align-items: stretch;
}

.product-intro-main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 34px 34px 32px;
    border-right: 1px solid rgba(178, 0, 0, 0.1);
}

.product-intro-visual {
    grid-area: visual;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    padding: 34px 34px 32px 24px;
    background: linear-gradient(160deg, rgba(178, 0, 0, 0.02) 0%, rgba(178, 0, 0, 0.07) 100%);
}

.product-intro-highlights {
    grid-area: highlights;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(178, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.6);
}

.product-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.12;
    margin: 8px 0 14px;
    letter-spacing: -0.02em;
}

.product-intro-title em {
    font-style: normal;
    color: var(--red);
}

.product-intro-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 56ch;
}

.product-intro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.product-intro-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--red-dark);
    background: rgba(178, 0, 0, 0.08);
    border: 1px solid rgba(178, 0, 0, 0.14);
    border-radius: 999px;
}

.product-intro-trust-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--red);
}

.product-intro-points {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.product-intro-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-intro-point:hover {
    border-color: rgba(178, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.06);
    transform: translateY(-2px);
}

.product-intro-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(178, 0, 0, 0.1), rgba(178, 0, 0, 0.04));
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    flex-shrink: 0;
}

.product-intro-point-icon svg {
    width: 22px;
    height: 22px;
}

.product-intro-point-body {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.product-intro-point-num {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    letter-spacing: 0.06em;
}

.product-intro-point-text strong {
    display: block;
    font-size: var(--fs-base);
    color: var(--black);
    margin-bottom: 4px;
}

.product-intro-point-text span {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.5;
}

.product-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

.product-intro-actions .btn svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: -2px;
}

.product-intro-visual-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-height: 100%;
    height: 100%;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(178, 0, 0, 0.08);
}

.product-intro-visual-badge {
    align-self: flex-start;
    margin: 16px 16px 0;
    padding: 6px 12px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-radius: 999px;
    flex-shrink: 0;
}

.product-intro-visual-media {
    position: relative;
    flex: 1 1 auto;
    padding: 24px 28px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.product-intro-visual-media img {
    width: min(100%, 300px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

.product-intro-visual-chips {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-intro-visual-chips span {
    position: absolute;
    padding: 5px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--red-dark);
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.14);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.product-intro-visual-chips span:nth-child(1) {
    top: 12%;
    left: 6%;
}

.product-intro-visual-chips span:nth-child(2) {
    top: 8%;
    right: 8%;
}

.product-intro-visual-chips span:nth-child(3) {
    bottom: 18%;
    left: 4%;
}

.product-intro-visual-chips span:nth-child(4) {
    bottom: 12%;
    right: 6%;
}

.product-intro-visual-title {
    padding: 0 20px 14px;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    text-align: center;
    border-bottom: 1px solid rgba(178, 0, 0, 0.08);
    flex-shrink: 0;
}

.product-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(178, 0, 0, 0.1);
    margin-top: auto;
    flex-shrink: 0;
}

.product-intro-stat {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    text-align: center;
    border-right: 1px solid rgba(178, 0, 0, 0.08);
    border-bottom: 1px solid rgba(178, 0, 0, 0.08);
}

.product-intro-stat:nth-child(2n) {
    border-right: none;
}

.product-intro-stat-wide {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
}

.product-intro-stat strong {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.product-intro-stat span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

.product-intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 22px;
    border-right: 1px solid rgba(178, 0, 0, 0.08);
    transition: background 0.25s ease;
}

.product-intro-highlight:hover {
    background: rgba(178, 0, 0, 0.03);
}

.product-intro-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(178, 0, 0, 0.08);
    color: var(--red);
    flex-shrink: 0;
}

.product-intro-highlight-icon svg {
    width: 18px;
    height: 18px;
}

.product-intro-highlight:last-child {
    border-right: none;
}

.product-intro-highlight-text strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--black);
    margin-bottom: 3px;
}

.product-intro-highlight-text span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.45;
}

.product-features-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.product-features-panel {
    position: relative;
    padding: clamp(24px, 3vw, 36px);
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.product-features-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 1;
}

.product-features-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: end;
    margin-bottom: calc(var(--section-between) * 0.45);
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(178, 0, 0, 0.1);
}

.product-features-header-copy {
    margin-bottom: 0;
    text-align: left;
}

.product-features-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-features-meta-item {
    padding: 14px 12px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.product-features-meta-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.product-features-meta-item span {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-500);
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-feature-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-feature-card:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 14px 32px rgba(178, 0, 0, 0.08);
    transform: translateY(-3px);
}

.product-feature-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 14px;
    background: linear-gradient(160deg, rgba(178, 0, 0, 0.03) 0%, rgba(178, 0, 0, 0.08) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.product-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.1);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    flex-shrink: 0;
}

.product-feature-icon svg {
    width: 22px;
    height: 22px;
}

.product-feature-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-feature-card-body {
    flex: 1;
    padding: 18px 18px 20px;
}

.product-feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-feature-card p {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.product-modules-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.product-modules-panel {
    position: relative;
    padding: clamp(24px, 3vw, 36px);
    background: linear-gradient(135deg, var(--white) 0%, #fefafa 55%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.product-modules-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 1;
}

.product-modules-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: end;
    margin-bottom: calc(var(--section-between) * 0.45);
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(178, 0, 0, 0.1);
}

.product-modules-header-copy {
    margin-bottom: 0;
    max-width: 62ch;
}

.product-modules-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-modules-meta-item {
    display: grid;
    gap: 4px;
    padding: 14px 12px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(178, 0, 0, 0.04);
}

.product-modules-meta-item strong {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.product-modules-meta-item span {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.35;
}

.product-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-module-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-module-card:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 14px 32px rgba(178, 0, 0, 0.08);
    transform: translateY(-3px);
}

.product-module-card-top {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 18px 18px 16px;
    background: linear-gradient(160deg, rgba(178, 0, 0, 0.03) 0%, rgba(178, 0, 0, 0.08) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.product-module-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid rgba(178, 0, 0, 0.12);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(178, 0, 0, 0.1);
    border: 1px solid rgba(178, 0, 0, 0.12);
    color: var(--red);
    flex-shrink: 0;
}

.product-module-icon svg {
    width: 20px;
    height: 20px;
}

.product-module-head {
    min-width: 0;
}

.product-module-tag {
    display: inline-block;
    margin-bottom: 4px;
    padding: 3px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--red-dark);
    background: rgba(178, 0, 0, 0.08);
    border-radius: 999px;
}

.product-module-card h4 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.25;
}

.product-module-count {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gray-500);
    white-space: nowrap;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.product-module-list {
    list-style: none;
    margin: 0;
    padding: 16px 18px 18px;
    display: grid;
    gap: 10px;
    flex: 1;
}

.product-module-list li {
    position: relative;
    padding-left: 22px;
    font-size: var(--fs-sm);
    color: var(--gray-600);
    line-height: 1.5;
}

.product-module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(178, 0, 0, 0.1);
    border: 1px solid rgba(178, 0, 0, 0.18);
}

.product-module-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: calc(0.5em + 4px);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
}

.product-modules-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(178, 0, 0, 0.1);
    text-align: center;
}

.product-modules-foot p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

.product-modules-foot a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

.product-modules-foot a:hover {
    text-decoration: underline;
}

.product-benefits-section {
    background: var(--white);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.product-benefit-card {
    padding: 22px 18px;
    background: linear-gradient(160deg, var(--white) 0%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.12);
    border-radius: 14px;
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-benefit-card:hover {
    border-color: rgba(178, 0, 0, 0.22);
    box-shadow: 0 10px 24px rgba(178, 0, 0, 0.08);
    transform: translateY(-2px);
}

.product-benefit-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    background: rgba(178, 0, 0, 0.08);
    border-radius: 10px;
}

.product-benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.product-benefit-card p {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

.product-process-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.product-process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-demo-section {
    background: var(--gray-100);
    padding-top: var(--section-between-sm);
    padding-bottom: var(--section-between);
}

.product-demo-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 3.5vw, 42px);
    background: linear-gradient(135deg, #8f0000 0%, var(--red-dark) 28%, var(--red) 62%, #c41e1e 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 56px rgba(178, 0, 0, 0.28);
}

.product-demo-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.35));
    z-index: 2;
}

.product-demo-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.product-demo-glow-1 {
    top: -100px;
    right: -40px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 68%);
}

.product-demo-glow-2 {
    bottom: -120px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18) 0%, transparent 70%);
}

.product-demo-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 22px 22px;
    pointer-events: none;
}

.product-demo-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(24px, 3vw, 36px);
    align-items: stretch;
}

.product-demo-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-demo-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.product-demo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.8vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.product-demo-title em {
    font-style: normal;
    color: #ffe0e0;
}

.product-demo-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 54ch;
}

.product-demo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.product-demo-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.product-demo-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: auto;
}

.product-demo-perk {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-demo-perk:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.product-demo-perk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    color: var(--red);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    flex-shrink: 0;
}

.product-demo-perk-icon svg {
    width: 22px;
    height: 22px;
}

.product-demo-perk-text strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 4px;
}

.product-demo-perk-text span {
    display: block;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

.product-demo-booking {
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.product-demo-booking-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 22px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.product-demo-booking-badge {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 5px 11px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-radius: 999px;
}

.product-demo-booking-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin: 0 0 8px;
}

.product-demo-booking-desc {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0 0 16px;
}

.product-demo-booking-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    padding: 12px;
    background: linear-gradient(135deg, #fefafa 0%, #fff8f8 100%);
    border: 1px solid rgba(178, 0, 0, 0.1);
    border-radius: 14px;
}

.product-demo-booking-stat {
    display: grid;
    gap: 2px;
    text-align: center;
}

.product-demo-booking-stat strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}

.product-demo-booking-stat span {
    font-size: 0.65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-demo-booking-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.product-demo-book-btn,
.product-demo-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    font-weight: 700;
}

.product-demo-book-btn svg,
.product-demo-call-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.product-demo-book-btn {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(178, 0, 0, 0.28);
}

.product-demo-book-btn:hover {
    background: linear-gradient(135deg, #8f0000, var(--red-dark));
    color: var(--white);
    transform: translateY(-1px);
}

.product-demo-call-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
}

.product-demo-call-btn:hover {
    border-color: rgba(178, 0, 0, 0.25);
    color: var(--red-dark);
    background: #fffafa;
}

.product-demo-booking-note {
    margin: 0 0 14px;
    font-size: 0.72rem;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.45;
}

.product-demo-booking-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    text-align: center;
}

.product-demo-booking-link:hover {
    text-decoration: underline;
}

/* Education product intro theme */
.product-intro-section--education .product-intro-panel {
    background: linear-gradient(135deg, var(--white) 0%, #f8fbff 48%, #fef8f8 100%);
}

.product-intro-section--education .product-intro-visual {
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.04) 0%, rgba(178, 0, 0, 0.06) 100%);
}

.product-intro-section--education .product-intro-glow {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(178, 0, 0, 0.04) 45%, transparent 72%);
}

.product-intro-section--education .product-intro-point-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(178, 0, 0, 0.06));
    border-color: rgba(37, 99, 235, 0.16);
    color: #1d4ed8;
}

.product-intro-section--education .product-intro-visual-chips span {
    color: #1e40af;
    border-color: rgba(37, 99, 235, 0.18);
}

/* Healthcare product intro theme */
.product-intro-section--healthcare .product-intro-panel {
    background: linear-gradient(135deg, var(--white) 0%, #f0fdf9 48%, #fef8f8 100%);
}

.product-intro-section--healthcare .product-intro-visual {
    background: linear-gradient(160deg, rgba(13, 148, 136, 0.05) 0%, rgba(178, 0, 0, 0.06) 100%);
}

.product-intro-section--healthcare .product-intro-glow {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, rgba(178, 0, 0, 0.04) 45%, transparent 72%);
}

.product-intro-section--healthcare .product-intro-point-icon {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(178, 0, 0, 0.06));
    border-color: rgba(13, 148, 136, 0.18);
    color: #0f766e;
}

.product-intro-section--healthcare .product-intro-highlight-icon {
    background: rgba(13, 148, 136, 0.1);
    color: #0f766e;
}

.product-intro-section--healthcare .product-intro-visual-badge {
    background: linear-gradient(135deg, #0f766e, #0d9488);
}

.product-intro-section--healthcare .product-intro-visual-chips span {
    color: #0f766e;
    border-color: rgba(13, 148, 136, 0.2);
    background: rgba(13, 148, 136, 0.06);
}

@media (max-width: 1100px) {
    .product-intro-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "visual"
            "highlights";
    }

    .product-intro-main {
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.1);
        height: auto;
    }

    .product-intro-visual {
        height: auto;
        min-height: 0;
        padding: 24px 24px 28px;
    }

    .product-intro-visual-panel {
        min-height: 0;
        height: auto;
    }

    .product-intro-visual-media {
        flex: 0 1 auto;
    }

    .product-intro-actions {
        margin-top: 0;
        padding-top: 0;
    }

    .product-intro-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-intro-highlight:nth-child(2n) {
        border-right: none;
    }

    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-features-header {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: stretch;
    }

    .product-features-meta {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-modules-header {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: stretch;
    }

    .product-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-demo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-demo-title {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .product-demo-perks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-intro-main,
    .product-intro-visual {
        padding: 22px 18px;
    }

    .product-intro-visual-chips {
        display: none;
    }

    .product-intro-highlights {
        grid-template-columns: 1fr;
    }

    .product-intro-highlight {
        border-right: none;
        border-bottom: 1px solid rgba(178, 0, 0, 0.08);
    }

    .product-intro-highlight:last-child {
        border-bottom: none;
    }

    .product-modules-panel {
        padding: 20px 16px;
    }

    .product-module-card-top {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "num count"
            "icon head";
        gap: 10px 12px;
    }

    .product-module-num {
        grid-area: num;
    }

    .product-module-icon {
        grid-area: icon;
    }

    .product-module-head {
        grid-area: head;
    }

    .product-module-count {
        grid-area: count;
        justify-self: end;
        align-self: start;
    }

    .product-modules-meta {
        grid-template-columns: 1fr;
    }

    .product-features-meta {
        grid-template-columns: 1fr;
    }

    .product-features-grid,
    .product-modules-grid,
    .product-benefits-grid,
    .product-process-grid {
        grid-template-columns: 1fr;
    }

    .product-demo-panel {
        padding: 22px 16px;
    }

    .product-demo-booking-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 10px 8px;
    }

    .product-demo-booking-stat strong {
        font-size: 0.85rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }

    .header .container {
        max-width: 1360px;
    }
}