/* TIBCO Style V7 - Корпоративный дизайн с профессиональной цветовой схемой */

/* CSS Variables */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c2c2c;
    --accent-color: #2E8B57; /* Sea Green - профессиональный */
    --accent-hover: #228B22; /* Forest Green */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;
    --border-color: #dee2e6;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
    --border-radius-large: 8px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, #2E8B57 0%, #20B2AA 100%); /* Sea Green to Light Sea Green */
    --gradient-secondary: linear-gradient(135deg, #4682B4 0%, #5F9EA0 100%); /* Steel Blue to Cadet Blue */
    --gradient-accent: linear-gradient(135deg, #20B2AA 0%, #48D1CC 100%); /* Light Sea Green to Medium Turquoise */
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --line-height-tight: 1.1;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.6;
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    line-height: var(--line-height-relaxed);
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 0.3rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: var(--letter-spacing-tight);
    transition: var(--transition);
    font-feature-settings: "liga" 1;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    position: relative;
    overflow: hidden;
    font-feature-settings: "kern" 1;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover {
    background: var(--light-gray);
    color: var(--accent-color);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    font-feature-settings: "kern" 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section with Professional Animated Gradient */
.hero {
    padding: 140px 0 80px;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Professional Animated Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 139, 87, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(70, 130, 180, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(32, 178, 170, 0.3) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1.5rem;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-feature-settings: "liga" 1, "kern" 1;
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-feature-settings: "liga" 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 3;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    transition: var(--transition);
    border: 2px solid var(--white);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    font-feature-settings: "kern" 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Professional Gradient Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%, 100% 50%, 50% 50%;
        background-size: 200% 200%, 200% 200%, 200% 200%;
    }
    25% {
        background-position: 100% 50%, 0% 50%, 50% 100%;
        background-size: 200% 200%, 200% 200%, 200% 200%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 50% 0%;
        background-size: 200% 200%, 200% 200%, 200% 200%;
    }
    75% {
        background-position: 0% 100%, 100% 0%, 0% 50%;
        background-size: 200% 200%, 200% 200%, 200% 200%;
    }
    100% {
        background-position: 0% 50%, 100% 50%, 50% 50%;
        background-size: 200% 200%, 200% 200%, 200% 200%;
    }
}

/* Stats Section */
.stats {
    background: var(--gradient-light);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(46, 139, 87, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    font-feature-settings: "liga" 1, "kern" 1;
    line-height: var(--line-height-tight);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    font-feature-settings: "liga" 1;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--gradient-light);
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 70%, rgba(46, 139, 87, 0.05) 0%, transparent 50%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: var(--letter-spacing-tight);
    position: relative;
    z-index: 2;
    line-height: var(--line-height-tight);
    font-feature-settings: "liga" 1, "kern" 1;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-normal);
    position: relative;
    z-index: 2;
    line-height: var(--line-height-relaxed);
    font-feature-settings: "liga" 1;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    font-feature-settings: "liga" 1, "kern" 1;
}

.card:hover h3 {
    color: var(--accent-color);
}

.card p {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1.5rem;
    font-feature-settings: "liga" 1;
    font-size: 0.9375rem;
}

.card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    position: relative;
    font-feature-settings: "kern" 1;
}

.card-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--accent-hover);
}

.card-link:hover::after {
    transform: translateX(3px);
}

/* Features Section */
.features {
    background: var(--gradient-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.feature-item h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.3125rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    font-feature-settings: "liga" 1, "kern" 1;
}

.feature-item:hover h3 {
    color: var(--accent-color);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-feature-settings: "liga" 1;
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    font-family: serif;
    transition: var(--transition);
    font-feature-settings: "liga" 1;
}

.testimonial-card:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1rem;
    padding-left: 2rem;
    font-feature-settings: "liga" 1;
    font-size: 0.9375rem;
}

.testimonial-author {
    font-weight: var(--font-weight-semibold);
    color: var(--accent-color);
    text-align: right;
    transition: var(--transition);
    font-feature-settings: "kern" 1;
    font-size: 0.875rem;
}

.testimonial-card:hover .testimonial-author {
    color: var(--accent-hover);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(46, 139, 87, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.3125rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    font-weight: var(--font-weight-semibold);
    font-feature-settings: "kern" 1;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: var(--line-height-relaxed);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.875rem;
    transition: var(--transition);
    font-feature-settings: "liga" 1;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
    font-feature-settings: "liga" 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Interactive Elements */
.interactive-element {
    transition: var(--transition);
    cursor: pointer;
}

.interactive-element:hover {
    transform: scale(1.02);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.text-uppercase {
    text-transform: uppercase;
}

.letter-spacing {
    letter-spacing: 0.5px;
} 

/* --- strict support layout --- */
.strict-support-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: flex-start;
  align-items: stretch;
}
.strict-support-layout .card {
  min-width: 320px;
  max-width: 340px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}
.btn-block {
  display: block;
  width: 100%;
  min-width: 180px;
  max-width: 100%;
  margin: 0.5rem 0 0 0;
  text-align: center;
  box-sizing: border-box;
}
.support-options-strict, .training-options-strict {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 1.2rem;
}
.training-options-strict {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}
.training-options-strict .btn-block {
  flex: 1 1 45%;
  min-width: 120px;
  max-width: 180px;
}
@media (max-width: 900px) {
  .strict-support-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  .strict-support-layout .card {
    max-width: 100%;
    min-width: 0;
  }
} 