/**
 * n8n Cloud - Official Workflow Automation Platform Theme
 * n8n Coral / Rose: #EA4B71 / #FF6D5A / #FF4A60
 * Dark Modern Theme: #0e1017 / #151824 / #1c2030
 */

:root {
    --n8n-bg-dark: #0e1017;
    --n8n-bg-card: #151824;
    --n8n-bg-card-hover: #1c2030;
    --n8n-coral: #EA4B71;
    --n8n-coral-bright: #FF6D5A;
    --n8n-coral-light: #FF8F7D;
    --n8n-coral-glow: rgba(234, 75, 113, 0.35);
    --n8n-coral-border: rgba(234, 75, 113, 0.25);
    --n8n-border: rgba(255, 255, 255, 0.08);
    --n8n-text-primary: #ffffff;
    --n8n-text-secondary: #a3a8c3;
    --n8n-text-muted: #6b708d;
    --n8n-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --n8n-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --n8n-radius-sm: 8px;
    --n8n-radius-md: 12px;
    --n8n-radius-lg: 16px;
    --n8n-radius-xl: 24px;
    --n8n-radius-full: 9999px;
}

/* Base Wrapper */
.n8n-cloud-wrap {
    font-family: var(--n8n-font-sans);
    color: var(--n8n-text-primary);
    background: transparent !important;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

.n8n-cloud-wrap *,
.n8n-cloud-wrap *::before,
.n8n-cloud-wrap *::after {
    box-sizing: border-box;
}

.n8n-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ==========================================================================
   STICKY TOPBAR
   ========================================================================== */
.n8n-topbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100000;
    background: rgba(14, 16, 23, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--n8n-border);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), top 0.15s ease-out;
}

.n8n-topbar-hidden {
    transform: translateY(-100%) !important;
}

.n8n-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.n8n-topbar-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.n8n-topbar-brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--n8n-coral-bright) 0%, var(--n8n-coral) 100%);
    box-shadow: 0 2px 10px rgba(234, 75, 113, 0.4);
}

.n8n-topbar-brand-logo img {
    width: 22px;
    height: 22px;
    display: block;
}

.n8n-topbar-brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.n8n-topbar-brand-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(234, 75, 113, 0.18);
    color: var(--n8n-coral-light);
    border: 1px solid var(--n8n-coral-border);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
}

.n8n-topbar-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.n8n-nav-link {
    color: var(--n8n-text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n8n-nav-link:hover {
    color: var(--n8n-coral-light);
}

.n8n-topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ==========================================================================
   BUTTONS & BADGES (CRITICAL: DARK TEXT ON SSO/BADGES)
   ========================================================================== */
.n8n-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--n8n-font-sans);
    font-weight: 600;
    border-radius: var(--n8n-radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
}

.n8n-btn-coral {
    background: linear-gradient(135deg, var(--n8n-coral-bright) 0%, var(--n8n-coral) 100%);
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(234, 75, 113, 0.4);
}

.n8n-btn-coral:hover {
    background: linear-gradient(135deg, #ff7f6e 0%, var(--n8n-coral-bright) 100%);
    box-shadow: 0 6px 28px rgba(234, 75, 113, 0.6);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* CRITICAL: SSO Buttons [Open n8n] & [Open n8n Dashboard] MUST HAVE DARK TEXT */
.n8n-sso-link,
a.n8n-sso-link,
button.n8n-sso-link {
    background: linear-gradient(135deg, #ffffff 0%, #ffe4eb 100%) !important;
    color: #000000 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.35) !important;
}

.n8n-sso-link:hover,
a.n8n-sso-link:hover,
button.n8n-sso-link:hover {
    background: #ffffff !important;
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.55) !important;
    transform: translateY(-2px);
    color: #000000 !important;
}

.n8n-sso-link svg {
    color: #000000 !important;
    stroke: #000000 !important;
}

.n8n-btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--n8n-border);
    color: #fff;
}

.n8n-btn-outline:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

.n8n-btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    height: 38px;
}

