/* =========================================================
   GPU CLOUD PAGE
   File: public/assets/css/n8n.css
========================================================= */

:root {
    --n8n-primary: #0B5ED7;
    --n8n-primary-dark: #084298;
    --n8n-secondary: #123D99;
    --n8n-dark: #111827;
    --n8n-text: #4B5563;
    --n8n-light: #F5F7FA;
    --n8n-white: #FFFFFF;
    --n8n-border: #E5E7EB;
    --n8n-success: #16A34A;
}



/* =========================================================
   GLOBAL
========================================================= */
p a{
    color:#ff7a00;
}
.n8n-hero *,
.n8n-stats-section *,
.n8n-models-section *,
.n8n-pricing-section *,
.n8n-why-section *,
.n8n-usecase-section *,
.n8n-features-section *,
.n8n-os-section *,
.n8n-faq-section *,
.n8n-cta-section * {
    box-sizing: border-box;
}

.n8n-hero,
.n8n-stats-section,
.n8n-models-section,
.n8n-pricing-section,
.n8n-why-section,
.n8n-usecase-section,
.n8n-features-section,
.n8n-os-section,
.n8n-faq-section,
.n8n-cta-section {
    font-family: inherit;
}

.n8n-hero {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background:
        radial-gradient(circle at 75% 45%, rgba(11, 94, 215, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f5f8ff 55%, #edf4ff 100%);
}

.n8n-section-heading {
    max-width: 850px;
    margin: 0 auto 30px;
    text-align: center;
}

.n8n-section-heading h2,
.n8n-why-content h2,
.n8n-os-content h2,
.n8n-cta-content h2 {
    margin: 6px 0;
    color: var(--n8n-dark);
    font-size: 36px;
    line-height: 1.2;
    /* font-weight: 700; */
}

.n8n-section-heading h2 span,
.n8n-why-content h2 span,
.n8n-os-content h2 span,
.n8n-cta-content h2 span {
    color: var(--n8n-primary);
}

.n8n-section-heading p,
.n8n-why-content > p,
.n8n-os-content p,
.n8n-cta-content p {
    margin: 0;
    color: var(--n8n-text);
    font-size: 16px;
    line-height: 1.8;
}

.n8n-section-badge,
.n8n-badge {
    /* display: inline-flex; */
    display:none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(11, 94, 215, 0.15);
    border-radius: 50px;
    background: rgba(11, 94, 215, 0.08);
    color: var(--n8n-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


.n8n-country-switcher,
.n8n-os-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px auto;
}

.n8n-os-switcher {
    margin-top: 10px;
    margin-bottom: 30px;
}

.n8n-country-switcher .n8n-switch,
.n8n-os-switcher .n8n-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
}

.n8n-os-switcher .n8n-switch i {
    font-size: 16px;
}

/* =========================================================
   HERO
========================================================= */

.n8n-hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(400px, 0.9fr);
    align-items: center;
    gap: 70px;
}

.n8n-hero-content {
    max-width: 850px;
}

.n8n-hero-content h1 {
    margin: 22px 0;
    color: var(--n8n-dark);
    font-size: 36px;
    line-height: 1.08;
    /* font-weight: 800;
    letter-spacing: -1.5px; */
}

.n8n-hero-content h1 span {
    color: var(--n8n-primary);
}

.n8n-hero-description {
    max-width: 850px;
    margin: 0;
    color: var(--n8n-text);
    font-size: 16px;
    line-height: 1.8;
}

.n8n-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.n8n-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.n8n-btn-primary {
    background: linear-gradient(
        135deg,
        var(--n8n-primary),
        var(--n8n-secondary)
    );
    color: var(--n8n-white);
    box-shadow: 0 12px 30px rgba(11, 94, 215, 0.22);
}

.n8n-btn-primary:hover {
    color: var(--n8n-white);
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(11, 94, 215, 0.3);
}

.n8n-btn-outline {
    border: 1px solid var(--n8n-border);
    background: var(--n8n-white);
    color: var(--n8n-dark);
}

.n8n-btn-outline:hover {
    border-color: var(--n8n-primary);
    color: var(--n8n-primary);
    transform: translateY(-3px);
}

.n8n-btn-light {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: var(--n8n-white);
    color: var(--n8n-primary);
}

.n8n-btn-light:hover {
    background: transparent;
    color: var(--n8n-white);
}

.n8n-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin-top: 35px;
}

.n8n-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--n8n-text);
    font-size: 14px;
    font-weight: 500;
}

