.plugins-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plugins-page .hero-section {
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
    border-radius: 0 0 40px 40px;
    margin-bottom: 70px;
}

.plugins-page .hero-section::before {
    content: '';
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #13aff0 45%, #0e8bc0 50%, #13aff0 65%, transparent 100%);
}

.plugins-page .hero-section h1 {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #111, #2c3e50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plugins-page .hero-section .section-sub {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

.plugins-page .divider {
    margin: 70px 0;
    height: 1px;
}


.plugins-page .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.plugins-page .features-intro {
    text-align: center;
    margin-bottom: 50px;
}

.plugins-page .section-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #13aff0;
    font-weight: 600;
    margin-bottom: 16px;
}

.plugins-page .platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.plugins-page .platform-card {
    background: #fff;
    border: 1px solid #e8eef2;
    border-radius: 24px;
    padding: 20px 20px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plugins-page .platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #13aff0, #0e8bc0);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.plugins-page .platform-card:hover::before {
    transform: scaleX(1);
}

.plugins-page .platform-card:hover {
    border-color: #13aff0;
    box-shadow: 0 20px 40px rgba(19, 175, 240, 0.12);
    transform: translateY(-6px);
}

.plugins-page .platform-card .platform-name {
    min-height: 55px;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.plugins-page .platform-card .platform-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #13aff0;
    border-radius: 2px;
}

.plugins-page .platform-card .plan-extra {
    min-height: 110px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.plugins-page .platform-card ul {
    min-height: 175px;
    list-style: none;
    padding: 0;
    margin: 24px 0 36px 0;
}

.plugins-page .platform-card li {
    margin-bottom: 13px;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
}

.plugins-page .platform-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #13aff0;
    font-weight: bold;
    font-size: 1rem;
}

.plugins-page .plan-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #13aff0;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.plugins-page .plan-btn:hover {
    background: #0e8bc0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 175, 240, 0.3);
}

.plugins-page #how-it-works {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fafcff 0%, #ffffff 100%);
    border-radius: 40px;
}

.plugins-page .how-it-works-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.plugins-page .how-it-works-line {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #13aff0 20%, #13aff0 80%, transparent);
    z-index: 1;
    display: none;
    border-radius: 2px;
}

@media (min-width: 992px) {
    .plugins-page .how-it-works-line {
        display: block;
    }
}

.plugins-page .steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.plugins-page .step-item {
    flex: 1;
    text-align: center;
    position: relative;
    min-width: 0;
}

.plugins-page .step-item .circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #13aff0, #0e8bc0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plugins-page .step-item:hover .circle {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(19, 175, 240, 0.35);
}

.plugins-page .step-item .step-number {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.plugins-page .step-item .step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.plugins-page .step-item:hover .step-content h4 {
    color: #13aff0;
}

.plugins-page .step-item .step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    padding: 0 10px;
}

.plugins-page .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

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

.plugins-page .benefit-card {
    background: #fff;
    border: 1px solid #e8eef2;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plugins-page .usecase-card {
    background: #fff;
    border: 1px solid #e8eef2;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plugins-page .benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #13aff0, #0e8bc0);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.plugins-page .usecase-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #13aff0, #0e8bc0);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.plugins-page .benefit-card:hover::after,
.plugins-page .usecase-card:hover::after {
    transform: scaleX(1);
}

.plugins-page .benefit-card:hover,
.plugins-page .usecase-card:hover {
    border-color: #13aff0;
    box-shadow: 0 20px 40px rgba(19, 175, 240, 0.1);
    transform: translateY(-4px);
}

.plugins-page .benefit-card .title {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    position: relative;
    display: inline-block;
}

.plugins-page .usecase-card .title {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    position: relative;
    display: inline-block;
}

.plugins-page .benefit-card .title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #13aff0;
    border-radius: 2px;
}

.plugins-page .usecase-card .title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #13aff0;
    border-radius: 2px;
}

.plugins-page .benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
}

.plugins-page .usecase-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
}

.plugins-page .usecase-card li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.plugins-page .usecase-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #13aff0;
    font-weight: bold;
}

.plugins-page .cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fa 100%);
    border-radius: 32px;
    padding: 80px 40px;
    margin: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.plugins-page .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(19, 175, 240, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.plugins-page .cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #111;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.plugins-page .cta-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.plugins-page .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.sm {
    width: 70%;
    margin: 0 auto;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px 16px;
    border-bottom: 1px solid #e8eef2;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #13aff0;
}

.modal-subtitle-wrapper {
    padding: 8px 32px 16px;
}

.modal-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.modal-body {
    padding: 8px 32px 32px;
}

.partner-form label {
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.partner-form input,
.partner-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.partner-form input:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: #13aff0;
    box-shadow: 0 0 0 3px rgba(19, 175, 240, 0.1);
}

.partner-form input.error,
.partner-form textarea.error {
    border-color: #f44336;
}

.error-message {
    display: none;
    color: #f44336;
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-message {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.thank-you-modal {
    text-align: center;
    padding: 40px 20px;
}

.thank-you-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #13aff0;
}

.thank-you-modal p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.thank-you-modal button {
    padding: 12px 32px;
    background: #13aff0;
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thank-you-modal button:hover {
    background: #0e8bc0;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .main {
        padding: 0;
    }

    .plugins-page {
        padding: 0;
    }

    .plugins-page .steps-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .plugins-page .how-it-works-line {
        display: none;
    }

    .plugins-page .hero-section::before {
        top: 60%;
    }

    .plugins-page .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .plugins-page .step-item {
        width: 100%;
    }

    .plugins-page .step-item .circle {
        width: 60px;
        height: 60px;
    }

    .plugins-page .step-item .step-number {
        font-size: 24px;
    }

    .plugins-page .cta-section h2 {
        font-size: 2rem;
    }

    .plugins-page .cta-section {
        padding: 60px 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .plugins-page .steps-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
    }

    .plugins-page .step-item {
        flex: 1 1 calc(50% - 40px);
        min-width: calc(50% - 40px);
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .plugins-page .step-item .step-content h4 {
        font-size: 1.1rem;
    }

    .plugins-page .step-item .step-content p {
        font-size: 0.85rem;
    }

    .plugins-page .platform-card {
        padding: 36px 28px;
    }
}

@media (max-width: 992px) {
    .plugins-page .hero-section {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 768px) {
    .plugins-page .hero-section {
        padding: 60px 20px 50px;
        margin-bottom: 50px;
    }

    .plugins-page .divider {
        margin: 50px 0;
    }

    .plugins-page .section {
        margin-bottom: 50px;
    }

    .plugins-page .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .plugins-page .cta-section {
        padding: 50px 20px;
        margin: 50px 0 60px;
    }

    .plugins-page .platform-card {
        padding: 32px 24px;
    }

    .plugins-page .benefit-card,
    .plugins-page .usecase-card {
        padding: 32px 24px;
    }

    .plugins-page .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .plugins-page .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .modal-header {
        padding: 20px 24px 12px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 8px 24px 24px;
    }
}

.plugins-page {
    scroll-behavior: smooth;
}

.plugins-page p,
.plugins-page li,
.plugins-page .plan-extra {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}