.getting-started-hero {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(249, 168, 38, 0.1) 100%);
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.getting-started-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.getting-started-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

.process-section {
    padding: 100px 0;
    background-color: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
    position: relative;
}

.step-content {
    flex: 1;
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.step-feature i {
    color: var(--secondary);
}

.step-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.solutions-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-header {
    background: var(--primary);
    color: white;
    padding: 25px;
    text-align: center;
}

.solution-header h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.solution-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.solution-content {
    padding: 30px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li i {
    color: var(--secondary);
}

.solution-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.price-period {
    color: var(--gray);
    font-size: 0.9rem;
}

.solution-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-section {
    padding: 100px 0;
    background-color: white;
}

.pricing-comparison {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.pricing-header > div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header > div:first-child {
    text-align: left;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row > div {
    padding: 15px 20px;
    border-right: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.pricing-row > div:first-child {
    font-weight: 500;
    color: var(--dark);
}

.pricing-row > div:last-child {
    border-right: none;
}

.pricing-check {
    color: #4caf50;
    font-size: 1.2rem;
    margin: 0 auto;
}

.pricing-minus {
    color: var(--gray);
    font-size: 1.2rem;
    margin: 0 auto;
}

.pricing-amount {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 auto;
}

.resources-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(249, 168, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.resource-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.resource-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.resource-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.getting-started-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.getting-started-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.getting-started-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.cta-buttons .btn:hover {
    background-color: var(--secondary);
    color: white;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

.gs-faq-section {
    padding: 100px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(26, 35, 126, 0.03);
}

.faq-question h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    color: var(--secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

@media (max-width: 992px) {
    .getting-started-hero h1 {
        font-size: 2.8rem;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        min-width: 600px;
    }
    
    .pricing-comparison {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .getting-started-hero {
        padding: 150px 0 80px;
    }
    
    .getting-started-hero h1 {
        font-size: 2.3rem;
    }
    
    .process-steps {
        gap: 40px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .getting-started-cta h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .getting-started-hero h1 {
        font-size: 2rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .resource-card {
        padding: 25px;
    }
}

.animate-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.animate-step:nth-child(1) { animation-delay: 0.1s; }
.animate-step:nth-child(2) { animation-delay: 0.2s; }
.animate-step:nth-child(3) { animation-delay: 0.3s; }
.animate-step:nth-child(4) { animation-delay: 0.4s; }
.animate-step:nth-child(5) { animation-delay: 0.5s; }

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

.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    font-weight: normal;
}

.tooltip .tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