.n8n-trust-item i {
    color: var(--n8n-success);
}

/* ==================================================
CONSULTATION FORM (REDESIGNED)
================================================== */

.service-hero-form {
    position: relative;
    overflow: hidden;
    background: var(--n8n-white);
    border: 1px solid var(--n8n-border);
    border-radius: 22px;
    padding: 20px 30px;
    box-shadow: 0 30px 70px rgba(11, 61, 153, 0.14);
}

.service-hero-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--n8n-primary),
        var(--n8n-secondary)
    );
}

.service-hero-form p {
    position: relative;
    color: var(--n8n-dark);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--n8n-border);
}

.service-hero-form form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.service-hero-form input,
.service-hero-form select,
.service-hero-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid var(--n8n-border);
    background: var(--n8n-light);
    color: var(--n8n-dark);
    font-size: 14px;
    padding: 10px 20px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-hero-form input:hover,
.service-hero-form select:hover,
.service-hero-form textarea:hover {
    border-color: rgba(11, 94, 215, 0.4);
}

.service-hero-form input:focus,
.service-hero-form select:focus,
.service-hero-form textarea:focus {
    background: var(--n8n-white);
    border-color: var(--n8n-primary);
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.14);
}

.service-hero-form select {
    background: var(--n8n-light);
    color: var(--n8n-dark);
    border: 1.5px solid var(--n8n-border);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.service-hero-form select option {
    color: var(--n8n-dark);
    background: var(--n8n-white);
}

.service-hero-form select option:hover,
.service-hero-form select option:checked {
    background: rgba(11, 94, 215, 0.1) !important;
    color: var(--n8n-primary) !important;
}

.service-hero-form textarea {
    resize: none;
    min-height: 90px;
    line-height: 1.6;
}

.service-hero-form input::placeholder,
.service-hero-form textarea::placeholder {
    color: #94A3B8;
}

.service-consult-btn {
    padding: 16px;
    margin-top: 4px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        var(--n8n-primary),
        var(--n8n-secondary)
    );
    color: var(--n8n-white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(11, 94, 215, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-consult-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: 0.6s;
}

.service-consult-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 94, 215, 0.38);
}

.service-consult-btn:hover::before {
    left: 100%;
}

.response-time {
    display: block;
    text-align: center;
    color: var(--n8n-text);
    font-size: 12.5px;
    margin-top: 16px;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.n8n-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.n8n-visual-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(11, 94, 215, 0.12);
    filter: blur(40px);
}

.n8n-main-card {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            #123d99,
            #071b47
        );
    box-shadow:
        0 35px 80px rgba(5, 27, 71, 0.28);
}

.n8n-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.n8n-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--n8n-white);
    font-size: 22px;
}

.n8n-card-header span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    letter-spacing: 1px;
}

.n8n-card-header strong {
    color: var(--n8n-white);
    font-size: 18px;
}

.n8n-chip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    margin: 25px 0;
}

.n8n-chip::before,
.n8n-chip::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.n8n-chip::before {
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.n8n-chip::after {
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: n8nRotate 20s linear infinite;
}

.n8n-chip-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 125px;
    border: 8px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        var(--n8n-primary),
        #071b47
    );
    color: var(--n8n-white);
    box-shadow:
        0 0 45px rgba(11, 94, 215, 0.55);
}

.n8n-chip-center i {
    margin-bottom: 8px;
    font-size: 30px;
}

.n8n-chip-center span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.n8n-chip-lines {
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    background:
        linear-gradient(
            90deg,
            transparent 49%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 51%
        ),
        linear-gradient(
            0deg,
            transparent 49%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 51%
        );
}

.n8n-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.n8n-card-stats > div {
    padding: 14px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
}

.n8n-card-stats strong {
    display: block;
    color: var(--n8n-white);
    font-size: 17px;
}

.n8n-card-stats span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}


/* =========================================================
   STATS
========================================================= */

.n8n-stats-section {
    position: relative;
    z-index: 3;
    margin-top: -35px;
}

.n8n-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px 0;
}

.n8n-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border: 1px solid var(--n8n-border);
    border-radius: 12px;
    background: var(--n8n-white);
    box-shadow: 0 10px 35px rgba(17, 24, 39, 0.07);
    transition: all 0.3s ease;
}

.n8n-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 94, 215, 0.35);
}

.n8n-stat-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(11, 94, 215, 0.09);
    color: var(--n8n-primary);
    font-size: 21px;
}

.n8n-stat-card strong {
    display: block;
    color: var(--n8n-dark);
    font-size: 15px;
}