.n8n-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    height: 52px;
}

.n8n-btn-block {
    width: 100%;
}

.n8n-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--n8n-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

.n8n-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.n8n-mobile-drawer {
    display: none;
    background: #111420;
    border-bottom: 1px solid var(--n8n-border);
    padding: 20px 24px;
}

.n8n-mobile-drawer.open {
    display: block;
}

.n8n-mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.n8n-mobile-link {
    color: var(--n8n-text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.n8n-hero {
    position: relative;
    padding: 85px 0 60px;
    text-align: center;
    overflow: hidden;
}

.n8n-hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 480px;
    background: radial-gradient(circle, rgba(234, 75, 113, 0.18) 0%, rgba(255, 109, 90, 0.06) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.n8n-hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

.n8n-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.n8n-badge-pill {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--n8n-coral-bright) 0%, var(--n8n-coral) 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--n8n-radius-full);
}

.n8n-eyebrow-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--n8n-text-muted);
}

.n8n-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #ffffff;
}

.n8n-title-accent {
    background: linear-gradient(135deg, #FF8F7D 0%, #FF6D5A 50%, #EA4B71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.n8n-hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--n8n-text-secondary);
    max-width: 760px;
    margin: 0 auto 36px;
}

.n8n-hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.n8n-hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.n8n-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--n8n-text-secondary);
}

.n8n-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--n8n-coral-bright);
}

/* ==========================================================================
   INTERACTIVE WORKFLOW CANVAS VISUAL
   ========================================================================== */
.n8n-hero-visual {
    margin-top: 20px;
}

.n8n-workflow-canvas {
    background: #111420;
    border: 1px solid var(--n8n-border);
    border-radius: var(--n8n-radius-xl);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(234, 75, 113, 0.15);
    overflow: hidden;
    text-align: left;
}

.n8n-canvas-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #0b0d15;
    border-bottom: 1px solid var(--n8n-border);
}

.n8n-canvas-dots {
    display: flex;
    gap: 6px;
}

.n8n-canvas-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.n8n-canvas-dots span:nth-child(1) { background: #ff5f56; }
.n8n-canvas-dots span:nth-child(2) { background: #ffbd2e; }
.n8n-canvas-dots span:nth-child(3) { background: #27c93f; }

.n8n-canvas-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--n8n-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.n8n-status-pill {
    font-size: 11px;
    font-weight: 700;
    color: #27c93f;
    background: rgba(39, 201, 63, 0.12);
    border: 1px solid rgba(39, 201, 63, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
}

.n8n-canvas-body {
    padding: 36px 24px;
    background-color: #111420;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    overflow-x: auto;
}

.n8n-nodes-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 720px;
}

.n8n-node {
    background: #181c2b;
    border: 1px solid var(--n8n-border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.n8n-node:hover {
    border-color: var(--n8n-coral-border);
    transform: translateY(-2px);
}

.n8n-node-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.n8n-node-icon.trigger { background: rgba(255, 109, 90, 0.2); }
.n8n-node-icon.ai { background: rgba(138, 43, 226, 0.25); }
.n8n-node-icon.action { background: rgba(0, 150, 255, 0.2); }
.n8n-node-icon.db { background: rgba(46, 204, 113, 0.2); }

.n8n-node-info h5 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.n8n-node-info span {
    font-size: 12px;
    color: var(--n8n-text-muted);
}

.n8n-node-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    background: #27c93f;
    color: #000;
}

.n8n-connector {
    display: flex;
    align-items: center;
    position: relative;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--n8n-coral) 0%, var(--n8n-coral-bright) 100%);
}

.n8n-connector::after {
    content: "";
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--n8n-coral-bright);
    box-shadow: 0 0 8px var(--n8n-coral-bright);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.n8n-stats-section {
    padding: 50px 0;
    border-top: 1px solid var(--n8n-border);
    border-bottom: 1px solid var(--n8n-border);
    background: rgba(14, 16, 23, 0.6);
}

.n8n-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.n8n-stat-card {
    text-align: center;
    padding: 20px 16px;
}

.n8n-stat-num {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.n8n-stat-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--n8n-coral-light);
    margin-bottom: 6px;
}

.n8n-stat-sub {
    font-size: 13px;
    color: var(--n8n-text-muted);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.n8n-features-section {
    padding: 90px 0;
}

.n8n-section-header {
    margin-bottom: 56px;
}

.n8n-section-header.text-center {
    text-align: center;
}

.n8n-section-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--n8n-coral-light);
    margin-bottom: 12px;
}

