/* CSS Variables */
:root {
    --color-primary: #4c61ff;
    --color-primary-50: #ecf3ff;
    --color-primary-100: #dde8ff;
    --color-primary-light: #758fff;
    --color-primary-dark: #363df5;
    --color-secondary: #ff5100;
    --color-secondary-dark: #cc3802;
    --color-lime: #e5ff91;
    --color-white: #ffffff;
}
/* Button Group */
.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 16px;
}

.btn-real,
.btn-demo {
    cursor: pointer;
    border: 2px solid transparent;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Register Now Button */
.btn-real {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(255, 81, 0, 0.2);
}

.btn-real:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 81, 0, 0.3);
}

.btn-real:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 81, 0, 0.2);
}

/* Contact Us Button */
.btn-demo {
    background: transparent;
    color: var(--color-secondary);
    border: none;
    padding-left: 8px;
    padding-right: 8px;
}

.btn-demo:hover{
    color: var(--color-primary);
}

.btn-real:hover {
    color: var(--color-white);
}

.btn-demo:hover .arrow-icon {
    transform: scale(0.75) translateX(4px);
}

.btn-demo:active {
    color: var(--color-secondary);
}

/* Arrow Icon */
.arrow-icon {
    width: 20px;
    height: 20px;
    transform: scale(0.75);
    transition: transform 0.3s ease;
}

/* Ripple Effect for Register Button */
.btn-real::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-real:hover::before {
    width: 300px;
    height: 300px;
}

/* Focus States for Accessibility */
.btn-real:focus,
.btn-demo:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

@media (min-width: 1664px) {
    .btn-real,
    .btn-demo {
        padding: 14px 34px;
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .btn-real,
    .btn-demo {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.careers-hero {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    min-height: 360px;
}

.ui-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.careers-hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.careers-hero__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ui-hero__start-column {
    color: var(--color-white);
    max-width: 800px;
}

.g-hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.g-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Content Sections */
.insights__wrapper {
    margin: 0 auto;
    padding: 56px 20px;
    background: #fff;
}

.insights__wrapper:nth-child(even) {
    background: var(--color-primary-50);
}

.insights__wrapper h2 {
    font-size: 1.625rem;
    color: var(--color-primary);
    font-weight: 300;
    margin-bottom: 24px;
}

.insights__wrapper h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.insights__wrapper p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.insights__wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    display: block;
}

/* Grid for Advantages/Disadvantages */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.grid > div {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.grid ul {
    list-style: none;
    padding: 0;
}

.grid ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9375rem;
}

.grid ul li:last-child {
    border-bottom: none;
}

.grid ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.grid > div:nth-child(2) ul li::before {
    content: '✗';
    color: var(--color-secondary);
}

/* FAQ Section */
#faqs {
    background: var(--color-primary-50);
}

.ava-faq-block {
    max-width: 100%;
    margin-top: 24px;
}

.faq-item {
    background: var(--color-primary);
    color: var(--color-white);
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
    clip-path: polygon(9px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}

.question-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 24px 60px 24px 32px;
    transition: background 0.3s ease;
}

.question-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question p {
    color: var(--color-white);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.question-wrapper svg {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    stroke: var(--color-lime);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
    opacity: 1;
}

.faq-item.active .question-wrapper svg {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer p {
    color: var(--color-white);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (min-width: 1024px) {
    .g-hero-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .g-hero-title {
        font-size: 2rem;
    }
    
    .insights__wrapper {
        padding: 28px 16px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .question-wrapper {
        padding: 20px 50px 20px 20px;
    }
    
    .question-wrapper svg {
        right: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}


.footer-rights{
color:#fff;
}