.n8n-stat-card span {
    display: block;
    margin-top: 4px;
    color: var(--n8n-text);
    font-size: 12px;
}


/* =========================================================
   GPU MODELS
========================================================= */

.n8n-models-section {
    padding: 10px 0 30px;
}

.n8n-model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.n8n-model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    border: 1px solid var(--n8n-border);
    border-radius: 16px;
    background: var(--n8n-white);
    transition: all 0.35s ease;
}

.n8n-model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 94, 215, 0.35);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.1);
}

.n8n-model-featured {
    border-color: var(--n8n-primary);
    box-shadow: 0 15px 40px rgba(11, 94, 215, 0.1);
}

.n8n-model-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.n8n-model-tag {
    padding: 6px 10px;
    border-radius: 5px;
    background: rgba(11, 94, 215, 0.08);
    color: var(--n8n-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.n8n-model-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--n8n-light);
    color: var(--n8n-primary);
    font-size: 20px;
}

.n8n-model-card h3 {
    margin: 0 0 12px;
    color: var(--n8n-dark);
    font-size: 23px;
}

.n8n-model-card > p {
    min-height: 78px;
    margin: 0 0 10px;
    color: var(--n8n-text);
    font-size: 14px;
    line-height: 1.7;
}

.n8n-spec-list {
    margin-bottom: 15px;
    border-top: 1px solid var(--n8n-border);
}

.n8n-spec-list > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid var(--n8n-border);
}

.n8n-spec-list span {
    color: var(--n8n-text);
    font-size: 12px;
}

.n8n-spec-list strong {
    color: var(--n8n-dark);
    font-size: 12px;
    text-align: right;
}

.n8n-model-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--n8n-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.n8n-model-link:hover {
    color: var(--n8n-primary-dark);
}

.n8n-model-link i {
    transition: transform 0.3s ease;
}

.n8n-model-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PRICING
========================================================= */

.n8n-pricing-section {
    padding: 30px 0;
    background: var(--n8n-light);
}

.n8n-pricing-switcher {
    display: flex;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin: -20px auto 45px;
    padding: 5px;
    border: 1px solid var(--n8n-border);
    border-radius: 9px;
    background: var(--n8n-white);
}

.n8n-switch {
    min-width: 120px;
    padding: 11px 20px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--n8n-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.n8n-switch.active {
    background: var(--n8n-primary);
    color: var(--n8n-white);
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.2);
}

/* .n8n-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 25px;
} */

.n8n-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--n8n-border);
    border-radius: 16px;
    background: var(--n8n-white);
    transition: all 0.3s ease;
}

.n8n-pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(17, 24, 39, 0.1);
}

.n8n-pricing-featured {
    border: 2px solid var(--n8n-primary);
    box-shadow: 0 20px 50px rgba(11, 94, 215, 0.12);
}

.n8n-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    padding: 7px 18px;
    border-radius: 30px;
    background: var(--n8n-primary);
    color: var(--n8n-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateX(-50%);
}

/* .n8n-plan-label {
    color: var(--n8n-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
} */

.n8n-pricing-header h3 {
    margin: 10px 0 8px;
    color: var(--n8n-dark);
    font-size: 24px;
}

.n8n-pricing-header p {
    min-height: 70px;
    margin: 0;
    color: var(--n8n-text);
    font-size: 14px;
    line-height: 1.6;
}

.n8n-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 6px 0;
}

.n8n-price sup {
    color: var(--n8n-dark);
    font-size: 20px;
    font-weight: 700;
}

.n8n-price strong {
    color: var(--n8n-dark);
    font-size: 30px;
    line-height: 1;
}

.n8n-price span {
    color: var(--n8n-text);
    font-size: 20px;
}

.n8n-pricing-divider {
    width: 100%;
    height: 1px;
    margin-top:5px;
    background: var(--n8n-border);
}

.n8n-pricing-card ul {
    flex: 1;
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.n8n-pricing-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
    color: var(--n8n-text);
    font-size: 14px;
}

.n8n-pricing-card li i {
    color: #28a745;
    font-size: 14px;
}

.n8n-price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border-radius: 8px;
    background: var(--n8n-primary);
    color: var(--n8n-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.n8n-price-btn:hover {
    background: var(--n8n-primary-dark);
    color: var(--n8n-white);
    transform: translateY(-2px);
}


/* =========================================================
   WHY GPU
========================================================= */

.n8n-why-section {
    padding: 30px 0;
}

.n8n-why-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    align-items: center;
    gap: 80px;
}

