:root {
    --primary-color: #ff3b3b;
    --primary-dark: #cc2f2f;
    --secondary-color: #ff5e62;
    --accent-color: #ff3b3b;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --gradient-start: #ff3b3b;
    --gradient-end: #ff5e62;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 59, 59, 0.95);
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #f3f3f3 !important;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    text-shadow: 0 4px 24px rgba(0,0,0,0.10);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    color: #fff;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-buttons {
    margin-top: 2rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.pricing-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.contact-form {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.company-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-info-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #333;
    padding: 0.5rem 0;
}

.company-info-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.input-group {
    border: none;
    background: none;
    margin-bottom: 1.5rem;
}

.modern-icon {
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--primary-color);
}

.modern-input {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-select.modern-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}

.contact-form-modern .btn-modern {
    font-size: 1.25rem;
    padding: 1.1rem 2rem;
    border-radius: 14px;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .contact-form-modern {
        padding: 1.2rem !important;
    }
    .modern-icon { font-size: 1.1rem; padding: 0.6rem 0.7rem; }
    .modern-input { font-size: 1rem; padding: 0.7rem 0.7rem; min-height: 38px; }
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--secondary-color);
    padding: 3rem 0;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: #fff !important;
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dekorativní vlna pod hero sekcí */
.hero-section::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="80" viewBox="0 0 1920 80" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0C0 0 320 80 960 80C1600 80 1920 0 1920 0V80H0V0Z" fill="%23fff"/></svg>') no-repeat bottom center/cover;
    z-index: 1;
}

/* Ostatní sekce začínají až pod vlnou */
.features-section, .pricing-section, .contact-section {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        margin: 0.5rem 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

.telegram-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(255,59,59,0.18), 0 2px 8px 0 rgba(0,0,0,0.07);
    padding: 1.2rem 3rem 1.2rem 2.2rem;
    margin: 0 auto 2.2rem auto;
    width: fit-content;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    border: none;
    position: relative;
    animation: fadeInUp 0.8s;
    letter-spacing: 0.5px;
    transition: box-shadow 0.2s;
}

.telegram-info-box:hover {
    box-shadow: 0 12px 40px 0 rgba(255,59,59,0.22), 0 4px 16px 0 rgba(0,0,0,0.10);
}

