:root {
    --primary-color: rgb(120, 108, 248);
    --primary-dark: rgb(23, 47, 148);
    --primary-light: rgb(107, 132, 219);
    --secondary-color: rgb(42, 46, 120);
    --text-color: rgb(16, 23, 32);
    --text-light: rgb(51, 51, 51);
    --bg-light: rgb(233, 245, 254);
    --bg-gradient-1: linear-gradient(160deg, rgb(107, 132, 219), rgb(57, 71, 117));
    --bg-gradient-2: linear-gradient(75deg, rgb(23, 47, 148), rgb(12, 25, 77));
    --border-radius: 100px;
    --border-radius-card: 20px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.top-banner {
    background: var(--bg-gradient-2);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    position: relative;
}

.banner-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.btn-close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
    margin-right: 8px;
}

.logo-text {
    color: var(--text-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    background: var(--bg-gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b9d, #c44569, #786fa6, #4834d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.btn-hero {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.partners-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.partners-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-card);
    padding: 2rem;
    text-align: center;
}

.partners-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: block;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.workflow-section {
    background-color: #f8f9fa;
}

.workflow-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-light);
}

.workflow-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.workflow-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.workflow-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 16px;
}

.feature-item i {
    margin-right: 12px;
    font-size: 18px;
}

.workflow-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.workflow-visual {
    background: var(--bg-gradient-1);
    border-radius: var(--border-radius-card);
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.visual-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-button i {
    font-size: 24px;
    margin-left: 4px;
}

.features-section {
    padding: 5rem 0;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.build-section {
    background-color: #f8f9fa;
}

.build-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.build-icon i {
    font-size: 32px;
    color: white;
}

.build-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.build-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.build-features {
    margin-bottom: 2rem;
}

.build-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 500;
}

.build-feature i {
    margin-right: 12px;
    font-size: 18px;
}

.build-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quickstart-guide {
    background: var(--bg-gradient-1);
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    color: white;
}

.quickstart-guide h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-text {
    font-size: 16px;
    line-height: 1.5;
}

.tech-stack-section {
    padding: 5rem 0;
}

.tech-logos {
    max-width: 800px;
    margin: 0 auto;
}

.tech-logo {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.tech-logo:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.testimonial-avatar i {
    font-size: 20px;
    color: var(--primary-color);
}

.testimonial-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-visual {
    margin-top: 1rem;
    text-align: center;
}

.chart-placeholder {
    width: 100px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.chart-placeholder i {
    font-size: 24px;
    color: var(--primary-color);
}

.cta-section {
    background: var(--bg-gradient-2);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background-color: white;
    color: var(--primary-dark);
    border: 2px solid white;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    justify-content: end;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.pricing-section {
    background-color: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-price .period {
    font-size: 16px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.pricing-description {
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.pricing-features .feature-item i {
    margin-right: 12px;
    font-size: 16px;
}

.faq-section {
    background-color: white;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light);
    color: var(--primary-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-hero {
    background-color: #f8f9fa;
}

.contact-form-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(120, 108, 248, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(120, 108, 248, 0.25);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-icon i {
    font-size: 32px;
    color: #28a745;
}

.contact-info-section {
    background-color: #f8f9fa;
}

.contact-info-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.legal-hero {
    background-color: #f8f9fa;
}

.legal-content {
    background-color: white;
}

.legal-document {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-document ul {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.about-content {
    background-color: white;
}

.image-placeholder {
    background: var(--bg-gradient-1);
    border-radius: var(--border-radius-card);
    padding: 3rem;
    text-align: center;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 1rem;
}

.image-placeholder h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-section {
    background-color: #f8f9fa;
}

.value-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.how-it-works {
    background-color: white;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.stats-section {
    background: var(--bg-gradient-2);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.team-section {
    background-color: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.team-avatar i {
    font-size: 40px;
    color: var(--primary-color);
}

.team-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-contact p {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.team-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.team-contact a:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .gradient-text {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .workflow-card {
        padding: 2rem;
    }
    
    .workflow-title {
        font-size: 24px;
    }
    
    .build-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .navbar-buttons {
        margin-top: 1rem;
    }
    
    .workflow-buttons,
    .build-buttons {
        flex-direction: column;
    }
    
    .footer-legal {
        justify-content: start;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .gradient-text {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-hero {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .partners-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workflow-visual {
        margin-top: 2rem;
    }
    
    .quickstart-guide {
        margin-top: 2rem;
    }
}