.n8n-feature-list {
    margin-top: 15px;
}

.n8n-feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
}

.n8n-feature-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(11, 94, 215, 0.08);
    color: var(--n8n-primary);
    font-size: 20px;
}

.n8n-feature-item h3 {
    margin: 0 0 7px;
    color: var(--n8n-dark);
    font-size: 17px;
}

.n8n-feature-item p {
    margin: 0;
    color: var(--n8n-text);
    font-size: 14px;
    line-height: 1.7;
}

.n8n-why-visual {
    display: flex;
    justify-content: center;
}

.n8n-performance-card {
    width: 100%;
    max-width: 500px;
    padding: 35px;
    border-radius: 20px;
    background: linear-gradient(145deg, #123d99, #071b47);
    box-shadow: 0 30px 70px rgba(5, 27, 71, 0.2);
}

.n8n-performance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    color: var(--n8n-white);
}

.n8n-performance-header span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.n8n-performance-header i {
    font-size: 25px;
}

.n8n-performance-bar {
    display: grid;
    grid-template-columns: 110px 1fr 40px;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.n8n-performance-bar > span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.n8n-performance-bar > div {
    height: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
}

.n8n-performance-bar > div span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--n8n-white);
}

.n8n-performance-bar strong {
    color: var(--n8n-white);
    font-size: 12px;
    text-align: right;
}


/* =========================================================
   USE CASES
========================================================= */

.n8n-usecase-section {
    padding: 30px 0;
    background: var(--n8n-light);
}

.n8n-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.n8n-usecase-card {
    padding: 12px 18px;
    border: 1px solid var(--n8n-border);
    border-radius: 14px;
    background: var(--n8n-white);
    transition: all 0.3s ease;
}

.n8n-usecase-card:hover {
    transform: translateY(-7px);
    border-color: rgba(11, 94, 215, 0.3);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.08);
}

.n8n-usecase-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    border-radius: 13px;
    background: rgba(11, 94, 215, 0.08);
    color: var(--n8n-primary);
    font-size: 22px;
}

.n8n-usecase-card h3 {
    margin: 0 0 10px;
    color: var(--n8n-dark);
    font-size: 18px;
}

.n8n-usecase-card p {
    margin: 0;
    color: var(--n8n-text);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.n8n-features-section {
    padding: 30px 0;
}

.n8n-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.n8n-feature-box {
    padding: 16px 20px;
    border: 1px solid var(--n8n-border);
    border-radius: 15px;
    background: var(--n8n-white);
    transition: all 0.3s ease;
}

.n8n-feature-box:hover {
    transform: translateY(-6px);
    border-color: var(--n8n-primary);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.08);
}

.n8n-feature-box > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(11, 94, 215, 0.1),
        rgba(18, 61, 153, 0.06)
    );
    color: var(--n8n-primary);
    font-size: 23px;
}

.n8n-feature-box h3 {
    margin: 0 0 12px;
    color: var(--n8n-dark);
    font-size: 19px;
}

.n8n-feature-box p {
    margin: 0;
    color: var(--n8n-text);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   OPERATING SYSTEM
========================================================= */

.n8n-os-section {
    padding: 30px 0 50px;
    background: var(--n8n-light);
}

.n8n-os-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.n8n-os-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.n8n-os-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 15px;
    border: 1px solid var(--n8n-border);
    border-radius: 14px;
    background: var(--n8n-white);
    transition: all 0.3s ease;
}

.n8n-os-card:hover {
    transform: translateY(-5px);
    border-color: var(--n8n-primary);
}

.n8n-os-card i {
    margin-bottom: 15px;
    color: var(--n8n-primary);
    font-size: 38px;
}

.n8n-os-card span {
    color: var(--n8n-dark);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}


/* =========================================================
   FAQ
========================================================= */

.n8n-faq-section {
    padding: 50px 0;
}

.n8n-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.n8n-faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--n8n-border);
    border-radius: 10px;
    background: var(--n8n-white);
    transition: all 0.3s ease;
}

.n8n-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 21px 25px;
    border: 0;
    background: transparent;
    color: var(--n8n-dark);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.n8n-faq-question i {
    color: var(--n8n-primary);
    transition: transform 0.3s ease;
}

.n8n-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.n8n-faq-answer p {
    margin: 0;
    padding: 0 25px;
    color: var(--n8n-text);
    font-size: 14px;
    line-height: 1.8;
}