.n8n-section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: #fff;
}

.n8n-section-sub {
    font-size: 17px;
    color: var(--n8n-text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.n8n-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.n8n-feature-card {
    background: var(--n8n-bg-card);
    border: 1px solid var(--n8n-border);
    border-radius: var(--n8n-radius-lg);
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.n8n-feature-card:hover {
    border-color: var(--n8n-coral-border);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(234, 75, 113, 0.1);
}

.n8n-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(234, 75, 113, 0.15);
    color: var(--n8n-coral-bright);
}

.n8n-feature-icon svg {
    width: 24px;
    height: 24px;
}

.n8n-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.n8n-feature-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--n8n-text-secondary);
    margin: 0;
}

/* ==========================================================================
   INTEGRATIONS SECTION
   ========================================================================== */
.n8n-integrations-section {
    padding: 90px 0;
    background: #0b0d15;
    border-top: 1px solid var(--n8n-border);
    border-bottom: 1px solid var(--n8n-border);
}

.n8n-integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.n8n-int-card {
    background: var(--n8n-bg-card);
    border: 1px solid var(--n8n-border);
    border-radius: var(--n8n-radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.25s ease;
}

.n8n-int-card:hover {
    border-color: var(--n8n-coral-border);
    transform: translateY(-3px);
}

.n8n-int-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.n8n-int-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.n8n-int-type {
    font-size: 11px;
    color: var(--n8n-text-muted);
}

/* ==========================================================================
   PRICING SECTION (2-COLUMN FORMAT)
   ========================================================================== */
.n8n-pricing {
    padding: 100px 0;
    position: relative;
}

.n8n-pricing-card-2col {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    background: var(--n8n-bg-card);
    border: 1px solid var(--n8n-border);
    border-radius: var(--n8n-radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    margin-top: 48px;
}

.n8n-pricing-col {
    padding: 48px;
}

.n8n-pricing-col-left {
    border-right: 1px solid var(--n8n-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* CRITICAL: Dedicated Instance BADGE MUST HAVE DARK TEXT */
.n8n-pricing-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000000 !important;
    background: #ffffff;
    border: 1px solid #ffe4eb;
    padding: 4px 14px;
    border-radius: var(--n8n-radius-full);
    margin-bottom: 16px;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.n8n-pricing-plan-name {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: #fff;
}

.n8n-pricing-plan-desc {
    font-size: 15px;
    color: var(--n8n-text-secondary);
    line-height: 1.6;
    margin: 0 0 28px;
}

.n8n-billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--n8n-border);
    border-radius: var(--n8n-radius-full);
    padding: 4px;
    margin-bottom: 28px;
}

.n8n-billing-toggle-btn {
    background: transparent;
    border: none;
    color: var(--n8n-text-secondary);
    padding: 8px 18px;
    border-radius: var(--n8n-radius-full);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.n8n-billing-toggle-btn.active {
    background: linear-gradient(135deg, var(--n8n-coral-bright) 0%, var(--n8n-coral) 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(234, 75, 113, 0.4);
}

.n8n-billing-save {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.n8n-price-block {
    margin-bottom: 32px;
}

.n8n-price-amount {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.n8n-price-currency {
    font-size: 28px;
    vertical-align: super;
    margin-right: 2px;
}

.n8n-price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--n8n-text-secondary);
}

.n8n-price-billed {
    font-size: 13px;
    color: var(--n8n-text-muted);
}

.n8n-pricing-cta-wrap {
    margin-top: auto;
}

.n8n-pricing-cta-sub {
    font-size: 12px;
    color: var(--n8n-text-muted);
    margin-top: 12px;
    line-height: 1.4;
}

.n8n-pricing-col-right {
    background: rgba(0, 0, 0, 0.2);
}

.n8n-pricing-right-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.n8n-pricing-right-header h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.n8n-pricing-all-tag {
    font-size: 11px;
    font-weight: 700;
    color: #27c93f;
    background: rgba(39, 201, 63, 0.12);
    border: 1px solid rgba(39, 201, 63, 0.3);
    padding: 3px 10px;
    border-radius: 4px;
}

.n8n-pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.n8n-pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--n8n-text-secondary);
}

.n8n-pricing-feature-list li svg {
    width: 18px;
    height: 18px;
    color: #27c93f;
    flex-shrink: 0;
    margin-top: 2px;
}

.n8n-pricing-feature-list li strong {
    color: #fff;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.n8n-faq-section {
    padding: 90px 0;
    border-top: 1px solid var(--n8n-border);
}

.n8n-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.n8n-faq-item {
    background: var(--n8n-bg-card);
    border: 1px solid var(--n8n-border);
    border-radius: var(--n8n-radius-md);
    overflow: hidden;
}

.n8n-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.n8n-faq-arrow {
    font-size: 12px;
    transition: transform 0.25s ease;
    color: var(--n8n-coral-light);
}

.n8n-faq-item.open .n8n-faq-arrow {
    transform: rotate(180deg);
}

.n8n-faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--n8n-text-secondary);
}