.telegram-icon {
    font-size: 2.7rem;
    color: #fff;
    background: #229ED9;
    border-radius: 50%;
    padding: 0.4rem 0.6rem;
    margin-right: 0.7rem;
    box-shadow: 0 2px 12px 0 rgba(34,158,217,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-status {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    font-size: 1.18rem;
}

.status-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2ecc40;
    margin-right: 0.3rem;
    box-shadow: 0 0 12px 3px #2ecc40;
    animation: blink 1.1s infinite alternate;
    border: 2.5px solid #fff;
}

@keyframes blink {
    0% { opacity: 1; box-shadow: 0 0 12px 3px #2ecc40; }
    100% { opacity: 0.4; box-shadow: 0 0 4px 0 #2ecc40; }
}

.telegram-members {
    margin-left: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.13);
    border-radius: 10px;
    padding: 0.4rem 1.2rem;
    font-size: 1.18rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 1px 6px 0 rgba(46,204,64,0.10);
}

.members-count {
    font-weight: 800;
    color: #2ecc40;
    font-size: 1.25rem;
    margin-right: 0.2rem;
}

@media (max-width: 600px) {
    .telegram-info-box {
        flex-direction: column;
        gap: 0.7rem;
        padding: 1rem 1.2rem;
        font-size: 1.05rem;
    }
    .telegram-members {
        margin-left: 0;
    }
    .telegram-icon {
        font-size: 2rem;
        padding: 0.3rem 0.5rem;
    }
    .status-dot {
        width: 13px;
        height: 13px;
    }
}

.footer-modern {
    background: linear-gradient(120deg, #232526 60%, #414345 100%);
    color: #fff;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.10);
    margin-top: 80px;
    font-size: 1.08rem;
}
.footer-logo {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #fff;
}
.footer-desc {
    color: #e0e0e0;
    font-size: 1.08rem;
}
.footer-contact {
    color: #ff3b3b;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 0.5rem;
    display: inline-block;
}
.footer-contact i {
    margin-right: 0.4rem;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-end;
    align-items: center;
}
.footer-social-link,
.footer-social-link i {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
.footer-social-link {
    color: #fff;
    font-size: 2rem;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-social-link:hover {
    background: #ff3b3b;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 2px 12px 0 rgba(255,59,59,0.18);
}
.footer-copyright {
    color: #bdbdbd;
    font-size: 0.98rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.7rem;
}

/* CMP Banner */
.cmp-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    background: rgba(255,255,255,0.98);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -6px 24px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
    width: 100%;
}
.cmp-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}
.cmp-text {
    color: #222;
    font-size: 0.98rem;
    order: 1;
    width: 100%;
}
.cmp-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    align-self: flex-end;
    order: 2;
    width: 100%;
}
.cmp-btn {
    border-radius: 12px;
    padding: 0.55rem 1.1rem;
    font-weight: 700;
}
.cmp-manage {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1061;
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px; height: 48px;
    display: inline-flex;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(255,59,59,0.25);
}
.cmp-manage:hover { filter: brightness(1.05); transform: translateY(-2px); }
@media (max-width: 768px) {
    .cmp-container { flex-direction: column; align-items: stretch; }
    .cmp-actions { justify-content: flex-end; }
}
@media (max-width: 768px) {
    .footer-modern {
        border-radius: 18px 18px 0 0;
        font-size: 1rem;
    }
    .footer-social {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    .footer-logo {
        font-size: 1.4rem;
    }
}

.features-section-modern {
    background: linear-gradient(120deg, #fff 60%, #f8f9fa 100%);
    position: relative;
    z-index: 2;
    padding: 0;
    overflow: hidden;
}
.features-wave-top, .features-wave-bottom {
    position: absolute;
    left: 0; right: 0;
    width: 100%;
    z-index: 3;
}
.features-wave-top { top: 0; }
.features-wave-bottom { bottom: 0; }
.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2.5rem !important;
}
.gradient-text {
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
}
.feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(255,59,59,0.10);
    margin-bottom: 1.2rem;
    margin-top: -2.2rem;
    border: 4px solid #fff;
    transition: box-shadow 0.2s;
}
.bg-red { background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%); }
.bg-blue { background: linear-gradient(90deg, #229ED9 60%, #4fc3f7 100%); }
.bg-green { background: linear-gradient(90deg, #2ecc40 60%, #43e97b 100%); }
.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.feature-desc {
    color: #444;
    font-size: 1.08rem;
    font-weight: 500;
    opacity: 0.92;
}
@media (max-width: 900px) {
    .features-title { font-size: 2rem; }
    .glass-card { min-height: 260px; }
    .feature-icon-circle { width: 54px; height: 54px; font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .features-section-modern .container { padding: 2rem 0.2rem !important; }
    .features-title { font-size: 1.3rem; }
    .glass-card { min-height: 180px; padding: 1.2rem !important; }
    .feature-icon-circle { width: 40px; height: 40px; font-size: 1.1rem; margin-top: -1.2rem; }
}

.pricing-section-modern {
    background: linear-gradient(120deg, #f8f9fa 60%, #fff 100%);
    position: relative;
    z-index: 2;
    padding: 0;
    overflow: hidden;
}
.pricing-wave-top, .pricing-wave-bottom {
    position: absolute;
    left: 0; right: 0;
    width: 100%;
    z-index: 3;
}
.pricing-wave-top { top: 0; }
.pricing-wave-bottom { bottom: 0; }
.pricing-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 3.5rem !important;
}
.glass-card-pricing {
    background: rgba(255,255,255,0.65);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(255,59,59,0.10), 0 2px 8px 0 rgba(0,0,0,0.07);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.18);
    transition: transform 0.18s, box-shadow 0.18s;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.glass-card-pricing:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px 0 rgba(255,59,59,0.16), 0 4px 16px 0 rgba(0,0,0,0.10);
}
.pricing-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(255,59,59,0.10);
    margin-bottom: 1.2rem;
    margin-top: -2.2rem;
    border: 4px solid #fff;
    transition: box-shadow 0.2s;
}
.pricing-badge {
    display: inline-block;
    background: #fff;
    color: #ff3b3b;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.2rem 1.1rem;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px 0 rgba(255,59,59,0.07);
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ff3b3b;
    margin-bottom: 0.7rem;
}
.pricing-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}
.pricing-features-modern li {
    margin-bottom: 0.7rem;
    color: #444;
    font-size: 1.08rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-features-modern i {
    color: #ff3b3b;
    margin-right: 0.5rem;
}
.featured-pricing {
    border: 2.5px solid #ff3b3b;
    box-shadow: 0 12px 48px 0 rgba(255,59,59,0.18), 0 4px 16px 0 rgba(0,0,0,0.10);
    z-index: 5;
    transform: scale(1.06);
    margin-top: -18px;
}
.badge-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: 8px;
    padding: 0.2rem 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(255,59,59,0.10);
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .pricing-title { font-size: 1.5rem; }
    .glass-card-pricing { min-height: 320px; }
    .pricing-icon-circle { width: 44px; height: 44px; font-size: 1.2rem; }
}
@media (max-width: 600px) {
    .pricing-section-modern .container { padding: 2rem 0.2rem !important; }
    .pricing-title { font-size: 1.1rem; }
    .glass-card-pricing { min-height: 180px; padding: 1.2rem !important; }
    .pricing-icon-circle { width: 32px; height: 32px; font-size: 1rem; margin-top: -1.2rem; }
    .badge-popular { top: 8px; right: 8px; font-size: 0.85rem; padding: 0.15rem 0.7rem; }
}

.btn-account {
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 0.6rem 1.4rem;
    font-size: 1.13rem;
    box-shadow: 0 2px 12px 0 rgba(255,59,59,0.10);
    transition: all 0.18s cubic-bezier(.4,2,.6,1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-account:hover {
    background: linear-gradient(90deg, #ff5e62 60%, #ff3b3b 100%);
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px 0 rgba(255,59,59,0.18);
    text-decoration: none;
}

/* Publisher a Advertiser sekce */
.publisher-section-modern,
.advertiser-section-modern {
    background: var(--light-background);
    padding: 80px 0;
}

.publisher-card,
.advertiser-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* ZVONEČEK */
.navbar .fa-bell {
    font-size: 1.8rem;
    color: #ff3b3b;
    transition: color 0.2s, transform 0.2s;
    filter: drop-shadow(0 2px 8px rgba(255,59,59,0.13));
    margin-left: 10px;
}
.navbar .fa-bell:hover {
    color: #ff5e62;
    transform: scale(1.15) rotate(-10deg);
}

/* BADGE */
.badge.bg-danger {
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px 0 rgba(255,59,59,0.13);
}

/* DROPDOWN NOTIFIKACE */
.notifications-dropdown {
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(255,59,59,0.13), 0 2px 8px 0 rgba(0,0,0,0.07);
    border: 1.5px solid rgba(255,59,59,0.10);
    background: #fff;
    padding: 0.5rem 0;
    min-width: 340px;
    max-width: 95vw;
    max-height: 350px;
    overflow-y: auto;
}
.notifications-dropdown .dropdown-item {
    border-bottom: 1px solid #f8f9fa;
    padding: 0.7rem 1.2rem;
    font-size: 1.05rem;
    color: #222;
    transition: background 0.15s;
}
.notifications-dropdown .dropdown-item:last-child {
    border-bottom: none;
}
.notifications-dropdown .dropdown-item.fw-bold {
    background: #fff6f6;
}
.notifications-dropdown .dropdown-item:hover {
    background: #ffeaea;
}

/* Animace */
.feature-card-modern,
.publisher-card,
.advertiser-card {
    animation: fadeIn 0.6s ease-out;
}

.roles-section-modern-ui {
    background: linear-gradient(120deg, #fff 60%, #f8f9fa 100%);
    min-height: 60vh;
    padding-top: 60px;
    padding-bottom: 60px;
}
.roles-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 3.5rem;
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.role-card-modern {
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(255,59,59,0.13), 0 2px 8px 0 rgba(0,0,0,0.07);
    background: rgba(255,255,255,0.98);
    border: 1.5px solid rgba(255,59,59,0.10);
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    margin-bottom: 0;
    transition: transform 0.18s, box-shadow 0.18s;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    animation: fadeInUp 0.7s;
}
.role-card-modern:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px 0 rgba(255,59,59,0.16), 0 4px 16px 0 rgba(0,0,0,0.10);
    z-index: 2;
}
.role-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    max-width: 340px;
}
.role-features-list li {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.1rem;
    color: #222;
    letter-spacing: 0.01em;
}
.role-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    color: #fff;
    font-size: 1.1rem;
    margin-right: 1rem;
    box-shadow: 0 2px 8px 0 rgba(255,59,59,0.10);
}
.btn-role {
    background: linear-gradient(90deg, #ff3b3b 60%, #ff5e62 100%);
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 1.1rem 2rem;
    font-size: 1.18rem;
    box-shadow: 0 2px 12px 0 rgba(255,59,59,0.10);
    transition: all 0.18s cubic-bezier(.4,2,.6,1);
    margin-top: 2.2rem;
}
.btn-role:hover {
    background: linear-gradient(90deg, #ff5e62 60%, #ff3b3b 100%);
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px 0 rgba(255,59,59,0.18);
    text-decoration: none;
}
@media (max-width: 900px) {
    .roles-title { font-size: 1.7rem; }
    .role-card-modern { min-height: 320px; padding: 1.5rem 1rem; }
}
@media (max-width: 600px) {
    .roles-section-modern-ui .container { padding: 2rem 0.2rem !important; }
    .roles-title { font-size: 1.1rem; }
    .role-card-modern { min-height: 180px; padding: 1.2rem !important; }
    .role-features-list li { font-size: 1rem; margin-bottom: 0.7rem; }
    .btn-role { font-size: 1rem; padding: 0.8rem 1.2rem; }
} 