.n8n-faq-item.active {
    border-color: rgba(11, 94, 215, 0.35);
}

.n8n-faq-item.active .n8n-faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.n8n-faq-item.active .n8n-faq-question i {
    transform: rotate(45deg);
}


/* =========================================================
   CTA
========================================================= */

.n8n-cta-section {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--n8n-secondary),
            var(--n8n-primary-dark)
        );
}

.n8n-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.n8n-cta-content {
    max-width: 700px;
}

.n8n-cta-content .n8n-section-badge {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--n8n-white);
}

.n8n-cta-content h2 {
    color: var(--n8n-white);
}

.n8n-cta-content h2 span {
    color: #bcd8ff;
}

.n8n-cta-content p {
    color: rgba(255, 255, 255, 0.75);
}

.n8n-cta-buttons {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 15px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes n8nRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* =========================================================
   3840px - 4K
========================================================= */
@media (min-width: 2561px) and (max-width: 3840px) {

    .n8n-pricing-section {
        padding: 50px 0;
    }

    .n8n-pricing-grid {
        max-width: 2200px;
        margin: 0 auto;
    }

    .n8n-pricing-card {
        padding: 40px;
    }

    .n8n-section-heading h2 {
        font-size: 42px;
    }
}


/* =========================================================
   2560px
========================================================= */
@media (min-width: 1921px) and (max-width: 2560px) {

    .n8n-pricing-section {
        padding: 40px 0;
    }

    .n8n-pricing-grid {
        max-width: 1800px;
        margin: 0 auto;
    }

    .n8n-section-heading h2 {
        font-size: 40px;
    }
}



/* =========================================================
   1920px
========================================================= */

@media (max-width: 1920px) {

    /* .n8n-hero {
        padding: 40px 0;
    } */
    .n8n-hero-content h1 {
        font-size: 40px;
    }
    .n8n-pricing-header h3 {
        font-size: 24px;
    }

}


/* =========================================================
   1440px
========================================================= */

@media (max-width: 1440px) {

    .n8n-hero-wrapper {
        gap: 50px;
    }

    .n8n-hero-content h1 {
        font-size: 36px;
    }

    .n8n-model-grid {
        gap: 18px;
    }

    .n8n-model-card {
        padding: 10px 20px;
    }

    .n8n-usecase-grid {
        gap: 18px;
    }

}


/* =========================================================
   1366px
========================================================= */

@media (max-width: 1366px) {

    .n8n-section-heading h2,
    .n8n-why-content h2,
    .n8n-os-content h2,
    .n8n-cta-content h2 {
        font-size: 30px;
    }

    .n8n-hero-content h1 {
        font-size: 32px;
    }

    .n8n-why-wrapper {
        gap: 55px;
    }

}


/* =========================================================
   1280px
========================================================= */

@media (max-width: 1280px) {

    .n8n-hero {
        padding: 30px 0;
    }

    .n8n-hero-wrapper {
        grid-template-columns: 1.5fr 0.9fr;
        gap: 40px;
    }

    .n8n-section-heading h2,
    .n8n-why-content h2,
    .n8n-os-content h2,
    .n8n-cta-content h2 {
        font-size: 30px;
    }
    

    .n8n-hero-content h1 {
        font-size: 32px;
    }

    .n8n-model-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .n8n-usecase-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .n8n-stat-card {
        padding: 10px;
    }

    .n8n-stat-card strong {
        font-size: 14px;
    }

    .n8n-os-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-hero-form {
        padding: 30px 28px;
    }

}


/* =========================================================
   1024px
========================================================= */

@media (max-width: 1024px) {

    .n8n-hero {
        padding: 30px 0;
    }

    .n8n-hero-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
    
    .n8n-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .n8n-hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .n8n-pricing-header h3 {
        font-size: 24px;
    }

    .n8n-hero-buttons,
    .n8n-hero-trust {
        justify-content: center;
    }

    .n8n-hero-visual {
        min-height: auto;
    }

    .n8n-main-card {
        max-width: 470px;
    }

    .n8n-model-card{
        padding: 10px 20px;
        margin: 15px;
    }
    .n8n-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n8n-section-heading h2,
    .n8n-why-content h2,
    .n8n-os-content h2,
    .n8n-cta-content h2 {
        font-size: 30px;
    }

    /* .n8n-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    } */

    .n8n-pricing-card {
        min-height: auto;
    }

    .n8n-why-wrapper {
        grid-template-columns: 2fr 1fr;
    }

    .n8n-why-content {
        max-width: 750px;
        margin: auto;
    }

    .n8n-why-visual {
        width: 100%;
    }

    .n8n-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n8n-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n8n-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n8n-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-hero-form {
        max-width: 480px;
        margin: 0 auto;
    }

}


/* =========================================================
   768px
========================================================= */

@media (max-width: 768px) {

    .n8n-hero {
        padding: 20px 0;
    }

    .n8n-pricing-header h3 {
        font-size: 22px;
    }

    .n8n-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .n8n-why-wrapper {
        grid-template-columns: 1fr;
    }

    .n8n-models-section,
    .n8n-pricing-section,
    .n8n-why-section,
    .n8n-usecase-section,
    .n8n-features-section,
    .n8n-faq-section {
        padding: 50px 0;
    }

    .n8n-os-section {
        padding: 50px 0;
    }

    .n8n-section-heading {
        margin-bottom: 40px;
    }

    .n8n-section-heading h2,
    .n8n-why-content h2,
    .n8n-os-content h2,
    .n8n-cta-content h2 {
        font-size: 28px;
    }

    .n8n-section-heading p,
    .n8n-why-content > p,
    .n8n-os-content p,
    .n8n-cta-content p {
        font-size: 15px;
    }

    .n8n-hero-content h1 {
        font-size: 30px;
    }

    .n8n-hero-description {
        font-size: 16px;
    }

    .n8n-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n8n-stats-section {
        margin-top: 0;
        padding-top: 20px;
    }

    .n8n-model-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 550px;
        margin: auto;
    }

    .n8n-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n8n-features-grid {
        grid-template-columns: 1fr;
    }

    .n8n-os-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .n8n-performance-card {
        padding: 25px;
    }

    .service-hero-form {
        max-width: 100%;
        padding: 28px 24px;
        border-radius: 18px;
    }

    .service-hero-form p {
        font-size: 19px;
        text-align: center;
    }

    .service-hero-form form {
        gap: 14px;
    }

}