.n8n-faq-item.open .n8n-faq-answer {
    display: block;
}

/* ==========================================================================
   BOTTOM CTA BANNER
   ========================================================================== */
.n8n-bottom-cta {
    padding: 80px 0 100px;
}

.n8n-bottom-card {
    background: linear-gradient(135deg, rgba(234, 75, 113, 0.15) 0%, rgba(255, 109, 90, 0.08) 100%), #111420;
    border: 1px solid var(--n8n-coral-border);
    border-radius: var(--n8n-radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.n8n-bottom-content h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: #fff;
}

.n8n-bottom-content p {
    font-size: 17px;
    color: var(--n8n-text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .n8n-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .n8n-integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .n8n-pricing-card-2col {
        grid-template-columns: 1fr;
    }
    .n8n-pricing-col-left {
        border-right: none;
        border-bottom: 1px solid var(--n8n-border);
    }
}

@media (max-width: 768px) {
    .n8n-container {
        padding: 0 18px !important;
    }
    .n8n-topbar-nav {
        display: none;
    }
    .n8n-menu-toggle {
        display: flex;
    }
    .n8n-hero-title {
        font-size: 42px;
    }
    .n8n-hero-sub {
        font-size: 16px;
    }
    .n8n-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .n8n-features-grid {
        grid-template-columns: 1fr;
    }
    .n8n-integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .n8n-pricing-col {
        padding: 32px 24px;
    }
    .n8n-bottom-card {
        padding: 40px 20px;
    }
    .n8n-bottom-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .n8n-container {
        padding: 0 16px !important;
    }
    .n8n-hero-title {
        font-size: 32px;
    }
    .n8n-topbar-inner {
        padding: 0 14px;
        height: 52px;
    }
    .n8n-stats-grid {
        grid-template-columns: 1fr;
    }
    .n8n-integrations-grid {
        grid-template-columns: 1fr;
    }
    .n8n-hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .n8n-hero-cta-group .n8n-btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
        white-space: normal;
        line-height: 1.3;
    }
}