/* =========================================================
   576px
========================================================= */

@media (max-width: 576px) {

    .n8n-hero {
        padding: 50px 0;
    }

    .n8n-hero-content h1 {
        font-size: 28px;
        letter-spacing: -0.7px;
    }

    .n8n-hero-buttons {
        flex-direction: column;
    }

    .n8n-pricing-header h3 {
        font-size: 20px;
    }

    .n8n-btn {
        width: 100%;
    }

    .n8n-hero-trust {
        align-items: flex-start;
        /* flex-direction: column; */
    }

    .n8n-main-card {
        padding: 20px;
        border-radius: 18px;
    }

    .n8n-chip {
        height: 210px;
    }

    .n8n-chip::before {
        width: 200px;
        height: 200px;
    }

    .n8n-chip::after {
        width: 150px;
        height: 150px;
    }

    .n8n-stats-grid {
        grid-template-columns: 1fr;
    }

    .n8n-stat-card {
        padding: 10px;
    }

    .n8n-section-heading h2,
    .n8n-why-content h2,
    .n8n-os-content h2,
    .n8n-cta-content h2 {
        font-size: 26px;
    }

    .n8n-model-card {
        padding: 10px 20px;
    }

    .n8n-pricing-card {
        padding: 28px 22px;
    }

    .n8n-usecase-grid {
        grid-template-columns: 1fr;
    }

    .n8n-feature-item {
        align-items: flex-start;
    }

    .n8n-performance-bar {
        grid-template-columns: 90px 1fr 35px;
        gap: 8px;
    }

    .n8n-os-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n8n-model-grid {
        grid-template-columns: 1fr;
    }

    .n8n-faq-question {
        padding: 18px;
        gap: 15px;
        font-size: 14px;
    }

    .n8n-faq-answer p {
        padding: 0 18px;
        font-size: 13px;
    }

    .n8n-cta-section {
        padding: 50px 0;
    }

    .n8n-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .service-hero-form {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .service-hero-form p {
        font-size: 17px;
        padding-bottom: 12px;
    }

    .service-hero-form input,
    .service-hero-form select,
    .service-hero-form textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .service-consult-btn {
        padding: 14px;
        font-size: 14px;
    }

}


/* =========================================================
   480px
========================================================= */

@media (max-width: 480px) {

    .n8n-section-badge,
    .n8n-badge {
        padding: 7px 12px;
        font-size: 10px;
    }

    .n8n-hero-content h1 {
        font-size: 33px;
    }

    .n8n-card-stats {
        grid-template-columns: 1fr;
    }

    .n8n-chip {
        margin: 15px 0;
    }

    .n8n-price strong {
        font-size: 22px;
    }

    .n8n-performance-card {
        padding: 20px;
    }

    .n8n-performance-bar {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .n8n-performance-bar strong {
        text-align: left;
    }

    .n8n-os-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-hero-form {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .service-hero-form form {
        gap: 12px;
    }

    .service-hero-form textarea {
        min-height: 75px;
    }

    .response-time {
        font-size: 11.5px;
    }

}


/* =========================================================
   375px
========================================================= */

@media (max-width: 375px) {

    .n8n-hero-content h1 {
        font-size: 30px;
    }

    .n8n-section-heading h2,
    .n8n-why-content h2,
    .n8n-os-content h2,
    .n8n-cta-content h2 {
        font-size: 25px;
    }

    .n8n-hero-description,
    .n8n-section-heading p {
        font-size: 14px;
    }

    .n8n-main-card {
        padding: 16px;
    }

    .n8n-chip-center {
        width: 105px;
        height: 105px;
    }

    .n8n-chip-center i {
        font-size: 24px;
    }

    .n8n-pricing-card {
        padding: 25px 18px;
    }

    .n8n-faq-question {
        padding: 16px;
    }

    .service-hero-form p {
        font-size: 16px;
    }

    .service-hero-form input,
    .service-hero-form select,
    .service-hero-form textarea {
        padding: 10px 13px;
        font-size: 13.5px;
    }

}

/* =========================================================
   GPU PRICING HORIZONTAL SCROLLER
========================================================= */

.n8n-pricing-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 25px 5px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--n8n-primary) #dfe8f5;
    -webkit-overflow-scrolling: touch;
}

.n8n-pricing-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.n8n-pricing-scroll-wrapper::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #dfe8f5;
}

.n8n-pricing-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: var(--n8n-primary);
}

.n8n-pricing-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--n8n-primary-dark);
}


/* Pricing cards horizontal layout */

.n8n-pricing-grid {
    display: flex;
    gap: 25px;
    width: max-content;
    min-width: 100%;
    align-items: stretch;
}


/* Each pricing card */

.n8n-pricing-grid .n8n-pricing-card {
    width: 340px;
    min-width: 340px;
    flex: 0 0 340px;
}


/* Featured card */

.n8n-pricing-grid .n8n-pricing-featured {
    border: 2px solid var(--n8n-primary);
}


/* =========================================================
   PRICING SWITCHER
========================================================= */

.n8n-pricing-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    max-width: 100%;
    margin: -15px auto 20px;
    padding: 5px;
    border: 1px solid var(--n8n-border);
    border-radius: 10px;
    background: var(--n8n-white);
    box-shadow: 0 8px 25px rgba(17, 24, 39, 0.06);
}

.n8n-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 130px;
    padding: 12px 22px;
    border: none;
    border-radius: 7px;
    background: transparent;
    color: var(--n8n-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.n8n-switch i {
    font-size: 16px;
}

.n8n-switch.active {
    background: linear-gradient(
        135deg,
        var(--n8n-primary),
        var(--n8n-secondary)
    );
    color: #ffffff;
    box-shadow: 0 5px 18px rgba(11, 94, 215, 0.25);
}

.n8n-switch:hover:not(.active) {
    color: var(--n8n-primary);
}


/* Price animation */

.n8n-price-value {
    transition: opacity 0.2s ease,
                transform 0.2s ease;
}

.n8n-price-value.changing {
    opacity: 0;
    transform: translateY(5px);
}


/* =========================================================
   RESPONSIVE PRICING
========================================================= */

@media (max-width: 768px) {

    .n8n-pricing-scroll-wrapper {
        padding-right: 15px;
        padding-left: 5px;
    }

    .n8n-pricing-grid {
        gap: 18px;
    }

    .n8n-pricing-grid .n8n-pricing-card {
        width: 310px;
        min-width: 310px;
        flex-basis: 310px;
    }

}


@media (max-width: 480px) {

    .n8n-switch {
        min-width: 120px;
        padding: 11px 15px;
    }

    .n8n-pricing-grid .n8n-pricing-card {
        width: 290px;
        min-width: 290px;
        flex-basis: 290px;
    }

}


@media (max-width: 375px) {

    .n8n-pricing-switcher {
        width: 100%;
    }

    .n8n-switch {
        flex: 1;
        min-width: 0;
    }

    .n8n-pricing-grid .n8n-pricing-card {
        width: 270px;
        min-width: 270px;
        flex-basis: 270px;
    }

}

/* =========================================================
   GPU CONFIGURE SERVER MODAL
========================================================= */

body.n8n-modal-open {
    overflow: hidden;
}


.n8n-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    z-index: 999999;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.n8n-modal.active {
    opacity: 1;
    visibility: visible;
}


.n8n-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .65);

    cursor: pointer;
}


.n8n-modal-dialog {
    position: relative;

    width: 100%;
    max-width: 700px;
    max-height: calc(100vh - 40px);

    overflow-y: auto;

    padding: 30px;

    background: #ffffff;

    border-radius: 16px;

    z-index: 2;

    transform: translateY(25px);

    transition: transform .25s ease;
}


.n8n-modal.active .n8n-modal-dialog {
    transform: translateY(0);
}


.n8n-modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f3f5f8;

    color: #1f2937;

    cursor: pointer;

    font-size: 18px;
}


.n8n-modal-header {
    /* padding-right: 45px; */

    margin-bottom: 10px;
}


.n8n-modal-badge {
    display: inline-flex;

    padding: 7px 12px;

    border-radius: 5px;

    background: var(--n8n-light, #eef5ff);

    color: var(--n8n-primary, #1261d6);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .5px;
}


.n8n-modal-header h3 {
    margin: 8px 0;

    color: var(--n8n-dark, #1f2937);

    font-size: 30px;
    line-height: 1.3;
}


.n8n-modal-header p {
    margin: 0;

    color: var(--n8n-text, #6b7280);

    font-size: 14px;
}


/* =========================================================
   SELECTED CONFIGURATION
========================================================= */

.n8n-selected-config {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px 18px;

    margin-bottom: 10px;
}


.n8n-selected-config-item {
    padding: 6px 14px;

    border: 1px solid var(--n8n-border, #e5e7eb);

    border-radius: 10px;

    background: #ffffff;
}


.n8n-selected-config-item span {
    display: block;

    margin-bottom: 6px;

    color: var(--n8n-text, #6b7280);

    font-size: 12px;
}


.n8n-selected-config-item strong {
    display: block;

    color: var(--n8n-dark, #1f2937);

    font-size: 15px;

    word-break: break-word;
}


/* =========================================================
   FORM
========================================================= */

.n8n-modal-form-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0px 18px;
}


.n8n-form-group {
    margin-bottom: 10px;
}


.n8n-form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--n8n-dark, #1f2937);

    font-size: 14px;
    font-weight: 600;
}


.n8n-form-group input,
.n8n-form-group textarea {
    width: 100%;

    padding: 10px 20px;

    border: 1px solid var(--n8n-border, #dfe3e8);

    border-radius: 8px;

    background: #ffffff;

    color: var(--n8n-dark, #1f2937);

    outline: none;

    font-family: inherit;
    font-size: 14px;

    transition: border-color .2s ease;
}


.n8n-form-group input:focus,
.n8n-form-group textarea:focus {
    border-color: var(--n8n-primary, #1261d6);
}


.n8n-form-group textarea {
    resize: vertical;
}


.n8n-modal-submit {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 20px;

    border: 0;
    border-radius: 8px;

    background: var(--n8n-primary, #1261d6);

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.n8n-modal-submit:hover {
    opacity: .92;
}


.n8n-modal-submit:disabled {
    opacity: .65;

    cursor: not-allowed;
}


/* =========================================================
   768px
========================================================= */

@media (max-width: 768px) {

    .n8n-modal {
        padding: 15px;
    }

    .n8n-modal-dialog {
        max-height: calc(100vh - 30px);

        padding: 28px 22px;
    }

    .n8n-modal-header h3 {
        font-size: 25px;
    }

}


/* =========================================================
   576px
========================================================= */

@media (max-width: 576px) {

    .n8n-selected-config,
    .n8n-modal-form-grid {
        grid-template-columns: 1fr;
    }

    .n8n-modal-dialog {
        padding: 24px 16px;

        border-radius: 12px;
    }

    .n8n-modal-header h3 {
        font-size: 22px;
    }

}


/* =========================================================
   375px
========================================================= */

@media (max-width: 375px) {

    .n8n-modal {
        padding: 8px;
    }

    .n8n-modal-dialog {
        max-height: calc(100vh - 16px);

        padding: 22px 14px;
    }

    .n8n-modal-close {
        top: 10px;
        right: 10px;

        width: 36px;
        height: 36px;
    }

    .n8n-modal-header h3 {
        font-size: 20px;
    }

}

